diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/BUILD.gn b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/BUILD.gn new file mode 100755 index 0000000000000000000000000000000000000000..f347519e1f42025400f21e7ee519980a0672d681 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/BUILD.gn @@ -0,0 +1,38 @@ +# 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("ActsHiSysEventJsTest") { + hap_profile = "./src/main/config.json" + deps = [ + ":hisysevent_js_assets", + ":hisysevent_resources", + ] + + # shared_libraries = [ + # "//third_party/giflib:libgif", + # "//third_party/libpng:libpng", + # ] + certificate_profile = "./signature/openharmony_sx.p7b" + hap_name = "ActsHiSysEventJsTest" + + # part_name = "prebuilt_hap" + # subsystem_name = "xts" +} +ohos_js_assets("hisysevent_js_assets") { + source_dir = "./src/main/js/default" +} +ohos_resources("hisysevent_resources") { + sources = [ "./src/main/resources" ] + hap_profile = "./src/main/config.json" +} diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/Test.json b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/Test.json new file mode 100755 index 0000000000000000000000000000000000000000..c5264adb902d8ab95038fda6062489cf45e77231 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/Test.json @@ -0,0 +1,18 @@ +{ + "description": "Configuration for hjunit demo Tests", + "driver": { + "type": "JSUnitTest", + "test-timeout": "270000", + "package": "ohos.acts.hiviewdfx.hisysevent.function", + "shell-timeout": "100000" + }, + "kits": [ + { + "test-file-name": [ + "ActsHiSysEventJsTest.hap" + ], + "type": "AppInstallKit", + "cleanup-apps": true + } + ] +} diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/signature/openharmony_sx.p7b b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/signature/openharmony_sx.p7b new file mode 100755 index 0000000000000000000000000000000000000000..9be1e98fa4c0c28ca997ed660112fa16b194f0f5 Binary files /dev/null and b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/signature/openharmony_sx.p7b differ diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/config.json b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/config.json new file mode 100755 index 0000000000000000000000000000000000000000..d3064df89b96eb49d11334d7cc890eee98c6d969 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/config.json @@ -0,0 +1,60 @@ +{ + "app": { + "bundleName": "ohos.acts.hiviewdfx.hisysevent.function", + "vendor": "example", + "version": { + "code": 1, + "name": "1.0" + }, + "apiVersion": { + "compatible": 4, + "target": 5 + } + }, + "deviceConfig": {}, + "module": { + "package": "ohos.acts.hiviewdfx.hisysevent.function", + "name": ".MyApplication", + "deviceType": [ + "phone" + ], + "distro": { + "deliveryWithInstall": true, + "moduleName": "entry", + "moduleType": "entry" + }, + "abilities": [ + { + "visible": true, + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ], + "name": "ohos.acts.hiviewdfx.hisysevent.function.MainAbility", + "icon": "$media:icon", + "description": "$string:mainability_description", + "label": "MyApplication", + "type": "page", + "launchType": "standard" + } + ], + "js": [ + { + "pages": [ + "pages/index/index" + ], + "name": "default", + "window": { + "designWidth": 720, + "autoDesignWidth": false + } + } + ] + } +} diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/app.js b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/app.js new file mode 100755 index 0000000000000000000000000000000000000000..3ee099f58926b1a7c42f02bb88ebb4998f9e4ac4 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/app.js @@ -0,0 +1,22 @@ +/* + * 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'); + } +}; diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/i18n/en-US.json b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/i18n/en-US.json new file mode 100755 index 0000000000000000000000000000000000000000..e63c70d978a3a53be988388c87182f81785e170c --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/i18n/en-US.json @@ -0,0 +1,6 @@ +{ + "strings": { + "hello": "Hello", + "world": "World" + } +} \ No newline at end of file diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/i18n/zh-CN.json b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/i18n/zh-CN.json new file mode 100755 index 0000000000000000000000000000000000000000..de6ee5748322f44942c1b003319d8e66c837675f --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/i18n/zh-CN.json @@ -0,0 +1,6 @@ +{ + "strings": { + "hello": "您好", + "world": "世界" + } +} \ No newline at end of file diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.css b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.css new file mode 100755 index 0000000000000000000000000000000000000000..6fda792753f2e15f22b529c7b90a82185b2770bf --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.css @@ -0,0 +1,9 @@ +.container { + flex-direction: column; + justify-content: center; + align-items: center; +} + +.title { + font-size: 100px; +} diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.hml b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.hml new file mode 100755 index 0000000000000000000000000000000000000000..f64b040a5ae394dbaa5e185e1ecd4f4556b92184 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.hml @@ -0,0 +1,5 @@ +
+ + {{ $t('strings.hello') }} {{ title }} + +
diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.js b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.js new file mode 100755 index 0000000000000000000000000000000000000000..d1af64d7509673fdd0d9026e70938277765862f4 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/pages/index/index.js @@ -0,0 +1,46 @@ +/* + * 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 app from '@system.app' +import device from '@system.device' +import router from '@system.router' +import {Core, ExpectExtend, Constant} from 'deccjsunit/index' + +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') + const core = Core.getInstance() + const expectExtend = new ExpectExtend({ + 'id': 'extend' + }) + core.addService('expect', expectExtend) + core.init() + const configService = core.getDefaultService('config') + configService.setConfig(this) + + require('../../test/List.test') + core.execute() + }, + onReady() { + }, +} \ No newline at end of file diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/test/HiSysEvent.test.js b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/test/HiSysEvent.test.js new file mode 100755 index 0000000000000000000000000000000000000000..3094c90ddcae7b28565843e1e5da49149ebb2aa1 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/test/HiSysEvent.test.js @@ -0,0 +1,912 @@ +/* + * 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 hiSysEvent from '@ohos.hiSysEvent' +import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index' + +describe('hiSysEventJsTest', function () { + beforeAll(function() { + + /** + * @tc.setup: setup invoked before all test cases + */ + console.info('hiSysEventJsTest beforeAll called') + }) + + afterAll(function() { + + /** + * @tc.teardown: teardown invoked after all test cases + */ + console.info('hiSysEventJsTest afterAll called') + }) + + beforeEach(function() { + + /** + * @tc.setup: setup invoked before each test case + */ + console.info('hiSysEventJsTest beforeEach called') + }) + + afterEach(function() { + + /** + * @tc.teardown: teardown invoked after each test case + */ + console.info('hiSysEventJsTest afterEach called') + }) + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0100 + * @tc.name testHiSysEventApi01 + * @tc.desc 添加Js打点事件-callback方式进行回调处理 + */ + it('testHiSysEventApi01', 1, async function (done) { + console.info('testHiSysEventApi01 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.FAULT, + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi01 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0200 + * @tc.name testHiSysEventApi02 + * @tc.desc 添加Js打点事件-Promise方式中then()方法进行打点成功回调处理 + */ + it('testHiSysEventApi02', 1, async function (done) { + console.info('testHiSysEventApi02 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.FAULT, + }).then( + (value) => { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + ) + console.info('testHiSysEventApi02 end') + }) + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0400 + * @tc.name testHiSysEventApi04 + * @tc.desc HiSysEvent添加Js打点事件-添加成功后回调函数被调用(domain+eventName, eventType=FAULT) + */ + it('testHiSysEventApi04', 3, async function (done) { + console.info('testHiSysEventApi04 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.FAULT, + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi04 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0500 + * @tc.name testHiSysEventApi05 + * @tc.desc 添加Js打点事件-添加成功后回调函数被调用(domain+eventName, eventType=STATISTIC) + */ + it('testHiSysEventApi05', 3, async function (done) { + console.info('testHiSysEventApi05 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.STATISTIC, + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi05 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0600 + * @tc.name testHiSysEventApi06 + * @tc.desc 添加Js打点事件-添加成功后回调函数被调用(domain+eventName, eventType=SECURITY) + */ + it('testHiSysEventApi06', 3, async function (done) { + console.info('testHiSysEventApi06 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.SECURITY, + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi06 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0700 + * @tc.name testHiSysEventApi07 + * @tc.desc 添加Js打点事件-添加成功后回调函数被调用(domain+eventName, eventType=BEHAVIOR) + */ + it('testHiSysEventApi07', 3, async function (done) { + console.info('testHiSysEventApi07 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.BEHAVIOR, + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi07 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0800 + * @tc.name testHiSysEventApi08 + * @tc.desc 添加Js打点事件-添加成功后回调函数被调用(domain+eventName+params, eventType=FAULT) + */ + it('testHiSysEventApi08', 3, async function (done) { + console.info('testHiSysEventApi08 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.FAULT, + params: { + PID: 487, + UID: 103, + PACKAGE_NAME: "com.ohos.hisysevent.test", + PROCESS_NAME: "syseventservice", + MSG: "no msg." + } + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi08 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_0900 + * @tc.name testHiSysEventApi09 + * @tc.desc HiSysEvent添加Js打点事件-添加成功后回调函数被调用(domain+eventName+params, eventType=STATISTIC) + */ + it('testHiSysEventApi09', 3, async function (done) { + console.info('testHiSysEventApi09 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.STATISTIC, + params: { + PID: 487, + UID: 103, + PACKAGE_NAME: "com.ohos.hisysevent.test", + PROCESS_NAME: "syseventservice", + MSG: "no msg." + } + },(err, value) => { + console.log('HiSysEvent into json-callback'); + if (err) { + console.error(`HiSysEvent json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`HiSysEvent json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi09 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1000 + * @tc.name testHiSysEventApi10 + * @tc.desc HiSysEvent添加Js打点事件-添加成功后回调函数被调用(domain+eventName+params, eventType=SECURITY) + */ + it('testHiSysEventApi10', 3, async function (done) { + console.info('testHiSysEventApi10 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.SECURITY, + params: { + PID: 487, + UID: 103, + PACKAGE_NAME: "com.ohos.hisysevent.test", + PROCESS_NAME: "syseventservice", + MSG: "no msg." + } + },(err, value) => { + console.log('testHiSysEventApi10 into json-callback'); + if (err) { + console.error(`testHiSysEventApi10 json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`testHiSysEventApi10 json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi10 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1100 + * @tc.name testHiSysEventApi11 + * @tc.desc HiSysEvent添加Js打点事件-添加成功后回调函数被调用(domain+eventName+params, eventType=BEHAVIOR) + */ + it('testHiSysEventApi11', 3, async function (done) { + console.info('testHiSysEventApi11 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.BEHAVIOR, + params: { + PID: 487, + UID: 103, + PACKAGE_NAME: "com.ohos.hisysevent.test", + PROCESS_NAME: "syseventservice", + MSG: "no msg." + } + },(err, value) => { + console.log('testHiSysEventApi11 into json-callback'); + if (err) { + console.error(`testHiSysEventApi11 json-callback-error code=${err.code}`); + expect().assertFail(); + done(); + } else { + console.log(`testHiSysEventApi11 json-callback-success value=${value}`); + expect(value == 0).assertTrue(); + done(); + } + }); + console.info('testHiSysEventApi11 end') + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1200 + * @tc.name testHiSysEventApi12 + * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName, rule=PREFIX) + */ + it('testHiSysEventApi12', 3, async function (done) { + console.info('testHiSysEventApi12 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + ruleType: hiSysEvent.RuleType.PREFIX + }], + onEvent: (info) => { + console.info(`testHiSysEventApi12: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi12: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi12: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi12 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + console.info('testHiSysEventApi12 end') + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1300 + * @tc.name testHiSysEventApi13 + * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName, rule=REGULAR) + */ + it('testHiSysEventApi13', 3, async function (done) { + console.info('testHiSysEventApi13 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + ruleType: hiSysEvent.RuleType.REGULAR + }], + onEvent: (info) => { + console.info(`testHiSysEventApi13: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi13: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi13: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi13 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + console.info('testHiSysEventApi13 end') + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1400 + * @tc.name testHiSysEventApi14 + * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName, rule=WHOLE_WORD) + */ + it('testHiSysEventApi14', 3, async function (done) { + console.info('testHiSysEventApi14 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + ruleType: hiSysEvent.RuleType.WHOLE_WORD + }], + onEvent: (info) => { + console.info(`testHiSysEventApi14: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi14: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi14: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi14 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + console.info('testHiSysEventApi14 end') + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1500 + * @tc.name testHiSysEventApi15 + * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName+tag, rule=PREFIX) + */ + it('testHiSysEventApi15', 3, async function (done) { + console.info('testHiSysEventApi15 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + tag: "STABILITY", + ruleType: hiSysEvent.RuleType.PREFIX + }], + onEvent: (info) => { + console.info(`testHiSysEventApi15: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi15: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi15: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi15 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + console.info('testHiSysEventApi15 end') + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1600 + * @tc.name testHiSysEventApi16 + * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName+tag, rule=REGULAR) + */ + it('testHiSysEventApi16', 3, async function (done) { + console.info('testHiSysEventApi16 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + tag: "STABILITY", + ruleType: hiSysEvent.RuleType.REGULAR + }], + onEvent: (info) => { + console.info(`testHiSysEventApi16: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi16: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi16: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi16 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + console.info('testHiSysEventApi16 end') + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1700 + * @tc.name testHiSysEventApi17 + * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName+tag, rule=WHOLE_WORD) + */ + it('testHiSysEventApi17', 3, async function (done) { + console.info('testHiSysEventApi17 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + tag: "STABILITY", + ruleType: hiSysEvent.RuleType.WHOLE_WORD + }], + onEvent: (info) => { + console.info(`testHiSysEventApi17: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi17: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi17: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi17 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + console.info('testHiSysEventApi17 end') + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1800 + * @tc.name testHiSysEventApi18 + * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName, rule=PREFIX) + */ + it('testHiSysEventApi18', 3, async function (done) { + console.info('testHiSysEventApi18 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + ruleType: hiSysEvent.RuleType.PREFIX + }], + onEvent: (info) => { + console.info(`testHiSysEventApi18: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi18: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi18: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi18 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + setTimeout(() => { + result = hiSysEvent.removeWatcher(watcher) + expect(result).assertEqual(0) + done() + console.info('testHiSysEventApi18 end') + }, 1000) + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_1900 + * @tc.name testHiSysEventApi19 + * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName, rule=REGULAR) + */ + it('testHiSysEventApi19', 3, async function (done) { + console.info('testHiSysEventApi19 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + ruleType: hiSysEvent.RuleType.REGULAR + }], + onEvent: (info) => { + console.info(`testHiSysEventApi19: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi19: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi19: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi19 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + setTimeout(() => { + result = hiSysEvent.removeWatcher(watcher) + expect(result).assertEqual(0) + done() + console.info('testHiSysEventApi19 end') + }, 1000) + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_2000 + * @tc.name testHiSysEventApi20 + * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName, rule=WHOLE_WORD) + */ + it('testHiSysEventApi20', 3, async function (done) { + console.info('testHiSysEventApi14 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + ruleType: hiSysEvent.RuleType.WHOLE_WORD + }], + onEvent: (info) => { + console.info(`testHiSysEventApi20: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi20: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi20: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi20 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + setTimeout(() => { + result = hiSysEvent.removeWatcher(watcher) + expect(result).assertEqual(0) + done() + console.info('testHiSysEventApi20 end') + }, 1000) + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_2100 + * @tc.name testHiSysEventApi21 + * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName+tag, rule=PREFIX) + */ + it('testHiSysEventApi21', 3, async function (done) { + console.info('testHiSysEventApi21 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + tag: "STABILITY", + ruleType: hiSysEvent.RuleType.PREFIX + }], + onEvent: (info) => { + console.info(`testHiSysEventApi21: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi21: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi21: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi21 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + setTimeout(() => { + result = hiSysEvent.removeWatcher(watcher) + expect(result).assertEqual(0) + done() + console.info('testHiSysEventApi21 end') + }, 1000) + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_2200 + * @tc.name testHiSysEventApi22 + * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName+tag, rule=REGULAR) + */ + it('testHiSysEventApi22', 3, async function (done) { + console.info('testHiSysEventApi22 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + tag: "STABILITY", + ruleType: hiSysEvent.RuleType.REGULAR + }], + onEvent: (info) => { + console.info(`testHiSysEventApi22: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi22: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi22: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi22 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + setTimeout(() => { + result = hiSysEvent.removeWatcher(watcher) + expect(result).assertEqual(0) + done() + console.info('testHiSysEventApi22 end') + }, 1000) + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_2300 + * @tc.name testHiSysEventApi23 + * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName+tag, rule=WHOLE_WORD) + */ + it('testHiSysEventApi23', 3, async function (done) { + console.info('testHiSysEventApi23 start') + let watcher = { + rules: [{ + domain: "RELIABILITY", + name: "STACK", + tag: "STABILITY", + ruleType: hiSysEvent.RuleType.WHOLE_WORD + }], + onEvent: (info) => { + console.info(`testHiSysEventApi23: OnEvent...`) + expect(Object.keys(info).length > 0).assertTrue() + console.info(`testHiSysEventApi23: domain is : ${info.domain}, name is ${info.name}, eventType is ${info.eventType}`) + if (info.params instanceof Object) { + for (const key in info.params) { + console.info(`testHiSysEventApi23: ${key}: ${info.params[key]}`) + } + } + }, + onServiceDied: () => { + console.info(`testHiSysEventApi23 Onservice died`); + } + } + let result = hiSysEvent.addWatcher(watcher) + expect(result).assertEqual(0) + setTimeout(() => { + result = hiSysEvent.removeWatcher(watcher) + expect(result).assertEqual(0) + done() + console.info('testHiSysEventApi23 end') + }, 1000) + done(); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_2400 + * @tc.name testHiSysEventApi24 + * @tc.desc HiSysEvent查询接口测试-查询成功回调函数被调用(查询一个事件) + */ + it('testHiSysEventApi24', 1, async function (done) { + console.info('testHiSysEventApi24 start') + hiSysEvent.write({ + domain: "RELIABILITY", + name: "STACK", + eventType: hiSysEvent.EventType.SECURITY, + params: { + PID: 487, + UID: 103, + PACKAGE_NAME: "com.ohos.hisysevent.test", + PROCESS_NAME: "syseventservice", + MSG: "no msg." + } + },(err, value) => { + console.log('testHiSysEventApi24 into json-callback'); + if (err) { + console.error('in testHiSysEventApi24 test callback: err.code = ' + err.code) + result = err.code + } else { + console.info('in testHiSysEventApi24 test callback: result = ' + value) + result = value; + } + }); + setTimeout(() => { + let ret = hiSysEvent.query({ + beginTime: -1, + endTime: -1, + maxEvents: 1, + }, [{ + domain: "RELIABILITY", + names: ["STACK"], + }], { + onQuery: function (infos, seqs) { + console.info(`testHiSysEventApi24: onQuery...`) + expect(infos.length >= 0).assertTrue() + expect(seqs.length >= 0).assertTrue() + console.info(`testHiSysEventApi24: infos.size is ${infos.length}, seqs.length is ${seqs.length}`) + if (infos instanceof Array) { + for (let i = 0; i < infos.length; i++) { + let item = infos[i]; + console.info(`testHiSysEventApi24: domain is ${item.domain}, name is ${item.name}, eventType is ${item.eventType}`) + if (item.params instanceof Object) { + for (const key in item.params) { + console.info(`testHiSysEventApi24: ${key}: ${item.params[key]}`) + } + } + } + } + if (seqs instanceof Array) { + for (let i = 0; i < seqs.length; i++) { + let item = seqs[i]; + console.info(`testHiSysEventApi24: seq${i}: ${item}`) + } + } + }, + onComplete: function(reason, total) { + console.info(`testHiSysEventApi24: onComplete...`) + console.info(`testHiSysEventApi24: reason is ${reason}, total is ${total}`) + done() + console.info(`testHiSysEventApi24 end`) + } + }) + expect(ret).assertEqual(0) + }, 1000); + }) + + /** + * @tc.number DFX_DFT_HiSysEvent_JS_2500 + * @tc.name testHiSysEventApi25 + * @tc.desc HiSysEvent查询接口测试-查询成功回调函数被调用(查询多个事件) + */ + it('testHiSysEventApi25', 1, async function (done) { + console.info('testHiSysEventApi25 start') + hiSysEvent.write({ + domain: "AAFWK", + name: "JS_ERROR", + eventType: hiSysEvent.EventType.SECURITY, + },(err, value) => { + console.log('testHiSysEventApi25 into json-callback'); + if (err) { + console.error('in testHiSysEventApi25 test callback: err.code = ' + err.code) + result = err.code + } else { + console.info('in testHiSysEventApi25 test callback: result = ' + value) + result = value; + } + }); + hiSysEvent.write({ + domain: "AAFWK", + name: "LIFECYCLE_TIMEOUT", + eventType: hiSysEvent.EventType.STATISTIC, + },(err, value) => { + console.log('testHiSysEventApi25 into json-callback'); + if (err) { + console.error('in testHiSysEventApi25 test callback: err.code = ' + err.code) + result = err.code + } else { + console.info('in testHiSysEventApi25 test callback: result = ' + value) + result = value; + } + }); + setTimeout(() => { + let ret = hiSysEvent.query({ + beginTime: -1, + endTime: -1, + maxEvents: 5, + }, [{ + domain: "AAFWK", + names: ["JS_ERROR","LIFECYCLE_TIMEOUT"], + }], { + onQuery: function (infos, seqs) { + console.info(`testHiSysEventApi25: onQuery...`) + expect(infos.length >= 0).assertTrue() + expect(seqs.length >= 0).assertTrue() + console.info(`testHiSysEventApi25: infos.size is ${infos.length}, seqs.length is ${seqs.length}`) + if (infos instanceof Array) { + for (let i = 0; i < infos.length; i++) { + let item = infos[i]; + console.info(`testHiSysEventApi25: domain is ${item.domain}, name is ${item.name}, eventType is ${item.eventType}`) + if (item.params instanceof Object) { + for (const key in item.params) { + console.info(`testHiSysEventApi25: ${key}: ${item.params[key]}`) + } + } + } + } + if (seqs instanceof Array) { + for (let i = 0; i < seqs.length; i++) { + let item = seqs[i]; + console.info(`testHiSysEventApi25: seq${i}: ${item}`) + } + } + }, + onComplete: function(reason, total) { + console.info(`testHiSysEventApi25: onComplete...`) + console.info(`testHiSysEventApi25: reason is ${reason}, total is ${total}`) + done() + console.info(`testHiSysEventApi25 end`) + } + }) + expect(ret).assertEqual(0) + }, 1000); + }) +}) diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/test/List.test.js b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/test/List.test.js new file mode 100755 index 0000000000000000000000000000000000000000..7bd9c7ce685761419393f2df9988670ebbbebefa --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/js/default/test/List.test.js @@ -0,0 +1,15 @@ +/* + * 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. + */ +require('./HiSysEvent.test.js') diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/resources/base/element/string.json b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/resources/base/element/string.json new file mode 100755 index 0000000000000000000000000000000000000000..ab025e765292c86abf35e594e18f4e4549ed2f06 --- /dev/null +++ b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/resources/base/element/string.json @@ -0,0 +1,12 @@ +{ + "string": [ + { + "name": "app_name", + "value": "test2demo" + }, + { + "name": "mainability_description", + "value": "hap sample empty page" + } + ] +} diff --git a/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/resources/base/media/icon.png b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/resources/base/media/icon.png new file mode 100755 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/hiviewdfx/hisyseventtest/hisyseventtest/hisyseventjstest/src/main/resources/base/media/icon.png differ