未验证 提交 036b23bf 编写于 作者: O openharmony_ci 提交者: Gitee

!5562 【XTS】【事件通知子系统】删除 ActsSubscriberTestUnorderSystemTest 测试套_master

Merge pull request !5562 from zhijianwen/master
......@@ -18,7 +18,6 @@ group("SubscribeAndPublish") {
if (is_standard_system) {
deps = [
"actssubscriberorderedtest:ActsSubscriberOrderTest",
"actssubscriberunordersystemtest:ActsSubscriberTestUnorderSystemTest",
"actssubscriberunordertest:ActsSubscriberUnorderTest",
"emittertest:EmitterTest",
]
......
# 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("ActsSubscriberTestUnorderSystemTest") {
hap_profile = "./src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsSubscriberTestUnorderSystemTest"
subsystem_name = "notification"
part_name = "common_event_service"
}
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "260000",
"shell-timeout": "260000",
"bundle-name": "com.example.actssubscribertestunordersystem",
"package-name": "com.example.actssubscribertestunordersystem"
},
"kits": [
{
"test-file-name": [
"ActsSubscriberTestUnorderSystemTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
\ No newline at end of file
{
"app": {
"bundleName": "com.example.actssubscribertestunordersystem",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 5,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.example.actssubscribertestunordersystem",
"name": ".entry",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
],
"testRunner": {
"name": "OpenHarmonyTestRunner",
"srcPath": "TestRunner"
},
"mainAbility": ".MainAbility",
"srcPath": ""
}
}
\ No newline at end of file
/*
* 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.
*/
export default {
onCreate() {
console.info("============== AceApplication onCreate ==============");
},
onDestroy() {
console.info('=============AceApplication onDestroy=============');
}
};
/*
* 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.
*/
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
/*
* 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.
*/
<div class="container">
<text class="title">
Hello, World!
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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 file from '@system.file'
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('onShow finish')
},
onReady() {
},
}
/*
* 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from '@ohos/hypium'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('TestApplication onCreate')
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package', '-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare')
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run')
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.TestAbility'
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
console.info('debug value : '+debug)
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
})
}
};
/*
* 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 commonEvent from '@ohos.commonEvent'
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium'
export default function ActsSubscriberTestUnorderSystem() {
describe('SUB_NOTIFICATION_CES_SUBSCRIBER_UNORDER_SYSTEM_TEST', async function () {
let TAG = 'SUB_NOTIFICATION_CES_SUBSCRIBER_UNORDER_SYSTEM_TEST ===>'
console.info(`${TAG} SUB_NOTIFICATION_CES_SUBSCRIBER_UNORDER_SYSTEM_TEST START`)
it('SUB_NOTIFICATION_CES_SUBSCRIBER_UNORDER_SYSTEM_TEST_0100', 0, async function (done) {
console.info(`${TAG} SUB_NOTIFICATION_CES_SUBSCRIBER_UNORDER_SYSTEM_TEST START`)
let CommonEventSubscriberInfo = {
events: [
commonEvent.Support.COMMON_EVENT_SHUTDOWN,
commonEvent.Support.COMMON_EVENT_BATTERY_CHANGED,
commonEvent.Support.COMMON_EVENT_BATTERY_LOW,
commonEvent.Support.COMMON_EVENT_BATTERY_OKAY,
commonEvent.Support.COMMON_EVENT_POWER_CONNECTED,
commonEvent.Support.COMMON_EVENT_POWER_DISCONNECTED,
commonEvent.Support.COMMON_EVENT_SCREEN_OFF,
commonEvent.Support.COMMON_EVENT_SCREEN_ON,
commonEvent.Support.COMMON_EVENT_USER_PRESENT,
commonEvent.Support.COMMON_EVENT_TIME_TICK,
commonEvent.Support.COMMON_EVENT_TIME_CHANGED,
commonEvent.Support.COMMON_EVENT_DATE_CHANGED,
commonEvent.Support.COMMON_EVENT_TIMEZONE_CHANGED,
commonEvent.Support.COMMON_EVENT_CLOSE_SYSTEM_DIALOGS,
commonEvent.Support.COMMON_EVENT_PACKAGE_ADDED,
commonEvent.Support.COMMON_EVENT_PACKAGE_REPLACED,
commonEvent.Support.COMMON_EVENT_MY_PACKAGE_REPLACED,
commonEvent.Support.COMMON_EVENT_PACKAGE_REMOVED,
commonEvent.Support.COMMON_EVENT_BUNDLE_REMOVED,
commonEvent.Support.COMMON_EVENT_PACKAGE_FULLY_REMOVED,
commonEvent.Support.COMMON_EVENT_PACKAGE_CHANGED,
commonEvent.Support.COMMON_EVENT_PACKAGE_RESTARTED,
commonEvent.Support.COMMON_EVENT_PACKAGE_DATA_CLEARED,
commonEvent.Support.COMMON_EVENT_PACKAGES_SUSPENDED,
commonEvent.Support.COMMON_EVENT_PACKAGES_UNSUSPENDED,
commonEvent.Support.COMMON_EVENT_MY_PACKAGE_SUSPENDED,
commonEvent.Support.COMMON_EVENT_MY_PACKAGE_UNSUSPENDED,
commonEvent.Support.COMMON_EVENT_UID_REMOVED,
commonEvent.Support.COMMON_EVENT_PACKAGE_FIRST_LAUNCH,
commonEvent.Support.COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION,
commonEvent.Support.COMMON_EVENT_PACKAGE_VERIFIED,
commonEvent.Support.COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE,
commonEvent.Support.COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE,
commonEvent.Support.COMMON_EVENT_CONFIGURATION_CHANGED,
commonEvent.Support.COMMON_EVENT_LOCALE_CHANGED,
commonEvent.Support.COMMON_EVENT_MANAGE_PACKAGE_STORAGE,
commonEvent.Support.COMMON_EVENT_DRIVE_MODE,
commonEvent.Support.COMMON_EVENT_HOME_MODE,
commonEvent.Support.COMMON_EVENT_OFFICE_MODE,
commonEvent.Support.COMMON_EVENT_USER_STARTED,
commonEvent.Support.COMMON_EVENT_USER_BACKGROUND,
commonEvent.Support.COMMON_EVENT_USER_FOREGROUND,
commonEvent.Support.COMMON_EVENT_USER_UNLOCKED,
commonEvent.Support.COMMON_EVENT_USER_STOPPED,
commonEvent.Support.COMMON_EVENT_HWID_LOGIN,
commonEvent.Support.COMMON_EVENT_HWID_LOGOUT,
commonEvent.Support.COMMON_EVENT_HWID_TOKEN_INVALID,
commonEvent.Support.COMMON_EVENT_HWID_LOGOFF,
commonEvent.Support.COMMON_EVENT_WIFI_POWER_STATE,
commonEvent.Support.COMMON_EVENT_WIFI_CONN_STATE,
commonEvent.Support.COMMON_EVENT_WIFI_HOTSPOT_STATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE,
commonEvent.Support.COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_DISCHARGING,
commonEvent.Support.COMMON_EVENT_CHARGING,
commonEvent.Support.COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED,
commonEvent.Support.COMMON_EVENT_POWER_SAVE_MODE_CHANGED,
commonEvent.Support.COMMON_EVENT_LOCATION_MODE_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_IVI_SLEEP,
commonEvent.Support.COMMON_EVENT_IVI_PAUSE,
commonEvent.Support.COMMON_EVENT_IVI_STANDBY,
commonEvent.Support.COMMON_EVENT_IVI_LASTMODE_SAVE,
commonEvent.Support.COMMON_EVENT_IVI_VOLTAGE_ABNORMAL,
commonEvent.Support.COMMON_EVENT_IVI_HIGH_TEMPERATURE,
commonEvent.Support.COMMON_EVENT_IVI_EXTREME_TEMPERATURE,
commonEvent.Support.COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL,
commonEvent.Support.COMMON_EVENT_IVI_VOLTAGE_RECOVERY,
commonEvent.Support.COMMON_EVENT_IVI_TEMPERATURE_RECOVERY,
commonEvent.Support.COMMON_EVENT_IVI_ACTIVE,
commonEvent.Support.COMMON_EVENT_USB_DEVICE_ATTACHED,
commonEvent.Support.COMMON_EVENT_USB_DEVICE_DETACHED,
commonEvent.Support.COMMON_EVENT_USB_ACCESSORY_ATTACHED,
commonEvent.Support.COMMON_EVENT_USB_ACCESSORY_DETACHED,
commonEvent.Support.COMMON_EVENT_AIRPLANE_MODE_CHANGED,
commonEvent.Support.COMMON_EVENT_BOOT_COMPLETED,
commonEvent.Support.COMMON_EVENT_SPLIT_SCREEN,
commonEvent.Support.COMMON_EVENT_WIFI_P2P_CONN_STATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED,
commonEvent.Support.COMMON_EVENT_DISK_REMOVED,
commonEvent.Support.COMMON_EVENT_DISK_UNMOUNTED,
commonEvent.Support.COMMON_EVENT_DISK_MOUNTED,
commonEvent.Support.COMMON_EVENT_DISK_BAD_REMOVAL,
commonEvent.Support.COMMON_EVENT_DISK_UNMOUNTABLE,
commonEvent.Support.COMMON_EVENT_DISK_EJECT,
commonEvent.Support.COMMON_EVENT_LOCKED_BOOT_COMPLETED,
commonEvent.Support.COMMON_EVENT_USER_SWITCHED,
commonEvent.Support.COMMON_EVENT_USER_STARTING,
commonEvent.Support.COMMON_EVENT_USER_STOPPING,
commonEvent.Support.COMMON_EVENT_WIFI_SCAN_FINISHED,
commonEvent.Support.COMMON_EVENT_WIFI_RSSI_VALUE,
commonEvent.Support.COMMON_EVENT_WIFI_AP_STA_JOIN,
commonEvent.Support.COMMON_EVENT_WIFI_AP_STA_LEAVE,
commonEvent.Support.COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE,
commonEvent.Support.COMMON_EVENT_WIFI_P2P_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE,
commonEvent.Support.COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED,
commonEvent.Support.COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED,
commonEvent.Support.COMMON_EVENT_USER_ADDED,
commonEvent.Support.COMMON_EVENT_USER_REMOVED,
commonEvent.Support.COMMON_EVENT_ABILITY_ADDED,
commonEvent.Support.COMMON_EVENT_ABILITY_REMOVED,
commonEvent.Support.COMMON_EVENT_ABILITY_UPDATED,
commonEvent.Support.COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED,
commonEvent.Support.COMMON_EVENT_ACCOUNT_DELETED,
commonEvent.Support.COMMON_EVENT_FOUNDATION_READY,
commonEvent.Support.COMMON_EVENT_THERMAL_LEVEL_CHANGED,
commonEvent.Support.COMMON_EVENT_PACKAGE_CACHE_CLEARED,
commonEvent.Support.COMMON_EVENT_USB_STATE,
commonEvent.Support.COMMON_EVENT_USB_PORT_CHANGED,
commonEvent.Support.COMMON_EVENT_VOLUME_REMOVED,
commonEvent.Support.COMMON_EVENT_VOLUME_UNMOUNTED,
commonEvent.Support.COMMON_EVENT_VOLUME_MOUNTED,
commonEvent.Support.COMMON_EVENT_VOLUME_BAD_REMOVAL,
commonEvent.Support.COMMON_EVENT_VOLUME_EJECT,
commonEvent.Support.COMMON_EVENT_SLOT_CHANGE,
commonEvent.Support.COMMON_EVENT_SPN_INFO_CHANGED,
commonEvent.Support.COMMON_EVENT_QUICK_FIX_APPLY_RESULT
]
}
let CommonEventSubscriber
commonEvent.createSubscriber(CommonEventSubscriberInfo).then((data) => {
console.info(`${TAG} createSubscriber success : ${CommonEventSubscriberInfo}`)
CommonEventSubscriber = data
expect(true).assertTrue()
commonEvent.subscribe(CommonEventSubscriber, (err, CommonEventData) => {
if (err.code) {
console.info(`${TAG} subscribe err : ${err.code}`)
expect(false).assertTrue()
done()
} else {
console.info(`${TAG} subscribe success : ${CommonEventData}`)
expect(true).assertTrue()
}
})
}).catch((err) => {
console.info(`${TAG} createSubscriber err ${err}`)
expect(false).assertTrue()
done()
})
for (let i = 0; i < CommonEventSubscriberInfo.events.length; i++) {
await commonEvent.publish(CommonEventSubscriberInfo.events[i], (err) => {
if (err.code) {
console.info(`${TAG} publish err : ${err.code}`)
expect(false).assertTrue()
done()
} else {
console.info(`${TAG} publish success : ${CommonEventSubscriberInfo.events[i]}`)
expect(true).assertTrue()
done()
}
})
}
})
console.info(`${TAG} SUB_NOTIFICATION_CES_SUBSCRIBER_UNORDER_SYSTEM_TEST END`)
})
}
/*
* 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 ActsSubscriberTestUnorderSystem from './ActsSubscriber_test_unorder.js'
export default function testsuite() {
ActsSubscriberTestUnorderSystem()
}
{
"string": [
{
"name": "app_name",
"value": "JsHelloWorld"
},
{
"name": "mainability_description",
"value": "hap sample empty page"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册