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

!9367 add device manager testcase

Merge pull request !9367 from lixin475/lixin1212
# 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("//build/ohos_var.gni")
group("driver") {
testonly = true
if (is_standard_system) {
deps = [ "device_manager:device_manager_js_test" ]
}
}
# 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("device_manager_js_test") {
hap_profile = "./src/main/config.json"
deps = [
":device_manager_js_assets",
":device_manager_js_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsManagerJSApiTest"
subsystem_name = "hdf"
part_name = "external_device_manager"
}
ohos_js_assets("device_manager_js_assets") {
js2abc = true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"
}
ohos_resources("device_manager_js_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for device manager js api Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "160000",
"shell-timeout": "160000",
"bundle-name": "ohos.acts.device_manager.device_manager.function",
"package-name": "ohos.acts.device_manager.device_manager.function"
},
"kits": [
{
"test-file-name": [
"ActsManagerJSApiTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
\ No newline at end of file
{
"app": {
"bundleName": "ohos.acts.device_manager.device_manager.function",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5
}
},
"deviceConfig": {},
"module": {
"package": "ohos.acts.device_manager.device_manager.function",
"name": ".entry",
"deviceType": [
"tablet",
"default",
"phone",
"2in1"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
],
"testRunner": {
"name": "OpenHarmonyTestRunner",
"srcPath": "TestRunner"
},
"mainAbility": ".MainAbility",
"srcPath": ""
}
}
\ 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.
*/
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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.
*/
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('onShow finish')
},
onReady() {
},
}
/*
* 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'
import { Hypium } from '@ohos/hypium'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('TestApplication onCreate')
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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 {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* 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'
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package', '-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare')
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run')
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.TestAbility'
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
console.info('debug value : '+debug)
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
})
}
};
/*
* 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 deviceManager from '@ohos.driver.deviceManager'
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium'
export default function DeviceManagerJsTest(){
describe("DeviceManagerJsTest", function () {
function callback(data) {
console.info("callback" + JSON.stringify(data));
expect(typeof(data.x)).assertEqual("number");
}
function callback2() {
console.info("callback2" + JSON.stringify(data));
expect(typeof(data.x)).assertEqual("number");
}
beforeAll(function() {
console.info('beforeAll called')
})
afterAll(function() {
console.info('afterAll called')
})
beforeEach(function() {
console.info('beforeEach called')
})
afterEach(function() {
console.info('afterEach called')
})
const PARAMETER_ERROR_CODE = 401
const SERVICE_EXCEPTION_CODE = 22900001
/*
* @tc.name:DeviceManager_queryDevices_001
* @tc.desc:verify queryDevice result
* @tc.type: FUNC
*/
it("DeviceManager_queryDevices_001", 0, function () {
console.info('----------------------DeviceManager_queryDevices_001---------------------------');
try {
var devices = deviceManager.queryDevices(deviceManager.BusType.USB);
expect(devices != null).assertEqual(true);
} catch (err) {
expect(err.code).assertEqual(SERVICE_EXCEPTION_CODE);
}
})
/*
* @tc.name:DeviceManager_queryDevices_002
* @tc.desc:verify queryDevice no param result
* @tc.type: FUNC
*/
it("DeviceManager_queryDevices_002", 0, function () {
console.info('----------------------DeviceManager_queryDevices_002---------------------------');
try {
var devices = deviceManager.queryDevices();
expect(devices != null).assertEqual(true);
} catch (err) {
expect(err.code).assertEqual(SERVICE_EXCEPTION_CODE);
}
})
/*
* @tc.name:DeviceManager_bindDevices_003
* @tc.desc:verify bindDevice invalid param
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_003", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_003---------------------------');
try {
deviceManager.bindDevice('fakeid', (error, data) => {
expect(false).assertTrue();
done();
}, (error, data) => {
expect(false).assertTrue();
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_bindDevices_004
* @tc.desc:verify bindDevice any device
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_004", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_004---------------------------');
try {
deviceManager.bindDevice(12345, (error, data) => {
expect(false).assertTrue();
done();
}, (error, data) => {
expect(error.code).assertEqual(SERVICE_EXCEPTION_CODE);
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(SERVICE_EXCEPTION_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_bindDevices_005
* @tc.desc:verify bindDevice invalid param count
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_005", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_005---------------------------');
try {
deviceManager.bindDevice();
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_bindDevices_006
* @tc.desc:verify bindDevice invalid param
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_006", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_006---------------------------');
try {
deviceManager.bindDevice(12345);
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_bindDevices_007
* @tc.desc:verify bindDevice invalid param
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_007", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_007---------------------------');
try {
deviceManager.bindDevice(12345, 23456);
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_bindDevices_008
* @tc.desc:verify bindDevice promise
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_008", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_008---------------------------');
try {
deviceManager.bindDevice('fakeid', (error, data) => {
expect(false).assertTrue();
done();
}).then(data => {
expect(false).assertTrue();
done();
}, error => {
expect(false).assertTrue();
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_bindDevices_009
* @tc.desc:verify bindDevice promise
* @tc.type: FUNC
*/
it("DeviceManager_bindDevices_009", 0, async function (done) {
console.info('----------------------DeviceManager_bindDevices_009---------------------------');
try {
deviceManager.bindDevice(12345, (error, data) => {
expect(false).assertTrue();
done();
}).then(data => {
expect(false).assertTrue();
done();
}, error => {
expect(false).assertTrue();
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(SERVICE_EXCEPTION_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_unbindDevices_010
* @tc.desc:verify unbindDevice any device
* @tc.type: FUNC
*/
it("DeviceManager_unbindDevices_010", 0, async function (done) {
console.info('----------------------DeviceManager_unbindDevices_010---------------------------');
try {
deviceManager.unbindDevice('fakeid', (error, data) => {
expect(false).assertTrue();
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_unbindDevices_011
* @tc.desc:verify unbindDevice any device
* @tc.type: FUNC
*/
it("DeviceManager_unbindDevices_011", 0, async function (done) {
console.info('----------------------DeviceManager_unbindDevices_011---------------------------');
try {
deviceManager.unbindDevice(12345, (error, data) => {
expect(false).assertTrue();
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(SERVICE_EXCEPTION_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_unbindDevices_012
* @tc.desc:verify unbindDevice invalid param
* @tc.type: FUNC
*/
it("DeviceManager_unbindDevices_012", 0, async function (done) {
console.info('----------------------DeviceManager_unbindDevices_012---------------------------');
try {
deviceManager.unbindDevice();
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(PARAMETER_ERROR_CODE);
done();
}
})
/*
* @tc.name:DeviceManager_unbindDevices_013
* @tc.desc:verify unbindDevice promise
* @tc.type: FUNC
*/
it("DeviceManager_unbindDevices_013", 0, async function (done) {
console.info('----------------------DeviceManager_unbindDevices_013---------------------------');
try {
deviceManager.unbindDevice(12345).then(data => {
expect(false).assertTrue();
done();
}, error => {
expect(false).assertTrue();
done();
});
expect(false).assertTrue();
done();
} catch (error) {
expect(error.code).assertEqual(SERVICE_EXCEPTION_CODE);
done();
}
})
})
}
\ No newline at end of file
/*
* Copyright (c) 2021-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 DeviceManagerJsTest from './DeviceManagerJsTest.test.js'
/* host test case */
export default function testsuite() {
DeviceManagerJsTest()
}
{
"string": [
{
"name": "app_name",
"value": "DeviceManagerJSApiTest"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
......@@ -50,6 +50,7 @@ _all_test_packages = [
"${ACTS_ROOT}/wukong:wukong",
"${ACTS_ROOT}/validator:validator",
"${ACTS_ROOT}/xts:xts",
"${ACTS_ROOT}/driver:driver",
"${ACTS_ROOT}/msdp:msdp",
"${ACTS_ROOT}/arkcompiler:arkcompiler",
]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册