diff --git a/hiviewdfx/hisyseventtest/hisyseventjstest/src/main/js/test/HiSysEvent.test.js b/hiviewdfx/hisyseventtest/hisyseventjstest/src/main/js/test/HiSysEvent.test.js index 8fea459f9086b96a4bd41e33d74fc9203376ba88..4912018bc462e53e67db37b6b7ba9e515a6ac6b4 100644 --- a/hiviewdfx/hisyseventtest/hisyseventjstest/src/main/js/test/HiSysEvent.test.js +++ b/hiviewdfx/hisyseventtest/hisyseventjstest/src/main/js/test/HiSysEvent.test.js @@ -867,10 +867,8 @@ describe('hiSysEventJsTest', function () { 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(() => { @@ -882,11 +880,10 @@ describe('hiSysEventJsTest', function () { domain: "ACCOUNT", names: ["PERMISSION_EXCEPTION"], }], { - onQuery: function (infos, seqs) { + onQuery: function (infos) { 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}`) + console.info(`testHiSysEventApi24: infos.size is ${infos.length}`) if (infos instanceof Array) { for (let i = 0; i < infos.length; i++) { let item = infos[i]; @@ -899,12 +896,6 @@ describe('hiSysEventJsTest', function () { } } } - 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...`) @@ -935,10 +926,8 @@ describe('hiSysEventJsTest', function () { 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..') @@ -951,10 +940,8 @@ describe('hiSysEventJsTest', function () { 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) @@ -967,11 +954,10 @@ describe('hiSysEventJsTest', function () { domain: "HIVIEWDFX", names: ["SYS_USAGE","PLUGIN_STATS"], }], { - onQuery: function (infos, seqs) { + onQuery: function (infos) { 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}`) + console.info(`testHiSysEventApi25: infos.size is ${infos.length}`) if (infos instanceof Array) { for (let i = 0; i < infos.length; i++) { let item = infos[i]; @@ -984,12 +970,6 @@ describe('hiSysEventJsTest', function () { } } } - 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...`)