HiSysEvent.test.js 29.2 KB
Newer Older
C
chenxuihui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 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.
 */
import hiSysEvent from '@ohos.hiSysEvent'
J
jiyong_sd 已提交
16
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
C
chenxuihui 已提交
17

J
jiyong_sd 已提交
18
export default function hiSysEventJsTest() {
C
chenxuihui 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
describe('hiSysEventJsTest', function () {
    beforeAll(function() {
        console.info('hiSysEventJsTest beforeAll called')
    })

    afterAll(function() {
        console.info('hiSysEventJsTest afterAll called')
    })

    beforeEach(function() {
        console.info('hiSysEventJsTest beforeEach called')
    })

    afterEach(function() {
        console.info('hiSysEventJsTest afterEach called')
    })
C
chenxuihui 已提交
35

1
15929983503 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
	/**
	 * @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: "ACCOUNT",
			name: "PERMISSION_EXCEPTION",
			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: "ACCOUNT",
				names: ["PERMISSION_EXCEPTION"],
			}], {
				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}`)
					console.info(`testHiSysEventApi24 end`)
					done();
				}
			})
			console.info(`ret::::::::::::${ret}`)
			if (ret == -19) { // -19: no permission
				expect(true)
				console.info(`testHiSysEventApi24 end`)
				done();
			} else {
				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: "HIVIEWDFX",
			name: "SYS_USAGE",
			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;
			}
		});
		console.info('add second..')
		setTimeout(() => {
			hiSysEvent.write({
				domain: "HIVIEWDFX",
				name: "PLUGIN_STATS",
				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;
				}
			})
		},1000)
		setTimeout(() => {
			let ret = hiSysEvent.query({
				beginTime: -1,
				endTime: -1,
				maxEvents: 5,
			}, [{
				domain: "HIVIEWDFX",
				names: ["SYS_USAGE","PLUGIN_STATS"],
			}], {
				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}`)
					console.info(`testHiSysEventApi25 end`)
					done();
				}
			})
			console.info(`ret::::::::::::${ret}`)
			if (ret == -19) { // -19: no permission
				expect(true)
				console.info(`testHiSysEventApi24 end`)
				done();
			} else {
				expect(ret).assertEqual(0)
			}
		}, 1000);
	})


C
chenxuihui 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
	/**
	 * @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}`);
C
chenxuihui 已提交
220
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
				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();
			}
C
chenxuihui 已提交
248 249 250 251 252
		).catch(
			(err) => {
				console.error(`HiSysEvent json-callback-error code=${err.code}`);
				expect(err.code == 0).assertFail();
			}
C
chenxuihui 已提交
253 254 255
		)
		console.info('testHiSysEventApi02 end')
	})
C
chenxuihui 已提交
256

C
chenxuihui 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
	/**
	 * @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}`);
C
chenxuihui 已提交
272
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
				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({
C
chenxuihui 已提交
291 292
			domain: "HIVIEWDFX",
			name: "PLUGIN_STATS",
C
chenxuihui 已提交
293 294 295 296 297
			eventType: hiSysEvent.EventType.STATISTIC,
		},(err, value) => {
			console.log('HiSysEvent into json-callback');
			if (err) {
				console.error(`HiSysEvent json-callback-error code=${err.code}`);
C
chenxuihui 已提交
298
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
				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({
C
chenxuihui 已提交
317 318
			domain: "ACCOUNT",
			name: "PERMISSION_EXCEPTION",
C
chenxuihui 已提交
319 320 321 322 323
			eventType: hiSysEvent.EventType.SECURITY,
		},(err, value) => {
			console.log('HiSysEvent into json-callback');
			if (err) {
				console.error(`HiSysEvent json-callback-error code=${err.code}`);
C
chenxuihui 已提交
324
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
				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({
C
chenxuihui 已提交
343 344
			domain: "HIVIEWDFX",
			name: "PLUGIN_LOAD",
C
chenxuihui 已提交
345 346 347 348 349
			eventType: hiSysEvent.EventType.BEHAVIOR,
		},(err, value) => {
			console.log('HiSysEvent into json-callback');
			if (err) {
				console.error(`HiSysEvent json-callback-error code=${err.code}`);
C
chenxuihui 已提交
350
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
351 352 353 354 355 356 357 358 359 360
				done();
			} else {
				console.log(`HiSysEvent json-callback-success value=${value}`);
				expect(value == 0).assertTrue();
				done();
			}
		});
		console.info('testHiSysEventApi07 end')
	})

C
chenxuihui 已提交
361
    /**
C
chenxuihui 已提交
362 363 364
	 * @tc.number DFX_DFT_HiSysEvent_JS_0800
	 * @tc.name testHiSysEventApi08
	 * @tc.desc 添加Js打点事件-添加成功后回调函数被调用(domain+eventName+params, eventType=FAULT)
C
chenxuihui 已提交
365
     */
C
chenxuihui 已提交
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
	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}`);
C
chenxuihui 已提交
383
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
				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({
C
chenxuihui 已提交
402 403
			domain: "HIVIEWDFX",
			name: "PLUGIN_STATS",
C
chenxuihui 已提交
404 405 406 407 408 409 410 411 412 413 414 415
			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}`);
C
chenxuihui 已提交
416
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
				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({
C
chenxuihui 已提交
435 436
			domain: "ACCOUNT",
			name: "PERMISSION_EXCEPTION",
C
chenxuihui 已提交
437 438 439 440 441 442 443 444 445 446 447 448
			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}`);
C
chenxuihui 已提交
449
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
				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({
C
chenxuihui 已提交
468 469
			domain: "HIVIEWDFX",
			name: "PLUGIN_LOAD",
C
chenxuihui 已提交
470 471 472 473 474 475 476 477 478 479 480 481
			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}`);
C
chenxuihui 已提交
482
				expect(err.code == 0).assertFail();
C
chenxuihui 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
				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()
C
chenxuihui 已提交
509 510
				console.info(`testHiSysEventApi12: domain is : ${info.domain}, name is ${info.name},
				                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
511 512 513 514 515 516 517 518 519 520 521
				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)
1
15929983503 已提交
522
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
523 524 525 526 527 528 529 530
		console.info('testHiSysEventApi12 end')
		done();
	})

	/**
	 * @tc.number DFX_DFT_HiSysEvent_JS_1300
	 * @tc.name testHiSysEventApi13
	 * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName, rule=REGULAR)
C
chenxuihui 已提交
531
	 */
C
chenxuihui 已提交
532 533 534 535 536 537 538 539 540 541 542
	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()
C
chenxuihui 已提交
543 544
				console.info(`testHiSysEventApi13: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
545 546 547 548 549 550 551 552 553 554 555
				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)
1
15929983503 已提交
556
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
557 558 559 560 561 562 563 564
		console.info('testHiSysEventApi13 end')
		done();
	})

	/**
	 * @tc.number DFX_DFT_HiSysEvent_JS_1400
	 * @tc.name testHiSysEventApi14
	 * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName, rule=WHOLE_WORD)
C
chenxuihui 已提交
565
	 */
