diff --git a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/Camera.test.ets b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/Camera.test.ets index 72dffb41a6f8a78a9e9ce60299a4baf595e483f7..26bad2563d47ae2f10aa47d6a114bccf22669a34 100644 --- a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/Camera.test.ets +++ b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/Camera.test.ets @@ -29,7 +29,5 @@ export default function cameraKit(surfaceId: any) { cameraJSUnitEnum(surfaceId) cameraJSUnitCameraFormat(surfaceId) cameraJSUnitPhotoAsync(surfaceId) - cameraJSUnitPhotoPromise(surfaceId) cameraJSUnitVideoAsync(surfaceId) - cameraJSUnitVideoPromise(surfaceId) } \ No newline at end of file diff --git a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitCameraFormat.test.ets b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitCameraFormat.test.ets index f576fef38fa3fb92efe263026f7a249f07dfa770..9b865115650ec0855932259e49f5d6670171518c 100644 --- a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitCameraFormat.test.ets +++ b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitCameraFormat.test.ets @@ -372,4262 +372,6 @@ export default function cameraJSUnitCameraFormat(surfaceId: any) { done(); }) - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_011 - * @tc.name : Get supported preview formats from camera-0 camerainput async api - * @tc.desc : Get supported preview formats from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_011', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_011--------------"); - camera0InputPromise.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_011 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_011 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_011 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_011 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_011 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_011 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012 - * @tc.name : Get supported preview formats from camera-0 camerainput promise api - * @tc.desc : Get supported preview formats from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012--------------"); - var cam0FormatPromise = await camera0InputPromise.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012: " + JSON.stringify(cam0FormatPromise)); - if (cam0FormatPromise != null && cam0FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012 is not null || undefined"); - for (var i = 0; i < cam0FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012 cam0FormatPromise: " + cam0FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_012 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_TC_013 - * @tc.name : Get supported video formats from camera-0 camerainput async api - * @tc.desc : Get supported video formats from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_TC_013', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_TC_013--------------"); - camera0InputPromise.getSupportedVideoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_TC_013 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_TC_013 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_TC_013 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_TC_013 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_TC_013 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_TC_013 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014 - * @tc.name : Get supported video formats from camera-0 camerainput promise api - * @tc.desc : Get supported video formats from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014--------------"); - var cam0FormatPromise = await camera0InputPromise.getSupportedVideoFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014: " + JSON.stringify(cam0FormatPromise)); - if (cam0FormatPromise != null && cam0FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014 is not null || undefined"); - for (var i = 0; i < cam0FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014 cam0FormatPromise: " + cam0FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_TC_014 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 - * @tc.name : Get supported sizes using camera-0 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-0 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015--------------"); - camera0InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_015 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 - * @tc.name : Get supported sizes using camera-0 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-0 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016--------------"); - var sizeArrayPromise = await camera0InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 sizeArrayPromise"); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_016 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_017 - * @tc.name : Get supported photo format from camera-0 camerainput async api - * @tc.desc : Get supported photo format from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_017', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_017--------------"); - camera0InputPromise.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_017 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_017 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_017 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_017 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_017 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_017 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018 - * @tc.name : Get supported photo format from camera-0 camerainput promise api - * @tc.desc : Get supported photo format from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018--------------"); - var cam0FormatPromise = await camera0InputPromise.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018: " + JSON.stringify(cam0FormatPromise)); - if (cam0FormatPromise != null && cam0FormatPromise.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018 is not null || undefined"); - for (var i = 0; i < cam0FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018 cam0FormatPromise: " + cam0FormatPromise[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_018 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 - * @tc.name : Get supported sizes from camera-0 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-0 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019--------------"); - camera0InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_019 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020 - * @tc.name : Get supported sizes from camera-0 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-0 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020--------------"); - var sizeArrayPromise = await camera0InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_020 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION BACK & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021 - * @tc.name : Create camerainput from camera-0 cameraposition back & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-0 cameraposition back & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021--------------"); - camera0InputPromise.release(); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021 data is not null || undefined"); - camera0InputPosBack = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_021 ends here"); - camera0InputPosBack.release(); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022 - * @tc.name : Create camerainput from camera-0 cameraposition back & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-0 cameraposition back & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022--------------"); - camera0InputPromisePosBack = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022 camera0InputPromisePosBack: " + JSON.stringify(camera0InputPromisePosBack)); - if (camera0InputPromisePosBack != null && camera0InputPromisePosBack != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022 camera0InputPromisePosBack is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_022 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_023 - * @tc.name : Get supported preview formats from camera-0 camerainput async api - * @tc.desc : Get supported preview formats from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_023', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_023--------------"); - camera0InputPromisePosBack.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_023 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_023 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_023 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_023 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_023 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_023 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024 - * @tc.name : Get supported preview formats from camera-0 camerainput promise api - * @tc.desc : Get supported preview formats from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024--------------"); - var cam0FormatPromisePosBack = await camera0InputPromisePosBack.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024: " + JSON.stringify(cam0FormatPromisePosBack)); - if (cam0FormatPromisePosBack != null && cam0FormatPromisePosBack.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024 is not null || undefined"); - for (var i = 0; i < cam0FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024 cam0FormatPromisePosBack: " + cam0FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_024 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 - * @tc.name : Get supported sizes using camera-0 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-0 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025--------------"); - camera0InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_025 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 - * @tc.name : Get supported sizes using camera-0 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-0 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026--------------"); - var sizeArrayPromise = await camera0InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_026 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_027 - * @tc.name : Get supported photo format from camera-0 camerainput async api - * @tc.desc : Get supported photo format from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_027', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_027--------------"); - camera0InputPromisePosBack.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_027 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_027 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_027 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_027 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_027 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_027 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028 - * @tc.name : Get supported photo format from camera-0 camerainput promise api - * @tc.desc : Get supported photo format from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028--------------"); - var cam0FormatPromisePosBack = await camera0InputPromisePosBack.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028: " + JSON.stringify(cam0FormatPromisePosBack)); - if (cam0FormatPromisePosBack != null && cam0FormatPromisePosBack.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028 is not null || undefined"); - for (var i = 0; i < cam0FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028 cam0FormatPromisePosBack: " + cam0FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_028 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 - * @tc.name : Get supported sizes from camera-0 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-0 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029--------------"); - camera0InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_029 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030 - * @tc.name : Get supported sizes from camera-0 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-0 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030--------------"); - var sizeArrayPromise = await camera0InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_030 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION FRONT & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031 - * @tc.name : Create camerainput from camera-0 cameraposition front & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-0 cameraposition front & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031 data is not null || undefined"); - camera0InputPosFront = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_031 ends here"); - camera0InputPosFront.release(); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032 - * @tc.name : Create camerainput from camera-0 cameraposition front & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-0 cameraposition front & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032--------------"); - camera0InputPromisePosFront = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032 camera0InputPromisePosFront: " + JSON.stringify(camera0InputPromisePosFront)); - if (camera0InputPromisePosFront != null && camera0InputPromisePosFront != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032 camera0InputPromisePosFront is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_032 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_033 - * @tc.name : Get supported preview formats from camera-0 camerainput async api - * @tc.desc : Get supported preview formats from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_033', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_033--------------"); - camera0InputPromisePosFront.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_033 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_033 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_033 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_033 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_033 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_033 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034 - * @tc.name : Get supported preview formats from camera-0 camerainput promise api - * @tc.desc : Get supported preview formats from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034--------------"); - var cam0FormatPromisePosFront = await camera0InputPromisePosFront.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034: " + JSON.stringify(cam0FormatPromisePosFront)); - if (cam0FormatPromisePosFront != null && cam0FormatPromisePosFront.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034 is not null || undefined"); - for (var i = 0; i < cam0FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034 cam0FormatPromisePosFront: " + cam0FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_034 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 - * @tc.name : Get supported sizes using camera-0 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-0 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035--------------"); - camera0InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_035 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 - * @tc.name : Get supported sizes using camera-0 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-0 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036--------------"); - var sizeArrayPromise = await camera0InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_036 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_037 - * @tc.name : Get supported photo format from camera-0 camerainput async api - * @tc.desc : Get supported photo format from camera-0 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_037', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_037--------------"); - camera0InputPromisePosFront.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_037 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_037 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_037 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_037 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_037 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_037 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038 - * @tc.name : Get supported photo format from camera-0 camerainput promise api - * @tc.desc : Get supported photo format from camera-0 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038--------------"); - var cam0FormatPromisePosFront = await camera0InputPromisePosFront.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038: " + JSON.stringify(cam0FormatPromisePosFront)); - if (cam0FormatPromisePosFront != null && cam0FormatPromisePosFront.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038 is not null || undefined"); - for (var i = 0; i < cam0FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038 cam0FormatPromisePosFront: " + cam0FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_038 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 - * @tc.name : Get supported sizes from camera-0 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-0 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039--------------"); - camera0InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_039 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040 - * @tc.name : Get supported sizes from camera-0 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-0 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040--------------"); - var sizeArrayPromise = await camera0InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_040 ends here"); - console.info("--------------CAMERA-0 ENDS HERE--------------"); - await sleep(1000); - done(); - }) - - it('FOCUSSTATECHANGE_CALLBACK_ON_CAMERAINPUT', 0, async function (done) { - if (camera0InputPromise == null || camera0InputPromise == undefined) { - console.info(TAG + "Entering FOCUSSTATECHANGE_CALLBACK_ON_CAMERAINPUT previewOutput == null || undefined"); - } else { - console.info(TAG + "Entering FOCUSSTATECHANGE_CALLBACK_ON_CAMERAINPUT to operate"); - camera0InputPromise.on("focusStateChange", async (err, data) => { - if (!err) { - console.info(TAG + "FocusState callback is success"); - if (data != null || data != undefined) { - console.info(TAG + "Current FocusState is: " + data); - expect(true).assertTrue(); - } - } else { - expect().assertFail(); - } - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - } - }) - - /*CAMERA-1 Scripts*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_TC_041 - * @tc.name : Create camerainput from camera-1 cameraId async api - * @tc.desc : Create camerainput from camera-1 cameraId async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_TC_041', 0, async function (done) { - console.info("--------------CAMERA-1 STARTS HERE--------------"); - console.info("--------------CREATE_CAMERA_INPUT_TC_041--------------"); - cameraManager.createCameraInput(camerasArray[1].cameraId, async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_041 data is not null || undefined"); - camera1Input = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_041 PASSED with CameraID :" + camerasArray[1].cameraId); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_041 FAILED: " + err.message); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_041 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_PROMISE_TC_042 - * @tc.name : Create camerainput from camera-1 cameraId promise api - * @tc.desc : Create camerainput from camera-1 cameraId promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_PROMISE_TC_042', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_PROMISE_TC_042--------------"); - camera1InputPromise = await cameraManager.createCameraInput(camerasArray[1].cameraId); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_042 camera1InputPromise: " + JSON.stringify(camera1InputPromise)); - if (camera1InputPromise != null && camera1InputPromise != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_042 camera1InputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_042 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_042 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_042 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_CAMERA_ID_CAMINPUT1_TC_43 - * @tc.name : get camera ID from camera-1 input async api - * @tc.desc : get camera ID from camera-1 input async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_CAMERA_ID_CAMINPUT1_TC_43', 0, async function (done) { - camera1Input.getCameraId(async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT1_TC_43 data is not null || undefined"); - var CameraId1 = data; - expect(true).assertTrue(); - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT1_TC_43 PASSED with CameraID : " + CameraId1); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT1_TC_43 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT1_TC_43 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44 - * @tc.name : get camera ID from camera-1 input promise api - * @tc.desc : get camera ID from camera-1 input promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44', 0, async function (done) { - var camera1IdPromise = await camera1InputPromise.getCameraId(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44 camera1IdPromise: " + JSON.stringify(camera1IdPromise)); - if (camera1IdPromise != null && camera1IdPromise != undefined) { - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44 camera1IdPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44 PASSED" + camera1IdPromise); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44 FAILED"); - } - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT1_TC_44 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045 - * @tc.name : Create camerainput from camera-1 cameraposition & cameratype async api - * @tc.desc : Create camerainput from camera-1 cameraposition & cameratype async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045--------------"); - cameraManager.createCameraInput(camerasArray[1].cameraPosition, camerasArray[1].cameraType, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045 data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_045 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046 - * @tc.name : Create camerainput from camera-1 cameraposition & cameratype promise api - * @tc.desc : Create camerainput from camera-1 cameraposition & cameratype promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046--------------"); - var cameraInputPromise = await cameraManager.createCameraInput(camerasArray[1].cameraPosition, camerasArray[1].cameraType); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046 cameraInputPromise: " + JSON.stringify(cameraInputPromise)); - if (cameraInputPromise != null && cameraInputPromise != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046 cameraInputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_046 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_VIDEO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_047 - * @tc.name : Get supported preview formats from camera-1 camerainput async api - * @tc.desc : Get supported preview formats from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_047', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_047--------------"); - camera1InputPromise.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_047 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_047 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_047 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_047 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_047 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_047 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048 - * @tc.name : Get supported preview formats from camera-1 camerainput promise api - * @tc.desc : Get supported preview formats from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048--------------"); - var cam1FormatPromise = await camera1InputPromise.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048: " + JSON.stringify(cam1FormatPromise)); - if (cam1FormatPromise != null && cam1FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048 is not null || undefined"); - for (var i = 0; i < cam1FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048 cam1FormatPromise: " + cam1FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_048 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 - * @tc.name : Get supported video formats from camera-1 camerainput async api - * @tc.desc : Get supported video formats from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049--------------"); - camera1InputPromise.getSupportedVideoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT1_TC_049 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050 - * @tc.name : Get supported video formats from camera-1 camerainput promise api - * @tc.desc : Get supported video formats from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050--------------"); - var cam1FormatPromise = await camera1InputPromise.getSupportedVideoFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050: " + JSON.stringify(cam1FormatPromise)); - if (cam1FormatPromise != null && cam1FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050 is not null || undefined"); - for (var i = 0; i < cam1FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050 cam1FormatPromise: " + cam1FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT1_TC_050 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 - * @tc.name : Get supported sizes using camera-1 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-1 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051--------------"); - camera1InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_051 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 - * @tc.name : Get supported sizes using camera-1 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-1 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052--------------"); - var sizeArrayPromise = await camera1InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_052 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_053 - * @tc.name : Get supported photo format from camera-1 camerainput async api - * @tc.desc : Get supported photo format from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_053', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_053--------------"); - camera1InputPromise.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_053 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_053 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_053 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_053 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_053 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_053 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054 - * @tc.name : Get supported photo format from camera-1 camerainput promise api - * @tc.desc : Get supported photo format from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054--------------"); - var cam1FormatPromise = await camera1InputPromise.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054: " + JSON.stringify(cam1FormatPromise)); - if (cam1FormatPromise != null && cam1FormatPromise.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054 is not null || undefined"); - for (var i = 0; i < cam1FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054 cam1FormatPromise: " + cam1FormatPromise[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_054 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 - * @tc.name : Get supported sizes from camera-1 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-1 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055--------------"); - camera1InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_055 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056 - * @tc.name : Get supported sizes from camera-1 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-1 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056--------------"); - var sizeArrayPromise = await camera1InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_056 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION BACK & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057 - * @tc.name : Create camerainput from camera-1 cameraposition back & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-1 cameraposition back & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057 data is not null || undefined"); - camera1InputPosBack = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_057 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058 - * @tc.name : Create camerainput from camera-1 cameraposition back & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-1 cameraposition back & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058--------------"); - camera1InputPromisePosBack = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058 camera1InputPromisePosBack: " + JSON.stringify(camera1InputPromisePosBack)); - if (camera1InputPromisePosBack != null && camera1InputPromisePosBack != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058 camera1InputPromisePosBack is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_058 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_059 - * @tc.name : Get supported preview formats from camera-1 camerainput async api - * @tc.desc : Get supported preview formats from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_059', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_059--------------"); - camera1InputPromisePosBack.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_059 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_059 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_059 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_059 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_059 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_059 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060 - * @tc.name : Get supported preview formats from camera-1 camerainput promise api - * @tc.desc : Get supported preview formats from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060--------------"); - var cam1FormatPromisePosBack = await camera1InputPromisePosBack.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060: " + JSON.stringify(cam1FormatPromisePosBack)); - if (cam1FormatPromisePosBack != null && cam1FormatPromisePosBack.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060 is not null || undefined"); - for (var i = 0; i < cam1FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060 cam1FormatPromisePosBack: " + cam1FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_060 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 - * @tc.name : Get supported sizes using camera-1 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-1 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061--------------"); - camera1InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_061 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 - * @tc.name : Get supported sizes using camera-1 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-1 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062--------------"); - var sizeArrayPromise = await camera1InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_062 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_063 - * @tc.name : Get supported photo format from camera-1 camerainput async api - * @tc.desc : Get supported photo format from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_063', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_063--------------"); - camera1InputPromisePosBack.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_063 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_063 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_063 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_063 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_063 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_063 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064 - * @tc.name : Get supported photo format from camera-1 camerainput promise api - * @tc.desc : Get supported photo format from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064--------------"); - var cam1FormatPromisePosBack = await camera1InputPromisePosBack.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064: " + JSON.stringify(cam1FormatPromisePosBack)); - if (cam1FormatPromisePosBack != null && cam1FormatPromisePosBack.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064 is not null || undefined"); - for (var i = 0; i < cam1FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064 cam1FormatPromisePosBack: " + cam1FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_064 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 - * @tc.name : Get supported sizes from camera-1 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-1 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065--------------"); - camera1InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_065 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066 - * @tc.name : Get supported sizes from camera-1 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-1 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066--------------"); - var sizeArrayPromise = await camera1InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_066 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION FRONT & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067 - * @tc.name : Create camerainput from camera-1 cameraposition front & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-1 cameraposition front & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067 data is not null || undefined"); - camera1InputPosFront = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_067 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068 - * @tc.name : Create camerainput from camera-1 cameraposition front & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-1 cameraposition front & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068--------------"); - camera1InputPromisePosFront = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068 camera1InputPromisePosFront: " + JSON.stringify(camera1InputPromisePosFront)); - if (camera1InputPromisePosFront != null && camera1InputPromisePosFront != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068 camera1InputPromisePosFront is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_068 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_069 - * @tc.name : Get supported preview formats from camera-1 camerainput async api - * @tc.desc : Get supported preview formats from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_069', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_069--------------"); - camera1InputPromisePosFront.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_069 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_069 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_069 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_069 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_069 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_069 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070 - * @tc.name : Get supported preview formats from camera-1 camerainput promise api - * @tc.desc : Get supported preview formats from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070--------------"); - var cam1FormatPromisePosFront = await camera1InputPromisePosFront.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070: " + JSON.stringify(cam1FormatPromisePosFront)); - if (cam1FormatPromisePosFront != null && cam1FormatPromisePosFront.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070 is not null || undefined"); - for (var i = 0; i < cam1FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070 cam1FormatPromisePosFront: " + cam1FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_070 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 - * @tc.name : Get supported sizes using camera-1 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-1 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071--------------"); - camera1InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_071 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 - * @tc.name : Get supported sizes using camera-1 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-1 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072--------------"); - var sizeArrayPromise = await camera1InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_072 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_073 - * @tc.name : Get supported photo format from camera-1 camerainput async api - * @tc.desc : Get supported photo format from camera-1 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_073', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_073--------------"); - camera1InputPromisePosFront.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_073 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_073 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_073 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_073 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_073 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_073 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074 - * @tc.name : Get supported photo format from camera-1 camerainput promise api - * @tc.desc : Get supported photo format from camera-1 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074--------------"); - var cam1FormatPromisePosFront = await camera1InputPromisePosFront.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074: " + JSON.stringify(cam1FormatPromisePosFront)); - if (cam1FormatPromisePosFront != null && cam1FormatPromisePosFront.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074 is not null || undefined"); - for (var i = 0; i < cam1FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074 cam1FormatPromisePosFront: " + cam1FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_074 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 - * @tc.name : Get supported sizes from camera-1 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-1 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075--------------"); - camera1InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_075 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076 - * @tc.name : Get supported sizes from camera-1 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-1 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076--------------"); - var sizeArrayPromise = await camera1InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_076 ends here"); - console.info("--------------CAMERA-1 ENDS HERE--------------"); - await sleep(1000); - done(); - }) - - /*CAMERA-2 Scripts*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_TC_077 - * @tc.name : Create camerainput from camera-2 cameraId async api - * @tc.desc : Create camerainput from camera-2 cameraId async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_TC_077', 0, async function (done) { - console.info("--------------CAMERA-2 STARTS HERE--------------"); - console.info("--------------CREATE_CAMERA_INPUT_TC_077--------------"); - cameraManager.createCameraInput(camerasArray[2].cameraId, async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_077 data is not null || undefined"); - camera2Input = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_077 PASSED with CameraID :" + camerasArray[2].cameraId); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_077 FAILED: " + err.message); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_077 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_PROMISE_TC_078 - * @tc.name : Create camerainput from camera-2 cameraId promise api - * @tc.desc : Create camerainput from camera-2 cameraId promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_PROMISE_TC_078', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_PROMISE_TC_078--------------"); - camera2InputPromise = await cameraManager.createCameraInput(camerasArray[2].cameraId); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_078 camera2InputPromise: " + JSON.stringify(camera2InputPromise)); - if (camera2InputPromise != null && camera2InputPromise != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_078 camera2InputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_078 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_078 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_078 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_CAMERA_ID_CAMINPUT2_TC_079 - * @tc.name : get camera ID from camera-2 input async api - * @tc.desc : get camera ID from camera-2 input async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_CAMERA_ID_CAMINPUT2_TC_079', 0, async function (done) { - camera2Input.getCameraId(async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT2_TC_079 data is not null || undefined"); - var CameraId2 = data; - expect(true).assertTrue(); - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT2_TC_079 PASSED with CameraID : " + CameraId2); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT2_TC_079 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT2_TC_079 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080 - * @tc.name : get camera ID from camera-2 input promise api - * @tc.desc : get camera ID from camera-2 input promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080', 0, async function (done) { - var camera2IdPromise = await camera2InputPromise.getCameraId(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080 camera2IdPromise: " + JSON.stringify(camera2IdPromise)); - if (camera2IdPromise != null && camera2IdPromise != undefined) { - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080 camera2IdPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080 PASSED" + camera2IdPromise); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080 FAILED"); - } - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT2_TC_080 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081 - * @tc.name : Create camerainput from camera-2 cameraposition & cameratype async api - * @tc.desc : Create camerainput from camera-2 cameraposition & cameratype async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081--------------"); - cameraManager.createCameraInput(camerasArray[2].cameraPosition, camerasArray[2].cameraType, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081 data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_081 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082 - * @tc.name : Create camerainput from camera-2 cameraposition & cameratype promise api - * @tc.desc : Create camerainput from camera-2 cameraposition & cameratype promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082--------------"); - var cameraInputPromise = await cameraManager.createCameraInput(camerasArray[2].cameraPosition, camerasArray[2].cameraType); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082 cameraInputPromise: " + JSON.stringify(cameraInputPromise)); - if (cameraInputPromise != null && cameraInputPromise != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082 cameraInputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_082 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_VIDEO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_083 - * @tc.name : Get supported preview formats from camera-2 camerainput async api - * @tc.desc : Get supported preview formats from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_083', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_083--------------"); - camera2InputPromise.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_083 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_083 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_083 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_083 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_083 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_083 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084 - * @tc.name : Get supported preview formats from camera-2 camerainput promise api - * @tc.desc : Get supported preview formats from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084--------------"); - var cam2FormatPromise = await camera2InputPromise.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084: " + JSON.stringify(cam2FormatPromise)); - if (cam2FormatPromise != null && cam2FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084 is not null || undefined"); - for (var i = 0; i < cam2FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084 cam2FormatPromise: " + cam2FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_084 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 - * @tc.name : Get supported video formats from camera-2 camerainput async api - * @tc.desc : Get supported video formats from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85--------------"); - camera2InputPromise.getSupportedVideoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT2_TC_85 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086 - * @tc.name : Get supported video formats from camera-2 camerainput promise api - * @tc.desc : Get supported video formats from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086--------------"); - var cam2FormatPromise = await camera2InputPromise.getSupportedVideoFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086: " + JSON.stringify(cam2FormatPromise)); - if (cam2FormatPromise != null && cam2FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086 is not null || undefined"); - for (var i = 0; i < cam2FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086 cam2FormatPromise: " + cam2FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT2_TC_086 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 - * @tc.name : Get supported sizes using camera-2 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-2 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087--------------"); - camera2InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_087 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 - * @tc.name : Get supported sizes using camera-2 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-2 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088--------------"); - var sizeArrayPromise = await camera2InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_088 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_089 - * @tc.name : Get supported photo format from camera-2 camerainput async api - * @tc.desc : Get supported photo format from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_089', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_089--------------"); - camera2InputPromise.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_089 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_089 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_089 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_089 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_089 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_089 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090 - * @tc.name : Get supported photo format from camera-2 camerainput promise api - * @tc.desc : Get supported photo format from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090--------------"); - var cam2FormatPromise = await camera2InputPromise.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090: " + JSON.stringify(cam2FormatPromise)); - if (cam2FormatPromise != null && cam2FormatPromise.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090 is not null || undefined"); - for (var i = 0; i < cam2FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090 cam2FormatPromise: " + cam2FormatPromise[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_090 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 - * @tc.name : Get supported sizes from camera-2 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-2 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091--------------"); - camera2InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_091 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092 - * @tc.name : Get supported sizes from camera-2 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-2 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092--------------"); - var sizeArrayPromise = await camera2InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_092 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION BACK & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093 - * @tc.name : Create camerainput from camera-2 cameraposition back & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-2 cameraposition back & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093 data is not null || undefined"); - camera2InputPosBack = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_093 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094 - * @tc.name : Create camerainput from camera-2 cameraposition back & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-2 cameraposition back & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094--------------"); - camera2InputPromisePosBack = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094 camera2InputPromisePosBack: " + JSON.stringify(camera2InputPromisePosBack)); - if (camera2InputPromisePosBack != null && camera2InputPromisePosBack != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094 camera2InputPromisePosBack is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_094 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_VIDEO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_095 - * @tc.name : Get supported preview formats from camera-2 camerainput async api - * @tc.desc : Get supported preview formats from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_095', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_095--------------"); - camera2InputPromisePosBack.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_095 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_095 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_095 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_095 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_095 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_095 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096 - * @tc.name : Get supported preview formats from camera-2 camerainput promise api - * @tc.desc : Get supported preview formats from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096--------------"); - var cam2FormatPromisePosBack = await camera2InputPromisePosBack.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096: " + JSON.stringify(cam2FormatPromisePosBack)); - if (cam2FormatPromisePosBack != null && cam2FormatPromisePosBack.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096 is not null || undefined"); - for (var i = 0; i < cam2FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096 cam2FormatPromisePosBack: " + cam2FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_096 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 - * @tc.name : Get supported sizes using camera-2 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-2 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097--------------"); - camera2InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_097 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 - * @tc.name : Get supported sizes using camera-2 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-2 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098--------------"); - var sizeArrayPromise = await camera2InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_098 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_099 - * @tc.name : Get supported photo format from camera-2 camerainput async api - * @tc.desc : Get supported photo format from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_099', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_099--------------"); - camera2InputPromisePosBack.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_099 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_099 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_099 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_099 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_099 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_099 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100 - * @tc.name : Get supported photo format from camera-2 camerainput promise api - * @tc.desc : Get supported photo format from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100--------------"); - var cam2FormatPromisePosBack = await camera2InputPromisePosBack.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100: " + JSON.stringify(cam2FormatPromisePosBack)); - if (cam2FormatPromisePosBack != null && cam2FormatPromisePosBack.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100 is not null || undefined"); - for (var i = 0; i < cam2FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100 cam2FormatPromisePosBack: " + cam2FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_100 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 - * @tc.name : Get supported sizes from camera-2 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-2 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101--------------"); - camera2InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_101 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102 - * @tc.name : Get supported sizes from camera-2 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-2 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102--------------"); - var sizeArrayPromise = await camera2InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_102 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION FRONT & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103 - * @tc.name : Create camerainput from camera-2 cameraposition front & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-2 cameraposition front & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103 data is not null || undefined"); - camera2InputPosFront = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_103 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104 - * @tc.name : Create camerainput from camera-2 cameraposition front & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-2 cameraposition front & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104--------------"); - camera2InputPromisePosFront = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104 camera2InputPromisePosFront: " + JSON.stringify(camera2InputPromisePosFront)); - if (camera2InputPromisePosFront != null && camera2InputPromisePosFront != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104 camera2InputPromisePosFront is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_104 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_105 - * @tc.name : Get supported preview formats from camera-2 camerainput async api - * @tc.desc : Get supported preview formats from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_105', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_105--------------"); - camera2InputPromisePosFront.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_105 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_105 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_105 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_105 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_105 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_105 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106 - * @tc.name : Get supported preview formats from camera-2 camerainput promise api - * @tc.desc : Get supported preview formats from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106--------------"); - var cam2FormatPromisePosFront = await camera2InputPromisePosFront.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106: " + JSON.stringify(cam2FormatPromisePosFront)); - if (cam2FormatPromisePosFront != null && cam2FormatPromisePosFront.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106 is not null || undefined"); - for (var i = 0; i < cam2FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106 cam2FormatPromisePosFront: " + cam2FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_106 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 - * @tc.name : Get supported sizes using camera-2 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-2 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107--------------"); - camera2InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_107 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 - * @tc.name : Get supported sizes using camera-2 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-2 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108--------------"); - var sizeArrayPromise = await camera2InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_108 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_109 - * @tc.name : Get supported photo format from camera-2 camerainput async api - * @tc.desc : Get supported photo format from camera-2 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_109', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_109--------------"); - camera2InputPromisePosFront.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_109 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_109 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_109 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_109 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_109 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_109 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110 - * @tc.name : Get supported photo format from camera-2 camerainput promise api - * @tc.desc : Get supported photo format from camera-2 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110--------------"); - var cam2FormatPromisePosFront = await camera2InputPromisePosFront.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110: " + JSON.stringify(cam2FormatPromisePosFront)); - if (cam2FormatPromisePosFront != null && cam2FormatPromisePosFront.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110 is not null || undefined"); - for (var i = 0; i < cam2FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110 cam2FormatPromisePosFront: " + cam2FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_110 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 - * @tc.name : Get supported sizes from camera-2 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-2 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_013', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111--------------"); - camera2InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_111 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112 - * @tc.name : Get supported sizes from camera-2 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-2 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112--------------"); - var sizeArrayPromise = await camera2InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_112 ends here"); - console.info("--------------CAMERA-2 ENDS HERE--------------"); - await sleep(1000); - done(); - }) - - /*CAMERA-3 Scripts*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_TC_113 - * @tc.name : Create camerainput from camera-3 cameraId async api - * @tc.desc : Create camerainput from camera-3 cameraId async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_TC_113', 0, async function (done) { - console.info("--------------CAMERA-3 STARTS HERE--------------"); - console.info("--------------CREATE_CAMERA_INPUT_TC_113--------------"); - cameraManager.createCameraInput(camerasArray[3].cameraId, async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_113 data is not null || undefined"); - camera3Input = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_113 PASSED with CameraID :" + camerasArray[3].cameraId); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_113 FAILED: " + err.message); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_TC_113 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_PROMISE_TC_114 - * @tc.name : Create camerainput from camera-3 cameraId promise api - * @tc.desc : Create camerainput from camera-3 cameraId promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_PROMISE_TC_114', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_PROMISE_TC_114--------------"); - camera3InputPromise = await cameraManager.createCameraInput(camerasArray[3].cameraId); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_114 camera3InputPromise: " + JSON.stringify(camera3InputPromise)); - if (camera3InputPromise != null && camera3InputPromise != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_114 camera3InputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_114 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_114 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_PROMISE_TC_114 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_CAMERA_ID_CAMINPUT3_TC_115 - * @tc.name : get camera ID from camera-3 input async api - * @tc.desc : get camera ID from camera-3 input async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_CAMERA_ID_CAMINPUT3_TC_115', 0, async function (done) { - camera3Input.getCameraId(async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT3_TC_115 data is not null || undefined"); - var CameraId3 = data; - expect(true).assertTrue(); - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT3_TC_115 PASSED with CameraID : " + CameraId3); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT3_TC_115 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_CAMERA_ID_CAMINPUT3_TC_115 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116 - * @tc.name : get camera ID from camera-3 input promise api - * @tc.desc : get camera ID from camera-3 input promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116', 0, async function (done) { - var camera3IdPromise = await camera3InputPromise.getCameraId(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116 camera3IdPromise: " + JSON.stringify(camera3IdPromise)); - if (camera3IdPromise != null && camera3IdPromise != undefined) { - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116 camera3IdPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116 PASSED" + camera3IdPromise); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116 FAILED"); - } - console.info(TAG + "Entering GET_CAMERA_ID_PROMISE_CAMINPUT3_TC_116 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117 - * @tc.name : Create camerainput from camera-3 cameraposition & cameratype async api - * @tc.desc : Create camerainput from camera-3 cameraposition & cameratype async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117--------------"); - cameraManager.createCameraInput(camerasArray[3].cameraPosition, camerasArray[3].cameraType, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117 data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_TC_117 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118 - * @tc.name : Create camerainput from camera-3 cameraposition & cameratype promise api - * @tc.desc : Create camerainput from camera-3 cameraposition & cameratype promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118--------------"); - var cameraInputPromise = await cameraManager.createCameraInput(camerasArray[3].cameraPosition, camerasArray[3].cameraType); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118 cameraInputPromise: " + JSON.stringify(cameraInputPromise)); - if (cameraInputPromise != null && cameraInputPromise != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118 cameraInputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POSITION_TYPE_PROMISE_TC_118 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_VIDEO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_119 - * @tc.name : Get supported preview formats from camera-3 camerainput async api - * @tc.desc : Get supported preview formats from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_119', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_119--------------"); - camera3InputPromise.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_119 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_119 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_119 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_119 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_119 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_119 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120 - * @tc.name : Get supported preview formats from camera-3 camerainput promise api - * @tc.desc : Get supported preview formats from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120--------------"); - var cam3FormatPromise = await camera3InputPromise.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120: " + JSON.stringify(cam3FormatPromise)); - if (cam3FormatPromise != null && cam3FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120 is not null || undefined"); - for (var i = 0; i < cam3FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120 cam3FormatPromise: " + cam3FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_120 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121--------------"); - camera3InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 - * @tc.name : Get supported video formats from camera-3 camerainput async api - * @tc.desc : Get supported video formats from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122--------------"); - camera3InputPromise.getSupportedVideoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_CAMINPUT3_TC_122 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123 - * @tc.name : Get supported video formats from camera-3 camerainput promise api - * @tc.desc : Get supported video formats from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123', 0, async function (done) { - console.info("--------------GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123--------------"); - var cam3FormatPromise = await camera3InputPromise.getSupportedVideoFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123: " + JSON.stringify(cam3FormatPromise)); - if (cam3FormatPromise != null && cam3FormatPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123 is not null || undefined"); - for (var i = 0; i < cam3FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123 cam3FormatPromise: " + cam3FormatPromise[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_VIDEO_FORMATS_PROMISE_CAMINPUT3_TC_123 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121--------------"); - camera3InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_121 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125--------------"); - var sizeArrayPromise = await camera3InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_125 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_126 - * @tc.name : Get supported photo format from camera-3 camerainput async api - * @tc.desc : Get supported photo format from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_126', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_126--------------"); - camera3InputPromise.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_126 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_126 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_126 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_126 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_126 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_126 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127 - * @tc.name : Get supported photo format from camera-3 camerainput promise api - * @tc.desc : Get supported photo format from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127--------------"); - var cam3FormatPromise = await camera3InputPromise.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127: " + JSON.stringify(cam3FormatPromise)); - if (cam3FormatPromise != null && cam3FormatPromise.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127 is not null || undefined"); - for (var i = 0; i < cam3FormatPromise.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127 cam3FormatPromise: " + cam3FormatPromise[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_127 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 - * @tc.name : Get supported sizes from camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128--------------"); - camera3InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_128 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129 - * @tc.name : Get supported sizes from camera-3 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-3 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129--------------"); - var sizeArrayPromise = await camera3InputPromise.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_129 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION BACK & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130 - * @tc.name : Create camerainput from camera-3 cameraposition back & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-3 cameraposition back & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130 data is not null || undefined"); - camera3InputPosBack = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_TC_130 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131 - * @tc.name : Create camerainput from camera-3 cameraposition back & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-3 cameraposition back & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131--------------"); - camera3InputPromisePosBack = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_BACK, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131 camera3InputPromisePosBack: " + JSON.stringify(camera3InputPromisePosBack)); - if (camera3InputPromisePosBack != null && camera3InputPromisePosBack != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131 camera3InputPromisePosBack is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_BACK_TYPE_UNSPECIFIED_PROMISE_TC_131 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_132 - * @tc.name : Get supported preview formats from camera-3 camerainput async api - * @tc.desc : Get supported preview formats from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_132', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_132--------------"); - camera3InputPromisePosBack.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_132 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_132 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_132 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_132 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_132 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_132 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133 - * @tc.name : Get supported preview formats from camera-3 camerainput promise api - * @tc.desc : Get supported preview formats from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133--------------"); - var cam3FormatPromisePosBack = await camera3InputPromisePosBack.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133: " + JSON.stringify(cam3FormatPromisePosBack)); - if (cam3FormatPromisePosBack != null && cam3FormatPromisePosBack.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133 is not null || undefined"); - for (var i = 0; i < cam3FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133 cam3FormatPromisePosBack: " + cam3FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_133 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134--------------"); - camera3InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_134 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135--------------"); - var sizeArrayPromise = await camera3InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_135 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_136 - * @tc.name : Get supported photo format from camera-3 camerainput async api - * @tc.desc : Get supported photo format from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_136', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_136--------------"); - camera3InputPromisePosBack.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_136 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_136 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_136 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_136 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_136 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_136 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137 - * @tc.name : Get supported photo format from camera-3 camerainput promise api - * @tc.desc : Get supported photo format from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137--------------"); - var cam3FormatPromisePosBack = await camera3InputPromisePosBack.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137: " + JSON.stringify(cam3FormatPromisePosBack)); - if (cam3FormatPromisePosBack != null && cam3FormatPromisePosBack.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137 is not null || undefined"); - for (var i = 0; i < cam3FormatPromisePosBack.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137 cam3FormatPromisePosBack: " + cam3FormatPromisePosBack[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_137 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 - * @tc.name : Get supported sizes from camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138--------------"); - camera3InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_138 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139 - * @tc.name : Get supported sizes from camera-3 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-3 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139--------------"); - var sizeArrayPromise = await camera3InputPromisePosBack.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_139 ends here"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION FRONT & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140 - * @tc.name : Create camerainput from camera-3 cameraposition front & cameratype unspecified async api - * @tc.desc : Create camerainput from camera-3 cameraposition front & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140 data is not null || undefined"); - camera3InputPosFront = data; - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_TC_140 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141 - * @tc.name : Create camerainput from camera-3 cameraposition front & cameratype unspecified promise api - * @tc.desc : Create camerainput from camera-3 cameraposition front & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141--------------"); - camera3InputPromisePosFront = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_FRONT, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141 camera3InputPromisePosFront: " + JSON.stringify(camera3InputPromisePosFront)); - if (camera3InputPromisePosFront != null && camera3InputPromisePosFront != undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141 camera3InputPromisePosFront is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_FRONT_TYPE_UNSPECIFIED_PROMISE_TC_141 ends here"); - await sleep(1000); - done(); - }) - - /*GET_SUPPORTED_PREVIEW_PHOTO_FORMATS_SIZE_TC*/ - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_TC_142 - * @tc.name : Get supported preview formats from camera-3 camerainput async api - * @tc.desc : Get supported preview formats from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_TC_142', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_TC_142--------------"); - camera3InputPromisePosFront.getSupportedPreviewFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_142 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_142 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_142 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_142 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_142 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_TC_142 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143 - * @tc.name : Get supported preview formats from camera-3 camerainput promise api - * @tc.desc : Get supported preview formats from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143--------------"); - var cam3FormatPromisePosFront = await camera3InputPromisePosFront.getSupportedPreviewFormats(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143: " + JSON.stringify(cam3FormatPromisePosFront)); - if (cam3FormatPromisePosFront != null && cam3FormatPromisePosFront.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143 is not null || undefined"); - for (var i = 0; i < cam3FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143 cam3FormatPromisePosFront: " + cam3FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPPORTED_PREVIEW_FORMATS_PROMISE_TC_143 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144--------------"); - camera3InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_TC_144 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 - * @tc.name : Get supported sizes using camera-3 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes using camera-3 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145--------------"); - var sizeArrayPromise = await camera3InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_YCRCb_420_SP); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 sizeArrayPromise: "); - if (sizeArrayPromise != null && sizeArrayPromise.length > 0) { - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 size0ArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 size0ArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 PASSED"); - } else { - expect().assertFail(); - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 FAILED"); - } - console.info("CameraModuleTest: Entering GET_SUPP_SIZES_CAMERA_FORMAT_YCRCb_420_SP_PROMISE_TC_145 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_TC_146 - * @tc.name : Get supported photo format from camera-3 camerainput async api - * @tc.desc : Get supported photo format from camera-3 camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_TC_146', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_TC_146--------------"); - camera3InputPromisePosFront.getSupportedPhotoFormats(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_146 success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_146 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_146 cameraFormat: " + data[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_146 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_146 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_TC_146 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147 - * @tc.name : Get supported photo format from camera-3 camerainput promise api - * @tc.desc : Get supported photo format from camera-3 camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147', 0, async function (done) { - console.info("--------------GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147--------------"); - var cam3FormatPromisePosFront = await camera3InputPromisePosFront.getSupportedPhotoFormats(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147: " + JSON.stringify(cam3FormatPromisePosFront)); - if (cam3FormatPromisePosFront != null && cam3FormatPromisePosFront.length > 0) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147 is not null || undefined"); - for (var i = 0; i < cam3FormatPromisePosFront.length; i++) { - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147 cam3FormatPromisePosFront: " + cam3FormatPromisePosFront[i]); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147 FAILED"); - } - console.info(TAG + "Entering GET_SUPPORTED_PHOTO_FORMATS_PROMISE_TC_147 ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 - * @tc.name : Get supported sizes from camera-3 cameraformat & camerainput async api - * @tc.desc : Get supported sizes from camera-3 cameraformat & camerainput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148--------------"); - camera3InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG, async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 success"); - if (data != null || data.length > 0) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 data is not null || undefined"); - for (var i = 0; i < data.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 sizeArray: width * height - " + data[i].width + " * " + data[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 FAILED: " + err.message); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_TC_148 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149 - * @tc.name : Get supported sizes from camera-3 cameraformat & camerainput promise api - * @tc.desc : Get supported sizes from camera-3 cameraformat & camerainput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149', 0, async function (done) { - console.info("--------------GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149--------------"); - var sizeArrayPromise = await camera3InputPromisePosFront.getSupportedSizes(cameraObj.CameraFormat.CAMERA_FORMAT_JPEG); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149: "); - if (sizeArrayPromise != null && sizeArrayPromise != undefined) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149 sizeArrayPromise is not null || undefined"); - for (var i = 0; i < sizeArrayPromise.length; i++) { - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149 sizeArrayPromise: width * height - " + sizeArrayPromise[i].width + " * " + sizeArrayPromise[i].height); - } - expect(true).assertTrue(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149 FAILED"); - } - console.info(TAG + "Entering GET_SUPP_SIZES_CAMERA_FORMAT_JPEG_PROMISE_TC_149 ends here"); - console.info("--------------CAMERA-3 ENDS HERE--------------"); - await sleep(1000); - done(); - }) - - /*CREATE CAMERAINPUT WITH POSITION UNSPECIFIED & TYPE UNSPECIFIED*/ - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 - * @tc.name : Create camerainput from cameraposition unspecified & cameratype unspecified async api - * @tc.desc : Create camerainput from cameraposition unspecified & cameratype unspecified async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150--------------"); - cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_UNSPECIFIED, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 success: "); - if (data == undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 data is null || undefined"); - var camInput = data; - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 camInput: " + JSON.stringify(camInput)); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 PASSED"); - } - } else { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 FAILED: " + err.message); - expect().assertFail(); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_TC_150 ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151 - * @tc.name : Create camerainput from cameraposition unspecified & cameratype unspecified promise api - * @tc.desc : Create camerainput from cameraposition unspecified & cameratype unspecified promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151', 0, async function (done) { - console.info("--------------CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151--------------"); - var camInputPromise = await cameraManager.createCameraInput(cameraObj.CameraPosition.CAMERA_POSITION_UNSPECIFIED, cameraObj.CameraType.CAMERA_TYPE_UNSPECIFIED); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151 camInputPromise: " + JSON.stringify(camInputPromise)); - if (camInputPromise == undefined) { - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151 camInputPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151 PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151 FAILED"); - } - console.info(TAG + "Entering CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_UNSPECIFIED_PROMISE_TC_151 ends here"); - await sleep(1000); - done(); - }) - /*CREATE CAMERAINPUT WITH POSITION UNSPECIFIED & TYPE WIDE ANGLE*/ /** * @tc.number : CREATE_CAMERA_INPUT_POS_UNSPECIFIED_TYPE_WIDE_ANGLE_TC_152 diff --git a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoAsync.test.ets b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoAsync.test.ets index b4022df25946b90541de0f53a2334cd419401bc0..166153287cc1df11f0f2fa36e8a869a97728fedd 100644 --- a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoAsync.test.ets +++ b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoAsync.test.ets @@ -1112,70 +1112,7 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_OPEN - * @tc.name : set flash mode open camera0 api - * @tc.desc : set flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_OPEN, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN FAILED" + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_OPEN - * @tc.name : get flash mode open camera0 api - * @tc.desc : get flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_OPEN to operate"); - camera0Input.getFlashMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FLASH_MODE_OPEN success"); - if (data == 1) { - console.info(TAG + "GET_FLASH_MODE_OPEN data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_OPEN PASSED"); - - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_OPEN FAILED" + err.message); - console.info(TAG + "GET_FLASH_MODE_OPEN ends here"); - } - await sleep(1000); - done(); - - }) - await sleep(1000); - done(); - }) - + /** * @tc.number : IS_FLASH_MODE_ALWAYS_OPEN_SUPPORTED * @tc.name : check if flash mode always open is supported-camera0Input api @@ -1207,67 +1144,7 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : set flash mode always open camera0 api - * @tc.desc : set flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN FAILED" + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : get flash mode always open camera0 api - * @tc.desc : get flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN to operate"); - camera0Input.getFlashMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN success"); - if (data == 3) { - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN data is not null || undefined: "); - expect(true).assertTrue(); - console.info(TAG + "Current FlashMode is: " + data); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN FAILED" + err.message); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) + /** * @tc.number : PHOTOOUTPUT_CAPTURE_WITHOUT_PHOTOSETTINGS @@ -1335,68 +1212,7 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_CLOSE - * @tc.name : set flash mode close camera0 api - * @tc.desc : set flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_CLOSE, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_CLOSE); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE FAILED" + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_CLOSE - * @tc.name : get flash mode close camera0 api - * @tc.desc : get flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_CLOSE to operate"); - camera0Input.getFlashMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FLASH_MODE_CLOSE success"); - if (data == 0) { - console.info(TAG + "GET_FLASH_MODE_CLOSE data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_CLOSE PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_CLOSE FAILED" + err.message); - console.info(TAG + "GET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1000) - done(); - - }) - await sleep(1000) - done() - }) + /** * @tc.number : IS_FLASH_MODE_AUTO_SUPPORTED @@ -1430,33 +1246,7 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_AUTO - * @tc.name : set flash mode auto camera0 api - * @tc.desc : set flash mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_AUTO to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_AUTO, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_AUTO SUCCESS which is not supported: "); - console.info(TAG + "Entering SET_FLASH_MODE_AUTO FAILED") - expect().assertFail(); - } else { - expect(true).assertTrue() - console.info(TAG + "Entering SET_FLASH_MODE_AUTO PASSED: " + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_AUTO ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) + /** * @tc.number : IS_FOCUS_MODE_LOCKED_SUPPORTED @@ -1489,68 +1279,6 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_LOCKED - * @tc.name : set focus mode locked camera0 api - * @tc.desc : set focus mode locked camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_LOCKED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_LOCKED); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_LOCKED - * @tc.name : get focus mode locked camera0 api - * @tc.desc : get focus mode locked camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED SUCCESS: " + data); - if (data == 0) { - console.info(TAG + "GET_FOCUS_MODE_LOCKED data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED PASSED"); - - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1000); - done(); - - }) - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_MANUAL_SUPPORTED * @tc.name : check if focus mode manual is supported-camera0Input api @@ -1582,70 +1310,6 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_MANUAL - * @tc.name : set focus mode manual camera0 api - * @tc.desc : set focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_MANUAL, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_MANUAL); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_MANUAL - * @tc.name : get focus mode manual camera0 api - * @tc.desc : get focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL SUCCESS"); - if (data == 0) { - console.info(TAG + "GET_FOCUS_MODE_MANUAL data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL PASSED"); - - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1000); - done(); - - }) - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_CONTINUOUS_SUPPORTED * @tc.name : check if focus mode continuous is supported-camera0Input api @@ -1677,70 +1341,6 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_CONTINUOUS - * @tc.name : set focus mode continuous camera0 api - * @tc.desc : set focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO); - expect(true).assertTrue() - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS PASSED") - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_CONTINUOUS - * @tc.name : get focus mode continuous camera0 api - * @tc.desc : get focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS SUCCESS"); - if (data == 1) { - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS PASSED"); - - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1000); - done(); - - }) - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_AUTO_SUPPORTED * @tc.name : check if focus mode auto is supported-camera0Input api @@ -1772,71 +1372,6 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_AUTO - * @tc.name : set focus mode auto camera0 api - * @tc.desc : set focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('SET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_AUTO, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_AUTO); - if (data != null || data != undefined) { - expect(true).assertTrue() - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO PASSED") - } - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1000); - done(); - }) - - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_AUTO - * @tc.name : get focus mode auto camera0 api - * @tc.desc : get focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO SUCCESS"); - if (data == 2) { - console.info(TAG + "GET_FOCUS_MODE_AUTO data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_AUTO PASSED"); - - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_AUTO FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1000); - done(); - - }) - await sleep(1000); - done(); - }) - /** * @tc.number : PHOTOOUTPUT_CAPTURE_WITH_PHOTOSETTINGS Rotation-0 & Quality-0 * @tc.name : Photo output capture with photosettings api @@ -1936,217 +1471,7 @@ export default function cameraJSUnitPhotoAsync(surfaceId: any) { done(); } }) - - /** - * @tc.number : GET_ZOOM_RATIO - * @tc.name : get zoom ratio camera-0 cameraId api - * @tc.desc : get zoom ratio camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_ZOOM_RATIO', 0, async function (done) { - console.info("--------------GET_ZOOM_RATIO--------------"); - camera0Input.getZoomRatioRange(async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering GET_ZOOM_RATIO data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_ZOOM_RATIO Success " + data) - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_ZOOM_RATIO FAILED: " + err.message); - } - console.info(TAG + "Entering GET_ZOOM_RATIO ends here"); - await sleep(1000); - done(); - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_1_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_1_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(1, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 1"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(1); - console.info(TAG + "SET_GET_ZOOM_1_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_1_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_2_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_2_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(2, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 2"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(2); - console.info(TAG + "SET_GET_ZOOM_2_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_2_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_3_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_3_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(3, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 3"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(3); - console.info(TAG + "SET_GET_ZOOM_3_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_3_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_4_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_4_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(4, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 4"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(4); - console.info(TAG + "SET_GET_ZOOM_4_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_4_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_5_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_5_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(5, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 5"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(5); - console.info(TAG + "SET_GET_ZOOM_5_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_5_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_6_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_6_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(6, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 6"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(6); - console.info(TAG + "SET_GET_ZOOM_6_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_6_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1000); - done(); - }) - - /** + /** * @tc.number : PHOTOOUTPUT_CAPTURE_WITH_PHOTOSETTINGS with Rotation-270 * @tc.name : Photo output capture with photosettings api * @tc.desc : Photo output capture with photosettings api diff --git a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoPromise.test.ets b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoPromise.test.ets index 4a2c0f3435cdb3d5d642983ea7c0687e8ce3268f..2ed8c673dac6e7feb56e1c7c8af70e2f7b9bceb6 100644 --- a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoPromise.test.ets +++ b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitPhotoPromise.test.ets @@ -1053,58 +1053,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_OPEN - * @tc.name : set flash mode open camera0 api - * @tc.desc : set flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN to operate"); - var SetFMOpen = await camera0InputPromise.setFlashMode(cameraObj.FlashMode.FLASH_MODE_OPEN); - console.info(TAG + "setFlashModeOPEN: " + JSON.stringify(SetFMOpen)) - if (SetFMOpen == undefined) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN FAILED"); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_OPEN - * @tc.name : get flash mode open camera0 api - * @tc.desc : get flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_OPEN to operate"); - var GetFMOpen = await camera0InputPromise.getFlashMode(); - console.info(TAG + "Entering GET_FLASH_MODE_OPEN success: " + JSON.stringify(GetFMOpen)); - if (GetFMOpen == 1) { - console.info(TAG + "GET_FLASH_MODE_OPEN data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + JSON.stringify(GetFMOpen)); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_OPEN PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_OPEN FAILED"); - console.info(TAG + "GET_FLASH_MODE_OPEN ends here"); - } - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FLASH_MODE_ALWAYS_OPEN_SUPPORTED * @tc.name : check if flash mode always open is supported-camera0Input api @@ -1131,58 +1079,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : set flash mode always open camera0 api - * @tc.desc : set flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN to operate"); - var SetFMAlwaysOpen = await camera0InputPromise.setFlashMode(cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN); - console.info(TAG + "setFlashModeOPEN: " + JSON.stringify(SetFMAlwaysOpen)) - if (SetFMAlwaysOpen == undefined) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN FAILED"); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : get flash mode always open camera0 api - * @tc.desc : get flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN to operate"); - var GetFMAlwaysOpen = await camera0InputPromise.getFlashMode(); - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN success"); - if (GetFMAlwaysOpen == 3) { - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + GetFMAlwaysOpen); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN FAILED"); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FLASH_MODE_AUTO_SUPPORTED * @tc.name : check if flash mode always open is supported-camera0Input api @@ -1267,58 +1163,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_CLOSE - * @tc.name : set flash mode close camera0 api - * @tc.desc : set flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE to operate"); - var SetFMClose = await camera0InputPromise.setFlashMode(cameraObj.FlashMode.FLASH_MODE_CLOSE); - console.info(TAG + "setFlashModeOPEN: " + JSON.stringify(SetFMClose)) - if (SetFMClose == undefined) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_CLOSE); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE FAILED"); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_CLOSE - * @tc.name : get flash mode close camera0 api - * @tc.desc : get flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_CLOSE to operate"); - var GetFMClose = await camera0InputPromise.getFlashMode(); - console.info(TAG + "Entering GET_FLASH_MODE_CLOSE success"); - if (GetFMClose == 0) { - console.info(TAG + "GET_FLASH_MODE_CLOSE data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + GetFMClose); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_CLOSE PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_CLOSE FAILED"); - console.info(TAG + "GET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1000); - done(); - }) // FOCUS promise API's /** @@ -1347,58 +1191,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_LOCKED - * @tc.name : set focus mode locked camera0 api - * @tc.desc : set focus mode locked camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED to operate"); - var SetFMLocked = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_LOCKED); - console.info(TAG + "SetFMLocked: " + JSON.stringify(SetFMLocked)) - if (SetFMLocked == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED SUCCESS, current focusmode is: " + cameraObj.FocusMode.FOCUS_MODE_LOCKED); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_LOCKED - * @tc.name : get flash mode close camera0 api - * @tc.desc : get flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED to operate"); - var GetFMLocked = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED success: " + GetFMLocked); - if (GetFMLocked == 0) { - console.info(TAG + "Current focusmode is: " + GetFMLocked); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED FAILED"); - console.info(TAG + "GET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_MANUAL_SUPPORTED * @tc.name : is focusmode manual supported @@ -1426,60 +1218,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_MANUAL - * @tc.name : set focus mode manual camera0 api - * @tc.desc : set focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('SET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL to operate"); - var setFocusManual = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_MANUAL); - console.info(TAG + "setFocusManual: " + JSON.stringify(setFocusManual)) - if (setFocusManual == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_MANUAL); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_MANUAL - * @tc.name : get focus mode manual camera0 api - * @tc.desc : get focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL to operate"); - var getfocusmodepromise = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL SUCCESS"); - if (getfocusmodepromise == 0) { - console.info(TAG + "Current FocusMode is: " + getfocusmodepromise); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL FAILED"); - console.info(TAG + "GET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_CONTINUOUS_SUPPORTED * @tc.name : check if focus mode continuous is supported-camera0Input api @@ -1506,58 +1244,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_CONTINUOUS - * @tc.name : set focus mode continuous camera0 api - * @tc.desc : set focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS to operate"); - var setFocusCont = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO); - console.info(TAG + "setFocusCont: " + JSON.stringify(setFocusCont)) - if (setFocusCont == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_CONTINUOUS - * @tc.name : get focus mode continuous camera0 api - * @tc.desc : get focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS to operate"); - var getfocusmodepromise = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS SUCCESS"); - if (getfocusmodepromise == 1) { - console.info(TAG + "Current FocusMode is: " + getfocusmodepromise); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS FAILED"); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1000); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_AUTO_SUPPORTED * @tc.name : check if focus mode auto is supported-camera0Input api @@ -1584,58 +1270,6 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_AUTO - * @tc.name : set focus mode auto camera0 api - * @tc.desc : set focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO to operate"); - var setFocusAuto = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_AUTO); - console.info(TAG + "setFocusAuto: " + JSON.stringify(setFocusAuto)) - if (setFocusAuto == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_AUTO); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_AUTO - * @tc.name : get focus mode auto camera0 api - * @tc.desc : get focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO to operate"); - var getfocusmodepromise = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO SUCCESS"); - if (getfocusmodepromise == 2) { - console.info(TAG + "Current FocusMode is: " + getfocusmodepromise); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_AUTO PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_AUTO FAILED"); - console.info(TAG + "GET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1000); - done(); - }) - /** * @tc.number : PHOTOOUTPUT_CAPTURE_WITH_PHOTOSETTINGS with Rotation-90 & Quality-1 * @tc.name : Photo output capture with photosettings api @@ -1732,188 +1366,7 @@ export default function cameraJSUnitPhotoPromise(surfaceId: any) { done(); }) - //ZOOM Function - /** - * @tc.number : GET_ZOOM_RATIO_PROMISE - * @tc.name : get zoom ratio camera-0 cameraId api promise api - * @tc.desc : get zoom ratio camera-0 cameraId api promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_ZOOM_RATIO_PROMISE', 0, async function (done) { - console.info("--------------GET_ZOOM_RATIO_PROMISE--------------"); - var getZoomRatioPromise = await camera0InputPromise.getZoomRatioRange(); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE getZoomRatioPromise: " + JSON.stringify(getZoomRatioPromise)); - if (getZoomRatioPromise != null && getZoomRatioPromise != undefined) { - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE setZoomRatioPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE success: " + JSON.stringify(getZoomRatioPromise)); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE FAILED"); - } - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE ends here"); - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_1_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_1_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(1); - console.info(TAG + "setZoomRatio success: 1"); - console.info(TAG + "getZoomRatio called") - var getpromise1 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise1); - if (getpromise1 != null && getpromise1 != undefined) { - expect(getpromise1).assertEqual(1); - console.info(TAG + "SET_GET_ZOOM_1_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_1_PROMISE FAILED"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_2_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_2_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(2); - console.info(TAG + "setZoomRatio success: 2"); - console.info(TAG + "getZoomRatio called") - var getpromise2 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise2); - if (getpromise2 != null && getpromise2 != undefined) { - expect(getpromise2).assertEqual(2); - console.info(TAG + "SET_GET_ZOOM_2_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_2_PROMISE FAILED"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_3_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_3_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(3); - console.info(TAG + "setZoomRatio success: 3"); - console.info(TAG + "getZoomRatio called") - var getpromise3 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise3); - if (getpromise3 != null && getpromise3 != undefined) { - expect(getpromise3).assertEqual(3); - console.info(TAG + "SET_GET_ZOOM_3_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_3_PROMISE FAILED"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_4_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_4_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(4); - console.info(TAG + "setZoomRatio success: 4"); - console.info(TAG + "getZoomRatio called") - var getpromise4 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise4); - if (getpromise4 != null && getpromise4 != undefined) { - expect(getpromise4).assertEqual(4); - console.info(TAG + "SET_GET_ZOOM_4_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_4_PROMISE FAILED"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_5_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_5_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(5); - console.info(TAG + "setZoomRatio success: 5"); - console.info(TAG + "getZoomRatio called") - var getpromise5 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise5); - if (getpromise5 != null && getpromise5 != undefined) { - expect(getpromise5).assertEqual(5); - console.info(TAG + "SET_GET_ZOOM_5_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_5_PROMISE FAILED"); - } - await sleep(1000); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_6_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_6_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(6); - console.info(TAG + "setZoomRatio success: 6"); - console.info(TAG + "getZoomRatio called") - var getpromise6 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise6); - if (getpromise6 != null && getpromise6 != undefined) { - expect(getpromise6).assertEqual(6); - console.info(TAG + "SET_GET_ZOOM_6_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_6_PROMISE FAILED"); - } - await sleep(1000); - done(); - }) + /** * @tc.number : PHOTOOUTPUT_CAPTURE_WITH_PHOTOSETTINGS diff --git a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoAsync.test.ets b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoAsync.test.ets index a380b12225489f71584859695c40c8ce94392af2..e02591cfc2401d4664caf79655849d49713714a9 100644 --- a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoAsync.test.ets +++ b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoAsync.test.ets @@ -424,67 +424,9 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { } }) - /** - * @tc.number : CREATE_VIDEO_OUTPUT - * @tc.name : Create videooutput async api - * @tc.desc : Create videooutput async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_VIDEO_OUTPUT', 0, async function (done) { - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT to operate') - await getvideosurface() - await sleep(2) - cameraObj.createVideoOutput(videoId, (err, data) => { - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT success') - if (data != null || data != undefined) { - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT data is not null || undefined') - videoOutput = data - expect(true).assertTrue() - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT PASSED') - } else { - expect().assertFail() - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT FAILED: ' + err.message) - } - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT ends here') - done() - }) - await sleep(1) - done() - }) + - /** - * @tc.number : VIDEO_OUTPUT_CALLBACK_ON_ERROR - * @tc.name : VideoOutput callback onerror async api - * @tc.desc : VideoOutput callback onerror async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_CALLBACK_ON_ERROR', 0, async function (done) { - if (videoOutput == null || videoOutput == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_ERROR videoOutput == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_ERROR to operate') - await sleep(1) - videoOutput.on('error', async (err, data) => { - if (!err) { - console.info(TAG + "VideoOutput Errorcallback is success") - if (data != null || data != undefined) { - console.info(TAG + "Error during videoOutput with ErrorCode: " + data.code); - expect(true).assertTrue() - } - } else { - expect().assertFail() - } - await sleep(1) - done() - }) - await sleep(1) - done(); - } - }) + /** * @tc.number : CREATE_CAPTURE_SESSION @@ -646,39 +588,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { } }) - /** - * @tc.number : ADD_OUTPUT_VIDEO - * @tc.name : AddOutput video async api - * @tc.desc : AddOutput video async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('ADD_OUTPUT_VIDEO', 0, async function (done) { - if (captureSession == null || captureSession == undefined) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO captureSession == null || undefined') - } else { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO to operate') - await sleep(1) - captureSession.addOutput(videoOutput, async (err, data) => { - if (!err) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO success') - if (data != null || data != undefined) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO data is not null || undefined') - expect(true).assertTrue() - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO PASSED') - } - } else { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO FAILED: ' + err.message) - } - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO ends here') - await sleep(1); - done() - }) - await sleep(1) - done() - } - }) + /** * @tc.number : REMOVE_INPUT_SUCCESS @@ -744,37 +654,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : REMOVE_VIDEO_OUTPUT_SUCCESS - * @tc.name : Remove video Output api - * @tc.desc : Remove video Output api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('REMOVE_VIDEO_OUTPUT_SUCCESS', 0, async function (done) { - if (captureSession == null || captureSession == undefined) { - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS captureSession == null || undefined"); - } else { - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS to operate"); - captureSession.removeOutput(videoOutput, async (err, data) => { - if (!err) { - console.info(TAG + "Entering remove video Output success"); - expect(true).assertTrue(); - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "Entering Remove video Output FAILED" + err.message); - console.info(TAG + "Entering Remove video Output ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - } - done(); - }) + /** * @tc.number : ADD_INPUT1 @@ -842,39 +722,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { } }) - /** - * @tc.number : ADD_OUTPUT_VIDEO1 - * @tc.name : AddOutput video async api - * @tc.desc : AddOutput video async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('ADD_OUTPUT_VIDEO1', 0, async function (done) { - if (captureSession == null || captureSession == undefined) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 captureSession == null || undefined') - } else { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 to operate') - await sleep(1) - captureSession.addOutput(videoOutput, (err, data) => { - if (!err) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 success') - if (data != null || data != undefined) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 data is not null || undefined') - expect(true).assertTrue() - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 PASSED') - } - } else { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 FAILED: ' + err.message) - } - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO1 ends here') - done() - }) - await sleep(1) - done() - } - }) - + /** * @tc.number : COMMIT_CONFIG * @tc.name : CommitConfig async api @@ -971,66 +819,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { } }) - /** - * @tc.number : VIDEO_OUTPUT_CALLBACK_ON_FRAME_START - * @tc.name : VideoOutput callback onframestart async api - * @tc.desc : VideoOutput callback onframestart async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_CALLBACK_ON_FRAME_START', 0, async function (done) { - if (videoOutput == null || videoOutput == undefined) { - console.info(TAG + "Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_START videoOutput == null || undefined"); - } else { - console.info(TAG + "Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_START to operate"); - videoOutput.on("frameStart", async (err, data) => { - if (!err) { - console.info(TAG + "Video frameStart Callback is success"); - if (data != null || data != undefined) { - expect(true).assertTrue(); - } - } else { - expect().assertFail() - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - } - }) - - /** - * @tc.number : VIDEO_OUTPUT_CALLBACK_ON_FRAME_END - * @tc.name : VideoOutput callback onframeend async api - * @tc.desc : VideoOutput callback onframeend async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_CALLBACK_ON_FRAME_END', 0, async function (done) { - if (videoOutput == null || videoOutput == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_END videoOutput == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_END to operate') - await sleep(1) - videoOutput.on('frameEnd', async (err, data) => { - if (!err) { - console.info(TAG + 'Video frameEnd callback is success') - if (data != null || data != undefined) { - expect(true).assertTrue() - } - } else { - expect().assertFail() - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - } - }) + /** * @tc.number : CAPTURE_SESSION_START @@ -1126,67 +915,6 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_OPEN - * @tc.name : set flash mode open camera0 api - * @tc.desc : set flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_OPEN, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN FAILED" + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_OPEN - * @tc.name : get flash mode open camera0 api - * @tc.desc : get flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_OPEN to operate"); - camera0Input.getFlashMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FLASH_MODE_OPEN success"); - if (data == 1) { - console.info(TAG + "GET_FLASH_MODE_OPEN data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_OPEN PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_OPEN FAILED" + err.message); - console.info(TAG + "GET_FLASH_MODE_OPEN ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - /** * @tc.number : IS_FLASH_MODE_ALWAYS_OPEN_SUPPORTED * @tc.name : check if flash mode always open is supported-camera0Input api @@ -1218,67 +946,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : set flash mode always open camera0 api - * @tc.desc : set flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN FAILED" + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : get flash mode always open camera0 api - * @tc.desc : get flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN to operate"); - camera0Input.getFlashMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN success"); - if (data == 3) { - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN data is not null || undefined: "); - expect(true).assertTrue(); - console.info(TAG + "Current FlashMode is: " + data); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN FAILED" + err.message); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - + /** * @tc.number : IS_FLASH_MODE_AUTO_SUPPORTED * @tc.name : check if flash mode auto is supported-camera0Input api @@ -1310,32 +978,6 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_AUTO - * @tc.name : set flash mode auto camera0 api - * @tc.desc : set flash mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_AUTO to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_AUTO, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_AUTO SUCCESS which is not supported: "); - console.info(TAG + "Entering SET_FLASH_MODE_AUTO FAILED") - expect().assertFail(); - } else { - expect(true).assertTrue() - console.info(TAG + "Entering SET_FLASH_MODE_AUTO PASSED: " + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_AUTO ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) /** * @tc.number : IS_FLASH_MODE_CLOSE_SUPPORTED @@ -1368,34 +1010,6 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_CLOSE - * @tc.name : set flash mode close camera0 api - * @tc.desc : set flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE to operate"); - camera0Input.setFlashMode(cameraObj.FlashMode.FLASH_MODE_CLOSE, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_CLOSE); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE FAILED" + err.message); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - /** * @tc.number : GET_FLASH_MODE_CLOSE * @tc.name : get flash mode close camera0 api @@ -1461,76 +1075,16 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { }) /** - * @tc.number : SET_FOCUS_MODE_LOCKED - * @tc.name : set focus mode locked camera0 api - * @tc.desc : set focus mode locked camera0 api + * @tc.number : IS_FOCUS_MODE_MANUAL_SUPPORTED + * @tc.name : check if focus mode manual is supported-camera0Input api + * @tc.desc : check if focus mode manual is supported-camera0Input api * @tc.size : MEDIUM * @tc.type : Function * @tc.level : Level 0 */ - it('SET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_LOCKED, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_LOCKED); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_LOCKED - * @tc.name : get focus mode locked camera0 api - * @tc.desc : get focus mode locked camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED SUCCESS: " + data); - if (data == 0) { - console.info(TAG + "GET_FOCUS_MODE_LOCKED data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED PASSED"); - - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : IS_FOCUS_MODE_MANUAL_SUPPORTED - * @tc.name : check if focus mode manual is supported-camera0Input api - * @tc.desc : check if focus mode manual is supported-camera0Input api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('IS_FOCUS_MODE_MANUAL_SUPPORTED', 0, async function (done) { - console.info(TAG + "Entering IS_FOCUS_MODE_MANUAL_SUPPORTED to operate"); - camera0Input.isFocusModeSupported(cameraObj.FocusMode.FOCUS_MODE_MANUAL, async (err, data) => { + it('IS_FOCUS_MODE_MANUAL_SUPPORTED', 0, async function (done) { + console.info(TAG + "Entering IS_FOCUS_MODE_MANUAL_SUPPORTED to operate"); + camera0Input.isFocusModeSupported(cameraObj.FocusMode.FOCUS_MODE_MANUAL, async (err, data) => { if (!err) { console.info(TAG + "Entering IS_FOCUS_MODE_MANUAL_SUPPORTED SUCCESS "); if (data != null || data != undefined) { @@ -1551,69 +1105,6 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_MANUAL - * @tc.name : set focus mode manual camera0 api - * @tc.desc : set focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('SET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_MANUAL, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_MANUAL); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_MANUAL - * @tc.name : get focus mode manual camera0 api - * @tc.desc : get focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL SUCCESS"); - if (data == 0) { - console.info(TAG + "GET_FOCUS_MODE_MANUAL data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1); - done(); - - }) - await sleep(1); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_CONTINUOUS_SUPPORTED * @tc.name : check if focus mode continuous is supported-camera0Input api @@ -1645,67 +1136,6 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_CONTINUOUS - * @tc.name : set focus mode continuous camera0 api - * @tc.desc : set focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO); - expect(true).assertTrue() - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS PASSED") - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_CONTINUOUS - * @tc.name : get focus mode continuous camera0 api - * @tc.desc : get focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS SUCCESS"); - if (data == 1) { - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - /** * @tc.number : IS_FOCUS_MODE_AUTO_SUPPORTED * @tc.name : check if focus mode auto is supported-camera0Input api @@ -1737,276 +1167,6 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_AUTO - * @tc.name : set focus mode auto camera0 api - * @tc.desc : set focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('SET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO to operate"); - camera0Input.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_AUTO, async (err, data) => { - if (!err) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_AUTO); - expect(true).assertTrue() - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO PASSED") - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO FAILED" + err.message); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_AUTO - * @tc.name : get focus mode auto camera0 api - * @tc.desc : get focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO to operate"); - camera0Input.getFocusMode(async (err, data) => { - if (!err) { - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO SUCCESS"); - if (data == 2) { - console.info(TAG + "GET_FOCUS_MODE_AUTO data is not null || undefined: "); - console.info(TAG + "Current FocusMode is: " + data); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_AUTO PASSED"); - } - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_AUTO FAILED" + err.message); - console.info(TAG + "GET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_ZOOM_RATIO - * @tc.name : get zoom ratio camera-0 cameraId api - * @tc.desc : get zoom ratio camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_ZOOM_RATIO', 0, async function (done) { - console.info("--------------GET_ZOOM_RATIO--------------"); - camera0Input.getZoomRatioRange(async (err, data) => { - if (!err) { - if (data != null && data != undefined) { - console.info(TAG + "Entering GET_ZOOM_RATIO data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_ZOOM_RATIO Success: " + data); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_ZOOM_RATIO FAILED: " + err.message); - } - console.info(TAG + "Entering GET_ZOOM_RATIO ends here"); - await sleep(1); - done(); - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_1_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_1_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(1, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 1"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(1); - console.info(TAG + "SET_GET_ZOOM_1_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_1_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_2_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_2_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(2, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 2"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(2); - console.info(TAG + "SET_GET_ZOOM_2_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_2_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_3_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_3_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(3, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 3"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(3); - console.info(TAG + "SET_GET_ZOOM_3_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_3_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_4_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_4_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(4, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 4"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(4); - console.info(TAG + "SET_GET_ZOOM_4_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_4_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_5_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_5_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(5, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 5"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(5); - console.info(TAG + "SET_GET_ZOOM_5_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_5_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_6_ASYNC - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_6_ASYNC', 0, async function (done) { - camera0Input.setZoomRatio(6, (err, data) => { - if (!err) { - console.info(TAG + "setZoomRatio success: 6"); - console.info(TAG + "getZoomRatio called") - camera0Input.getZoomRatio((err, data1) => { - if (!err) { - console.info(TAG + "getZoomRatio success : " + data1); - expect(data1).assertEqual(6); - console.info(TAG + "SET_GET_ZOOM_6_ASYNC PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_6_ASYNC FAILED" + err.message); - } - }) - } - }) - await sleep(1); - done(); - }) - /** * @tc.number : VIDEO_OUTPUT_START * @tc.name : VideoOutput start async api @@ -2063,35 +1223,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { done() }) - /** - * @tc.number : VIDEO_OUTPUT_STOP - * @tc.name : VideoOutput stop async api - * @tc.desc : VideoOutput stop async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_STOP', 0, async function (done) { - if (videoOutput == null || videoOutput == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP videoOutput == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP to operate') - await sleep(1) - videoOutput.stop(async (err, data) => { - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP success: ' + JSON.stringify(data)) - if (data == undefined) { - expect(true).assertTrue() - } else { - expect().assertFail() - } - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP ends here') - await sleep(1) - done() - }) - await sleep(1) - done() - } - }) + /** * @tc.number : VIDEO_RECORDER_STOP @@ -2181,39 +1313,7 @@ export default function cameraJSUnitVideoAsync(surfaceId: any) { } }) - /** - * @tc.number : VIDEOOUPUT_RELEASE_SUCCESS - * @tc.name : videooutput release api - * @tc.desc : videooutput release api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEOOUPUT_RELEASE_SUCCESS', 0, async function (done) { - if (videoOutput == null || videoOutput == undefined) { - console.info(TAG + "Entering VIDEOOUPUT_RELEASE_SUCCESS previewOutput == null || undefined"); - } else { - console.info(TAG + "Entering VIDEOOUPUT_RELEASE_SUCCESS to operate"); - videoOutput.release(async (err, data) => { - if (!err) { - console.info(TAG + "Entering videooutput.release success"); - if (data != null || data != undefined) { - console.info(TAG + "Entering videooutput.release data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering videooutput.release PASSED"); - } - } else { - expect().assertFail(); - console.info(TAG + "Entering VIDEOOUPUT_RELEASE_SUCCESS FAILED: " + err.message); - console.info(TAG + "Entering videooutput.release ends here"); - await sleep(1); - done(); - } - }) - await sleep(1); - done(); - } - }) + /** * @tc.number : PREVIEWOUPUT_RELEASE_SUCCESS diff --git a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoPromise.test.ets b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoPromise.test.ets index 31add05e0653b7f91df284cbce9bf3eba2c0f9ee..e2f17036211b3b727138e5398973b01d685d5437 100644 --- a/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoPromise.test.ets +++ b/multimedia/camera/camera_js_standard/src/main/ets/MainAbility/test/CameraJSUnitVideoPromise.test.ets @@ -395,64 +395,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { } }) - /** - * @tc.number : CREATE_VIDEO_OUTPUT_PROMISE - * @tc.name : Create videooutput promise api - * @tc.desc : Create videooutput promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('CREATE_VIDEO_OUTPUT_PROMISE', 0, async function (done) { - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT_PROMISE to operate') - await getvideosurface() - await sleep(2) - videoOutputPromise = await cameraObj.createVideoOutput(videoId) - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT_PROMISE: ' + videoOutputPromise) - if (videoOutputPromise != null && videoOutputPromise != undefined) { - expect(true).assertTrue() - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT_PROMISE PASSED') - } else { - expect(true).assertTrue() - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT_PROMISE PASSED') - } - console.info(TAG + 'Entering CREATE_VIDEO_OUTPUT_PROMISE ends here'); - await sleep(1); - done(); - }) - - /** - * @tc.number : VIDEO_OUTPUT_CALLBACK_ON_ERROR - * @tc.name : VideoOutput callback onerror async api - * @tc.desc : VideoOutput callback onerror async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_CALLBACK_ON_ERROR', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_ERROR videoOutputPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_ERROR to operate') - await sleep(1) - videoOutputPromise.on('error', async (err, data) => { - if (!err) { - console.info(TAG + 'VideoOutput Errorcallback is success') - if (data != null || data != undefined) { - console.info(TAG + "Error during videoOutput with ErrorCode: " + data.code); - expect(true).assertTrue() - } - } else { - expect().assertFail() - } - await sleep(1) - done() - }) - await sleep(1) - done(); - } - }) - /** * @tc.number : CREATE_CAPTURE_SESSION_PROMISE * @tc.name : Create capturesession promise api @@ -582,30 +524,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done() }) - /** - * @tc.number : ADD_OUTPUT_VIDEO_PROMISE - * @tc.name : AddOutput video promise api - * @tc.desc : AddOutput video promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('ADD_OUTPUT_VIDEO_PROMISE', 0, async function (done) { - if (captureSessionPromise == null || captureSessionPromise == undefined) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE captureSessionPromise == null || undefined') - } else { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE to operate') - await captureSessionPromise.addOutput(videoOutputPromise) - expect(true).assertTrue() - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE PASSED') - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE ends here') - await sleep(1) - done() - } - await sleep(1) - done() - }) - /** * @tc.number : REMOVE_INPUT_SUCCESS * @tc.name : remove input api @@ -670,38 +588,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : REMOVE_VIDEO_OUTPUT_SUCCESS - * @tc.name : Remove video Output api - * @tc.desc : Remove video Output api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('REMOVE_VIDEO_OUTPUT_SUCCESS', 0, async function (done) { - if (captureSessionPromise == null || captureSessionPromise == undefined) { - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS captureSession == null || undefined"); - } else { - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS to operate"); - const Promise = await captureSessionPromise.removeOutput(videoOutputPromise); - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS addInput success " + Promise); - if (Promise != null || Promise != undefined) { - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS addInput data is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS addInput PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS FAILED: "); - } - console.info(TAG + "Entering REMOVE_VIDEO_OUTPUT_SUCCESS ends here"); - await sleep(1); - done(); - } - await sleep(1); - done(); - }) - /** * @tc.number : ADD_INPUT_PROMISE1 * @tc.name : AddInput promise api @@ -750,30 +636,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done() }) - /** - * @tc.number : ADD_OUTPUT_VIDEO_PROMISE1 - * @tc.name : AddOutput video promise api - * @tc.desc : AddOutput video promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('ADD_OUTPUT_VIDEO_PROMISE1', 0, async function (done) { - if (captureSessionPromise == null || captureSessionPromise == undefined) { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE1 captureSessionPromise == null || undefined') - } else { - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE1 to operate') - await captureSessionPromise.addOutput(videoOutputPromise) - expect(true).assertTrue() - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE1 PASSED') - console.info(TAG + 'Entering ADD_OUTPUT_VIDEO_PROMISE1 ends here') - await sleep(1) - done() - } - await sleep(1) - done() - }) - /** * @tc.number : COMMIT_CONFIG_PROMISE * @tc.name : CommitConfig promise api @@ -859,68 +721,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { } }) - /** - * @tc.number : VIDEO_OUTPUT_CALLBACK_ON_FRAME_START - * @tc.name : VideoOutput callback onframestart async api - * @tc.desc : VideoOutput callback onframestart async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_CALLBACK_ON_FRAME_START', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_START videoOutputPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_START to operate') - await sleep(1) - videoOutputPromise.on('frameStart', async (err, data) => { - if (!err) { - console.info(TAG + "Video frameStart Callback is success"); - if (data != null || data != undefined) { - expect(true).assertTrue(); - } - } else { - expect().assertFail() - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - } - }) - - /** - * @tc.number : VIDEO_OUTPUT_CALLBACK_ON_FRAME_END - * @tc.name : VideoOutput callback onframeend async api - * @tc.desc : VideoOutput callback onframeend async api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_CALLBACK_ON_FRAME_END', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_END videoOutputPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_CALLBACK_ON_FRAME_END to operate') - await sleep(1) - videoOutputPromise.on('frameEnd', async (err, data) => { - if (!err) { - console.info(TAG + 'Video frameEnd callback is success') - if (data != null || data != undefined) { - expect(true).assertTrue() - } - } else { - expect().assertFail() - } - await sleep(1); - done(); - }) - await sleep(1); - done(); - } - }) - /** * @tc.number : CAPTURE_SESSION_START_PROMISE * @tc.name : CaptureSession start promise api @@ -999,58 +799,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_OPEN - * @tc.name : set flash mode open camera0 api - * @tc.desc : set flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN to operate"); - var SetFMOpen = await camera0InputPromise.setFlashMode(cameraObj.FlashMode.FLASH_MODE_OPEN); - console.info(TAG + "setFlashModeOPEN: " + JSON.stringify(SetFMOpen)) - if (SetFMOpen == undefined) { - console.info(TAG + "Entering SET_FLASH_MODE_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN FAILED"); - console.info(TAG + "Entering SET_FLASH_MODE_OPEN ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_OPEN - * @tc.name : get flash mode open camera0 api - * @tc.desc : get flash mode open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FLASH_MODE_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_OPEN to operate"); - var GetFMOpen = await camera0InputPromise.getFlashMode(); - console.info(TAG + "Entering GET_FLASH_MODE_OPEN success: " + JSON.stringify(GetFMOpen)); - if (GetFMOpen == 1) { - console.info(TAG + "GET_FLASH_MODE_OPEN data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + JSON.stringify(GetFMOpen)); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_OPEN PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_OPEN FAILED"); - console.info(TAG + "GET_FLASH_MODE_OPEN ends here"); - } - await sleep(1); - done(); - }) - /** * @tc.number : IS_FLASH_MODE_ALWAYS_OPEN_SUPPORTED * @tc.name : check if flash mode always open is supported-camera0Input api @@ -1077,59 +825,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : set flash mode always open camera0 api - * @tc.desc : set flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN to operate"); - var SetFMAlwaysOpen = await camera0InputPromise.setFlashMode(cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN); - console.info(TAG + "setFlashModeOPEN: " + JSON.stringify(SetFMAlwaysOpen)) - if (SetFMAlwaysOpen == undefined) { - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_ALWAYS_OPEN); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN FAILED"); - console.info(TAG + "Entering SET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_ALWAYS_OPEN - * @tc.name : get flash mode always open camera0 api - * @tc.desc : get flash mode always open camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_ALWAYS_OPEN', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN to operate"); - var GetFMAlwaysOpen = await camera0InputPromise.getFlashMode(); - console.info(TAG + "Entering GET_FLASH_MODE_ALWAYS_OPEN success"); - if (GetFMAlwaysOpen == 3) { - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + GetFMAlwaysOpen); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN FAILED"); - console.info(TAG + "GET_FLASH_MODE_ALWAYS_OPEN ends here"); - } - await sleep(1); - done(); - }) - /** * @tc.number : IS_FLASH_MODE_AUTO_SUPPORTED * @tc.name : check if flash mode always open is supported-camera0Input api @@ -1182,59 +877,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FLASH_MODE_CLOSE - * @tc.name : set flash mode close camera0 api - * @tc.desc : set flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE to operate"); - var SetFMClose = await camera0InputPromise.setFlashMode(cameraObj.FlashMode.FLASH_MODE_CLOSE); - console.info(TAG + "setFlashModeOPEN: " + JSON.stringify(SetFMClose)) - if (SetFMClose == undefined) { - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE SUCCESS, current flashmode is: " + cameraObj.FlashMode.FLASH_MODE_CLOSE); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE FAILED"); - console.info(TAG + "Entering SET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FLASH_MODE_CLOSE - * @tc.name : get flash mode close camera0 api - * @tc.desc : get flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FLASH_MODE_CLOSE', 0, async function (done) { - console.info(TAG + "Entering GET_FLASH_MODE_CLOSE to operate"); - var GetFMClose = await camera0InputPromise.getFlashMode(); - console.info(TAG + "Entering GET_FLASH_MODE_CLOSE success"); - if (GetFMClose == 0) { - console.info(TAG + "GET_FLASH_MODE_CLOSE data is not null || undefined: "); - console.info(TAG + "Current FlashMode is: " + GetFMClose); - expect(true).assertTrue(); - console.info(TAG + "GET_FLASH_MODE_CLOSE PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FLASH_MODE_CLOSE FAILED"); - console.info(TAG + "GET_FLASH_MODE_CLOSE ends here"); - } - await sleep(1); - done(); - }) - // FOCUS promise API's /** * @tc.number : IS_FOCUS_MODE_LOCKED_SUPPORTED @@ -1262,56 +904,7 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_LOCKED - * @tc.name : set focus mode locked camera0 api - * @tc.desc : set focus mode locked camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED to operate"); - var SetFMLocked = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_LOCKED); - console.info(TAG + "SetFMLocked: " + JSON.stringify(SetFMLocked)) - if (SetFMLocked == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED SUCCESS, current focusmode is: " + cameraObj.FocusMode.FOCUS_MODE_LOCKED); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED PASSED") - expect(true).assertTrue() - } else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_LOCKED - * @tc.name : get flash mode close camera0 api - * @tc.desc : get flash mode close camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_LOCKED', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED to operate"); - var GetFMLocked = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_LOCKED success: " + GetFMLocked); - if (GetFMLocked == 0) { - console.info(TAG + "Current focusmode is: " + GetFMLocked); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_LOCKED FAILED"); - console.info(TAG + "GET_FOCUS_MODE_LOCKED ends here"); - } - await sleep(1); - done(); - }) + /** * @tc.number : IS_FOCUS_MODE_MANUAL_SUPPORTED @@ -1339,59 +932,7 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_MANUAL - * @tc.name : set focus mode manual camera0 api - * @tc.desc : set focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('SET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL to operate"); - var setFocusManual = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_MANUAL); - console.info(TAG + "setFocusManual: " + JSON.stringify(setFocusManual)) - if (setFocusManual == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_MANUAL); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_MANUAL - * @tc.name : get focus mode manual camera0 api - * @tc.desc : get focus mode manual camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_MANUAL', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL to operate"); - var getfocusmodepromise = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_MANUAL SUCCESS"); - if (getfocusmodepromise == 0) { - console.info(TAG + "Current FocusMode is: " + getfocusmodepromise); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_MANUAL FAILED"); - console.info(TAG + "GET_FOCUS_MODE_MANUAL ends here"); - } - await sleep(1); - done(); - }) - + /** * @tc.number : IS_FOCUS_MODE_CONTINUOUS_SUPPORTED * @tc.name : check if focus mode continuous is supported-camera0Input api @@ -1418,60 +959,7 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_CONTINUOUS - * @tc.name : set focus mode continuous camera0 api - * @tc.desc : set focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('SET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS to operate"); - var setFocusCont = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO); - console.info(TAG + "setFocusCont: " + JSON.stringify(setFocusCont)) - if (setFocusCont == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_CONTINUOUS_AUTO); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_CONTINUOUS - * @tc.name : get focus mode continuous camera0 api - * @tc.desc : get focus mode continuous camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - - it('GET_FOCUS_MODE_CONTINUOUS', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS to operate"); - var getfocusmodepromise = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_CONTINUOUS SUCCESS"); - if (getfocusmodepromise == 1) { - console.info(TAG + "Current FocusMode is: " + getfocusmodepromise); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS FAILED"); - console.info(TAG + "GET_FOCUS_MODE_CONTINUOUS ends here"); - } - await sleep(1); - done(); - }) - + /** * @tc.number : IS_FOCUS_MODE_AUTO_SUPPORTED * @tc.name : check if focus mode auto is supported-camera0Input api @@ -1498,341 +986,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done(); }) - /** - * @tc.number : SET_FOCUS_MODE_AUTO - * @tc.name : set focus mode auto camera0 api - * @tc.desc : set focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO to operate"); - var setFocusAuto = await camera0InputPromise.setFocusMode(cameraObj.FocusMode.FOCUS_MODE_AUTO); - console.info(TAG + "setFocusAuto: " + JSON.stringify(setFocusAuto)) - if (setFocusAuto == undefined) { - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO SUCCESS, current FocusMode is: " + cameraObj.FocusMode.FOCUS_MODE_AUTO); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO PASSED") - expect(true).assertTrue() - } - else { - expect().assertFail(); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO FAILED"); - console.info(TAG + "Entering SET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : GET_FOCUS_MODE_AUTO - * @tc.name : get focus mode auto camera0 api - * @tc.desc : get focus mode auto camera0 api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_FOCUS_MODE_AUTO', 0, async function (done) { - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO to operate"); - var getfocusmodepromise = await camera0InputPromise.getFocusMode(); - console.info(TAG + "Entering GET_FOCUS_MODE_AUTO SUCCESS"); - if (getfocusmodepromise == 2) { - console.info(TAG + "Current FocusMode is: " + getfocusmodepromise); - expect(true).assertTrue(); - console.info(TAG + "GET_FOCUS_MODE_AUTO PASSED"); - } - else { - expect().assertFail(); - console.info(TAG + "GET_FOCUS_MODE_AUTO FAILED"); - console.info(TAG + "GET_FOCUS_MODE_AUTO ends here"); - } - await sleep(1); - done(); - }) - - //ZOOM Function - /** - * @tc.number : GET_ZOOM_RATIO_PROMISE - * @tc.name : get zoom ratio camera-0 cameraId api promise api - * @tc.desc : get zoom ratio camera-0 cameraId api promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('GET_ZOOM_RATIO_PROMISE', 0, async function (done) { - console.info("--------------GET_ZOOM_RATIO_PROMISE--------------"); - var getZoomRatioPromise = await camera0InputPromise.getZoomRatioRange(); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE getZoomRatioPromise: " + JSON.stringify(getZoomRatioPromise)); - if (getZoomRatioPromise != null && getZoomRatioPromise != undefined) { - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE setZoomRatioPromise is not null || undefined"); - expect(true).assertTrue(); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE success: " + JSON.stringify(getZoomRatioPromise)); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE PASSED"); - } else { - expect().assertFail(); - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE FAILED"); - } - console.info(TAG + "Entering GET_ZOOM_RATIO_PROMISE ends here"); - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_1_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_1_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(1); - console.info(TAG + "setZoomRatio success: 1"); - console.info(TAG + "getZoomRatio called") - var getpromise1 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise1); - if (getpromise1 != null && getpromise1 != undefined) { - expect(getpromise1).assertEqual(1); - console.info(TAG + "SET_GET_ZOOM_1_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_1_PROMISE FAILED"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_2_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_2_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(2); - console.info(TAG + "setZoomRatio success: 2"); - console.info(TAG + "getZoomRatio called") - var getpromise2 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise2); - if (getpromise2 != null && getpromise2 != undefined) { - expect(getpromise2).assertEqual(2); - console.info(TAG + "SET_GET_ZOOM_2_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_2_PROMISE FAILED"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_3_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_3_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(3); - console.info(TAG + "setZoomRatio success: 3"); - console.info(TAG + "getZoomRatio called") - var getpromise3 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise3); - if (getpromise3 != null && getpromise3 != undefined) { - expect(getpromise3).assertEqual(3); - console.info(TAG + "SET_GET_ZOOM_3_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_3_PROMISE FAILED"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_4_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_4_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(4); - console.info(TAG + "setZoomRatio success: 4"); - console.info(TAG + "getZoomRatio called") - var getpromise4 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise4); - if (getpromise4 != null && getpromise4 != undefined) { - expect(getpromise4).assertEqual(4); - console.info(TAG + "SET_GET_ZOOM_4_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_4_PROMISE FAILED"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_5_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_5_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(5); - console.info(TAG + "setZoomRatio success: 5"); - console.info(TAG + "getZoomRatio called") - var getpromise5 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise5); - if (getpromise5 != null && getpromise5 != undefined) { - expect(getpromise5).assertEqual(5); - console.info(TAG + "SET_GET_ZOOM_5_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_5_PROMISE FAILED"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : SET_GET_ZOOM_6_PROMISE - * @tc.name : Zoom camera-0 cameraId api - * @tc.desc : Zoom camera-0 cameraId api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('SET_GET_ZOOM_6_PROMISE', 0, async function (done) { - var setpromise = await camera0InputPromise.setZoomRatio(6); - console.info(TAG + "setZoomRatio success: 6"); - console.info(TAG + "getZoomRatio called") - var getpromise6 = await camera0InputPromise.getZoomRatio(); - console.info(TAG + "getZoomRatio success: " + getpromise6); - if (getpromise6 != null && getpromise6 != undefined) { - expect(getpromise6).assertEqual(6); - console.info(TAG + "SET_GET_ZOOM_6_PROMISE PASSED "); - } - else { - expect().assertFail(); - console.info(TAG + "SET_GET_ZOOM_6_PROMISE FAILED"); - } - await sleep(1); - done(); - }) - - /** - * @tc.number : VIDEO_OUTPUT_START_PROMISE - * @tc.name : VideoOutput start promise api - * @tc.desc : VideoOutput start promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_START_PROMISE', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_START_PROMISE videoOutputPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_START_PROMISE to operate') - await videoOutputPromise.start() - expect(true).assertTrue() - console.info(TAG + 'Entering VIDEO_OUTPUT_START_PROMISE PASSED') - console.info(TAG + 'Entering VIDEO_OUTPUT_START_PROMISE ends here') - await sleep(1) - done() - } - await sleep(1) - done() - }) - - /** - * @tc.number : VIDEO_RECORDER_START_PROMISE - * @tc.name : VideoOutput start promise api - * @tc.desc : VideoOutput start promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_RECORDER_START_PROMISE', 0, async function (done) { - if (videoRecorder == null || videoRecorder == undefined) { - console.info(TAG + 'Entering VIDEO_RECORDER_START_PROMISE videoRecorderPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_RECORDER_START_PROMISE to operate') - await videoRecorder.start() - console.info(TAG + 'VIDEO_RECORDER_START_PROMISE called'); - sleep(3); - console.info(TAG + 'VIDEO_RECORDER_START_PROMISE done.') - expect(true).assertTrue() - console.info(TAG + 'Entering VIDEO_RECORDER_START_PROMISE PASSED') - console.info(TAG + 'Entering VIDEO_RECORDER_START_PROMISE ends here') - await sleep(1) - done() - } - await sleep(1) - done() - }) - - /** - * @tc.number : VIDEO_OUTPUT_STOP_PROMISE - * @tc.name : VideoOutput stop promise api - * @tc.desc : VideoOutput stop promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_OUTPUT_STOP_PROMISE', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP_PROMISE videoOutputPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP_PROMISE to operate') - await videoOutputPromise.stop() - expect(true).assertTrue() - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP_PROMISE PASSED') - console.info(TAG + 'Entering VIDEO_OUTPUT_STOP_PROMISE ends here') - await sleep(1) - done() - } - await sleep(1) - done() - }) - - /** - * @tc.number : VIDEO_RECORDER_STOP_PROMISE - * @tc.name : VideoRecorder stop promise api - * @tc.desc : VideoRecorder stop promise api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEO_RECORDER_STOP_PROMISE', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + 'Entering VIDEO_RECORDER_STOP_PROMISE videoOutputPromise == null || undefined') - } else { - console.info(TAG + 'Entering VIDEO_RECORDER_STOP_PROMISE to operate') - await videoRecorder.stop() - expect(true).assertTrue() - console.info(TAG + 'VIDEO_RECORDER_STOP done.') - console.info(TAG + 'Entering VIDEO_RECORDER_STOP_PROMISE PASSED') - console.info(TAG + 'Entering VIDEO_RECORDER_STOP_PROMISE ends here') - await sleep(1) - done() - } - await sleep(1) - done() - }) - /** * @tc.number : CAPTURE_SESSION_STOP_PROMISE * @tc.name : CaptureSession stop promise api @@ -1881,33 +1034,6 @@ export default function cameraJSUnitVideoPromise(surfaceId: any) { done() }) - /** - * @tc.number : VIDEOOUTPUT_RELEASE_SUCCESS_PROMISE - * @tc.name : videoOutput release api - * @tc.desc : videoOutput release api - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('VIDEOOUTPUT_RELEASE_SUCCESS_PROMISE', 0, async function (done) { - if (videoOutputPromise == null || videoOutputPromise == undefined) { - console.info(TAG + "Entering VIDEOOUTPUT_RELEASE_SUCCESS_PROMISE previewOutputPromise == null || undefined"); - } else { - console.info(TAG + "Entering VIDEOOUTPUT_RELEASE_SUCCESS_PROMISE to operate"); - const promise = await videoOutputPromise.release(); - console.info(TAG + "Entering VideoOutputPromise.release promise: " + JSON.stringify(promise)); - if (promise != null || promise != undefined) { - expect(true).assertTrue(); - console.info(TAG + "Entering VideoOutputPromise.release PASSED"); - } - console.info(TAG + "Entering VideoOutputPromise.release ends here"); - await sleep(1); - done(); - } - await sleep(1); - done(); - }) - /** * @tc.number : PREVIEWOUTPUT_RELEASE_SUCCESS_PROMISE * @tc.name : PreviewOutput release api