提交 73c0d7ec 编写于 作者: F fengzewu

finish format check and code check

Signed-off-by: Nfengzewu <fengzewu@huawei.com>
上级 b38894e0
...@@ -21,11 +21,11 @@ group("multimedia") { ...@@ -21,11 +21,11 @@ group("multimedia") {
"camera/camera_js_standard:camera_standard_ets_hap", "camera/camera_js_standard:camera_standard_ets_hap",
"image/image_js_standard/image:image_js_hap", "image/image_js_standard/image:image_js_hap",
"image/image_js_standard/imageColorspace:image_colorspace_js_hap", "image/image_js_standard/imageColorspace:image_colorspace_js_hap",
"image/image_js_standard/imageCreator:image_creator_js_hap",
"image/image_js_standard/imageDecodeOptions:image_DecodeOptions_js_hap", "image/image_js_standard/imageDecodeOptions:image_DecodeOptions_js_hap",
"image/image_js_standard/imageExif:image_exif_js_hap", "image/image_js_standard/imageExif:image_exif_js_hap",
"image/image_js_standard/imagePixelMapFramework:image_pixelmapframework_js_hap", "image/image_js_standard/imagePixelMapFramework:image_pixelmapframework_js_hap",
"image/image_js_standard/imageWebp:image_webp_js_hap", "image/image_js_standard/imageWebp:image_webp_js_hap",
"image/image_js_standard/imageCreator:image_creator_js_hap",
"media/media_js_standard/audioCodecFormat:audio_codec_format_js_hap", "media/media_js_standard/audioCodecFormat:audio_codec_format_js_hap",
"media/media_js_standard/audioDecoder:audio_decoder_js_hap", "media/media_js_standard/audioDecoder:audio_decoder_js_hap",
"media/media_js_standard/audioEncoder:audio_encoder_js_hap", "media/media_js_standard/audioEncoder:audio_encoder_js_hap",
......
# Copyright (C) 2021 Huawei Device Co., Ltd. # Copyright (C) 2021 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import("//test/xts/tools/build/suite.gni") import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("image_creator_js_hap") { ohos_js_hap_suite("image_creator_js_hap") {
hap_profile = "./src/main/config.json" hap_profile = "./src/main/config.json"
deps = [ deps = [
":image_creator_js_assets", ":image_creator_js_assets",
":image_creator_resources", ":image_creator_resources",
] ]
certificate_profile = "./signature/openharmony_sx.p7b" certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsImageCreatorJsTest" hap_name = "ActsImageCreatorJsTest"
} }
ohos_js_assets("image_creator_js_assets") { ohos_js_assets("image_creator_js_assets") {
source_dir = "./src/main/js/default" source_dir = "./src/main/js/default"
} }
ohos_resources("image_creator_resources") { ohos_resources("image_creator_resources") {
sources = [ "./src/main/resources" ] sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json" hap_profile = "./src/main/config.json"
} }
\ No newline at end of file
...@@ -124,7 +124,7 @@ describe('ImageCreator', function () { ...@@ -124,7 +124,7 @@ describe('ImageCreator', function () {
creator.dequeueImage().then(img => { creator.dequeueImage().then(img => {
if (img == undefined) { if (img == undefined) {
expect(false).assertTrue(); expect(false).assertTrue();
done() done();
} else { } else {
img.getComponent(JPEG, (err, component) => { img.getComponent(JPEG, (err, component) => {
if (err) { if (err) {
...@@ -343,7 +343,7 @@ describe('ImageCreator', function () { ...@@ -343,7 +343,7 @@ describe('ImageCreator', function () {
} else { } else {
expect(false).assertTrue(); expect(false).assertTrue();
console.info('Creator_002 finished'); console.info('Creator_002 finished');
done() done();
} }
}) })
...@@ -373,7 +373,7 @@ describe('ImageCreator', function () { ...@@ -373,7 +373,7 @@ describe('ImageCreator', function () {
} else { } else {
expect(false).assertTrue(); expect(false).assertTrue();
console.info('Creator_003 finished'); console.info('Creator_003 finished');
done() done();
} }
}) })
...@@ -402,7 +402,7 @@ describe('ImageCreator', function () { ...@@ -402,7 +402,7 @@ describe('ImageCreator', function () {
} else { } else {
expect(false).assertTrue(); expect(false).assertTrue();
console.info('Creator_004 finished'); console.info('Creator_004 finished');
done() done();
} }
}) })
...@@ -422,7 +422,7 @@ describe('ImageCreator', function () { ...@@ -422,7 +422,7 @@ describe('ImageCreator', function () {
creator.dequeueImage((err, img) => { creator.dequeueImage((err, img) => {
if (err) { if (err) {
expect(false).assertTrue(); expect(false).assertTrue();
done() done();
} else { } else {
console.info('Creator_005 dequeueImage call back Success'); console.info('Creator_005 dequeueImage call back Success');
expect(img != undefined).assertTrue(); expect(img != undefined).assertTrue();
...@@ -432,7 +432,7 @@ describe('ImageCreator', function () { ...@@ -432,7 +432,7 @@ describe('ImageCreator', function () {
} else { } else {
expect(false).assertTrue(); expect(false).assertTrue();
console.info('Creator_005 finished'); console.info('Creator_005 finished');
done() done();
} }
}) })
...@@ -453,13 +453,12 @@ describe('ImageCreator', function () { ...@@ -453,13 +453,12 @@ describe('ImageCreator', function () {
creator.dequeueImage().then(img => { creator.dequeueImage().then(img => {
if (img == undefined) { if (img == undefined) {
expect(false).assertTrue(); expect(false).assertTrue();
done() done();
return;
} else { } else {
img.getComponent(JPEG, (err, component) => { img.getComponent(JPEG, (err, component) => {
if (err) { if (err) {
expect(false).assertTrue(); expect(false).assertTrue();
done() done();
} else { } else {
expect(component.componentType == JPEG).assertTrue(); expect(component.componentType == JPEG).assertTrue();
expect(component.byteBuffer != undefined).assertTrue(); expect(component.byteBuffer != undefined).assertTrue();
...@@ -490,7 +489,7 @@ describe('ImageCreator', function () { ...@@ -490,7 +489,7 @@ describe('ImageCreator', function () {
} else { } else {
expect(false).assertTrue(); expect(false).assertTrue();
console.info('Creator_006 createImageCreator failed'); console.info('Creator_006 createImageCreator failed');
done() done();
} }
}) })
...@@ -563,7 +562,7 @@ describe('ImageCreator', function () { ...@@ -563,7 +562,7 @@ describe('ImageCreator', function () {
creator.dequeueImage((err, img) => { creator.dequeueImage((err, img) => {
if (img == undefined) { if (img == undefined) {
expect(false).assertTrue(); expect(false).assertTrue();
done() done();
} else { } else {
img.getComponent(JPEG, (err, component) => { img.getComponent(JPEG, (err, component) => {
if (err) { if (err) {
...@@ -672,7 +671,7 @@ describe('ImageCreator', function () { ...@@ -672,7 +671,7 @@ describe('ImageCreator', function () {
var creator = image.createImageCreator(WIDTH, HEIGHT, FORMAT, CAPACITY) var creator = image.createImageCreator(WIDTH, HEIGHT, FORMAT, CAPACITY)
expect(creator != undefined).assertTrue(); expect(creator != undefined).assertTrue();
if (creator == undefined) { if (creator == undefined) {
done() done();
return; return;
} }
creator.on('imageRelease', () => { creator.on('imageRelease', () => {
...@@ -685,13 +684,11 @@ describe('ImageCreator', function () { ...@@ -685,13 +684,11 @@ describe('ImageCreator', function () {
if (img == undefined) { if (img == undefined) {
expect(false).assertTrue(); expect(false).assertTrue();
done(); done();
return;
}else{ }else{
img.getComponent(JPEG, (err, component) => { img.getComponent(JPEG, (err, component) => {
if (component == undefined) { if (component == undefined) {
expect(false).assertTrue(); expect(false).assertTrue();
done(); done();
return;
}else{ }else{
expect(component.componentType == JPEG).assertTrue(); expect(component.componentType == JPEG).assertTrue();
expect(component.byteBuffer != undefined).assertTrue(); expect(component.byteBuffer != undefined).assertTrue();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册