C
chenxuihui 已提交
566 567 568 569 570 571 572 573 574 575 576
	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()
C
chenxuihui 已提交
577 578
				console.info(`testHiSysEventApi14: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
579 580 581 582 583 584 585 586 587 588 589
				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)
1
15929983503 已提交
590
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
591 592 593 594 595 596 597 598
		console.info('testHiSysEventApi14 end')
		done();
	})

	/**
	 * @tc.number DFX_DFT_HiSysEvent_JS_1500
	 * @tc.name testHiSysEventApi15
	 * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName+tag, rule=PREFIX)
C
chenxuihui 已提交
599
	 */
C
chenxuihui 已提交
600 601 602 603 604 605 606 607 608 609 610 611
	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()
C
chenxuihui 已提交
612 613
				console.info(`testHiSysEventApi15: domain is : ${info.domain}, name is ${info.name},
				                                   eventType is ${info.eventType}`)
C
chenxuihui 已提交
614 615 616 617 618 619 620 621 622 623 624
				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)
1
15929983503 已提交
625
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
626 627 628 629 630 631 632 633
		console.info('testHiSysEventApi15 end')
		done();
	})

	/**
	 * @tc.number DFX_DFT_HiSysEvent_JS_1600
	 * @tc.name testHiSysEventApi16
	 * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName+tag, rule=REGULAR)
C
chenxuihui 已提交
634
	 */
C
chenxuihui 已提交
635 636 637 638 639 640 641 642 643 644 645 646
	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()
C
chenxuihui 已提交
647 648
				console.info(`testHiSysEventApi16: domain is : ${info.domain},
				              name is ${info.name}, eventType is ${info.eventType}`)
C
chenxuihui 已提交
649 650 651 652 653 654 655 656 657 658 659
				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)
1
15929983503 已提交
660
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
661 662 663 664 665 666 667 668
		console.info('testHiSysEventApi16 end')
		done();
	})

	/**
	 * @tc.number DFX_DFT_HiSysEvent_JS_1700
	 * @tc.name testHiSysEventApi17
	 * @tc.desc HiSysEvent订阅接口测试-订阅成功回调函数被调用(domain+eventName+tag, rule=WHOLE_WORD)
C
chenxuihui 已提交
669
	 */
C
chenxuihui 已提交
670 671 672 673 674 675 676 677 678 679 680 681
	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()
C
chenxuihui 已提交
682 683
				console.info(`testHiSysEventApi17: domain is : ${info.domain}, name is ${info.name},
				                                   eventType is ${info.eventType}`)
C
chenxuihui 已提交
684 685 686 687 688 689 690 691 692 693 694
				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)
1
15929983503 已提交
695
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
696 697 698
		console.info('testHiSysEventApi17 end')
		done();
	})
C
chenxuihui 已提交
699

C
chenxuihui 已提交
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
	/**
	 * @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()
C
chenxuihui 已提交
716 717
				console.info(`testHiSysEventApi18: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
718 719 720 721 722 723 724 725 726 727 728
				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)
