diff --git a/ability/ability_runtime/aacommand/AACommandPrintSync/entry/src/main/ets/test/Ability.test.ets b/ability/ability_runtime/aacommand/AACommandPrintSync/entry/src/main/ets/test/Ability.test.ets index f5a78b31406e98858a8f8f70d326bd5e19759d63..ade57a953a47d5392303409d33e88c8454a77c86 100644 --- a/ability/ability_runtime/aacommand/AACommandPrintSync/entry/src/main/ets/test/Ability.test.ets +++ b/ability/ability_runtime/aacommand/AACommandPrintSync/entry/src/main/ets/test/Ability.test.ets @@ -32,7 +32,6 @@ export default function abilityTest() { var msg = '测试日志!@#$%^&*()_+QWE{}|?> " ) - await sleep(1000) var finishmsg = 'ACTS_AACommand_printSync_01_0100 end' globalThis.abilityDelegator.finishTest(finishmsg, 1).then((data)=>{ console.log("ACTS_AACommand_printSync_01_0100 finishTest test end ========> callback " ) @@ -63,7 +62,6 @@ export default function abilityTest() { '9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaae' globalThis.abilityDelegator.printSync(msg); console.log("ACTS_AACommand_printSync_01_0200 printSync end ====> " ) - await sleep(1000) var finishmsg = 'ACTS_AACommand_printSync_01_0200 end' globalThis.abilityDelegator.finishTest(finishmsg, 1).then(()=>{ console.log("ACTS_AACommand_printSync_01_0200 print test end ========> callback " ) @@ -93,7 +91,6 @@ export default function abilityTest() { 'fffffffffff' globalThis.abilityDelegator.printSync(msg); console.log("ACTS_AACommand_printSync_01_0300 printSync end ====> " ) - await sleep(1000) var finishmsg = 'ACTS_AACommand_printSync_01_0300 end' globalThis.abilityDelegator.finishTest(finishmsg, 1).then(()=>{ console.log("ACTS_AACommand_printSync_01_0300 print test end ========> callback " ) @@ -111,7 +108,6 @@ export default function abilityTest() { it('ACTS_AACommand_printSync_01_0400', 0, async function (done) { globalThis.abilityDelegator.printSync(null); console.log("ACTS_AACommand_printSync_01_0300 printSync end ====> " ) - await sleep(1000) var finishmsg = 'ACTS_AACommand_printSync_01_0400 end' globalThis.abilityDelegator.finishTest(finishmsg, 1).then(()=>{ console.log("ACTS_AACommand_printSync_01_0400 print test end ========> callback " ) diff --git a/ability/ability_runtime/aacommand/AACommandRelyHap/entry/src/main/ets/test/Ability.test.ets b/ability/ability_runtime/aacommand/AACommandRelyHap/entry/src/main/ets/test/Ability.test.ets index 7b3dc3d2071e69e7ba2b20ed67ec85fd53ef8237..46b9bfff16ad7538d7f2775ddfaad5c44857896d 100644 --- a/ability/ability_runtime/aacommand/AACommandRelyHap/entry/src/main/ets/test/Ability.test.ets +++ b/ability/ability_runtime/aacommand/AACommandRelyHap/entry/src/main/ets/test/Ability.test.ets @@ -352,17 +352,12 @@ export default function abilityTest() { */ it('ACTS_AACommand_finish_01_0800', 0, async function (done) { var msg = '测试日志!@#$%^&*()_+QWE{}|?> { - console.log('ACTS_AACommand_finish_01_0800 code:'+JSON.stringify(code)) - if(code!=undefined){ - expect().assertFail(); - } - done(); - }, 3000) - var code = globalThis.abilityDelegator.finishTest(msg, 'ABCD',()=>{ + globalThis.abilityDelegator.finishTest(msg, 'ABCD',()=>{ console.log(" ACTS_AACommand_finish_01_0800 finishTest test end ========> callback " ) expect().assertFail(); }) + await sleep(2000); + done(); }) /** @@ -388,15 +383,9 @@ export default function abilityTest() { * @tc.desc: Verify that the process of the test framework can be stopped by calling this interface. */ it('ACTS_AACommand_finish_01_1000', 0, async function (done) { - var code = null - setTimeout(() => { - console.log('ACTS_AACommand_finish_01_1000 code:'+JSON.stringify(code)) - if(code!=undefined){ - expect().assertFail(); - } - done(); - }, 3000) - code = globalThis.abilityDelegator.finishTest(null, 1) + globalThis.abilityDelegator.finishTest(null, 1) + await sleep(2000); + done() }) /** @@ -406,15 +395,9 @@ export default function abilityTest() { * @tc.desc: Verify that the process of the test framework can be stopped by calling this interface. */ it('ACTS_AACommand_finish_01_1100', 0, async function (done) { - var code=null - setTimeout(() => { - console.log('ACTS_AACommand_finish_01_1100 code:'+JSON.stringify(code)) - if(code!=undefined){ - expect().assertFail(); - } - done(); - }, 3000) - code = globalThis.abilityDelegator.finishTest(undefined, 1) + globalThis.abilityDelegator.finishTest(undefined, 1) + await sleep(2000); + done() }) /** diff --git a/ability/ability_runtime/apicover/apicoverhaptest/signature/openharmony_sx.p7b b/ability/ability_runtime/apicover/apicoverhaptest/signature/openharmony_sx.p7b index 66b4457a8a81fb8d3356cf46d67226c850944858..6c7c8e29e3c4a1f8d0419932ebc28f665e4ae974 100644 Binary files a/ability/ability_runtime/apicover/apicoverhaptest/signature/openharmony_sx.p7b and b/ability/ability_runtime/apicover/apicoverhaptest/signature/openharmony_sx.p7b differ