diff --git a/global/perf/perfjs/BUILD.gn b/global/perf/perfjs/BUILD.gn new file mode 100755 index 0000000000000000000000000000000000000000..e76d10311d7847469934f820d0fe573929e11085 --- /dev/null +++ b/global/perf/perfjs/BUILD.gn @@ -0,0 +1,31 @@ +# Copyright (C) 2022 Huawei Device Co., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import("//test/xts/tools/build/suite.gni") + +ohos_js_hap_suite("perfjs_test") { + hap_profile = "./src/main/config.json" + deps = [ + ":perfjs_assets", + ":perfjs_resources", + ] + certificate_profile = "./signature/openharmony_sx.p7b" + hap_name = "ActsGlobalPerfJsTest" +} +ohos_js_assets("perfjs_assets") { + source_dir = "./src/main/js/default" +} +ohos_resources("perfjs_resources") { + sources = [ "./src/main/resources" ] + hap_profile = "./src/main/config.json" +} diff --git a/global/perf/perfjs/Test.json b/global/perf/perfjs/Test.json new file mode 100755 index 0000000000000000000000000000000000000000..b93d5174d472e31ad3d204af36a6e9b504fef937 --- /dev/null +++ b/global/perf/perfjs/Test.json @@ -0,0 +1,18 @@ +{ + "description": "Global js interface performance Tests", + "driver": { + "type": "JSUnitTest", + "test-timeout": "300000", + "package": "ohos.perf.test", + "shell-timeout": "60000" + }, + "kits": [ + { + "test-file-name": [ + "ActsGlobalPerfJsTest.hap" + ], + "type": "AppInstallKit", + "cleanup-apps": true + } + ] +} diff --git a/global/perf/perfjs/signature/openharmony_sx.p7b b/global/perf/perfjs/signature/openharmony_sx.p7b new file mode 100755 index 0000000000000000000000000000000000000000..9be1e98fa4c0c28ca997ed660112fa16b194f0f5 Binary files /dev/null and b/global/perf/perfjs/signature/openharmony_sx.p7b differ diff --git a/global/perf/perfjs/src/main/config.json b/global/perf/perfjs/src/main/config.json new file mode 100755 index 0000000000000000000000000000000000000000..9a8e93fcafae55e618542256f40a8e9cec1f6165 --- /dev/null +++ b/global/perf/perfjs/src/main/config.json @@ -0,0 +1,60 @@ +{ + "app": { + "bundleName": "ohos.perf.test", + "vendor": "acts", + "version": { + "code": 1000000, + "name": "1.0.0" + }, + "apiVersion": { + "compatible": 4, + "target": 5 + } + }, + "deviceConfig": {}, + "module": { + "package": "ohos.perf.test", + "name": ".MyApplication", + "deviceType": [ + "phone" + ], + "distro": { + "deliveryWithInstall": true, + "moduleName": "entry", + "moduleType": "entry" + }, + "abilities": [ + { + "visible": true, + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ], + "name": "ohos.perf.test.MainAbility", + "icon": "$media:icon", + "description": "$string:mainability_description", + "label": "$string:app_name", + "type": "page", + "launchType": "standard" + } + ], + "js": [ + { + "pages": [ + "pages/index/index" + ], + "name": "default", + "window": { + "designWidth": 720, + "autoDesignWidth": false + } + } + ] + } +} diff --git a/global/perf/perfjs/src/main/js/default/app.js b/global/perf/perfjs/src/main/js/default/app.js new file mode 100755 index 0000000000000000000000000000000000000000..63709dbda6847e0b57ac6594c3d772758ed5fd6d --- /dev/null +++ b/global/perf/perfjs/src/main/js/default/app.js @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +export default { + onCreate() { + console.info('TestApplication onCreate'); + }, + onDestroy() { + console.info('TestApplication onDestroy'); + } +}; diff --git a/global/perf/perfjs/src/main/js/default/i18n/en-US.json b/global/perf/perfjs/src/main/js/default/i18n/en-US.json new file mode 100755 index 0000000000000000000000000000000000000000..136dc546ee59704b87b0a301c0e6df21b0cc8350 --- /dev/null +++ b/global/perf/perfjs/src/main/js/default/i18n/en-US.json @@ -0,0 +1,6 @@ +{ + "strings": { + "hello": "Global", + "world": "System" + } +} \ No newline at end of file diff --git a/global/perf/perfjs/src/main/js/default/i18n/zh-CN.json b/global/perf/perfjs/src/main/js/default/i18n/zh-CN.json new file mode 100755 index 0000000000000000000000000000000000000000..43f49ec631aadd96361fc79cab84a05fbfa866fe --- /dev/null +++ b/global/perf/perfjs/src/main/js/default/i18n/zh-CN.json @@ -0,0 +1,6 @@ +{ + "strings": { + "hello": "全球化", + "world": "子系统" + } +} \ No newline at end of file diff --git a/global/perf/perfjs/src/main/js/default/pages/index/index.css b/global/perf/perfjs/src/main/js/default/pages/index/index.css new file mode 100755 index 0000000000000000000000000000000000000000..6fda792753f2e15f22b529c7b90a82185b2770bf --- /dev/null +++ b/global/perf/perfjs/src/main/js/default/pages/index/index.css @@ -0,0 +1,9 @@ +.container { + flex-direction: column; + justify-content: center; + align-items: center; +} + +.title { + font-size: 100px; +} diff --git a/global/perf/perfjs/src/main/js/default/pages/index/index.hml b/global/perf/perfjs/src/main/js/default/pages/index/index.hml new file mode 100755 index 0000000000000000000000000000000000000000..f64b040a5ae394dbaa5e185e1ecd4f4556b92184 --- /dev/null +++ b/global/perf/perfjs/src/main/js/default/pages/index/index.hml @@ -0,0 +1,5 @@ +