diff --git a/ability/ability_runtime/BUILD.gn b/ability/ability_runtime/BUILD.gn index 11f2b5b68c741f43dbb3bd4669f9b4acfad289af..117bb98a47b27ec1d7f152da3f5eda3ee1ad8c4e 100644 --- a/ability/ability_runtime/BUILD.gn +++ b/ability/ability_runtime/BUILD.gn @@ -53,6 +53,7 @@ group("ability_runtime") { "freeinstalltest:freeinstalltest", "newwant:newwant", "non_concurrent:non_concurrent", + "registerjserror:registerjserror", "stage:stage", "want:want", "workercontextcover:workercontextcover", diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/app.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/app.json new file mode 100644 index 0000000000000000000000000000000000000000..bb4fec7323cc3a18849a0def2f046f74ae559461 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/app.json @@ -0,0 +1,19 @@ +{ + "app": { + "bundleName": "com.example.actsregisterjserrorrely", + "vendor": "example", + "versionCode": 1000000, + "versionName": "1.0.0", + "icon": "$media:app_icon", + "label": "$string:app_name", + "distributedNotificationEnabled": true, + "keepAlive" : true, + "singleUser": true, + "minAPIVersion": 10, + "targetAPIVersion": 10, + "car": { + "apiCompatibleVersion": 10, + "singleUser": false + } + } +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/resources/base/element/string.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..d03b9c66ce3377ffe9b905211a18878306bb0e30 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/resources/base/element/string.json @@ -0,0 +1,8 @@ +{ + "string": [ + { + "name": "app_name", + "value": "ActsRegisterJsErrorRely" + } + ] +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/resources/base/media/app_icon.png b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/AppScope/resources/base/media/app_icon.png differ diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/BUILD.gn b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..b2ceda668b405627d481c804c476c9e77f2b8a53 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/BUILD.gn @@ -0,0 +1,43 @@ +# Copyright (c) 2023 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_hap_assist_suite("ActsRegisterJsErrorRely") { + hap_profile = "entry/src/main/module.json" + js_build_mode = "debug" + deps = [ + ":actsregisterjserrorrely_js_assets", + ":actsregisterjserrorrely_resources", + ] + ets2abc = true + certificate_profile = "signature/openharmony_sx.p7b" + hap_name = "ActsRegisterJsErrorRely" + subsystem_name = "ability" + part_name = "ability_runtime" +} + +ohos_app_scope("actsregisterjserrorrely_app_profile") { + app_profile = "AppScope/app.json" + sources = [ "AppScope/resources" ] +} + +ohos_js_assets("actsregisterjserrorrely_js_assets") { + source_dir = "entry/src/main/ets" +} + +ohos_resources("actsregisterjserrorrely_resources") { + sources = [ "entry/src/main/resources" ] + deps = [ ":actsregisterjserrorrely_app_profile" ] + hap_profile = "entry/src/main/module.json" +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/ets/entryability/EntryAbility.ts b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/ets/entryability/EntryAbility.ts new file mode 100644 index 0000000000000000000000000000000000000000..6bedaa43fbd914627addda8362f806398ff4dada --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/ets/entryability/EntryAbility.ts @@ -0,0 +1,167 @@ +/* + * Copyright (c) 2023 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 hilog from '@ohos.hilog'; +import Ability from '@ohos.app.ability.UIAbility' +import Window from '@ohos.window' +import commonEvent from '@ohos.commonEvent' +import ErrorManager from "@ohos.app.ability.errorManager" +let message; +let commonEventData={ + parameters:{ + message:message, + } +} + +export default class EntryAbility extends Ability { + onCreate(want, launchParam) { + globalThis.want = want; + globalThis.context = this.context; + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate'); + hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? ''); + hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:' + JSON.stringify(launchParam) ?? ''); + } + + onDestroy() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy'); + } + + onWindowStageCreate(windowStage: Window.WindowStage) { + // Main window is created, set main page for this ability + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); + + windowStage.loadContent('pages/Index', (err, data) => { + if (err.code) { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR); + hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); + return; + } + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); + }); + } + + onWindowStageDestroy() { + // Main window is destroyed, release UI related resources + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); + } + + onForeground() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground'); + let observer = undefined; + if (globalThis.want.action == "Acts_RegisterJsErrorCallback_0100") { + observer = { + onUnhandledException(strMsg){ + commonEventData.parameters.message = strMsg; + console.info("====>Acts_RegisterJsErrorCallback_0100 onUnhandledException Message: " + strMsg); + commonEvent.publish("ACTS_RegisterEvent_First", commonEventData, (err) => { + console.info("====>Acts_RegisterJsErrorCallback_0100 publish err: " + JSON.stringify(err)); + setTimeout(()=>{ + globalThis.context.terminateSelf().then(()=>{ + console.info("====>Acts_RegisterJsErrorCallback_0100 rely terminateSelf end"); + }).catch((err)=>{ + console.info("====>Acts_RegisterJsErrorCallback_0100 rely terminateSelf err: " + + JSON.stringify(err)); + }); + }, 100); + }) + } + } + + ErrorManager.on("error", observer); + setTimeout(() => { + globalThis.contest.terminateSelf(); + }, 300); + } else if (globalThis.want.action == "Acts_RegisterJsErrorCallback_0200") { + observer = { + onUnhandledException(strMsg: String){ + commonEventData.parameters.message = strMsg; + console.info("====>Acts_RegisterJsErrorCallback_0200 onUnhandledException Message: " + strMsg); + commonEvent.publish("ACTS_RegisterEvent_First", commonEventData, (err) => { + console.info("====>Acts_RegisterJsErrorCallback_0200 onUnhandledException publish err: " + + JSON.stringify(err)); + }) + }, + onException(errObject: Error){ + commonEventData.parameters.message = errObject; + console.info("====>Acts_RegisterJsErrorCallback_0200 onException Message: " + JSON.stringify(errObject)); + commonEvent.publish("ACTS_RegisterEvent_Second", commonEventData, (err) => { + console.info("====>Acts_RegisterJsErrorCallback_0200 onException publish err: " + + JSON.stringify(err)); + setTimeout(()=>{ + globalThis.context.terminateSelf().then(()=>{ + console.info("====>Acts_RegisterJsErrorCallback_0200 rely terminateSelf end"); + }).catch((err)=>{ + console.info("====>Acts_RegisterJsErrorCallback_0200 rely terminateSelf err: " + + JSON.stringify(err)); + }) + }, 100) + }) + } + } + ErrorManager.on("error", observer); + setTimeout(() => { + globalThis.contest.terminateSelf(); + }, 300); + } else if (globalThis.want.action == "Acts_UnregisterJsErrorCallback_0800") { + observer = { + onUnhandledException(strMsg: String){ + commonEventData.parameters.message = strMsg; + console.info("====>Acts_UnregisterJsErrorCallback_0800 onUnhandledException Message: " + strMsg); + commonEvent.publish("ACTS_RegisterEvent_First", commonEventData, (err) => { + console.info("====>Acts_UnregisterJsErrorCallback_0800 onUnhandledException publish err: " + + JSON.stringify(err)); + }) + }, + onException(errObject: Error){ + commonEventData.parameters.message = errObject; + console.info("====>Acts_UnregisterJsErrorCallback_0800 onException Message: " + JSON.stringify(errObject)); + commonEvent.publish("ACTS_RegisterEvent_Second", commonEventData, (err) => { + console.info("====>Acts_UnregisterJsErrorCallback_0800 onException publish err: " + + JSON.stringify(err)); + setTimeout(()=>{ + globalThis.context.terminateSelf().then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0800 rely terminateSelf end"); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0800 rely terminateSelf err: " + + JSON.stringify(err)); + }) + }, 100) + }) + } + } + ErrorManager.on("error", observer); + let observerId = ErrorManager.on("error", observer); + ErrorManager.off("error", observerId).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0800 rely off end"); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0800 rely off err: " + + JSON.stringify(err)); + }) + setTimeout(() => { + globalThis.contest.terminateSelf(); + }, 300); + } + } + + onBackground() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground'); + } +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/ets/pages/Index.ets b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/ets/pages/Index.ets new file mode 100644 index 0000000000000000000000000000000000000000..ad7ec009d021f1ebecb5a816a69e3c80cf654b63 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/ets/pages/Index.ets @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2023 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. + */ +@Entry +@Component +struct Index { + @State message: string = 'Hello World' + + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/module.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/module.json new file mode 100644 index 0000000000000000000000000000000000000000..744de4947a3779088b8c551e3bef74beda2255e8 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/module.json @@ -0,0 +1,37 @@ +{ + "module": { + "name": "entry", + "type": "entry", + "description": "$string:module_desc", + "mainElement": "EntryAbility", + "deviceTypes": [ + "default", + "tablet" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:main_pages", + "abilities": [ + { + "name": "EntryAbility", + "srcEntrance": "./ets/entryability/EntryAbility.ts", + "description": "$string:EntryAbility_desc", + "icon": "$media:icon", + "label": "$string:EntryAbility_label", + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "visible": true, + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/element/color.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/element/color.json new file mode 100644 index 0000000000000000000000000000000000000000..d66f9a7d4ac61fb8d215239ab3620b7bcd77bf33 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/element/string.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..f94595515a99e0c828807e243494f57f09251930 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "module description" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "label" + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/media/icon.png b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/media/icon.png differ diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/profile/main_pages.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/profile/main_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..1898d94f58d6128ab712be2c68acc7c98e9ab9ce --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/base/profile/main_pages.json @@ -0,0 +1,5 @@ +{ + "src": [ + "pages/Index" + ] +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/en_US/element/string.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/en_US/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..9593edfb2cd97490c3a4ea152be60ee73933002d --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/en_US/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "module description" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "RegisterJsErrorRely" + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/zh_CN/element/string.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/zh_CN/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..ab00eca81522b3e8efc46285ae2ae6ac39d4070d --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/entry/src/main/resources/zh_CN/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "模块描述" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "RegisterJsErrorRely" + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/signature/openharmony_sx.p7b b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/signature/openharmony_sx.p7b new file mode 100644 index 0000000000000000000000000000000000000000..8ab54e2fe01980f922324ea145f2ca0a0cec84e0 Binary files /dev/null and b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorRely/signature/openharmony_sx.p7b differ diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/app.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/app.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb0ba7d3cae58c4f6289716062e27643fa54586 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/app.json @@ -0,0 +1,19 @@ +{ + "app": { + "bundleName": "com.example.actsregisterjserrortest", + "vendor": "example", + "versionCode": 1000000, + "versionName": "1.0.0", + "icon": "$media:app_icon", + "label": "$string:app_name", + "distributedNotificationEnabled": true, + "keepAlive" : true, + "singleUser": true, + "minAPIVersion": 10, + "targetAPIVersion": 10, + "car": { + "apiCompatibleVersion": 10, + "singleUser": false + } + } +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/resources/base/element/string.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..efd3fb72bec89ec3cf204e273c936a13bf956dc8 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/resources/base/element/string.json @@ -0,0 +1,8 @@ +{ + "string": [ + { + "name": "app_name", + "value": "ActsRegisterJsErrorTest" + } + ] +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/resources/base/media/app_icon.png b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/AppScope/resources/base/media/app_icon.png differ diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/BUILD.gn b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..3b035cf35c69202aa7d7cd81408919f07582b111 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/BUILD.gn @@ -0,0 +1,43 @@ +# Copyright (c) 2023 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("ActsRegisterJsErrorTest") { + hap_profile = "entry/src/main/module.json" + js_build_mode = "debug" + deps = [ + ":actsregisterjserrortest_js_assets", + ":actsregisterjserrortest_resources", + ] + ets2abc = true + certificate_profile = "signature/openharmony_sx.p7b" + hap_name = "ActsRegisterJsErrorTest" + subsystem_name = "ability" + part_name = "ability_runtime" +} + +ohos_app_scope("actsregisterjserrortest_app_profile") { + app_profile = "AppScope/app.json" + sources = [ "AppScope/resources" ] +} + +ohos_js_assets("actsregisterjserrortest_js_assets") { + source_dir = "entry/src/main/ets" +} + +ohos_resources("actsregisterjserrortest_resources") { + sources = [ "entry/src/main/resources" ] + deps = [ ":actsregisterjserrortest_app_profile" ] + hap_profile = "entry/src/main/module.json" +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/Test.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/Test.json new file mode 100644 index 0000000000000000000000000000000000000000..a9642d30eb89f65e3db9bcca85f2735457c313dc --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/Test.json @@ -0,0 +1,31 @@ +{ + "description": "Configuration for aceceshi Tests", + "driver": { + "type": "OHJSUnitTest", + "test-timeout": "600000", + "bundle-name": "com.example.actsregisterjserrortest", + "module-name": "entry_test", + "shell-timeout": "600000" + }, + "kits": [ + { + "test-file-name": [ + "ActsRegisterJsErrorTest.hap", + "ActsRegisterJsErrorRely.hap" + ], + "type": "AppInstallKit", + "cleanup-apps": true + }, + { + "type": "ShellKit", + "run-command": [ + "power-shell wakeup", + "power-shell setmode 602", + "hilog -Q pidoff", + "hilog -Q domainoff", + "hilog -b D", + "setenforce 0" + ] + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts new file mode 100644 index 0000000000000000000000000000000000000000..1a6fe3a85d02631857806c78ce19b460a510b137 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts @@ -0,0 +1,85 @@ +/* + * Copyright (c) 2023 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 hilog from '@ohos.hilog'; +import TestRunner from '@ohos.application.testRunner' +import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry' + +var abilityDelegator = undefined +var abilityDelegatorArguments = undefined + +function translateParamsToString(parameters) { + const keySet = new Set([ + '-s class', '-s notClass', '-s suite', '-s it', + '-s level', '-s testType', '-s size', '-s timeout', + '-s dryRun' + ]) + let targetParams = ''; + for (const key in parameters) { + if (keySet.has(key)) { + targetParams = `${targetParams} ${key} ${parameters[key]}` + } + } + return targetParams.trim() +} + +async function onAbilityCreateCallback() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'onAbilityCreateCallback'); +} + +async function addAbilityMonitorCallback(err: any) { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', 'addAbilityMonitorCallback : %{public}s', JSON.stringify(err) ?? ''); +} + +export default class OpenHarmonyTestRunner implements TestRunner { + constructor() { + } + + onPrepare() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner OnPrepare '); + } + + async onRun() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun run'); + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var testAbilityName = abilityDelegatorArguments.bundleName + '.TestAbility' + let lMonitor = { + abilityName: testAbilityName, + onAbilityCreate: onAbilityCreateCallback, + }; + abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback) + var cmd = 'aa start -d 0 -a TestAbility' + ' -b ' + abilityDelegatorArguments.bundleName + cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters) + var debug = abilityDelegatorArguments.parameters['-D'] + if (debug == 'true') + { + cmd += ' -D' + } + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', 'cmd : %{public}s', cmd); + abilityDelegator.executeShellCommand(cmd, + (err: any, d: any) => { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', 'executeShellCommand : err : %{public}s', JSON.stringify(err) ?? ''); + hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.stdResult ?? ''); + hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.exitCode ?? ''); + }) + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun end'); + } +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/test/Ability.test.ets b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/test/Ability.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..40446ff138359260a435897bc381d6d1a06e3b73 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/test/Ability.test.ets @@ -0,0 +1,437 @@ +/* + * Copyright (c) 2023 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 { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium' +import ErrorManager from "@ohos.app.ability.errorManager" +import commonEvent from '@ohos.commonEvent' +const CASE_TIME_OUT=5000; +var ACTS_Register = { + events: ["ACTS_RegisterEvent_First", "ACTS_RegisterEvent_Second"] +}; + +export default function abilityTest() { + describe('ActsAbilityTest', function () { + let observer; + beforeAll(function () { + observer = { + onUnhandledException(strMsg){ + console.info("====>Acts_RegisterJsErrorCallback onUnhandledException Message: " + strMsg); + }, + onException(errObject){ + console.info("====>Acts_RegisterJsErrorCallback onException Message: " + errObject); + } + } + }) + + /* + * @tc.number: Acts_RegisterJsErrorCallback_0100 + * @tc.name: JsError callback enhancement + * @tc.desc: Js registers onUnhandledException callback to listen. There is a callback notification when + * JS is abnormal. + */ + it('Acts_RegisterJsErrorCallback_0100',0, async function (done) { + let subscriber; + let flag = false; + console.info("====>Acts_RegisterJsErrorCallback_0100 start"); + commonEvent.createSubscriber(ACTS_Register).then(async (data) => { + console.debug("====>Acts_RegisterJsErrorCallback_0100 Create Subscribe"); + subscriber = data; + commonEvent.subscribe(subscriber, subscribeCallBack); + globalThis.abilityContext.startAbility( + { + bundleName: "com.example.actsregisterjserrorrely", + abilityName: "EntryAbility", + action: "Acts_RegisterJsErrorCallback_0100" + },(err)=>{ + console.debug("====>Acts_RegisterJsErrorCallback_0100 startAbility err: "+JSON.stringify(err)); + expect(err.code).assertEqual(0); + }) + }) + + function subscribeCallBack(err, data) { + console.debug("====>Acts_RegisterJsErrorCallback_0100 subscribeCallBack data: " + JSON.stringify(data)); + if(data.event == "ACTS_RegisterEvent_First") { + flag = true; + expect(data.parameters.message).assertContain("Error message:Cannot read property terminateSelf"); + commonEvent.unsubscribe(subscriber, unSubscribeCallback); + } + } + + function unSubscribeCallback() { + console.debug("====>Acts_RegisterJsErrorCallback_0100 unSubscribeCallback"); + setTimeout(()=>{ + done(); + }, 800); + } + + setTimeout(()=>{ + if(flag==false){ + expect().assertFail(); + commonEvent.unsubscribe(subscriber, unSubscribeCallback); + } + },CASE_TIME_OUT) + }) + + /* + * @tc.number: Acts_RegisterJsErrorCallback_0200 + * @tc.name: JsError callback enhancement + * @tc.desc: Js registers onUnhandledException and onException callback to listen. There is a callback + * notification when JS is abnormal. + */ + it('Acts_RegisterJsErrorCallback_0200',0, async function (done) { + let subscriber; + let flag = false; + console.info("====>Acts_RegisterJsErrorCallback_0200 start") + commonEvent.createSubscriber(ACTS_Register).then(async (data) => { + console.debug("====>Acts_RegisterJsErrorCallback_0200 Create Subscribe"); + subscriber = data; + commonEvent.subscribe(subscriber, subscribeCallBack); + globalThis.abilityContext.startAbility( + { + bundleName: "com.example.actsregisterjserrorrely", + abilityName: "EntryAbility", + action: "Acts_RegisterJsErrorCallback_0200" + },(err)=>{ + console.debug("====>Acts_RegisterJsErrorCallback_0200 startAbility err: "+JSON.stringify(err)); + expect(err.code).assertEqual(0); + }) + }) + + var msg = {"ACTS_RegisterEvent_First": false, "ACTS_RegisterEvent_Second": false} + function subscribeCallBack(err, data) { + if (data.event === 'ACTS_RegisterEvent_First') { + console.debug("====>Acts_RegisterJsErrorCallback_0200 subscribeCallBack First data: " + JSON.stringify(data)); + expect(data.parameters.message).assertContain("Error message:Cannot read property terminateSelf"); + msg["ACTS_RegisterEvent_First"] = true; + } else if (data.event === 'ACTS_RegisterEvent_Second') { + console.debug("====>Acts_RegisterJsErrorCallback_0200 subscribeCallBack Second data: " + + JSON.stringify(data)); + expect(data.parameters.message.name).assertEqual("TypeError"); + expect(data.parameters.message.message).assertEqual("Cannot read property terminateSelf of undefined"); + expect(data.parameters.message.stack).assertContain("at anonymous"); + msg["ACTS_RegisterEvent_Second"] = true; + } + + if (msg["ACTS_RegisterEvent_First"] == true && msg["ACTS_RegisterEvent_Second"] == true) { + flag = true; + commonEvent.unsubscribe(subscriber, unSubscribeCallback); + } + } + + function unSubscribeCallback() { + setTimeout(()=>{ + console.debug("====>Acts_RegisterJsErrorCallback_0200 unSubscribeCallback"); + done(); + }, 800); + } + + setTimeout(()=>{ + if(flag==false){ + expect().assertFail(); + commonEvent.unsubscribe(subscriber, unSubscribeCallback); + } + },CASE_TIME_OUT) + }) + + /* + * @tc.number: Acts_RegisterJsErrorCallback_0300 + * @tc.name: JsError callback enhancement + * @tc.desc: When registering JS exception listening interface parameter type is undefined, returns an error. + */ + it('Acts_RegisterJsErrorCallback_0300',0, async function (done) { + console.info("====>Acts_RegisterJsErrorCallback_0300 start"); + try { + ErrorManager.on(undefined, observer); + expect().assertFail(); + done(); + } catch (err) { + console.info("====>Acts_RegisterJsErrorCallback_0300 catch " + JSON.stringify(err.code)); + expect(err.code).assertEqual(401); + console.info("====>Acts_RegisterJsErrorCallback_0300 end"); + done(); + } + }) + + /* + * @tc.number: Acts_RegisterJsErrorCallback_0400 + * @tc.name: JsError callback enhancement + * @tc.desc: When registering JS exception listening interface parameter type is null, returns an error. + */ + it('Acts_RegisterJsErrorCallback_0400',0, async function (done) { + console.info("====>Acts_RegisterJsErrorCallback_0400 start"); + try { + ErrorManager.on(null, observer); + expect().assertFail(); + done(); + } catch (err) { + console.info("====>Acts_RegisterJsErrorCallback_0400 catch " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + console.info("====>Acts_RegisterJsErrorCallback_0400 end"); + done(); + } + }) + + /* + * @tc.number: Acts_RegisterJsErrorCallback_0500 + * @tc.name: JsError callback enhancement + * @tc.desc: When registering JS exception listening interface parameter observer is undefined, no abnormal + * error in interface execution. + */ + it('Acts_RegisterJsErrorCallback_0500',0, async function (done) { + console.info("====>Acts_RegisterJsErrorCallback_0500 start"); + try { + ErrorManager.on("error", undefined); + expect(true).assertTrue(); + console.info("====>Acts_RegisterJsErrorCallback_0500 end"); + done(); + } catch (err) { + console.info("====>Acts_RegisterJsErrorCallback_0500 catch " + JSON.stringify(err)); + expect().assertFail(); + done(); + } + }) + + /* + * @tc.number: Acts_RegisterJsErrorCallback_0600 + * @tc.name: JsError callback enhancement + * @tc.desc: When registering JS exception listening interface parameter observer is null, no abnormal + * error in interface execution. + */ + it('Acts_RegisterJsErrorCallback_0600',0, async function (done) { + console.info("====>Acts_RegisterJsErrorCallback_0600 start"); + try { + ErrorManager.on("error", null); + expect(true).assertTrue(); + console.info("====>Acts_RegisterJsErrorCallback_0600 end"); + done(); + } catch (err) { + console.info("====>Acts_RegisterJsErrorCallback_0600 catch " + JSON.stringify(err)); + expect().assertFail(); + done(); + } + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0100 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistering JS exception listening interface parameter type is undefined, returns an error. + */ + it('Acts_UnregisterJsErrorCallback_0100',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0100 start"); + let observerId = ErrorManager.on("error", observer); + try { + ErrorManager.off(undefined, observerId).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0100 success"); + expect().assertFail(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0100 err: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + done(); + }) + } catch (err) { + console.info("====>Acts_UnregisterJsErrorCallback_0100 catch: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + console.info("====>Acts_UnregisterJsErrorCallback_0100 end"); + done(); + } + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0200 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistering JS exception listening interface parameter type is null, returns an error. + */ + it('Acts_UnregisterJsErrorCallback_0200',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0200 start"); + let observerId = ErrorManager.on("error", observer); + try { + ErrorManager.off(null, observerId).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0200 success"); + expect().assertFail(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0200 err: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + done(); + }) + } catch (err) { + console.info("====>Acts_UnregisterJsErrorCallback_0200 catch: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + console.info("====>Acts_UnregisterJsErrorCallback_0200 end"); + done(); + } + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0300 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistering JS exception listening interface parameter observerId is undefined, returns error. + */ + it('Acts_UnregisterJsErrorCallback_0300',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0300 start"); + ErrorManager.off("error", undefined).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0300 success"); + expect().assertFail(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0300 err: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + done(); + }) + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0400 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistering JS exception listening interface parameter observerId is null, returns error. + */ + it('Acts_UnregisterJsErrorCallback_0400',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0400 start"); + ErrorManager.off("error", null).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0400 success"); + expect().assertFail(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0400 err: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + done(); + }) + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0500 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistering JS exception listening interface parameter observerId is -1, returns error. + */ + it('Acts_UnregisterJsErrorCallback_0500',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0500 start"); + ErrorManager.off("error", -1).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0500 success"); + expect().assertFail(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0500 err: " + JSON.stringify(err)); + expect(err.code).assertEqual(401); + done(); + }) + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0600 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistering JS exception listening interface parameter observerId is 10000, returns error. + */ + it('Acts_UnregisterJsErrorCallback_0600',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0600 start"); + ErrorManager.off("error", 10000).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0600 success"); + expect().assertFail(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0600 err: " + JSON.stringify(err)); + expect(err.code).assertEqual(16000003); + done(); + }) + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0700 + * @tc.name: JsError callback enhancement + * @tc.desc: When the parameter objectId of the unregistered JS exception listening interface is the correct + * registered value, the interface executes correctly. + */ + it('Acts_UnregisterJsErrorCallback_0700',0, async function (done) { + console.info("====>Acts_UnregisterJsErrorCallback_0700 start"); + let observerId = ErrorManager.on("error", observer); + try { + ErrorManager.off("error", observerId).then(()=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0700 end"); + expect(true).assertTrue(); + done(); + }).catch((err)=>{ + console.info("====>Acts_UnregisterJsErrorCallback_0700 err: " + JSON.stringify(err)); + expect().assertFail(); + done(); + }) + } catch (err) { + console.info("====>Acts_UnregisterJsErrorCallback_0700 catch: " + JSON.stringify(err)); + expect().assertFail(); + done(); + } + }) + + /* + * @tc.number: Acts_UnregisterJsErrorCallback_0800 + * @tc.name: JsError callback enhancement + * @tc.desc: When unregistered as the correct registered value, the interface executes correctly and the JS + * layer does not trigger an exception error callback. + */ + it('Acts_UnregisterJsErrorCallback_0800',0, async function (done) { + let subscriber; + let flag = false; + console.info("====>Acts_UnregisterJsErrorCallback_0800 start") + commonEvent.createSubscriber(ACTS_Register).then(async (data) => { + console.debug("====>Acts_UnregisterJsErrorCallback_0800 Create Subscribe"); + subscriber = data; + commonEvent.subscribe(subscriber, subscribeCallBack); + globalThis.abilityContext.startAbility( + { + bundleName: "com.example.actsregisterjserrorrely", + abilityName: "EntryAbility", + action: "Acts_UnregisterJsErrorCallback_0800" + },(err)=>{ + console.debug("====>Acts_UnregisterJsErrorCallback_0800 startAbility err: "+JSON.stringify(err)); + expect(err.code).assertEqual(0); + }) + }) + + var msg = {"ACTS_RegisterEvent_First": false, "ACTS_RegisterEvent_Second": false} + function subscribeCallBack(err, data) { + if (data.event === 'ACTS_RegisterEvent_First') { + console.debug("====>Acts_UnregisterJsErrorCallback_0800 subscribeCallBack First data: " + + JSON.stringify(data)); + expect(data.parameters.message).assertContain("Error message:Cannot read property terminateSelf"); + msg["ACTS_RegisterEvent_First"] = true; + } else if (data.event === 'ACTS_RegisterEvent_Second') { + console.debug("====>Acts_UnregisterJsErrorCallback_0800 subscribeCallBack Second data: " + + JSON.stringify(data)); + expect(data.parameters.message.name).assertEqual("TypeError"); + expect(data.parameters.message.message).assertEqual("Cannot read property terminateSelf of undefined"); + expect(data.parameters.message.stack).assertContain("at anonymous"); + msg["ACTS_RegisterEvent_Second"] = true; + } + + if (msg["ACTS_RegisterEvent_First"] == true && msg["ACTS_RegisterEvent_Second"] == true) { + flag = true; + commonEvent.unsubscribe(subscriber, unSubscribeCallback); + } + } + + function unSubscribeCallback() { + setTimeout(() => { + console.debug("====>Acts_UnregisterJsErrorCallback_0800 unSubscribeCallback"); + done(); + }, 800); + } + + setTimeout(()=>{ + if(flag==false){ + expect().assertFail(); + commonEvent.unsubscribe(subscriber, unSubscribeCallback); + } + },CASE_TIME_OUT) + }) + }) +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/test/List.test.ets b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/test/List.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..cb2e22661cde4c6c3e986a6718061d089e25fcd5 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/test/List.test.ets @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2023 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 abilityTest from './Ability.test' + +export default function testsuite() { + abilityTest() +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/testability/TestAbility.ets b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/testability/TestAbility.ets new file mode 100644 index 0000000000000000000000000000000000000000..6a6c4078863bec4c35ed04fe9eebb99b8c2f5dab --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/testability/TestAbility.ets @@ -0,0 +1,72 @@ +/* + * Copyright (c) 2023 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 hilog from '@ohos.hilog'; +import Ability from '@ohos.app.ability.UIAbility' +import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry' +import { Hypium } from '@ohos/hypium' +import testsuite from '../test/List.test' +import Window from '@ohos.window' + +export default class TestAbility extends Ability { + onCreate(want, launchParam) { + globalThis.abilityContext = this.context; + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onCreate'); + hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? ''); + hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:'+ JSON.stringify(launchParam) ?? ''); + var abilityDelegator: any + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var abilityDelegatorArguments: any + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'start run testcase!!!'); + Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite) + } + + onDestroy() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onDestroy'); + } + + onWindowStageCreate(windowStage: Window.WindowStage) { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageCreate'); + windowStage.loadContent('testability/pages/Index', (err, data) => { + if (err.code) { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR); + hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); + return; + } + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', + JSON.stringify(data) ?? ''); + }); + } + + onWindowStageDestroy() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageDestroy'); + } + + onForeground() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onForeground'); + } + + onBackground() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onBackground'); + } +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/testability/pages/Index.ets b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/testability/pages/Index.ets new file mode 100644 index 0000000000000000000000000000000000000000..431674fc5573a62cfd4d76547115834080634060 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/ets/testability/pages/Index.ets @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2023 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 hilog from '@ohos.hilog'; + +@Entry +@Component +struct Index { + aboutToAppear() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility index aboutToAppear'); + } + @State message: string = 'Hello World' + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + Button() { + Text('next page') + .fontSize(20) + .fontWeight(FontWeight.Bold) + }.type(ButtonType.Capsule) + .margin({ + top: 20 + }) + .backgroundColor('#0D9FFB') + .width('35%') + .height('5%') + .onClick(()=>{ + }) + } + .width('100%') + } + .height('100%') + } + } \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/module.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/module.json new file mode 100644 index 0000000000000000000000000000000000000000..bfb8e0432334b6047550df187d6449ff8a31807a --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/module.json @@ -0,0 +1,42 @@ +{ + "module": { + "name": "entry_test", + "type": "feature", + "description": "$string:module_test_desc", + "mainElement": "TestAbility", + "deviceTypes": [ + "default", + "tablet" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:test_pages", + "abilities": [ + { + "name": "TestAbility", + "srcEntrance": "./ets/testability/TestAbility.ets", + "description": "$string:TestAbility_desc", + "icon": "$media:icon", + "label": "$string:TestAbility_label", + "visible": true, + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "skills": [ + { + "actions": [ + "action.system.home" + ], + "entities": [ + "entity.system.home" + ] + } + ] + } + ], + "requestPermissions": [ + { + "name": "ohos.permission.START_ABILITIES_FROM_BACKGROUND" + } + ] + } +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/element/color.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/element/color.json new file mode 100644 index 0000000000000000000000000000000000000000..3c712962da3c2751c2b9ddb53559afcbd2b54a02 --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/element/string.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..65d8fa5a7cf54aa3943dcd0214f58d1771bc1f6c --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_test_desc", + "value": "test ability description" + }, + { + "name": "TestAbility_desc", + "value": "the test ability" + }, + { + "name": "TestAbility_label", + "value": "test label" + } + ] +} \ No newline at end of file diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/media/icon.png b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/media/icon.png differ diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/profile/test_pages.json b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/profile/test_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..b7e7343cacb32ce982a45e76daad86e435e054fe --- /dev/null +++ b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/entry/src/main/resources/base/profile/test_pages.json @@ -0,0 +1,5 @@ +{ + "src": [ + "testability/pages/Index" + ] +} diff --git a/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/signature/openharmony_sx.p7b b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/signature/openharmony_sx.p7b new file mode 100644 index 0000000000000000000000000000000000000000..39da73790b1ac2ed4c6159476d1a969e61a43d2e Binary files /dev/null and b/ability/ability_runtime/registerjserror/ActsRegisterJsErrorTest/signature/openharmony_sx.p7b differ diff --git a/ability/ability_runtime/registerjserror/BUILD.gn b/ability/ability_runtime/registerjserror/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..f6efe2a8dc52d3c99d78011ff56c9654932f5dff --- /dev/null +++ b/ability/ability_runtime/registerjserror/BUILD.gn @@ -0,0 +1,24 @@ +# Copyright (c) 2023 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") + +group("registerjserror") { + testonly = true + if (is_standard_system) { + deps = [ + "ActsRegisterJsErrorRely:ActsRegisterJsErrorRely", + "ActsRegisterJsErrorTest:ActsRegisterJsErrorTest", + ] + } +}