提交 61870610 编写于 作者: C chengxingzhen

xts-ams支持release版本调试调优

Signed-off-by: Nchengxingzhen <chengxingzhen@huawei.com>
上级 c0fe43fc
......@@ -17,6 +17,7 @@ group("stage") {
testonly = true
if (is_standard_system) {
deps = [
"actsdebuggabletest:actsdebuggabletest",
"actslifecyclemultihap2:ActsLifecycleMultiHap2",
"actslifecyclemultihap3:ActsLifecycleMultiHap3",
"actslifecyclemultihaptest:ActsLifecycleMultiHapTest",
......
# 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("//test/xts/tools/build/suite.gni")
group("actsdebuggabletest") {
testonly = true
if (is_standard_system) {
deps = [
"actsdebuggabletest:ActsDebuggableTest",
"timeout:ActsDebuggableTimeout",
]
}
}
{
"app": {
"bundleName": "com.example.debuggable",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:app_icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true,
"keepAlive": true,
"singleUser": true,
"minAPIVersion": 9,
"targetAPIVersion": 9,
"car": {
"apiCompatibleVersion": 9,
"singleUser": false
}
}
}
# 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsDebuggableTest") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":actsdebuggabletest_js_assets",
":actsdebuggabletest_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsDebuggableTest"
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_app_scope("actsdebuggabletest_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsdebuggabletest_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsdebuggabletest_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsdebuggabletest_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
{
"description": "Configuration for debuggable demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "180000",
"bundle-name": "com.example.debuggable",
"module-name": "entry",
"shell-timeout": "600000",
"testcase-timeout": 15000
},
"kits": [
{
"test-file-name": [
"ActsDebuggableTest.hap",
"ActsDebuggableTimeout.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
},
{
"type": "ShellKit",
"run-command": [
"power-shell wakeup",
"power-shell setmode 602",
"uinput -T -d 300 600 -m 300 600 300 100 -u 300 100",
"hilog -b D",
"hilog -Q pidoff",
"hilog -Q domainoff",
"hilog -G 2M"
]
}
]
}
/*
* Copyright (c) 2022 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 hilog from '@ohos.hilog';
import TestRunner from '@ohos.application.testRunner'
import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry'
var abilityDelegator = undefined
var abilityDelegatorArguments = undefined
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s it',
'-s level', '-s testType', '-s size', '-s timeout',
'-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams = `${targetParams} ${key} ${parameters[key]}`
}
}
return targetParams.trim()
}
async function onAbilityCreateCallback() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'onAbilityCreateCallback');
}
async function addAbilityMonitorCallback(err: any) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'addAbilityMonitorCallback : %{public}s', JSON.stringify(err) ?? '');
}
export default class OpenHarmonyTestRunner implements TestRunner {
constructor() {
}
onPrepare() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner OnPrepare ');
}
async onRun() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun run');
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.bundleName + '.TestAbility'
let lMonitor = {
abilityName: testAbilityName,
onAbilityCreate: onAbilityCreateCallback,
};
abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback)
var cmd = 'aa start -d 0 -a TestAbility' + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters['-D']
if (debug == 'true')
{
cmd += ' -D'
}
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'cmd : %{public}s', cmd);
abilityDelegator.executeShellCommand(cmd,
(err: any, d: any) => {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'executeShellCommand : err : %{public}s', JSON.stringify(err) ?? '');
hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.stdResult ?? '');
hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.exitCode ?? '');
})
hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun end');
}
}
\ No newline at end of file
/*
* Copyright (c) 2022 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 hilog from '@ohos.hilog';
import Ability from '@ohos.app.ability.UIAbility';
import Window from '@ohos.window';
export default class EntryAbility extends Ability {
onCreate(want, launchParam) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? '');
hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:' + JSON.stringify(launchParam) ?? '');
}
onDestroy() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');
}
onWindowStageCreate(windowStage: Window.WindowStage) {
// Main window is created, set main page for this ability
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
windowStage.loadContent('pages/Index', (err, data) => {
if (err.code) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR);
hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
return;
}
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? '');
});
}
onWindowStageDestroy() {
// Main window is destroyed, release UI related resources
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
}
onForeground() {
// Ability has brought to foreground
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');
}
onBackground() {
// Ability has back to background
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');
}
}
/*
* Copyright (c) 2022 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 AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
@Entry
@Component
struct Index {
@State message: string = 'Hello World';
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
}
.width('100%')
}
.height('100%')
}
}
\ No newline at end of file
/*
* Copyright (c) 2022 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 hilog from '@ohos.hilog';
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium';
import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry';
import backgroundTaskManager from '@ohos.resourceschedule.backgroundTaskManager';
let abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
async function cancelSuspendDelay() {
hilog.info(0x0000, 'debuggabletest', '%{public}s', 'cancelSuspendDelay delayId ' + globalThis.delayId);
backgroundTaskManager.cancelSuspendDelay(globalThis.delayId);
}
function sleep(time) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(null);
}, time)
});
}
export default function actsDebuggableAaStartTest() {
describe('ActsDebuggableAaStartTest', function () {
beforeAll(async function () {
})
beforeEach(async function () {
await abilityDelegator.executeShellCommand('aa force-stop com.example.timeout').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'beforeEach ActsDebuggableAaStartTest force-stop data is: ' + JSON.stringify(data));
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'beforeEach ActsDebuggableAaStartTest force-stop err is: ' + JSON.stringify(err));
});
await sleep(1000);
await abilityDelegator.executeShellCommand('hilog -r').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'beforeEach ActsDebuggableAaStartTest hilog -r data is: ' + JSON.stringify(data));
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'beforeEach ActsDebuggableAaStartTest hilog -r err is: ' + JSON.stringify(err));
});
await sleep(2000);
})
afterEach(function () {
})
afterAll(async function () {
await cancelSuspendDelay();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0100
* @tc.name aa start -b com.example.timeout -a EntryAbility -p 'sleep 100' -S
* @tc.desc Function test
* @tc.level 1
*/
it('SUB_AA_AMS_Debuggable_0100',1, async function (done) {
await abilityDelegator.executeShellCommand(
'aa start -b com.example.timeout -a EntryAbility -p \'sleep 100\' -S').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0100 data is: ' + JSON.stringify(data));
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0100 err is: ' + JSON.stringify(err));
});
await sleep(800);
let res = undefined;
await abilityDelegator.executeShellCommand('hilog -x | grep debuggablePipe').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0100 hilog data is: ' + data.stdResult);
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0100 hilog err is: ' + JSON.stringify(err));
});
expect(res).assertContain('debuggablePipe perfCmd:sleep 100');
expect(res).assertContain('debuggablePipe sandbox: true');
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0200
* @tc.name aa start -b com.example.timeout -a EntryAbility -p 'sleep 100'
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_0200',1, async function (done) {
await abilityDelegator.executeShellCommand('aa start -b com.example.timeout -a EntryAbility -p \'sleep 100\'')
.then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0200 data is: ' + JSON.stringify(data));
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0200 err is: ' + JSON.stringify(err));
});
await sleep(800);
let res = undefined;
await abilityDelegator.executeShellCommand('hilog -x | grep debuggablePipe').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0200 hilog data is: ' + data.stdResult);
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0200 hilog err is: ' + JSON.stringify(err));
});
expect(res).assertContain('debuggablePipe perfCmd:sleep 100');
expect(res.indexOf('debuggablePipe sandbox: true') > 0).assertFalse();
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0300
* @tc.name aa start -b com.example.timeout -a EntryAbility
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_0300',1, async function (done) {
let res = undefined;
await abilityDelegator.executeShellCommand('aa start -b com.example.timeout -a EntryAbility').then(data => {
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0300 err is: ' + JSON.stringify(err));
})
expect(res).assertContain('start ability successfully.');
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0400
* @tc.name aa start -b com.example.timeout -a EntryAbility -S -p
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_0400',1, async function (done) {
let res = undefined;
await abilityDelegator.executeShellCommand('aa start -b com.example.timeout -a EntryAbility -S -p')
.then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0400 data is: ' + JSON.stringify(data));
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0400 err is: ' + JSON.stringify(err));
});
expect(res).assertContain('error: option requires a value.');
expect(res).assertContain('usage: aa start <options>');
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0500
* @tc.name aa start -b com.example.timeout -a EntryAbility -S
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_0500',1, async function (done) {
let res = undefined;
await abilityDelegator.executeShellCommand('aa start -b com.example.timeout -a EntryAbility -S').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0500 data is: ' + JSON.stringify(data));
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0500 err is: ' + JSON.stringify(err));
});
expect(res).assertContain('start ability successfully.');
await sleep(800);
await abilityDelegator.executeShellCommand('hilog -x | grep debuggablePipe').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0500 hilog data is: ' + data.stdResult);
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0500 hilog err is: ' + JSON.stringify(err));
});
expect(res.indexOf('debuggablePipe perfCmd') > 0).assertFalse();
expect(res.indexOf('debuggablePipe sandbox') > 0).assertFalse();
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0600
* @tc.name aa start -b com.example.timeout -a EntryAbility -p sleep 100 -S
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_0600',1, async function (done) {
let res = undefined;
await abilityDelegator.executeShellCommand('aa start -b com.example.timeout -a EntryAbility -p sleep 100 -S')
.then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0600 data is: ' + JSON.stringify(data));
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0600 err is: ' + JSON.stringify(err));
});
expect(res).assertContain('start ability successfully.');
await sleep(800);
await abilityDelegator.executeShellCommand('hilog -x | grep debuggablePipe').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0600 hilog data is: ' + data.stdResult);
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0600 hilog err is: ' + JSON.stringify(err));
});
expect(res).assertContain('debuggablePipe perfCmd:sleep');
expect(res).assertContain('debuggablePipe sandbox: true');
expect(res.indexOf('debuggablePipe perfCmd:sleep 100') > 0).assertFalse();
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_0700
* @tc.name aa start -b com.example.timeout -a EntryAbility -p 'value length large than 1024' -S
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_0700',1, async function (done) {
let res = undefined;
await abilityDelegator.executeShellCommand('aa start -b com.example.timeout -a EntryAbility -p \'qwertyuiopas' +
'dfghjklzxcvbnm123456qwert' +
'yuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghj' +
'klzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123' +
'456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuio' +
'pasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzx' +
'cvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456q' +
'wertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasd' +
'fghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbn' +
'm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwert' +
'yuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghjklzxcvbnm123456qwertyuiopasdfghj' +
'klzxcvbnm123456\' -S').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0700 data is: ' + JSON.stringify(data));
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0700 err is: ' + JSON.stringify(err));
});
expect(res).assertContain('usage: aa start <options>');
await sleep(800);
await abilityDelegator.executeShellCommand('hilog -x | grep debuggablePipe').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0700 hilog data is: ' + data.stdResult);
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_0700 hilog err is: ' + JSON.stringify(err));
});
expect(res).assertContain('debuggablePipe aa start -p param length must be less than 1024.');
done();
})
/*
* @tc.number SUB_AA_AMS_Debuggable_2600
* @tc.name aa start -h
* @tc.desc Function test
* @tc.level 3
*/
it('SUB_AA_AMS_Debuggable_2600',1, async function (done) {
let res = undefined;
await abilityDelegator.executeShellCommand('aa start -h').then(data => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_2600 aa process data is: ' + data.stdResult);
res = data.stdResult;
}).catch(err => {
hilog.info(0x0000, 'debuggabletest', '%{public}s',
'SUB_AA_AMS_Debuggable_2600 aa process err is: ' + JSON.stringify(err));
});
expect(res).assertContain('usage: aa start <options>');
expect(res).assertContain('[-p <perf-cmd>]');
expect(res).assertContain('[-S]');
done();
})
})
}
\ No newline at end of file
/*
* Copyright (c) 2022 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 aastartTest from './ActsDebuggableAaStartTest.test';
import aaprocessTest from './ActsDebuggableAaProcessTest.test';
export default function testsuite() {
aaprocessTest();
aastartTest();
}
\ No newline at end of file
/*
* Copyright (c) 2022 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 hilog from '@ohos.hilog';
import Ability from '@ohos.app.ability.UIAbility';
import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry';
import { Hypium } from '@ohos/hypium';
import testsuite from '../test/List.test';
import Window from '@ohos.window';
export default class TestAbility extends Ability {
onCreate(want, launchParam) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onCreate');
hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? '');
hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:'+ JSON.stringify(launchParam) ?? '');
var abilityDelegator: any
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments: any
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'start run testcase!!!');
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
}
onDestroy() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onDestroy');
}
onWindowStageCreate(windowStage: Window.WindowStage) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageCreate');
windowStage.loadContent('testability/pages/Index', (err, data) => {
if (err.code) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR);
hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
return;
}
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s',
JSON.stringify(data) ?? '');
});
}
onWindowStageDestroy() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageDestroy');
}
onForeground() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onForeground');
}
onBackground() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onBackground');
}
}
\ No newline at end of file
/*
* Copyright (c) 2022 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 hilog from '@ohos.hilog';
@Entry
@Component
struct Index {
aboutToAppear() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility index aboutToAppear');
}
@State message: string = 'Hello Debuggable'
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text('next page')
.fontSize(20)
.fontWeight(FontWeight.Bold)
}.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor('#0D9FFB')
.width('35%')
.height('5%')
.onClick(()=>{
})
}
.width('100%')
}
.height('100%')
}
}
\ No newline at end of file
{
"module": {
"name": "entry",
"type": "entry",
"description": "$string:module_desc",
"mainElement": "EntryAbility",
"deviceTypes": [
"default",
"tablet"
],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:main_pages",
"abilities": [
{
"name": "EntryAbility",
"srcEntrance": "./ets/entryability/EntryAbility.ts",
"description": "$string:EntryAbility_desc",
"icon": "$media:icon",
"label": "$string:EntryAbility_label",
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:start_window_background",
"visible": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
]
},
{
"name": "TestAbility",
"srcEntrance": "./ets/testability/TestAbility.ets",
"description": "$string:TestAbility_desc",
"icon": "$media:icon",
"label": "$string:TestAbility_label",
"visible": true,
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:start_window_background"
}
]
}
}
\ No newline at end of file
{
"color": [
{
"name": "start_window_background",
"value": "#FFFFFF"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "module description"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "the test ability"
},
{
"name": "TestAbility_label",
"value": "test label"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "module description"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "the test ability"
},
{
"name": "TestAbility_label",
"value": "test label"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "模块描述"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "the test ability"
},
{
"name": "TestAbility_label",
"value": "test label"
}
]
}
\ No newline at end of file
{
"app": {
"bundleName": "com.example.timeout",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:app_icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true,
"keepAlive": true,
"singleUser": true,
"minAPIVersion": 9,
"targetAPIVersion": 9,
"car": {
"apiCompatibleVersion": 9,
"singleUser": false
}
}
}
# 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("//test/xts/tools/build/suite.gni")
ohos_hap_assist_suite("ActsDebuggableTimeout") {
hap_name = "ActsDebuggableTimeout"
js_build_mode = "debug"
testonly = true
hap_profile = "entry/src/main/module.json"
deps = [
":actsdebuggabletimeout_js_assets",
":actsdebuggabletimeout_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_app_scope("actsdebuggabletimeout_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsdebuggabletimeout_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsdebuggabletimeout_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsdebuggabletimeout_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
/*
* Copyright (c) 2022 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 hilog from '@ohos.hilog';
import Ability from '@ohos.app.ability.UIAbility';
import Window from '@ohos.window';
export default class EntryAbility extends Ability {
onCreate(want, launchParam) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? '');
hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:' + JSON.stringify(launchParam) ?? '');
}
onDestroy() {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');
}
onWindowStageCreate(windowStage: Window.WindowStage) {
// Main window is created, set main page for this ability
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
windowStage.loadContent('pages/Index', (err, data) => {
if (err.code) {
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR);
hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
return;
}
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? '');
});
}
onWindowStageDestroy() {
// Main window is destroyed, release UI related resources
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
}
onForeground() {
// Ability has brought to foreground
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');
}
onBackground() {
// Ability has back to background
hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO);
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');
}
}
/*
* Copyright (c) 2022 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.
*/
@Entry
@Component
struct Index {
@State message: string = 'Hello World';
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
}
.width('100%')
}
.height('100%')
}
}
\ No newline at end of file
{
"module": {
"name": "entry",
"type": "entry",
"description": "$string:module_desc",
"mainElement": "EntryAbility",
"deviceTypes": [
"default",
"tablet"
],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:main_pages",
"abilities": [
{
"name": "EntryAbility",
"srcEntrance": "./ets/entryability/EntryAbility.ts",
"description": "$string:EntryAbility_desc",
"icon": "$media:icon",
"label": "$string:EntryAbility_label",
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:start_window_background",
"visible": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
]
}
]
}
}
\ No newline at end of file
{
"color": [
{
"name": "start_window_background",
"value": "#FFFFFF"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "module description"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "module description"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "模块描述"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册