提交 29fd6363 编写于 作者: X xuchenghua09

update

Signed-off-by: Nxuchenghua09 <xuchenghua09@huawei.com>
上级 e9d60180
{
"app": {
"bundleName": "com.example.extensionconnectabilitytest",
"vendor": "huawei",
"versionCode": 1000000,
"versionName": "1.0.0",
"debug": false,
"icon" : "$media:icon",
"label" : "$string:app_name",
"description" : "$string:description_application",
"distributedNotificationEnabled": true,
"keepAlive" : true,
"singleUser": true,
"minAPIVersion": 8,
"targetAPIVersion": 8,
"car": {
"apiCompatibleVersion": 8,
"singleUser": false
}
}
}
\ 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAmsExtensionConnectAbilitytest") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":actsamsextensionconnectabilitytest_js_assets",
":actsamsextensionconnectabilitytest_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAmsExtensionConnectAbilitytest"
}
ohos_app_scope("actsamsextensionconnectabilitytest_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("actsamsextensionconnectabilitytest_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("actsamsextensionconnectabilitytest_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":actsamsextensionconnectabilitytest_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "120000",
"package": "com.example.extensionconnectabilitytest",
"shell-timeout": "60000"
},
"kits": [
{
"type": "ShellKit",
"run-command": [
"acm create -n user101 -t normal",
"acm switch -i 101"
],
"teardown-command":[
"acm delete -i 101"
]
},
{
"test-file-name": [
"ActsAmsExtensionConnectAbilitytest.hap",
"ActsAmsUsersApi7AppA.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
/*
* 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 AbilityStage from "@ohos.application.AbilityStage"
export default class MyAbilityStage extends AbilityStage {
onCreate() {
console.log("MyAbilityStage onCreate")
globalThis.stageOnCreateRun = 1;
globalThis.stageContext = this.context;
}
}
\ 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 Ability from '@ohos.application.Ability'
export default class MainAbility extends Ability {
onCreate(want, launchParam) {
// Ability is creating, initialize resources for this ability
console.log("MainAbility onCreate")
globalThis.abilityWant = want;
globalThis.abilityContext = this.context
}
onDestroy() {
// Ability is destroying, release resources for this ability
console.log("MainAbility onDestroy")
}
onWindowStageCreate(windowStage) {
// Main window is created, set main page for this ability
console.log("MainAbility onWindowStageCreate")
windowStage.setUIContent(this.context, "pages/index/index", null)
}
onWindowStageDestroy() {
// Main window is destroyed, release UI related resources
console.log("MainAbility onWindowStageDestroy")
}
onForeground() {
// Ability has brought to foreground
console.log("MainAbility onForeground")
}
onBackground() {
// Ability has back to background
console.log("MainAbility 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 ServiceExtension from '@ohos.application.ServiceExtensionAbility'
import rpc from '@ohos.rpc';
var conn = -1;
function onConnectCallback(element, remote) {
console.debug('onConnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
console.debug('onConnectCallback ====> remote='
+ JSON.stringify(remote) + " , " + remote);
}
function onDisconnectCallback(element) {
console.debug('onDisconnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
}
function onFailedCallback(code) {
console.debug('onFailedCallback ====> code='
+ JSON.stringify(code) + " , " + code)
}
export default class ServiceAbility extends ServiceExtension {
onCreate(want) {
console.log('ACTS_ServiceAbility onCreate, want: ' + want.abilityName);
}
onRequest(want, startId) {
console.log('ACTS_ServiceAbility onRequest, want: ' + want.abilityName + ', startId: ' + startId);
console.log('ACTS_ServiceAbility registerApplicationStateObserver begin');
console.log('ACTS_ServiceAbility registerApplicationStateObserver end, conn: ' + conn);
}
onConnect(want) {
console.log('ACTS_ServiceAbility onConnect, want:' + want.abilityName);
let extensionContext = this.context
if (want.action == "Three") {
console.log('ACTS_connectAbility 111');
let num = this.context.connectAbility(
{
bundleName: 'com.example.userservicesystemapi7',
abilityName: 'com.example.userservicesystemapi7.ServiceAbility'
},
{
onConnect: onConnectCallback,
onDisconnect: onDisconnectCallback,
onFailed: onFailedCallback,
}
)
setTimeout(()=>{
this.context.disconnectAbility(num).then(()=>{
console.log('ACTS_in disconnectAbility');
})
},1000)
};
return new rpc.RemoteObject('connect');
};
onDisconnect(want) {
console.log('ACTS_ServiceAbility onDisconnect, want:' + want.abilityName);
}
onDestroy() {
console.log('ACTS_ServiceAbility onDestroy');
}
}
/*
* 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.
*/
export default {
onStart() {
console.info('ServiceAbility onStart');
},
onStop() {
console.info('ServiceAbility onStop');
},
onCommand(want, startId) {
console.info('ServiceAbility onCommand');
}
};
\ 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 ServiceExtension from '@ohos.application.ServiceExtensionAbility'
import rpc from '@ohos.rpc';
var conn = -1;
function onConnectCallback(element, remote) {
console.debug('onConnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
console.debug('onConnectCallback ====> remote='
+ JSON.stringify(remote) + " , " + remote);
}
function onDisconnectCallback(element) {
console.debug('onDisconnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
}
function onFailedCallback(code) {
console.debug('onFailedCallback ====> code='
+ JSON.stringify(code) + " , " + code)
}
export default class ServiceAbility2 extends ServiceExtension {
onCreate(want) {
console.log('ServiceAbility onCreate, want: ' + want.abilityName);
}
onRequest(want, startId) {
console.log('ServiceAbility onRequest, want: ' + want.abilityName + ', startId: ' + startId);
console.log('ServiceAbility registerApplicationStateObserver begin');
console.log('ServiceAbility registerApplicationStateObserver end, conn: ' + conn);
}
onConnect(want) {
console.log('ServiceAbility onConnect, want:' + want.abilityName);
console.log('connectAbility 222');
let num = this.context.connectAbility(
{
bundleName: 'com.example.userservicesystemapi7',
abilityName: 'com.example.userservicesystemapi7.ServiceAbility'
},
{
onConnect: onConnectCallback,
onDisconnect: onDisconnectCallback,
onFailed: onFailedCallback,
}
)
setTimeout(()=>{
this.context.disconnectAbility(num).then(()=>{
console.log('in disconnectAbility2');
})
},2000)
return new rpc.RemoteObject('connect');
};
onDisconnect(want) {
console.log('ServiceAbility onDisconnect, want:' + want.abilityName);
}
onDestroy() {
console.log('ServiceAbility onDestroy');
}
}
/*
* 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.
*/
export default {
onStart() {
console.info('ServiceAbility2 onStart');
},
onStop() {
console.info('ServiceAbility2 onStop');
},
onCommand(want, startId) {
console.info('ServiceAbility2 onCommand');
}
};
\ No newline at end of file
/*
* 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 file from '@system.file';
import {Core, ExpectExtend, InstrumentLog, ReportExtend} from "deccjsunit/index"
import testsuite from "../../test/List.test.ets"
@Entry
@Component
struct Index {
aboutToAppear() {
console.info("start run testcase!!!!")
const core = Core.getInstance()
const expectExtend = new ExpectExtend({
'id': 'extend'
})
core.addService('expect', expectExtend)
const reportExtend = new ReportExtend(file)
core.addService('report', reportExtend)
core.init()
core.subscribeEvent('task', reportExtend)
console.info("subscribeEvent run !!!!")
const configService = core.getDefaultService('config')
globalThis.abilityWant.parameters['timeout'] = 10000
console.info('parameters---->' + JSON.stringify(globalThis.abilityWant.parameters))
configService.setConfig(globalThis.abilityWant.parameters)
testsuite(globalThis.abilityContext)
core.execute()
}
build() {
Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
Text('MainAbility')
.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 router from '@system.router';
@Entry
@Component
struct Second {
private content: string = "Second Page"
build() {
Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
Text(`${this.content}`)
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text('back to index')
.fontSize(20)
.fontWeight(FontWeight.Bold)
}.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor('#0D9FFB')
.onClick(() => {
router.back()
})
}
.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 abilityTest from './manyusersabilitytest.test.ets'
export default function testsuite(context) {
abilityTest(context)
}
\ 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 {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "deccjsunit/index"
import commonEvent from '@ohos.commonEvent'
var subscriberInfoStartAbility_0100 = {
events: ["ACTS_InterfaceMultiUsers_0100_Start_CommonEvent"],
};
var subscriberInfoStartAbility_0200 = {
events: ["ACTS_InterfaceMultiUsers_0100_Start_CommonEvent"],
};
var subscriberInfoStartAbility_0300 = {
events: ["ACTS_InterfaceMultiUsers_0100_Start_CommonEvent"],
};
var subscriberInfoStartAbility_0400 = {
events: ["ACTS_InterfaceMultiUsers_0100_Start_CommonEvent"],
};
const START_ABILITY_TIMEOUT = 5000;
export default function abilityTest(abilityContext) {
describe('ActsmanyuserAystemAbilityTest', function () {
beforeEach(async (done) => {
setTimeout(function () {
done();
}, START_ABILITY_TIMEOUT);
})
/*
* @tc.number : ACTS_ConnectAbility_0300
* @tc.name : Connect ability
* @tc.desc : Connecting ability succeeded.
*/
it('ACTS_ConnectAbility_0300', 0, async function (done) {
console.log('ACTS_ConnectAbility_0300====<begin');
console.log('========ACTS_ConnectAbility_0300 1 called');
var subscriber;
let id;
let connId;
function subscribeCallBack(err, data) {
console.debug("====>ACTS_ConnectAbility_0300 7 CallBack data:====>" + JSON.stringify(data));
clearTimeout(id);
expect(data.event).assertEqual("ACTS_InterfaceMultiUsers_0100_Start_CommonEvent");
console.debug("====>ACTS_ConnectAbility_0300 5 ");
abilityContext.disconnectAbility(
connId,
(err, data) => {
console.log('ACTS_ConnectAbility_0300 featureAbilityTest DisconnectAbility result errCode : '
+ err.code + " data: " + data)
}
);
console.debug("====>ACTS_ConnectAbility_0300 6 ");
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
}
function onConnectCallback(element, remote) {
console.debug('ACTS_ConnectAbility_0300 _onConnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
console.debug('ACTS_ConnectAbility_0300 _onConnectCallback ====> remote='
+ JSON.stringify(remote) + " , " + remote);
}
function onDisconnectCallback(element) {
console.debug('ACTS_ConnectAbility_0300 _onDisconnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
}
function onFailedCallback(code) {
console.debug('ACTS_ConnectAbility_0300 _onFailedCallback ====> code='
+ JSON.stringify(code) + " , " + code)
}
commonEvent.createSubscriber(subscriberInfoStartAbility_0100).then(async (data) => {
console.debug("====>ACTS_ConnectAbility_0300 2 Subscriber1====>");
subscriber = data;
await commonEvent.subscribe(subscriber, subscribeCallBack)
connId = abilityContext.connectAbility({
bundleName: "com.example.userservicesystemapi7",
abilityName: "com.example.userservicesystemapi7.ServiceAbility",
},
{
onConnect: onConnectCallback,
onDisconnect: onDisconnectCallback,
onFailed: onFailedCallback,
}
)
})
function unSubscribeCallback() {
console.debug("====>UnSubscribe CallBack1====>");
setTimeout(() => {
done();
}, 1000)
}
function timeout() {
expect().assertFail();
console.debug('ACTS_ConnectAbility_0300 timeout');
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
abilityContext.disconnectAbility(
connId,
(err, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + err.code + " data: " + data)
});
}
id = setTimeout(timeout, START_ABILITY_TIMEOUT);
console.debug("====>ACTS_ConnectAbility_0300 4 ");
})
/*
* @tc.number : ACTS_ConnectAbility_0400
* @tc.name : Connect ability
* @tc.desc : Connecting ability succeeded.
*/
it('ACTS_ConnectAbility_0400', 0, async function (done) {
console.log('ACTS_ConnectAbility_0400====<begin');
console.log('========ACTS_ConnectAbility_0400 1 called');
var subscriber;
let id;
let connId;
function onConnectCallback(element, remote) {
console.debug('ACTS_ConnectAbility_0400 _onConnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
console.debug('ACTS_ConnectAbility_0400 _onConnectCallback ====> remote='
+ JSON.stringify(remote) + " , " + remote);
}
function onDisconnectCallback(element) {
console.debug('ACTS_ConnectAbility_0400 _onDisconnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
}
function onFailedCallback(code) {
console.debug('ACTS_ConnectAbility_0400 _onFailedCallback ====> code='
+ JSON.stringify(code) + " , " + code)
}
function subscribeCallBack(err, data) {
console.debug("====>ACTS_ConnectAbility_0400 7 CallBack data:====>" + JSON.stringify(data));
clearTimeout(id);
expect(data.event).assertEqual("ACTS_InterfaceMultiUsers_0100_Start_CommonEvent");
console.debug("====>ACTS_ConnectAbility_0400 5 ");
abilityContext.disconnectAbility(
connId,
(err, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + err.code + " data: " + data)
}
);
console.debug("====>ACTS_ConnectAbility_0400 6 ");
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
}
commonEvent.createSubscriber(subscriberInfoStartAbility_0200).then(async (data) => {
console.debug("====>ACTS_ConnectAbility_0400 2 Subscriber1====>");
subscriber = data;
await commonEvent.subscribe(subscriber, subscribeCallBack);
console.debug("====>ACTS_ConnectAbility_0400 3 ");
connId = await abilityContext.connectAbility({
bundleName: "com.example.userservicesystemapi7",
abilityName: "com.example.userservicesystemapi7.ServiceAbility",
},
{
onConnect: onConnectCallback,
onDisconnect: onDisconnectCallback,
onFailed: onFailedCallback,
})
console.debug("====>ACTS_ConnectAbility_0400 4 ");
})
function unSubscribeCallback() {
console.debug("====>UnSubscribe CallBack1====>");
setTimeout(() => {
done();
}, 1000)
}
function timeout() {
expect().assertFail();
console.debug('ACTS_ConnectAbility_0400 timeout');
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
abilityContext.disconnectAbility(
connId,
(err, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + err.code + " data: " + data)
});
}
id = setTimeout(timeout, START_ABILITY_TIMEOUT);
})
/*
* @tc.number : ACTS_ExtensionConnectAbility_0300
* @tc.name : Connect ability
* @tc.desc : Connecting ability succeeded.
*/
it('ACTS_ExtensionConnectAbility_0300', 0, async function (done) {
console.log('ACTS_ExtensionConnectAbility_0300====<begin');
console.log('========ACTS_ExtensionConnectAbility_0300 1 called');
var subscriber;
let id;
let connId;
function subscribeCallBack(err, data) {
console.debug("====>ACTS_ExtensionConnectAbility_0300 7 CallBack data:====>" + JSON.stringify(data));
clearTimeout(id);
expect(data.event).assertEqual("ACTS_InterfaceMultiUsers_0100_Start_CommonEvent");
console.debug("====>ACTS_ExtensionConnectAbility_0300 5 ");
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
}
function onConnectCallback(element, remote) {
console.debug('ACTS_ExtensionConnectAbility_0300 _onConnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
console.debug('ACTS_ExtensionConnectAbility_0300 _onConnectCallback ====> remote='
+ JSON.stringify(remote) + " , " + remote);
}
function onDisconnectCallback(element) {
console.debug('ACTS_ExtensionConnectAbility_0300 _onDisconnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
}
function onFailedCallback(code) {
console.debug('ACTS_ExtensionConnectAbility_0300 _onFailedCallback ====> code='
+ JSON.stringify(code) + " , " + code)
}
commonEvent.createSubscriber(subscriberInfoStartAbility_0300).then(async (data) => {
console.debug("====>ACTS_ExtensionConnectAbility_0300 2 Subscriber1====>");
subscriber = data;
await commonEvent.subscribe(subscriber, subscribeCallBack);
connId = abilityContext.connectAbility(
{
bundleName: "com.example.extensionconnectabilitytest",
abilityName: "com.example.extensionconnectabilitytest.ServiceAbility",
action:"Three",
},
{
onConnect: onConnectCallback,
onDisconnect: onDisconnectCallback,
onFailed: onFailedCallback,
}
)
console.debug("====>ACTS_ExtensionConnectAbility_0300 4 ");
})
function unSubscribeCallback() {
abilityContext.disconnectAbility(
connId,
(error, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + error.code + " data: " + data)
}
);
console.debug("====>ACTS_ExtensionConnectAbility_0300 6 ");
console.debug("====>UnSubscribe CallBack1====>");
setTimeout(() => {
done();
}, 1000)
}
function timeout() {
expect().assertFail();
console.debug('ACTS_ExtensionConnectAbility_0300 timeout');
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
abilityContext.disconnectAbility(
connId,
(error, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + error.code + " data: " + data)
});
}
id = setTimeout(timeout, START_ABILITY_TIMEOUT);
console.debug("====>ACTS_ExtensionConnectAbility_0300 3 ");
})
/*
* @tc.number : ACTS_ExtensionConnectAbility_0400
* @tc.name : Connect ability
* @tc.desc : Connecting ability succeeded.
*/
it('ACTS_ExtensionConnectAbility_0400', 0, async function (done) {
console.log('ACTS_ExtensionConnectAbility_0400====<begin');
console.log('========ACTS_ExtensionConnectAbility_0400 1 called');
var subscriber;
let id;
let connId;
function subscribeCallBack(err, data) {
console.debug("====>ACTS_ExtensionConnectAbility_0400 7 CallBack data:====>" + JSON.stringify(data));
clearTimeout(id);
expect(data.event).assertEqual("ACTS_InterfaceMultiUsers_0100_Start_CommonEvent");
console.debug("====>ACTS_ExtensionConnectAbility_0400 5 ");
abilityContext.disconnectAbility(
connId,
(error, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + error.code + " data: " + data)
}
);
console.debug("====>ACTS_ExtensionConnectAbility_0400 6 ");
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
}
function onConnectCallback(element, remote) {
console.debug('ACTS_ExtensionConnectAbility_0400_onConnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
console.debug('ACTS_ExtensionConnectAbility_0400_onConnectCallback ====> remote='
+ JSON.stringify(remote) + " , " + remote);
}
function onDisconnectCallback(element) {
console.debug('ACTS_ExtensionConnectAbility_0400_onDisconnectCallback ====> element='
+ JSON.stringify(element) + " , " + element);
}
function onFailedCallback(code) {
console.debug('ACTS_ExtensionConnectAbility_0400_onFailedCallback ====> code='
+ JSON.stringify(code) + " , " + code)
}
await commonEvent.createSubscriber(subscriberInfoStartAbility_0400).then(async (data) => {
console.debug("====>ACTS_ExtensionConnectAbility_0400 2 Subscriber1====>");
subscriber = data;
await commonEvent.subscribe(subscriber, subscribeCallBack);
console.debug("====>ACTS_ExtensionConnectAbility_0400 3 ");
connId = abilityContext.connectAbility(
{
bundleName: "com.example.extensionconnectabilitytest",
abilityName: "com.example.extensionconnectabilitytest.ServiceAbility2",
},
{
onConnect: onConnectCallback,
onDisconnect: onDisconnectCallback,
onFailed: onFailedCallback,
}
);
console.debug("====>ACTS_ExtensionConnectAbility_0400 4 ");
})
function unSubscribeCallback() {
console.debug("====>UnSubscribe CallBack1====>");
setTimeout(() => {
done();
}, 1000)
}
function timeout() {
expect().assertFail();
console.debug('ACTS_ExtensionConnectAbility_0400 timeout');
commonEvent.unsubscribe(subscriber, unSubscribeCallback)
abilityContext.disconnectAbility(
connId,
(error, data) => {
console.log('featureAbilityTest DisconnectAbility result errCode : ' + error.code + " data: " + data)
});
}
id = setTimeout(timeout, START_ABILITY_TIMEOUT);
})
})
}
{
"module": {
"name": "phone",
"type": "entry",
"srcEntrance": "./ets/Application/AbilityStage.ts",
"description": "$string:phone_entry_dsc",
"mainElement": "MainAbility",
"deviceTypes": [
"phone"
],
"deliveryWithInstall": true,
"installationFree": false,
"uiSyntax": "ets",
"pages": "$profile:main_pages",
"abilities": [
{
"name": "com.example.extensionconnectabilitytest.MainAbility",
"srcEntrance": "./ets/MainAbility/MainAbility.ts",
"description": "$string:phone_entry_main",
"icon": "$media:icon",
"label": "$string:entry_label",
"visible": true,
"orientation": "portrait",
"skills": [
{
"actions": [
"action.system.home"
],
"entities": [
"entity.system.home"
]
}
]
}
],
"extensionAbilities": [
{
"srcEntrance": "./ets/ServiceAbility/ServiceAbility.ts",
"name": "com.example.extensionconnectabilitytest.ServiceAbility",
"icon": "$media:icon",
"srcLanguage": "ets",
"description": "$string:phone_entry_main",
"type": "service",
"visible": true
},
{
"srcEntrance": "./ets/ServiceAbility2/ServiceAbility2.ts",
"name": "com.example.extensionconnectabilitytest.ServiceAbility2",
"icon": "$media:icon",
"srcLanguage": "ets",
"description": "$string:phone_entry_main",
"type": "service",
"visible": true
}
],
"requestPermissions": [
{
"name": "ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
"reason": "need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name": "ohos.permission.INSTALL_BUNDLE",
"reason": "need use ohos.permission.INSTALL_BUNDLE"
},
{
"name": "ohos.permission.GET_BUNDLE_INFO",
"reason": "need use ohos.permission.GET_BUNDLE_INFO"
},
{
"name": "ohos.permission.UPDATE_CONFIGURATION",
"reason": "need use ohos.permission.UPDATE_CONFIGURATION"
},
{
"name": "ohos.permission.MANAGE_MISSIONS",
"reason": "need use ohos.permission.MANAGE_MISSIONS"
},
{
"name": "ohos.permission.CHANGE_ABILITY_ENABLED_STATE",
"reason": "need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name": "ohos.permission.REMOVE_CACHE_FILES",
"reason": "need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name": "ohos.permission.LISTEN_BUNDLE_CHANGE",
"reason": "need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
]
}
}
{
"string": [
{
"name": "phone_entry_dsc",
"value": "i am an entry for phone"
},
{
"name": "phone_entry_main",
"value": "the phone entry ability"
},
{
"name": "entry_label",
"value": "ActsContextTest"
},
{
"name": "form_description",
"value": "my form"
},
{
"name": "serviceability_description",
"value": "my whether"
},
{
"name": "description_application",
"value": "demo for test"
},
{
"name": "app_name",
"value": "Demo"
}
]
}
\ No newline at end of file
...@@ -17,7 +17,6 @@ group("actsusers") { ...@@ -17,7 +17,6 @@ group("actsusers") {
testonly = true testonly = true
if (is_standard_system) { if (is_standard_system) {
deps = [ deps = [
"ActsAmsExtensionConnectAbilitytest:ActsAmsExtensionConnectAbilitytest",
"ActsAmsUsersApi7AppA:ActsAmsUsersApi7AppA", "ActsAmsUsersApi7AppA:ActsAmsUsersApi7AppA",
"ActsAmsUsersExtensionSystemTest:ActsAmsUsersExtensionSystemTest", "ActsAmsUsersExtensionSystemTest:ActsAmsUsersExtensionSystemTest",
"ActsAmsUsersExtensionThirdTest:ActsAmsUsersExtensionThirdTest", "ActsAmsUsersExtensionThirdTest:ActsAmsUsersExtensionThirdTest",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册