diff --git a/driver/BUILD.gn b/driver/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..d304e7c5bbdf0306e26e4b09878db8576063653a --- /dev/null +++ b/driver/BUILD.gn @@ -0,0 +1,21 @@ +# 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" ] + } +} diff --git a/driver/device_manager/BUILD.gn b/driver/device_manager/BUILD.gn new file mode 100644 index 0000000000000000000000000000000000000000..200499f7738db0c1da16b42f2f37489771e69632 --- /dev/null +++ b/driver/device_manager/BUILD.gn @@ -0,0 +1,35 @@ +# 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" +} diff --git a/driver/device_manager/Test.json b/driver/device_manager/Test.json new file mode 100644 index 0000000000000000000000000000000000000000..ae3a5ccfae25aeae215278c908c4618b18ded48f --- /dev/null +++ b/driver/device_manager/Test.json @@ -0,0 +1,19 @@ +{ + "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 diff --git a/driver/device_manager/signature/openharmony_sx.p7b b/driver/device_manager/signature/openharmony_sx.p7b new file mode 100644 index 0000000000000000000000000000000000000000..9be1e98fa4c0c28ca997ed660112fa16b194f0f5 Binary files /dev/null and b/driver/device_manager/signature/openharmony_sx.p7b differ diff --git a/driver/device_manager/src/main/config.json b/driver/device_manager/src/main/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fdfd69bf320f9c903b48e40a9ea167c6b8b7aabb --- /dev/null +++ b/driver/device_manager/src/main/config.json @@ -0,0 +1,96 @@ +{ + "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 diff --git a/driver/device_manager/src/main/js/MainAbility/app.js b/driver/device_manager/src/main/js/MainAbility/app.js new file mode 100644 index 0000000000000000000000000000000000000000..e423f4bce4698ec1d7dc86c3eea3990a5e7b1085 --- /dev/null +++ b/driver/device_manager/src/main/js/MainAbility/app.js @@ -0,0 +1,23 @@ +/* + * 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'); + } +}; diff --git a/driver/device_manager/src/main/js/MainAbility/i18n/en-US.json b/driver/device_manager/src/main/js/MainAbility/i18n/en-US.json new file mode 100644 index 0000000000000000000000000000000000000000..e63c70d978a3a53be988388c87182f81785e170c --- /dev/null +++ b/driver/device_manager/src/main/js/MainAbility/i18n/en-US.json @@ -0,0 +1,6 @@ +{ + "strings": { + "hello": "Hello", + "world": "World" + } +} \ No newline at end of file diff --git a/driver/device_manager/src/main/js/MainAbility/i18n/zh-CN.json b/driver/device_manager/src/main/js/MainAbility/i18n/zh-CN.json new file mode 100644 index 0000000000000000000000000000000000000000..de6ee5748322f44942c1b003319d8e66c837675f --- /dev/null +++ b/driver/device_manager/src/main/js/MainAbility/i18n/zh-CN.json @@ -0,0 +1,6 @@ +{ + "strings": { + "hello": "您好", + "world": "世界" + } +} \ No newline at end of file diff --git a/driver/device_manager/src/main/js/MainAbility/pages/index/index.css b/driver/device_manager/src/main/js/MainAbility/pages/index/index.css new file mode 100644 index 0000000000000000000000000000000000000000..6fda792753f2e15f22b529c7b90a82185b2770bf --- /dev/null +++ b/driver/device_manager/src/main/js/MainAbility/pages/index/index.css @@ -0,0 +1,9 @@ +.container { + flex-direction: column; + justify-content: center; + align-items: center; +} + +.title { + font-size: 100px; +} diff --git a/driver/device_manager/src/main/js/MainAbility/pages/index/index.hml b/driver/device_manager/src/main/js/MainAbility/pages/index/index.hml new file mode 100644 index 0000000000000000000000000000000000000000..f64b040a5ae394dbaa5e185e1ecd4f4556b92184 --- /dev/null +++ b/driver/device_manager/src/main/js/MainAbility/pages/index/index.hml @@ -0,0 +1,5 @@ +
+ + {{ $t('strings.hello') }} {{ title }} + +
diff --git a/driver/device_manager/src/main/js/MainAbility/pages/index/index.js b/driver/device_manager/src/main/js/MainAbility/pages/index/index.js new file mode 100644 index 0000000000000000000000000000000000000000..644429709f93ac436e4ef6f932a610da7a6aa197 --- /dev/null +++ b/driver/device_manager/src/main/js/MainAbility/pages/index/index.js @@ -0,0 +1,30 @@ +/* + * 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() { + }, +} diff --git a/driver/device_manager/src/main/js/TestAbility/app.js b/driver/device_manager/src/main/js/TestAbility/app.js new file mode 100644 index 0000000000000000000000000000000000000000..cdc31f3dcf031e2f6a7665d9653e53bb649e21c5 --- /dev/null +++ b/driver/device_manager/src/main/js/TestAbility/app.js @@ -0,0 +1,31 @@ +/* + * 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"); + } +}; diff --git a/driver/device_manager/src/main/js/TestAbility/i18n/en-US.json b/driver/device_manager/src/main/js/TestAbility/i18n/en-US.json new file mode 100644 index 0000000000000000000000000000000000000000..3cb24b374b1d919ca8eac0638f361692b603a900 --- /dev/null +++ b/driver/device_manager/src/main/js/TestAbility/i18n/en-US.json @@ -0,0 +1,8 @@ +{ + "strings": { + "hello": "Hello", + "world": "World" + }, + "Files": { + } +} \ No newline at end of file diff --git a/driver/device_manager/src/main/js/TestAbility/i18n/zh-CN.json b/driver/device_manager/src/main/js/TestAbility/i18n/zh-CN.json new file mode 100644 index 0000000000000000000000000000000000000000..c804e32c0c3103929baca5617cdac70be11fdba1 --- /dev/null +++ b/driver/device_manager/src/main/js/TestAbility/i18n/zh-CN.json @@ -0,0 +1,8 @@ +{ + "strings": { + "hello": "您好", + "world": "世界" + }, + "Files": { + } +} \ No newline at end of file diff --git a/driver/device_manager/src/main/js/TestAbility/pages/index/index.css b/driver/device_manager/src/main/js/TestAbility/pages/index/index.css new file mode 100644 index 0000000000000000000000000000000000000000..b1bcd43387ba131cc1d30975ff7508a6f8084a4b --- /dev/null +++ b/driver/device_manager/src/main/js/TestAbility/pages/index/index.css @@ -0,0 +1,30 @@ +.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 diff --git a/driver/device_manager/src/main/js/TestAbility/pages/index/index.hml b/driver/device_manager/src/main/js/TestAbility/pages/index/index.hml new file mode 100644 index 0000000000000000000000000000000000000000..f629c71a9be857db6cdf94149652a191b9b272ea --- /dev/null +++ b/driver/device_manager/src/main/js/TestAbility/pages/index/index.hml @@ -0,0 +1,5 @@ +
+ + {{ $t('strings.hello') }} {{ title }} + +
diff --git a/driver/device_manager/src/main/js/TestAbility/pages/index/index.js b/driver/device_manager/src/main/js/TestAbility/pages/index/index.js new file mode 100644 index 0000000000000000000000000000000000000000..88b083a7f6b979019d6a2c5ad20b19c5fd43286b --- /dev/null +++ b/driver/device_manager/src/main/js/TestAbility/pages/index/index.js @@ -0,0 +1,26 @@ +/* + * 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'); + } +} + + + diff --git a/driver/device_manager/src/main/js/TestRunner/OpenHarmonyTestRunner.js b/driver/device_manager/src/main/js/TestRunner/OpenHarmonyTestRunner.js new file mode 100644 index 0000000000000000000000000000000000000000..c5fa8620ca77d381f20b65a903b833e6e3378c97 --- /dev/null +++ b/driver/device_manager/src/main/js/TestRunner/OpenHarmonyTestRunner.js @@ -0,0 +1,59 @@ +/* + * 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); + }) + } +}; diff --git a/driver/device_manager/src/main/js/test/DeviceManagerJsTest.test.js b/driver/device_manager/src/main/js/test/DeviceManagerJsTest.test.js new file mode 100644 index 0000000000000000000000000000000000000000..fd8a558b528e6e633a60c5c22b0674d9a82ec187 --- /dev/null +++ b/driver/device_manager/src/main/js/test/DeviceManagerJsTest.test.js @@ -0,0 +1,309 @@ +/* + * 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 diff --git a/driver/device_manager/src/main/js/test/List.test.js b/driver/device_manager/src/main/js/test/List.test.js new file mode 100644 index 0000000000000000000000000000000000000000..f777456d08019e0a6134f7758928e79d6320af36 --- /dev/null +++ b/driver/device_manager/src/main/js/test/List.test.js @@ -0,0 +1,21 @@ +/* + * 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() +} diff --git a/driver/device_manager/src/main/resources/base/element/string.json b/driver/device_manager/src/main/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..e086d6d881d07832569ee1c81c4b4091b8cb81e4 --- /dev/null +++ b/driver/device_manager/src/main/resources/base/element/string.json @@ -0,0 +1,28 @@ +{ + "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 diff --git a/driver/device_manager/src/main/resources/base/media/icon.png b/driver/device_manager/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/driver/device_manager/src/main/resources/base/media/icon.png differ diff --git a/test_packages.gni b/test_packages.gni index 91a9965061268decc740031d5a0d8c0639ddd356..f7fe7aef067200e200a5478d740cb08a00d272cd 100644 --- a/test_packages.gni +++ b/test_packages.gni @@ -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", ]