diff --git a/notification/ans_standard/publish_test/BUILD.gn b/notification/ans_standard/publish_test/BUILD.gn index 158e3f777c217dcdb7f3a311b2fe0825dabeb121..b1f3e9b64fb0103165525f0978e125b6a316f26d 100644 --- a/notification/ans_standard/publish_test/BUILD.gn +++ b/notification/ans_standard/publish_test/BUILD.gn @@ -32,7 +32,7 @@ group("publish_test") { "ansactscancelgroup:ActsAnsCancelGroupTest", "ansactsremovegroup:ActsAnsRemoveGroupTest", - #"donotdisturbmode:ActsAnsDoNotDisturbTest", + #"donotdisturbmode:ActsAnsDoNotDisturbTest", #"publish:ActsAnsNotificationPublishXts", "publishsound:ActsAnsPublishSoundTest", @@ -40,6 +40,7 @@ group("publish_test") { #"publishvibra:ActsAnsPublishVibraTest", #"sub:ActsAnsSubTestXts", "unsubscribe:ActsAnsUnSubscriberTest", + "anssecondarydirectory:ActsAnsSecondaryDirectoryTest", "publishremovalwantagent:ActsAnsPublishRemovalWantAgentTest", "wantagent:wantagent", ] diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/app.json b/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/app.json new file mode 100644 index 0000000000000000000000000000000000000000..ef5c10cb264e5ac83f1717b3419b99fa60bd59cb --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/app.json @@ -0,0 +1,21 @@ +{ + "app": { + "bundleName": "com.example.secondaryDirectory", + "vendor": "huawei", + "versionCode": 1000000, + "versionName": "1.0.0", + "debug": false, + "icon": "$media:icon", + "label": "$string:app_name", + "description": "$string:description_application", + "distributedNotificationEnabled": true, + "keepAlive": true, + "singleUser": true, + "minAPIVersion": 9, + "targetAPIVersion": 9, + "car": { + "apiCompatibleVersion": 9, + "singleUser": false + } + } +} diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/resources/base/element/string.json b/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..0d1f12ea9692aa14d5e6e140d74baa9b04c25352 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/resources/base/element/string.json @@ -0,0 +1,8 @@ +{ + "string":[ + { + "name":"app_name", + "value":"LifecycleTest" + } + ] +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/resources/base/media/app_icon.png b/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..474a55588fd7216113dd42073aadf254d4dba023 Binary files /dev/null and b/notification/ans_standard/publish_test/anssecondarydirectory/AppScope/resources/base/media/app_icon.png differ diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/BUILD.gn b/notification/ans_standard/publish_test/anssecondarydirectory/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..ac75fa4403a51a01d9521aa3f081b27285d3e422 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/BUILD.gn @@ -0,0 +1,43 @@ +# Copyright (c) 2021 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("ActsAnsSecondaryDirectoryTest") { + hap_profile = "entry/src/main/module.json" + js_build_mode = "debug" + deps = [ + ":secondarydirectorytest_js_assets", + ":secondarydirectorytest_resources", + ] + ets2abc = true + certificate_profile = "signature/openharmony_sx.p7b" + hap_name = "ActsAnsSecondaryDirectoryTest" + subsystem_name = "ability" + part_name = "ability_runtime" +} + +ohos_app_scope("secondarydirectorytest_app_profile") { + app_profile = "AppScope/app.json" + sources = [ "AppScope/resources" ] +} + +ohos_js_assets("secondarydirectorytest_js_assets") { + source_dir = "entry/src/main/ets" +} + +ohos_resources("secondarydirectorytest_resources") { + sources = [ "entry/src/main/resources" ] + deps = [ ":secondarydirectorytest_app_profile" ] + hap_profile = "entry/src/main/module.json" +} diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/Test.json b/notification/ans_standard/publish_test/anssecondarydirectory/Test.json new file mode 100644 index 0000000000000000000000000000000000000000..63109b9fd733cdbadfaa235529c69086e4a50351 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/Test.json @@ -0,0 +1,23 @@ +{ + "description": "Configuration for hjunit demo Tests", + "driver": { + "type": "OHJSUnitTest", + "test-timeout": "180000", + "bundle-name": "com.example.secondaryDirectory", + "module-name": "phone", + "shell-timeout": "600000", + "testcase-timeout": 70000 + }, + "kits": [ + { + "test-file-name": [ + "ActsAnsSecondaryDirectoryTest.hap", + "FaSupplement.hap", + "StageSupplement.hap", + "FormModule.hap" + ], + "type": "AppInstallKit", + "cleanup-apps": true + } + ] +} diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/Application/AbilityStage.ts b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/Application/AbilityStage.ts new file mode 100644 index 0000000000000000000000000000000000000000..a590b7d615d839ed6c67eced002d150020e300d5 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/Application/AbilityStage.ts @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2021 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 AbilityStage from "@ohos.application.AbilityStage" + +export default class MyAbilityStage extends AbilityStage { + onCreate() { + console.log("[Demo] MyAbilityStage onCreate") + globalThis.stageContext = this.context; + } +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/MainAbility/MainAbility.ts b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/MainAbility/MainAbility.ts new file mode 100644 index 0000000000000000000000000000000000000000..83be6c5a2a1cab94029e5a4ed20690d133a08f58 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/MainAbility/MainAbility.ts @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2021 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 Ability from '@ohos.application.Ability' + +export default class MainAbility extends Ability { + + onCreate(want, launchParam) { + console.log("[Demo] MainAbility onCreate") + globalThis.abilityWant = want; + globalThis.applicationContext = this.context.getApplicationContext(); + } + + onDestroy() { + console.log("[Demo] MainAbility onDestroy") + } + + onWindowStageCreate(windowStage) { + // Main window is created, set main page for this ability + console.log("[Demo] MainAbility onWindowStageCreate") + globalThis.abilityContext = this.context; + windowStage.setUIContent(this.context, "MainAbility/pages/MainAbility_pages", null) + } + + onWindowStageDestroy() { + // Main window is destroyed, release UI related resources + console.log("[Demo] MainAbility onWindowStageDestroy") + } + + onForeground() { + // Ability has brought to foreground + console.log("[Demo] MainAbility onForeground") + } + + onBackground() { + // Ability has back to background + console.log("[Demo] MainAbility onBackground") + } +}; diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/MainAbility/pages/MainAbility_pages.ets b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/MainAbility/pages/MainAbility_pages.ets new file mode 100644 index 0000000000000000000000000000000000000000..ecf02975d91908f8b1b59f3e668343e8419e23c7 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/MainAbility/pages/MainAbility_pages.ets @@ -0,0 +1,47 @@ +// @ts-nocheck +/* + * Copyright (c) 2021 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 router from '@ohos.router'; +import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry' +import { Hypium } from '@ohos/hypium' +import testsuite from '../../test/List.test' + +@Entry +@Component +struct Index { + @State message: string = 'MainAbility' + + aboutToAppear() { + console.info("start run testcase!!!!") + var abilityDelegator: any + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var abilityDelegatorArguments: any + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + console.info('start run testcase!!!') + Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite) + } + + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts new file mode 100644 index 0000000000000000000000000000000000000000..ebb6de4af1541d455222b2452af8af77736ad2d5 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts @@ -0,0 +1,78 @@ +/* + * 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 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() { + console.log("onAbilityCreateCallback"); +} + +async function addAbilityMonitorCallback(err: any) { + console.info("addAbilityMonitorCallback : " + JSON.stringify(err)) +} + +export default class OpenHarmonyTestRunner implements TestRunner { + constructor() { + } + + onPrepare() { + console.info("OpenHarmonyTestRunner OnPrepare ") + } + + async onRun() { + console.log('OpenHarmonyTestRunner onRun run') + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var testAbilityName = abilityDelegatorArguments.bundleName + '.MainAbility' + let lMonitor = { + abilityName: testAbilityName, + onAbilityCreate: onAbilityCreateCallback, + }; + abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback) + var cmd = 'aa start -d 0 -a com.example.secondaryDirectory.MainAbility' + ' -b ' + abilityDelegatorArguments.bundleName + cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters) + var debug = abilityDelegatorArguments.parameters["-D"] + if (debug == 'true') + { + cmd += ' -D' + } + console.info('cmd : '+cmd) + abilityDelegator.executeShellCommand(cmd, + (err: any, d: any) => { + console.info('executeShellCommand : err : ' + JSON.stringify(err)); + console.info('executeShellCommand : data : ' + d.stdResult); + console.info('executeShellCommand : data : ' + d.exitCode); + }) + console.info('OpenHarmonyTestRunner onRun end') + } +}; \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/test/List.test.ets b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/test/List.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..329392db5760962ac57a94aff6206a4d8b1805b0 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/test/List.test.ets @@ -0,0 +1,20 @@ +/* + * Copyright (c) 2021 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 secondaryDirectory from './SecondaryDirectory.test' + +export default function List() { + secondaryDirectory() +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/test/SecondaryDirectory.test.ets b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/test/SecondaryDirectory.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..e5e18e446acee7f586827e1c2f47132af0ee5e2b --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/ets/test/SecondaryDirectory.test.ets @@ -0,0 +1,454 @@ +/* + * 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 { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium' +import notify from '@ohos.notification' +import WantAgent from '@ohos.wantAgent' + +var timeout = 1000; + +export default function secondaryDirectoryTest() { +describe('secondaryDirectoryTest', function () { + console.info("===========secondaryDirectoryTest start====================>"); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0000 + * @tc.name: enableNotification() + * @tc.desc: verify the function of enableNotification + */ + it('ACTS_SecondaryDirectory_xts_0000', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0000===begin===>"); + let promise = await notify.enableNotification({ + bundle:"com.example.secondaryDirectory" + },true) + console.info("===ACTS_SecondaryDirectory_xts_0000===end===>"); + done(); + }) + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0100 + * @tc.name: NotificationRequest、NotificationSubscriber、NotificationSubscribeInfo、SubscribeCallbackData + * @tc.desc: use NotificationRequest type + */ + function consumeCallback1(data) { + console.info("===>consumeCallback1 data : ===>" +JSON.stringify(data)); + let subscribeCallback: notify.SubscribeCallbackData; + subscribeCallback = data; + let contentType = subscribeCallback.request.content.contentType; + console.info("===>contentType: ===>" + contentType) + expect(contentType).assertEqual(notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT); + } + + it('ACTS_SecondaryDirectory_xts_0100', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0100===begin===>"); + let subscriber: notify.NotificationSubscriber = { + onConsume:consumeCallback1 + } + + let subscriberInfo: notify.NotificationSubscribeInfo = { + bundleNames: ["com.example.secondaryDirectory"] + } + + await notify.subscribe(subscriber, subscriberInfo); + + let basicContent: notify.NotificationBasicContent = { + title: "test_title", + text: "test_text", + additionalText: "test_Publish" + } + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, + normal: basicContent + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + id: 1 + } + + console.info("===ACTS_SecondaryDirectory_xts_0100===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0100===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subscriber); + console.info("======ACTS_SecondaryDirectory_xts_0100 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0200 + * @tc.name: NotificationLongTextContent + * @tc.desc: use NotificationLongTextContent type + */ + function consumeCallback2(data) { + console.info("===>consumeCallback2 data : ===>" +JSON.stringify(data)); + let longContentText: notify.NotificationLongTextContent = data.request.content.longText; + console.info("===>longText: ===>" + JSON.stringify(longContentText)) + expect(longContentText.title).assertEqual("test_title"); + expect(longContentText.text).assertEqual("test_text"); + expect(longContentText.additionalText).assertEqual("test_Publish"); + expect(longContentText.longText).assertEqual("longText123456"); + expect(longContentText.briefText).assertEqual("briefText123456"); + expect(longContentText.expandedTitle).assertEqual("expandedTitle123456"); + } + + it('ACTS_SecondaryDirectory_xts_0200', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0200===begin===>"); + let subInfo: notify.NotificationSubscriber = { + onConsume:consumeCallback2 + } + await notify.subscribe(subInfo); + + let longContentText: notify.NotificationLongTextContent = { + title: "test_title", + text: "test_text", + additionalText: "test_Publish", + longText: "longText123456", + briefText: "briefText123456", + expandedTitle: "expandedTitle123456" + } + + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_LONG_TEXT, + longText: longContentText + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + id: 2, + slotType: notify.SlotType.SERVICE_INFORMATION, + } + + console.info("===ACTS_SecondaryDirectory_xts_0200===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0200===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subInfo); + console.info("======ACTS_SecondaryDirectory_xts_0200 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0300 + * @tc.name: NotificationBasicContent + * @tc.desc: use NotificationBasicContent type + */ + function consumeCallback3(data) { + console.info("===>consumeCallback3 data : ===>" +JSON.stringify(data)); + let basicContentText: notify.NotificationBasicContent = data.request.content.normal; + console.info("===>basicText: ===>" + JSON.stringify(basicContentText)) + expect(basicContentText.title).assertEqual("test_title"); + expect(basicContentText.text).assertEqual("test_text"); + expect(basicContentText.additionalText).assertEqual("test_Publish"); + } + + it('ACTS_SecondaryDirectory_xts_0300', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0300===begin===>"); + let subInfo: notify.NotificationSubscriber = { + onConsume:consumeCallback3 + } + await notify.subscribe(subInfo); + + let basicContent: notify.NotificationBasicContent = { + title: "test_title", + text: "test_text", + additionalText: "test_Publish" + } + + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, + normal: basicContent + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + id: 3 + } + + console.info("===ACTS_SecondaryDirectory_xts_0300===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0300===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subInfo); + console.info("======ACTS_SecondaryDirectory_xts_0300 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0400 + * @tc.name: NotificationMultiLineContent + * @tc.desc: use NotificationMultiLineContent type + */ + function consumeCallback4(data) { + console.info("===>consumeCallback4 data : ===>" +JSON.stringify(data)); + let longContentText: notify.NotificationMultiLineContent = data.request.content.multiLine; + console.info("===>multiLineText: ===>" + JSON.stringify(longContentText)) + expect(longContentText.briefText).assertEqual("notificationMultiLineContent_title"); + expect(longContentText.longTitle).assertEqual("notificationMultiLineContent_title_12345678999999999"); + expect(longContentText.lines[0]).assertEqual("thrive"); + expect(longContentText.lines[1]).assertEqual("democracy"); + expect(longContentText.lines[2]).assertEqual("civilization"); + expect(longContentText.lines[3]).assertEqual("harmonious"); + } + + it('ACTS_SecondaryDirectory_xts_0400', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0400===begin===>"); + let subInfo: notify.NotificationSubscriber = { + onConsume:consumeCallback4 + } + await notify.subscribe(subInfo); + + let multiLineContent: notify.NotificationMultiLineContent = { + title: "test_title", + text: "test_text", + briefText: "notificationMultiLineContent_title", + longTitle: "notificationMultiLineContent_title_12345678999999999", + lines: ["thrive", "democracy", "civilization", "harmonious"] + } + + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_MULTILINE, + multiLine: multiLineContent + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + id: 4 + } + + console.info("===ACTS_SecondaryDirectory_xts_0400===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0400===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subInfo); + console.info("======ACTS_SecondaryDirectory_xts_0400 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0500 + * @tc.name: NotificationActionButton、NotificationUserInput + * @tc.desc: use NotificationActionButton type + */ + function consumeCallback5(data) { + console.info("===>consumeCallback5 data : ===>" +JSON.stringify(data)); + let actionButtons = data.request.actionButtons[0] + console.info("===>actionButtons: ===>" + JSON.stringify(actionButtons)) + expect(actionButtons.title).assertEqual("buttonA"); + expect(actionButtons.userInput.inputKey).assertEqual("test_NotificationUserInput"); + WantAgent.getWant(actionButtons.wantAgent).then((data) => { + expect(data[0].action).assertEqual("usual.event.REMOVAL_WANTAGENT"); + }); + } + + it('ACTS_SecondaryDirectory_xts_0500', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0500===begin===>"); + let subInfo: notify.NotificationSubscriber = { + onConsume:consumeCallback5 + } + await notify.subscribe(subInfo); + + let agentInfo = { + wants: [ + { + bundleName: 'com.example.secondaryDirectory', + abilityName: 'com.example.secondaryDirectory.MainAbility', + action: "usual.event.REMOVAL_WANTAGENT" + } + ], + operationType: WantAgent.OperationType.SEND_COMMON_EVENT, + requestCode: 0, + wantAgentFlags:[WantAgent.WantAgentFlags.ONE_TIME_FLAG] + }; + + let wantAgentData = await WantAgent.getWantAgent(agentInfo); + + let basicContent: notify.NotificationBasicContent = { + title: "test_title", + text: "test_text", + additionalText: "test_Publish" + } + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, + normal: basicContent + } + + let userInputContent: notify.NotificationUserInput = { + inputKey: 'test_NotificationUserInput', + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + actionButtons: [ + { + title:"buttonA", + wantAgent: wantAgentData, + userInput: userInputContent + } + ], + id: 5 + } + + console.info("===ACTS_SecondaryDirectory_xts_0500===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0500===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subInfo); + console.info("======ACTS_SecondaryDirectory_xts_0500 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0600 + * @tc.name: NotificationTemplate + * @tc.desc: use NotificationTemplate type + */ + function consumeCallback6(data) { + console.info("===>consumeCallback6 data : ===>" +JSON.stringify(data)); + let templateContent: notify.NotificationTemplate = data.request.template; + console.info("===>template: ===>" + JSON.stringify(templateContent)) + expect(templateContent.name).assertEqual("downloadTemplate"); + expect(templateContent.data.title).assertEqual("file"); + expect(templateContent.data.fileName).assertEqual("music.mp4"); + expect(templateContent.data.progressValue).assertEqual(45); + } + + it('ACTS_SecondaryDirectory_xts_0600', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0600===begin===>"); + let subInfo: notify.NotificationSubscriber = { + onConsume:consumeCallback6 + } + await notify.subscribe(subInfo); + + let basicContent: notify.NotificationBasicContent = { + title: "test_title", + text: "test_text", + additionalText: "test_Publish" + } + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, + normal: basicContent + } + + let notifyTemplate: notify.NotificationTemplate = { + name: 'downloadTemplate', + data: { + title: 'file', + fileName: 'music.mp4', + progressValue: 45 + } + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + template: notifyTemplate, + id: 6 + } + + console.info("===ACTS_SecondaryDirectory_xts_0600===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0600===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subInfo); + console.info("======ACTS_SecondaryDirectory_xts_0600 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); + + /* + * @tc.number: ACTS_SecondaryDirectory_xts_0700 + * @tc.name: DistributedOptions + * @tc.desc: use DistributedOptions type + */ + function consumeCallback7(data) { + console.info("===>consumeCallback7 data : ===>" +JSON.stringify(data)); + let options: notify.DistributedOptions = data.request.distributedOption; + console.info("===>longText: ===>" + JSON.stringify(options)) + expect(options.isDistributed).assertEqual(false); + expect(options.supportDisplayDevices[0]).assertEqual("0"); + expect(options.supportOperateDevices[0]).assertEqual("0"); + } + + it('ACTS_SecondaryDirectory_xts_0700', 0, async function (done) { + console.info("===ACTS_SecondaryDirectory_xts_0700===begin===>"); + let subInfo: notify.NotificationSubscriber = { + onConsume:consumeCallback7 + } + await notify.subscribe(subInfo); + + let options: notify.DistributedOptions = { + isDistributed: false, + supportDisplayDevices: ["0"], + supportOperateDevices: ["0"] + } + + let basicContent: notify.NotificationBasicContent = { + title: "test_title", + text: "test_text", + additionalText: "test_Publish" + } + let notifyContent: notify.NotificationContent = { + contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, + normal: basicContent + } + + let notificationRequest : notify.NotificationRequest = { + content: notifyContent, + distributedOption: options, + id: 7 + } + + console.info("===ACTS_SecondaryDirectory_xts_0700===publish===>"); + await notify.publish(notificationRequest, (err) => { + console.info("===>publish callback===>"+err.code); + expect(err.code).assertEqual(0) + }); + console.info("===ACTS_SecondaryDirectory_xts_0700===end===>"); + + setTimeout((async function(){ + notify.unsubscribe(subInfo); + console.info("======ACTS_SecondaryDirectory_xts_0700 setTimeout unsubscribe===>"); + done(); + }),timeout); + }); +}) } \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/module.json b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/module.json new file mode 100644 index 0000000000000000000000000000000000000000..aa56bb41e26482c1822b1e2e1282bf217182f3e2 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/module.json @@ -0,0 +1,44 @@ +{ + "module": { + "name": "phone", + "type": "entry", + "srcEntrance": "./ets/Application/AbilityStage.ts", + "description": "$string:phone_entry_dsc", + "mainElement": "MainAbility", + "deviceTypes": [ + "phone" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:main_pages", + "uiSyntax": "ets", + "abilities": [ + { + "name": "com.example.secondaryDirectory.MainAbility", + "srcEntrance": "./ets/MainAbility/MainAbility.ts", + "description": "$string:phone_entry_main", + "icon": "$media:icon", + "label": "$string:entry_label", + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:white", + "visible": true, + "orientation": "portrait", + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ] + } + ], + "requestPermissions": [ + { + "name": "ohos.permission.NOTIFICATION_CONTROLLER" + } + ] + } + } \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/element/color.json b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/element/color.json new file mode 100644 index 0000000000000000000000000000000000000000..1bbc9aa9617e97c45440e1d3d66afc1154837012 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "white", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/element/string.json b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..4af975ee904d5089633c604a63f3f9bcc3885a3f --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/element/string.json @@ -0,0 +1,36 @@ +{ + "string": [ + { + "name": "phone_entry_dsc", + "value": "i am an entry for phone" + }, + { + "name": "phone_entry_main", + "value": "the phone entry ability" + }, + { + "name": "entry_label", + "value": "ActsLifecycleMultihapTest" + }, + { + "name": "form_description", + "value": "my form" + }, + { + "name": "description_application", + "value": "demo for test" + }, + { + "name": "entry_desc", + "value": "description" + }, + { + "name": "MainAbility_desc", + "value": "description" + }, + { + "name": "MainAbility_label", + "value": "label" + } + ] +} diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/media/icon.png b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..474a55588fd7216113dd42073aadf254d4dba023 Binary files /dev/null and b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/media/icon.png differ diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/profile/form_config.json b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/profile/form_config.json new file mode 100644 index 0000000000000000000000000000000000000000..146fbe1c6da88e46886838ba746afb29e69cc190 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/profile/form_config.json @@ -0,0 +1,23 @@ +{ + "forms": [ + { + "isDefault": true, + "src": "./js/widget/pages/index/index", + "scheduledUpdateTime": "10:30", + "defaultDimension": "2*2", + "name": "widget", + "description": "This is a service widget.", + "colorMode": "auto", + "window": { + "designWidth": 720, + "autoDesignWidth": true + }, + "formConfigAbility": "ability://xxxxx", + "supportDimensions": [ + "2*2" + ], + "updateEnabled": true, + "updateDuration": 1 + } + ] +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/profile/main_pages.json b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/profile/main_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..81691245bb98976d7d8966dd406a9abd5140ef39 --- /dev/null +++ b/notification/ans_standard/publish_test/anssecondarydirectory/entry/src/main/resources/base/profile/main_pages.json @@ -0,0 +1,5 @@ +{ + "src": [ + "MainAbility/pages/MainAbility_pages" + ] +} \ No newline at end of file diff --git a/notification/ans_standard/publish_test/anssecondarydirectory/signature/openharmony_sx.p7b b/notification/ans_standard/publish_test/anssecondarydirectory/signature/openharmony_sx.p7b new file mode 100644 index 0000000000000000000000000000000000000000..cc53179a48f88f20acc379c138a001e9a15838f6 Binary files /dev/null and b/notification/ans_standard/publish_test/anssecondarydirectory/signature/openharmony_sx.p7b differ