提交 e050693f 编写于 作者: L liuwei

多模xts jsUT框架代码合入

Signed-off-by: Nliuwei <liuwei595@huawei.com>
上级 23b3d674
# 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("multimodalinput") {
testonly = true
if (is_standard_system) {
deps = [ "input_jsapi:multimodalinput_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("multimodalinput_js_test") {
hap_profile = "./src/main/config.json"
deps = [
":multimodalinput_js_assets",
":multimodalinput_js_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsMultimodalinputJSApiTest"
}
ohos_js_assets("multimodalinput_js_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("multimodalinput_js_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for multimodalinput js api Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "160000",
"package": "ohos.acts.multimodalinput.jsunit",
"shell-timeout": "60000"
},
"kits": [
{
"test-file-name": [
"ActsMultimodalinputJSApiTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "ohos.acts.multimodalinput.jsunit",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5
}
},
"deviceConfig": {},
"module": {
"package": "ohos.acts.multimodalinput.jsunit",
"name": ".MyApplication",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"visible": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "ohos.acts.multimodalinput.jsunit.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
/*
* Copyright (C) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
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.
*/
import {Core, ExpectExtend} from 'deccjsunit/index'
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')
const core = Core.getInstance()
const expectExtend = new ExpectExtend({
'id': 'extend'
})
core.addService('expect', expectExtend)
core.init()
const configService = core.getDefaultService('config')
this.timeout = 5000
configService.setConfig(this)
require('../../test/ListMultimodalinput.test')
core.execute()
},
onReady() {
},
}
/*
* 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.
*/
require('./tsunit.test.js')
/*
* 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 inputEventClient from '@ohos.multimodalInput.inputEventClient';
import inputDevice from '@ohos.multimodalInput.inputDevice';
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from 'deccjsunit/index'
const REGISTERED_SUCCESS = 1;
const REGISTERED_FAILED = -1;
const EventCallback = {
ON_SHOW_MENU: 0,
ON_SEND: 1,
ON_COPY: 2,
ON_PASTE: 3,
ON_CUT: 4,
ON_UNDO: 5,
ON_REFRESH: 6,
ON_CANCEL: 8,
ON_ENTER: 9,
ON_PREVIOUS: 10,
ON_NEXT: 11,
ON_BACK: 12,
ON_PRINT: 13,
ON_ANSWER: 14,
ON_REFUSE: 15,
ON_HANGUP: 16,
ON_TELEPHONE_CONTROL: 17,
ON_PLAY: 18,
ON_PAUSE: 19,
ON_MEDIA_CONTROL: 20,
};
const EVENT_UUID = 'uuid-ut';
const EVENT_SOURCE_TYPE = 65535;
const EVENT_DEVICE_ID = 65535;
const CLEAR_ALL_TYPE = 255;
const WINDOW_ID = 123;
const UNIT_TEST_SUCCESS = 0;
describe('ts_unit_test', function () {
it('inputEventClient::answer_test-01', 0, function () {
const multimodalEvent = {
uuid: EVENT_UUID,
occurredTime: Date.now(),
sourceDevice: EVENT_SOURCE_TYPE,
inputDeviceId: EVENT_DEVICE_ID,
type: EventCallback.ON_ANSWER,
}
const eventHandle = (event) => {
expect(event.uuid).assertEqual(multimodalEvent.uuid);
expect(event.occurredTime).assertEqual(multimodalEvent.occurredTime);
expect(event.sourceDevice).assertEqual(multimodalEvent.sourceDevice);
expect(event.inputDeviceId).assertEqual(multimodalEvent.inputDeviceId);
expect(event.type).assertEqual(multimodalEvent.type);
}
const registerResult = inputEventClient.on('answer', eventHandle);
// 新框架老的接口应该注册失败
expect(registerResult).assertEqual(REGISTERED_FAILED);
})
it('inputDevice::getDeviceIds_test-01', 0, function () {
console.log(`inputDevice::getDeviceIds_test-01 enter`);
inputDevice.getDeviceIds((obj) => {
if (!obj) {
console.log(`inputDevice::getDeviceIds_test-01 error:${JSON.stringify(obj)}`)
expect(false).assertTrue();
return;
} else {
console.log(`inputDevice::getDeviceIds_test-01 success:${JSON.stringify(obj)}`);
expect(true).assertTrue();
}
console.log(`inputDevice::getDeviceIds_test-01 exit`);
})
})
})
{
"string": [
{
"name": "app_name",
"value": "MultimodalinputJSApiTest"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
}
\ No newline at end of file
......@@ -34,6 +34,7 @@ _all_test_packages = [
"${ACTS_ROOT}/distributedhardware:distributedhardware",
"${ACTS_ROOT}/compileruntime:compileruntime",
"${ACTS_ROOT}/usb:usb",
"${ACTS_ROOT}/multimodalinput:multimodalinput",
]
_all_test_packages_ivi = [
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册