提交 d4efb5c4 编写于 作者: 1 15929983503

hisysevent8.2modify

Signed-off-by: N15929983503 <duanhaizhen@huawei.com>
上级 828d5131
...@@ -14,15 +14,6 @@ ...@@ -14,15 +14,6 @@
], ],
"type": "AppInstallKit", "type": "AppInstallKit",
"cleanup-apps": true "cleanup-apps": true
},
{
"type": "ShellKit",
"run-command": [
"setenforce 0"
],
"teardown-command": [
"setenforce 1"
]
} }
] ]
} }
...@@ -332,6 +332,7 @@ describe('hiSysEventJsTest', function () { ...@@ -332,6 +332,7 @@ describe('hiSysEventJsTest', function () {
rules: [{ rules: [{
domain: "RELIABILITY", domain: "RELIABILITY",
name: "STACK", name: "STACK",
tag: "STABILITY",
ruleType: hiSysEvent.RuleType.PREFIX ruleType: hiSysEvent.RuleType.PREFIX
}], }],
onEvent: (info) => { onEvent: (info) => {
...@@ -349,10 +350,18 @@ describe('hiSysEventJsTest', function () { ...@@ -349,10 +350,18 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi12 Onservice died`); console.info(`testHiSysEventApi12 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.addWatcher(watcher)
expect(true).assertTrue()
console.info('testHiSysEventApi12 end') console.info('testHiSysEventApi12 end')
done(); done();
} catch (err) {
console.error(`testHiSysEventApi12 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi12 end')
done()
}
hiSysEvent.removeWatcher(watcher)
}) })
/** /**
...@@ -383,10 +392,18 @@ describe('hiSysEventJsTest', function () { ...@@ -383,10 +392,18 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi13 Onservice died`); console.info(`testHiSysEventApi13 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.addWatcher(watcher)
expect(true).assertTrue()
console.info('testHiSysEventApi13 end') console.info('testHiSysEventApi13 end')
done(); done();
} catch (err) {
console.error(`testHiSysEventApi13 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi13 end')
done()
}
hiSysEvent.removeWatcher(watcher)
}) })
/** /**
...@@ -417,10 +434,18 @@ describe('hiSysEventJsTest', function () { ...@@ -417,10 +434,18 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi14 Onservice died`); console.info(`testHiSysEventApi14 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.addWatcher(watcher)
expect(true).assertTrue()
console.info('testHiSysEventApi14 end') console.info('testHiSysEventApi14 end')
done(); done();
} catch (err) {
console.error(`testHiSysEventApi14 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201)
console.info('testHiSysEventApi14 end')
done()
}
hiSysEvent.removeWatcher(watcher)
}) })
/** /**
...@@ -452,10 +477,18 @@ describe('hiSysEventJsTest', function () { ...@@ -452,10 +477,18 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi15 Onservice died`); console.info(`testHiSysEventApi15 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.addWatcher(watcher)
expect(true).assertTrue()
console.info('testHiSysEventApi15 end') console.info('testHiSysEventApi15 end')
done(); done();
} catch (err) {
console.error(`testHiSysEventApi15 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi15 end')
done()
}
hiSysEvent.removeWatcher(watcher)
}) })
/** /**
...@@ -487,10 +520,18 @@ describe('hiSysEventJsTest', function () { ...@@ -487,10 +520,18 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi16 Onservice died`); console.info(`testHiSysEventApi16 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.addWatcher(watcher)
expect(true).assertTrue()
console.info('testHiSysEventApi16 end') console.info('testHiSysEventApi16 end')
done(); done();
} catch (err) {
console.error(`testHiSysEventApi16 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi16 end')
done()
}
hiSysEvent.removeWatcher(watcher)
}) })
/** /**
...@@ -522,10 +563,18 @@ describe('hiSysEventJsTest', function () { ...@@ -522,10 +563,18 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi17 Onservice died`); console.info(`testHiSysEventApi17 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.addWatcher(watcher)
expect(true).assertTrue()
console.info('testHiSysEventApi17 end') console.info('testHiSysEventApi17 end')
done(); done();
} catch (err) {
console.error(`testHiSysEventApi17 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi17 end')
done()
}
hiSysEvent.removeWatcher(watcher)
}) })
/** /**
...@@ -556,15 +605,20 @@ describe('hiSysEventJsTest', function () { ...@@ -556,15 +605,20 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi18 Onservice died`); console.info(`testHiSysEventApi18 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) hiSysEvent.addWatcher(watcher)
expect(result).assertEqual(0)
setTimeout(() => { setTimeout(() => {
result = hiSysEvent.removeWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.removeWatcher(watcher)
done() expect(true).assertTrue()
console.info('testHiSysEventApi18 end') console.info('testHiSysEventApi18 end')
}, 1000)
done(); done();
} catch (err) {
console.error(`testHiSysEventApi18 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi18 end')
done()
}
}, 1000)
}) })
/** /**
...@@ -595,15 +649,20 @@ describe('hiSysEventJsTest', function () { ...@@ -595,15 +649,20 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi19 Onservice died`); console.info(`testHiSysEventApi19 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) hiSysEvent.addWatcher(watcher)
expect(result).assertEqual(0)
setTimeout(() => { setTimeout(() => {
result = hiSysEvent.removeWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.removeWatcher(watcher)
done() expect(true).assertTrue()
console.info('testHiSysEventApi19 end') console.info('testHiSysEventApi19 end')
}, 1000)
done(); done();
} catch (err) {
console.error(`testHiSysEventApi19 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi19 end')
done()
}
}, 1000)
}) })
/** /**
...@@ -634,15 +693,20 @@ describe('hiSysEventJsTest', function () { ...@@ -634,15 +693,20 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi20 Onservice died`); console.info(`testHiSysEventApi20 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) hiSysEvent.addWatcher(watcher)
expect(result).assertEqual(0)
setTimeout(() => { setTimeout(() => {
result = hiSysEvent.removeWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.removeWatcher(watcher)
done() expect(true).assertTrue()
console.info('testHiSysEventApi20 end') console.info('testHiSysEventApi20 end')
}, 1000)
done(); done();
} catch (err) {
console.error(`testHiSysEventApi20 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi20 end')
done()
}
}, 1000)
}) })
/** /**
...@@ -674,15 +738,20 @@ describe('hiSysEventJsTest', function () { ...@@ -674,15 +738,20 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi21 Onservice died`); console.info(`testHiSysEventApi21 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) hiSysEvent.addWatcher(watcher)
expect(result).assertEqual(0)
setTimeout(() => { setTimeout(() => {
result = hiSysEvent.removeWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.removeWatcher(watcher)
done() expect(true).assertTrue()
console.info('testHiSysEventApi21 end') console.info('testHiSysEventApi21 end')
}, 1000)
done(); done();
} catch (err) {
console.error(`testHiSysEventApi21 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi21 end')
done()
}
}, 1000)
}) })
/** /**
...@@ -714,15 +783,20 @@ describe('hiSysEventJsTest', function () { ...@@ -714,15 +783,20 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi22 Onservice died`); console.info(`testHiSysEventApi22 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) hiSysEvent.addWatcher(watcher)
expect(result).assertEqual(0)
setTimeout(() => { setTimeout(() => {
result = hiSysEvent.removeWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.removeWatcher(watcher)
done() expect(true).assertTrue()
console.info('testHiSysEventApi22 end') console.info('testHiSysEventApi22 end')
}, 1000)
done(); done();
} catch (err) {
console.error(`testHiSysEventApi22 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi22 end')
done()
}
}, 1000)
}) })
/** /**
...@@ -754,15 +828,20 @@ describe('hiSysEventJsTest', function () { ...@@ -754,15 +828,20 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi23 Onservice died`); console.info(`testHiSysEventApi23 Onservice died`);
} }
} }
let result = hiSysEvent.addWatcher(watcher) hiSysEvent.addWatcher(watcher)
expect(result).assertEqual(0)
setTimeout(() => { setTimeout(() => {
result = hiSysEvent.removeWatcher(watcher) try {
expect(result).assertEqual(0) hiSysEvent.removeWatcher(watcher)
done() expect(true).assertTrue()
console.info('testHiSysEventApi23 end') console.info('testHiSysEventApi23 end')
}, 1000)
done(); done();
} catch (err) {
console.error(`testHiSysEventApi23 > error code: ${err.code}, error msg: ${err.message}`)
expect(err.code == 201).assertTrue()
console.info('testHiSysEventApi23 end')
done()
}
}, 1000)
}) })
/** /**
...@@ -772,6 +851,7 @@ describe('hiSysEventJsTest', function () { ...@@ -772,6 +851,7 @@ describe('hiSysEventJsTest', function () {
*/ */
it('testHiSysEventApi24', 1, async function (done) { it('testHiSysEventApi24', 1, async function (done) {
console.info('testHiSysEventApi24 start') console.info('testHiSysEventApi24 start')
try {
hiSysEvent.write({ hiSysEvent.write({
domain: "ACCOUNT", domain: "ACCOUNT",
name: "PERMISSION_EXCEPTION", name: "PERMISSION_EXCEPTION",
...@@ -794,7 +874,7 @@ describe('hiSysEventJsTest', function () { ...@@ -794,7 +874,7 @@ describe('hiSysEventJsTest', function () {
} }
}); });
setTimeout(() => { setTimeout(() => {
let ret = hiSysEvent.query({ hiSysEvent.query({
beginTime: -1, beginTime: -1,
endTime: -1, endTime: -1,
maxEvents: 1, maxEvents: 1,
...@@ -833,8 +913,10 @@ describe('hiSysEventJsTest', function () { ...@@ -833,8 +913,10 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi24 end`) console.info(`testHiSysEventApi24 end`)
} }
}) })
expect(ret).assertEqual(0)
}, 1000); }, 1000);
} catch (error) {
console.error(`error code: ${error.code}, error msg: ${error.message}`);
}
}) })
/** /**
...@@ -844,6 +926,7 @@ describe('hiSysEventJsTest', function () { ...@@ -844,6 +926,7 @@ describe('hiSysEventJsTest', function () {
*/ */
it('testHiSysEventApi25', 1, async function (done) { it('testHiSysEventApi25', 1, async function (done) {
console.info('testHiSysEventApi25 start') console.info('testHiSysEventApi25 start')
try {
hiSysEvent.write({ hiSysEvent.write({
domain: "HIVIEWDFX", domain: "HIVIEWDFX",
name: "SYS_USAGE", name: "SYS_USAGE",
...@@ -876,7 +959,7 @@ describe('hiSysEventJsTest', function () { ...@@ -876,7 +959,7 @@ describe('hiSysEventJsTest', function () {
}) })
},1000) },1000)
setTimeout(() => { setTimeout(() => {
let ret = hiSysEvent.query({ hiSysEvent.query({
beginTime: -1, beginTime: -1,
endTime: -1, endTime: -1,
maxEvents: 5, maxEvents: 5,
...@@ -915,8 +998,10 @@ describe('hiSysEventJsTest', function () { ...@@ -915,8 +998,10 @@ describe('hiSysEventJsTest', function () {
console.info(`testHiSysEventApi25 end`) console.info(`testHiSysEventApi25 end`)
} }
}) })
expect(ret).assertEqual(0) }, 2000);
}, 1000); } catch (error) {
console.error(`error code: ${error.code}, error msg: ${error.message}`);
}
}) })
}) })
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册