1
15929983503 已提交
729
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
730 731
		setTimeout(() => {
            result = hiSysEvent.removeWatcher(watcher)
1
15929983503 已提交
732
			expect(result == -19).assertTrue();
C
chenxuihui 已提交
733 734 735 736 737 738 739 740 741 742
            done()
            console.info('testHiSysEventApi18 end')
        }, 1000)
		done();
	})

	/**
	 * @tc.number DFX_DFT_HiSysEvent_JS_1900
	 * @tc.name testHiSysEventApi19
	 * @tc.desc HiSysEvent删除订阅接口测试-删除订阅成功回调函数被调用(domain+eventName, rule=REGULAR)
C
chenxuihui 已提交
743
	 */
C
chenxuihui 已提交
744 745 746 747 748 749 750 751 752 753 754
	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()
C
chenxuihui 已提交
755 756
				console.info(`testHiSysEventApi19: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
757 758 759 760 761 762 763 764 765 766 767
				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)
1
15929983503 已提交
768
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
769 770
		setTimeout(() => {
            result = hiSysEvent.removeWatcher(watcher)
1
15929983503 已提交
771
			expect(result == -19).assertTrue();
C
chenxuihui 已提交
772 773 774 775 776 777 778 779 780 781
            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)
C
chenxuihui 已提交
782
	 */
C
chenxuihui 已提交
783 784 785 786 787 788 789 790 791 792 793
	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()
C
chenxuihui 已提交
794 795
				console.info(`testHiSysEventApi20: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
796 797 798 799 800 801 802 803 804 805 806
				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)
1
15929983503 已提交
807
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
808 809
		setTimeout(() => {
            result = hiSysEvent.removeWatcher(watcher)
1
15929983503 已提交
810
			expect(result == -19).assertTrue();
C
chenxuihui 已提交
811 812 813 814 815 816 817 818 819 820
            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)
C
chenxuihui 已提交
821
	 */
C
chenxuihui 已提交
822 823 824 825 826 827 828 829 830 831 832 833
	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()
C
chenxuihui 已提交
834 835
				console.info(`testHiSysEventApi21: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
836 837 838 839 840 841 842 843 844 845 846
				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)
1
15929983503 已提交
847
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
848 849
		setTimeout(() => {
            result = hiSysEvent.removeWatcher(watcher)
1
15929983503 已提交
850
			expect(result == -19).assertTrue();
C
chenxuihui 已提交
851 852 853 854 855 856 857 858 859 860
            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)
C
chenxuihui 已提交
861
	 */
C
chenxuihui 已提交
862 863 864 865 866 867 868 869 870 871 872 873
	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()
C
chenxuihui 已提交
874 875
				console.info(`testHiSysEventApi22: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
876 877 878 879 880 881 882 883 884 885 886
				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)
1
15929983503 已提交
887
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
888 889
		setTimeout(() => {
            result = hiSysEvent.removeWatcher(watcher)
1
15929983503 已提交
890
			expect(result == -19).assertTrue();
C
chenxuihui 已提交
891 892 893 894 895 896 897 898 899 900
            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)
C
chenxuihui 已提交
901
	 */
C
chenxuihui 已提交
902 903 904 905 906 907 908 909 910 911 912 913
	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()
C
chenxuihui 已提交
914 915
				console.info(`testHiSysEventApi23: domain is : ${info.domain}, name is ${info.name},
				                                                               eventType is ${info.eventType}`)
C
chenxuihui 已提交
916 917 918 919 920 921 922 923 924 925 926
				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)
1
15929983503 已提交
927
		expect(result == -19).assertTrue();
C
chenxuihui 已提交
928 929
		setTimeout(() => {
            result = hiSysEvent.removeWatcher(watcher)
1
15929983503 已提交
930
			expect(result == -19).assertTrue();
C
chenxuihui 已提交
931 932 933 934 935
            done()
            console.info('testHiSysEventApi23 end')
        }, 1000)
		done();
	})
C
chenxuihui 已提交
936

C
chenxuihui 已提交
937
})
1
15929983503 已提交
938
}