提交 fccf0d00 编写于 作者: X xinking129

fix codes

Signed-off-by: Nxinking129 <xinxin13@huawei.com>
上级 41f0387e
# Copyright (c) 2023 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
# Copyright (c) 2023 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("ActsAppRecoveryTestCaller") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":actsapprecoverytestcaller_js_assets",
":actsapprecoverytestcaller_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAppRecoveryTestCaller"
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_app_scope("actsapprecoverytestcaller_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsapprecoverytestcaller_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsapprecoverytestcaller_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsapprecoverytestcaller_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAppRecoveryTestCaller") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":actsapprecoverytestcaller_js_assets",
":actsapprecoverytestcaller_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAppRecoveryTestCaller"
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_app_scope("actsapprecoverytestcaller_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsapprecoverytestcaller_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsapprecoverytestcaller_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsapprecoverytestcaller_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
......@@ -18,7 +18,6 @@ import commonEvent from '@ohos.commonEvent'
import abilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry';
import missionManager from '@ohos.application.missionManager';
const CASE_TIME_OUT=5000;
var ACTS_AppRecovery = {
events: ["ACTS_AppRecovery_First", "ACTS_AppRecovery_Second"]
......@@ -281,7 +280,6 @@ export default function abilityTest() {
},CASE_TIME_OUT)
})
/*
* @tc.number: Acts_AppRecovery_0400
* @tc.name: Fault recovery of multi-Ability application
......@@ -453,442 +451,5 @@ export default function abilityTest() {
}
},CASE_TIME_OUT)
})
/*
* @tc.number: Acts_AppRecovery_0800
* @tc.name: Fault recovery of multi-Ability application
* @tc.desc: If the restart recovery status is not set, the Ability application pre-failure state will not be
* restored after the application exits abnormally and restarts.
*/
it('Acts_AppRecovery_0800',0, async function (done) {
let subscriber;
let flag = false;
let countFirst = 0;
let countSecond = 0;
console.info("Acts_AppRecovery_0800====> start")
commonEvent.createSubscriber(ACTS_AppRecovery).then(async (data) => {
console.debug("Acts_AppRecovery_0800====> Create Subscribe");
subscriber = data;
commonEvent.subscribe(subscriber, subscribeCallBack);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoverysrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_0800_once"
},(err)=>{
console.debug("Acts_AppRecovery_0800====> startAbility err:"+JSON.stringify(err));
expect(err.code).assertEqual(0);
})
})
function subscribeCallBack(err, data) {
console.debug("Acts_AppRecovery_0800====> subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_First") {
countFirst++;
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
if (countFirst < 2) {
return;
}
setTimeout(() => {
commonEvent.subscribe(subscriber, subscribeCallBackSecond);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoverysrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_0800_twice"
},
(err) => {
console.debug("Acts_AppRecovery_0800====> second startAbility err:" + JSON.stringify(err));
expect(err.code).assertEqual(0);
}
);
}, 800);
}
}
function subscribeCallBackSecond(err, data) {
console.debug("Acts_AppRecovery_0800====> second subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_Second") {
countSecond++;
flag=true;
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
if (countSecond < 2) {
return;
}
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
}
function unSubscribeCallback() {
setTimeout(() => {
console.debug("Acts_AppRecovery_0800====> unSubscribeCallback");
done();
}, 800);
}
setTimeout(()=>{
if(flag==false){
expect().assertFail();
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
},CASE_TIME_OUT)
})
/*
* @tc.number: Acts_AppRecovery_0900
* @tc.name: Fault recovery of multi-Ability application
* @tc.desc: When the application settings restart recovery status is valid, the application exits abnormally
* and restarts to restore the pre-failure state of Ability application.
*/
it('Acts_AppRecovery_0900',0, async function (done) {
let subscriber;
let flag = false;
console.info("Acts_AppRecovery_0900====> start")
commonEvent.createSubscriber(ACTS_AppRecovery).then(async (data) => {
console.debug("Acts_AppRecovery_0900====> Create Subscribe");
subscriber = data;
commonEvent.subscribe(subscriber, subscribeCallBack);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoveryrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_0900_once"
},(err)=>{
console.debug("Acts_AppRecovery_0900====> startAbility err:"+JSON.stringify(err));
expect(err.code).assertEqual(0);
})
})
function subscribeCallBack(err, data) {
console.debug("Acts_AppRecovery_0900====> subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_First") {
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
let abilityDelegator = abilityDelegatorRegistry.getAbilityDelegator();
let pkillCmd = "pkill -f com.example.apprecoveryrely";
console.debug("Acts_AppRecovery_0900====> shell command call " + pkillCmd);
abilityDelegator.executeShellCommand(pkillCmd, 1, (err, data) => {
console.debug("Acts_AppRecovery_0900====> shell command callback " + JSON.stringify(err) + " " + JSON.stringify(data));
setTimeout(() => {
commonEvent.subscribe(subscriber, subscribeCallBackSecond);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoveryrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_0900_twice"
},
(err) => {
console.debug("Acts_AppRecovery_0900====> second startAbility err:" + JSON.stringify(err));
expect(err.code).assertEqual(0);
}
);
}, 800);
});
}
}
function subscribeCallBackSecond(err, data) {
console.debug("Acts_AppRecovery_0900====> second subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_Second") {
flag=true;
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
}
function unSubscribeCallback() {
setTimeout(() => {
console.debug("Acts_AppRecovery_0900====> unSubscribeCallback");
done();
}, 800);
}
setTimeout(()=>{
if(flag==false){
expect().assertFail();
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
},CASE_TIME_OUT)
})
/*
* @tc.number: Acts_AppRecovery_1000
* @tc.name: Fault recovery of multi-Ability application
* @tc.desc: When the application settings restart recovery status is valid, the application exits abnormally
* and restarts to restore the pre-failure state of Ability application.
*/
it('Acts_AppRecovery_1000',0, async function (done) {
let subscriber;
let flag = false;
let countFirst = 0;
let countSecond = 0;
console.info("Acts_AppRecovery_1000====> start")
commonEvent.createSubscriber(ACTS_AppRecovery).then(async (data) => {
console.debug("Acts_AppRecovery_1000====> Create Subscribe");
subscriber = data;
commonEvent.subscribe(subscriber, subscribeCallBack);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoverysrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_1000_once"
},(err)=>{
console.debug("Acts_AppRecovery_1000====> startAbility err:"+JSON.stringify(err));
expect(err.code).assertEqual(0);
})
})
function subscribeCallBack(err, data) {
console.debug("Acts_AppRecovery_1000====> subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_First") {
countFirst++;
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
if (countFirst < 2) {
return;
}
let abilityDelegator = abilityDelegatorRegistry.getAbilityDelegator();
let pkillCmd = "pkill -f com.example.apprecoverysrely";
abilityDelegator.executeShellCommand(pkillCmd, 1, (err, data) => {
setTimeout(() => {
commonEvent.subscribe(subscriber, subscribeCallBackSecond);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoverysrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_1000_twice"
},
(err) => {
console.debug("Acts_AppRecovery_1000====> second startAbility err:" + JSON.stringify(err));
expect(err.code).assertEqual(0);
}
);
}, 800);
});
}
}
function subscribeCallBackSecond(err, data) {
console.debug("Acts_AppRecovery_1000====> second subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_Second") {
countSecond++;
flag=true;
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
if (countSecond < 2) {
return;
}
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
}
function unSubscribeCallback() {
setTimeout(() => {
console.debug("Acts_AppRecovery_1000====> unSubscribeCallback");
done();
}, 800);
}
setTimeout(()=>{
if(flag==false){
expect().assertFail();
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
},CASE_TIME_OUT)
})
/*
* @tc.number: Acts_AppRecovery_1100
* @tc.name: Fault recovery of multi-Ability application
* @tc.desc: When setting restart recovery status is valid, exit the application by clearing the task list and
* do not restore the pre-failure state of the Ability application after the application restart.
*/
it('Acts_AppRecovery_1100',0, async function (done) {
let subscriber;
let flag = false;
console.info("Acts_AppRecovery_1100====> start")
commonEvent.createSubscriber(ACTS_AppRecovery).then(async (data) => {
console.debug("Acts_AppRecovery_1100====> Create Subscribe");
subscriber = data;
commonEvent.subscribe(subscriber, subscribeCallBack);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoveryrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_1100_once"
},(err)=>{
console.debug("Acts_AppRecovery_1100====> startAbility err:"+JSON.stringify(err));
expect(err.code).assertEqual(0);
})
})
function subscribeCallBack(err, data) {
console.debug("Acts_AppRecovery_1100====> subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_First") {
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
let abilityDelegator = abilityDelegatorRegistry.getAbilityDelegator();
let pkillCmd = "pkill -f com.example.apprecoveryrely";
abilityDelegator.executeShellCommand(pkillCmd, 1, (err, data) => {
setTimeout(() => {
commonEvent.subscribe(subscriber, subscribeCallBackSecond);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoveryrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_1100_twice"
},
(err) => {
console.debug("Acts_AppRecovery_1100====> second startAbility err:" + JSON.stringify(err));
expect(err.code).assertEqual(0);
}
);
}, 800);
});
}
}
function subscribeCallBackSecond(err, data) {
console.debug("Acts_AppRecovery_1100====> second subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_Second") {
flag=true;
let message = data.parameters.message;
expect(message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertTrue();
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
}
function unSubscribeCallback() {
setTimeout(() => {
console.debug("Acts_AppRecovery_1100====> unSubscribeCallback");
done();
}, 800);
}
setTimeout(()=>{
if(flag==false){
expect().assertFail();
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
},CASE_TIME_OUT)
})
/*
* @tc.number: Acts_AppRecovery_1200
* @tc.name: Fault recovery of multi-Ability application
* @tc.desc: When setting restart recovery status is valid, exit the application by clearing the task list and
* do not restore the pre-failure state of the Ability application after the application restart.
*/
it('Acts_AppRecovery_1200',0, async function (done) {
let subscriber;
let flag = false;
let countFirst = 0;
let countSecond = 0;
console.info("Acts_AppRecovery_1200====> start")
commonEvent.createSubscriber(ACTS_AppRecovery).then(async (data) => {
console.debug("Acts_AppRecovery_1200====> Create Subscribe");
subscriber = data;
commonEvent.subscribe(subscriber, subscribeCallBack);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoverysrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_1200_once"
},(err)=>{
console.debug("Acts_AppRecovery_1200====> startAbility err:"+JSON.stringify(err));
expect(err.code).assertEqual(0);
})
})
function subscribeCallBack(err, data) {
console.debug("Acts_AppRecovery_1200====> subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_First") {
countFirst++;
let message = data.parameters.message;
let strJson = JSON.stringify(data.parameters.message);
if (data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"] == undefined) {
expect(true).assertTrue();
} else {
expect(data.parameters.message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertFalse();
}
if (countFirst < 2) {
return;
}
let abilityDelegator = abilityDelegatorRegistry.getAbilityDelegator();
let pkillCmd = "pkill -f com.example.apprecoverysrely";
abilityDelegator.executeShellCommand(pkillCmd, 1, (err, data) => {
setTimeout(() => {
commonEvent.subscribe(subscriber, subscribeCallBackSecond);
globalThis.abilityContext.startAbility(
{
bundleName: "com.example.apprecoverysrely",
abilityName: "EntryAbility",
action: "Acts_AppRecovery_1200_twice"
},
(err) => {
console.debug("Acts_AppRecovery_1200====> second startAbility err:" + JSON.stringify(err));
expect(err.code).assertEqual(0);
}
);
}, 800);
});
}
}
function subscribeCallBackSecond(err, data) {
console.debug("Acts_AppRecovery_1200====> second subscribeCallBack data:" + JSON.stringify(data));
if(data.event == "ACTS_AppRecovery_Second") {
countSecond++;
flag=true;
let message = data.parameters.message;
expect(message["ohos.aafwk.param.AbilityRecoveryRestart"]).assertTrue();
if (countSecond < 2) {
return;
}
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
}
function unSubscribeCallback() {
setTimeout(() => {
console.debug("Acts_AppRecovery_1200====> unSubscribeCallback");
done();
}, 800);
}
setTimeout(()=>{
if(flag==false){
expect().assertFail();
commonEvent.unsubscribe(subscriber, unSubscribeCallback);
}
},CASE_TIME_OUT)
})
})
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册