未验证 提交 c0f05e39 编写于 作者: O openharmony_ci 提交者: Gitee

!8207 分布式组件支持远程停止Extension测试

Merge pull request !8207 from xinking129/master
......@@ -55,6 +55,7 @@ group("ability_runtime") {
"non_concurrent:non_concurrent",
"registerjserror:registerjserror",
"stage:stage",
"stopserviceextension:stopserviceextension",
"want:want",
"workercontextcover:workercontextcover",
]
......
{
"app": {
"bundleName": "com.acts.stopserviceextensiontest",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:app_icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true,
"keepAlive" : true,
"singleUser": true,
"minAPIVersion": 10,
"targetAPIVersion": 10,
"car": {
"apiCompatibleVersion": 10,
"singleUser": false
}
}
}
# 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_hap_assist_suite("ActsStopServiceExtensionRely") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":actsstopserviceextensionrely_js_assets",
":actsstopserviceextensionrely_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsStopServiceExtensionRely"
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_app_scope("actsstopserviceextensionrely_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsstopserviceextensionrely_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsstopserviceextensionrely_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsstopserviceextensionrely_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
/*
* 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 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() {
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) 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.
*/
@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) 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 ServiceExtensionAbility from '@ohos.app.ability.ServiceExtensionAbility'
import rpc from '@ohos.rpc';
import commonEvent from '@ohos.commonEvent'
let message;
let commonEventData={
parameters:{
message:message,
}
}
class StubTest extends rpc.RemoteObject {
constructor(des) {
super(des)
}
onRemoteRequest(code, data, reply, option) {
console.info('ServiceAbility onRemoteRequest');
if (code === 1) {
let op1 = data.readInt();
let op2 = data.readInt();
reply.writeInt(op1 + op2);
console.info('ServiceAbility op1:' + op1 + ' op2:' + op2);
}
return true;
}
}
let strAction = '';
let remoteOBJ = new StubTest("test");
export default class ServiceAbility extends ServiceExtensionAbility {
onCreate(want){
let disConnect = false;
strAction = want.action;
console.info('ServiceAbility onCreate');
commonEventData.parameters.message = want;
let NewWant = {
bundleName: "com.acts.stopserviceextensiontest",
abilityName: "ServiceAbilitySec",
action: strAction
}
let options = {
onConnect: async function (element: any, proxy: any) {
console.info("Acts_StopServiceExtension_0600 service onConnect success!!!")
console.info('Acts_StopServiceExtension_0600 service onConnect element : ' + JSON.stringify(element));
console.info('Acts_StopServiceExtension_0600 service onConnect proxy : ' + JSON.stringify(proxy));
},
onDisconnect: async function (element1: any) {
disConnect = true;
console.info("Acts_StopServiceExtension_0600 service onDisconnect success!!!")
console.info('Acts_StopServiceExtension_0600 service onDisconnect ele : ' + JSON.stringify(element1));
},
onFailed: async function (code: any) {
console.info("Acts_StopServiceExtension_0600 service onFailed!!!")
console.info('Acts_StopServiceExtension_0600 service onFailed errCode : ' + JSON.stringify(code));
},
}
if (strAction == "Acts_StopServiceExtension_0100" || strAction == "Acts_StopServiceExtension_0300" ||
strAction == "Acts_StopServiceExtension_0500" || strAction == "Acts_StopServiceExtension_1700") {
commonEvent.publish("ACTS_StopEvent_First", commonEventData, (err) => {
console.info("====>" + strAction + " publish err: " + JSON.stringify(err));
})
}
if (strAction == "Acts_StopServiceExtension_0200") {
setTimeout(()=>{
this.context.startAbility(NewWant, (err)=>{
console.info("====>" + strAction + " startAbility serviceExtension err: " + JSON.stringify(err));
setTimeout(()=>{
this.context.stopServiceExtensionAbility(NewWant, (err)=>{
console.info("====>" + strAction + " stop ServiceAbilitySec err: " +
JSON.stringify(err));
commonEventData.parameters.message = err.code;
commonEvent.publish("ACTS_StopEvent_First", commonEventData, (err) => {
console.info("====>" + strAction + " First publish err: " + JSON.stringify(err));
})
})
}, 200)
})
}, 100)
}
if (strAction == "Acts_StopServiceExtension_0400") {
setTimeout(()=>{
this.context.startServiceExtensionAbility(NewWant, (err)=>{
console.info("====>" + strAction + " startAbility serviceExtension err: " + JSON.stringify(err));
setTimeout(()=>{
this.context.stopServiceExtensionAbility(NewWant, (err)=>{
console.info("====>" + strAction + " stop ServiceAbilitySec err: " +
JSON.stringify(err));
commonEventData.parameters.message = err.code;
commonEvent.publish("ACTS_StopEvent_First", commonEventData, (err) => {
console.info("====>" + strAction + " First publish err: " + JSON.stringify(err));
})
})
}, 200)
})
}, 100)
}
if (strAction == "Acts_StopServiceExtension_0600") {
setTimeout(()=>{
let data = this.context.connectServiceExtensionAbility(NewWant, options);
console.info("====>" + strAction + " connect ServiceAbilitySec: " + JSON.stringify(data));
setTimeout(() => {
this.context.stopServiceExtensionAbility(NewWant, (err) => {
console.info("====>" + strAction + " stop ServiceAbilitySec err: " +
JSON.stringify(err));
commonEventData.parameters.message = err.code;
commonEvent.publish("ACTS_StopEvent_First", commonEventData, (err) => {
console.info("====>" + strAction + " First publish err: " + JSON.stringify(err));
commonEventData.parameters.message = disConnect;
commonEvent.publish("ACTS_StopEvent_Third", commonEventData, (err) => {
console.info("====>" + strAction + " First publish err: " + JSON.stringify(err));
})
})
})
}, 200)
}, 100)
}
if (strAction == "Acts_StopServiceExtension_0800") {
setTimeout(()=>{
this.context.stopServiceExtensionAbility({
deviceId: "abcdefg12345678",
bundleName: "com.acts.stopserviceextensiontest",
abilityName: "ServiceAbilitySec",
action: strAction
}, (err)=>{
console.info("====>" + strAction + " stop ServiceAbilitySec err: " + JSON.stringify(err));
commonEventData.parameters.message = err.code;
commonEvent.publish("ACTS_StopEvent_First", commonEventData, (err) => {
console.info("====>" + strAction + " publish err: " + JSON.stringify(err));
})
})
}, 100)
}
if (strAction == "Acts_StopServiceExtension_1800") {
setTimeout(()=>{
this.context.stopServiceExtensionAbility({
deviceId: undefined,
bundleName: "com.acts.stopserviceextensiontest",
abilityName: "ServiceAbilitySec",
action: strAction
}, (err)=>{
console.info("====>" + strAction + " stop ServiceAbilitySec err: " + JSON.stringify(err));
commonEventData.parameters.message = err.code;
commonEvent.publish("ACTS_StopEvent_First", commonEventData, (err) => {
console.info("====>" + strAction + " publish err: " + JSON.stringify(err));
})
})
}, 100)
}
}
onDestroy() {
console.info('ServiceAbility onDestroy');
}
onRequest(want, startId) {
console.info('ServiceAbility onRequest');
}
onConnect(want) {
console.info('ServiceAbility onConnect');
return remoteOBJ;
}
onDisconnect(want) {
console.info('ServiceAbility onDisconnect');
}
onReconnect(want) {
console.info('ServiceAbility onReconnect');
}
onConfigurationUpdate(newConfig) {
console.info('ServiceAbility onConfigurationUpdate');
}
onDump(params) {
console.info('ServiceAbility onDump');
return params;
}
};
\ No newline at end of file
/*
* 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 ServiceExtensionAbility from '@ohos.app.ability.ServiceExtensionAbility'
import rpc from '@ohos.rpc';
import commonEvent from '@ohos.commonEvent'
let message;
let commonEventData={
parameters:{
message:message,
}
}
class StubTest extends rpc.RemoteObject {
constructor(des) {
super(des)
}
onRemoteRequest(code, data, reply, option) {
console.info('ServiceAbilitySec onRemoteRequest');
if (code === 1) {
let op1 = data.readInt();
let op2 = data.readInt();
reply.writeInt(op1 + op2);
console.info('ServiceAbilitySec op1:' + op1 + ' op2:' + op2);
}
return true;
}
}
let strAction = '';
let remoteOBJ = new StubTest("test");
export default class ServiceAbilitySec extends ServiceExtensionAbility {
onCreate(want){
strAction = want.action;
console.info('ServiceAbilitySec onCreate');
commonEventData.parameters.message = want;
if (strAction == "Acts_StopServiceExtension_0200" || strAction == "Acts_StopServiceExtension_0400" ||
strAction == "Acts_StopServiceExtension_0600") {
commonEvent.publish("ACTS_StopEvent_Second", commonEventData, (err) => {
console.info("====>" + strAction + " Second publish err: " + JSON.stringify(err));
})
}
}
onDestroy() {
console.info('ServiceAbilitySec onDestroy');
}
onRequest(want, startId) {
console.info('ServiceAbilitySec onRequest');
}
onConnect(want) {
console.info('ServiceAbilitySec onConnect');
return remoteOBJ;
}
onDisconnect(want) {
console.info('ServiceAbilitySec onDisconnect');
}
onReconnect(want) {
console.info('ServiceAbility onReconnect');
}
onConfigurationUpdate(newConfig) {
console.info('ServiceAbility onConfigurationUpdate');
}
onDump(params) {
console.info('ServiceAbility onDump');
return params;
}
};
\ 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"
]
}
]
}
],
"extensionAbilities": [
{
"name": "ServiceAbility",
"srcEntrance": "./ets/serviceability/ServiceAbility.ts",
"label": "$string:ServiceAbility_label",
"description": "$string:ServiceAbility_desc",
"type": "service"
},
{
"name": "ServiceAbilitySec",
"srcEntrance": "./ets/serviceabilitySec/ServiceAbilitySec.ts",
"label": "$string:ServiceAbilitySec_desc",
"description": "$string:ServiceAbilitySec_desc",
"type": "service"
}
]
}
}
\ 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": "ServiceAbility_desc",
"value": "service_description"
},
{
"name": "ServiceAbility_label",
"value": "service_label"
},
{
"name": "ServiceAbilitySec_desc",
"value": "service_description"
},
{
"name": "ServiceAbilitySec_label",
"value": "service_label"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "module description"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "ActsStopServiceExtensionRely"
},
{
"name": "ServiceAbility_desc",
"value": "service_description"
},
{
"name": "ServiceAbility_label",
"value": "service_label"
},
{
"name": "ServiceAbilitySec_desc",
"value": "service_description"
},
{
"name": "ServiceAbilitySec_label",
"value": "service_label"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_desc",
"value": "模块描述"
},
{
"name": "EntryAbility_desc",
"value": "description"
},
{
"name": "EntryAbility_label",
"value": "ActsStopServiceExtensionRely"
},
{
"name": "ServiceAbility_desc",
"value": "service_description"
},
{
"name": "ServiceAbility_label",
"value": "service_label"
},
{
"name": "ServiceAbilitySec_desc",
"value": "service_description"
},
{
"name": "ServiceAbilitySec_label",
"value": "service_label"
}
]
}
\ No newline at end of file
{
"app": {
"bundleName": "com.acts.stopserviceextensiontest",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:app_icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true,
"keepAlive" : true,
"singleUser": true,
"minAPIVersion": 10,
"targetAPIVersion": 10,
"car": {
"apiCompatibleVersion": 10,
"singleUser": false
}
}
}
# 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("ActsStopServiceExtensionTest") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":actsstopserviceextensiontest_js_assets",
":actsstopserviceextensiontest_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsStopServiceExtensionTest"
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_app_scope("actsstopserviceextensiontest_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsstopserviceextensiontest_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsstopserviceextensiontest_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsstopserviceextensiontest_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
{
"description": "Configuration for aceceshi Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "600000",
"bundle-name": "com.acts.stopserviceextensiontest",
"module-name": "entry_test",
"shell-timeout": "600000"
},
"kits": [
{
"test-file-name": [
"ActsStopServiceExtensionTest.hap",
"ActsStopServiceExtensionRely.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
},
{
"type": "ShellKit",
"run-command": [
"power-shell wakeup",
"power-shell setmode 602",
"hilog -Q pidoff",
"hilog -Q domainoff",
"hilog -b D",
"setenforce 0"
]
}
]
}
\ No newline at end of file
/*
* 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 hilog from '@ohos.hilog';
import TestRunner from '@ohos.application.testRunner'
import AbilityDelegatorRegistry from '@ohos.application.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) 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 abilityTest from './Ability.test'
export default function testsuite() {
abilityTest()
}
\ No newline at end of file
/*
* 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 hilog from '@ohos.hilog';
import Ability from '@ohos.app.ability.UIAbility'
import AbilityDelegatorRegistry from '@ohos.application.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) {
this.context.stopServiceExtensionAbility
globalThis.abilityContext = this.context;
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) 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 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 World'
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_test",
"type": "feature",
"description": "$string:module_test_desc",
"mainElement": "TestAbility",
"deviceTypes": [
"default",
"tablet"
],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:test_pages",
"abilities": [
{
"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",
"skills": [
{
"actions": [
"action.system.home"
],
"entities": [
"entity.system.home"
]
}
]
}
],
"requestPermissions": [
{
"name": "ohos.permission.START_ABILITIES_FROM_BACKGROUND"
}
]
}
}
{
"color": [
{
"name": "start_window_background",
"value": "#FFFFFF"
}
]
}
\ No newline at end of file
{
"string": [
{
"name": "module_test_desc",
"value": "test ability description"
},
{
"name": "TestAbility_desc",
"value": "the test ability"
},
{
"name": "TestAbility_label",
"value": "test label"
}
]
}
\ No newline at end of file
# 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")
group("stopserviceextension") {
testonly = true
if (is_standard_system) {
deps = [
"ActsStopServiceExtensionRely:ActsStopServiceExtensionRely",
"ActsStopServiceExtensionTest:ActsStopServiceExtensionTest",
]
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册