Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
dd3512a6
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
大约 1 年 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
dd3512a6
编写于
8月 23, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 23, 2022
浏览文件
操作
浏览文件
下载
差异文件
!5081 多模xts用例日志修改以及异步用例修改
Merge pull request !5081 from mayunteng/master
上级
5da64867
936bb973
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
27 deletion
+29
-27
multimodalinput/input_js_standard/src/main/js/default/test/InputDevice.test.js
..._js_standard/src/main/js/default/test/InputDevice.test.js
+29
-27
未找到文件。
multimodalinput/input_js_standard/src/main/js/default/test/InputDevice.test.js
浏览文件 @
dd3512a6
...
@@ -102,17 +102,17 @@ describe('MultimodalInput_test', function () {
...
@@ -102,17 +102,17 @@ describe('MultimodalInput_test', function () {
inputDevice
.
getDevice
(
data
[
i
],
(
res
,
err
)
=>
{
inputDevice
.
getDevice
(
data
[
i
],
(
res
,
err
)
=>
{
console
.
info
(
`getDevice:data
${
JSON
.
stringify
(
data
)}
`
);
console
.
info
(
`getDevice:data
${
JSON
.
stringify
(
data
)}
`
);
arr
=
Object
.
keys
(
res
);
arr
=
Object
.
keys
(
res
);
expect
(
res
.
id
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
id
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
name
).
assertInstanceOf
(
'
s
tring
'
);
expect
(
res
.
name
).
assertInstanceOf
(
'
S
tring
'
);
expect
(
res
.
sources
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
.
sources
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
.
axisRanges
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
.
axisRanges
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
.
bus
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
bus
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
product
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
product
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
vendor
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
vendor
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
version
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
version
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
phys
).
assertInstanceOf
(
'
s
tring
'
);
expect
(
res
.
phys
).
assertInstanceOf
(
'
S
tring
'
);
expect
(
res
.
uniq
).
assertInstanceOf
(
'
s
tring
'
);
expect
(
res
.
uniq
).
assertInstanceOf
(
'
S
tring
'
);
expect
(
res
).
assertInstanceOf
(
'
InputDeviceData
'
);
expect
(
res
).
assertInstanceOf
(
'
Object
'
);
for
(
let
j
=
0
;
j
<
res
.
axisRanges
.
length
;
j
++
){
for
(
let
j
=
0
;
j
<
res
.
axisRanges
.
length
;
j
++
){
expect
(
res
.
axisRanges
[
j
].
source
==
'
keyboard
'
||
res
.
axisRanges
[
j
].
source
==
'
mouse
'
expect
(
res
.
axisRanges
[
j
].
source
==
'
keyboard
'
||
res
.
axisRanges
[
j
].
source
==
'
mouse
'
||
res
.
axisRanges
[
j
].
source
==
'
touchpad
'
||
res
.
axisRanges
[
j
].
source
==
'
touchscreen
'
||
res
.
axisRanges
[
j
].
source
==
'
touchpad
'
||
res
.
axisRanges
[
j
].
source
==
'
touchscreen
'
...
@@ -122,15 +122,14 @@ describe('MultimodalInput_test', function () {
...
@@ -122,15 +122,14 @@ describe('MultimodalInput_test', function () {
||
res
.
axisRanges
[
j
].
axis
==
'
y
'
||
res
.
axisRanges
[
j
].
axis
==
'
pressure
'
||
res
.
axisRanges
[
j
].
axis
==
'
y
'
||
res
.
axisRanges
[
j
].
axis
==
'
pressure
'
||
res
.
axisRanges
[
j
].
axis
==
'
toolMinor
'
||
res
.
axisRanges
[
j
].
axis
==
'
touchMajor
'
||
res
.
axisRanges
[
j
].
axis
==
'
toolMinor
'
||
res
.
axisRanges
[
j
].
axis
==
'
touchMajor
'
||
res
.
axisRanges
[
j
].
axis
==
'
NULL
'
).
assertTrue
();
||
res
.
axisRanges
[
j
].
axis
==
'
NULL
'
).
assertTrue
();
expect
(
res
.
axisRanges
[
j
].
max
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
axisRanges
[
j
].
max
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
axisRanges
[
j
]).
assertInstanceOf
(
'
AxisRange
'
);
expect
(
res
.
axisRanges
[
j
]).
assertInstanceOf
(
'
AxisRange
'
);
expect
(
res
.
axisRanges
[
j
].
min
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
axisRanges
[
j
].
min
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
axisRanges
[
j
].
fuzz
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
axisRanges
[
j
].
fuzz
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
axisRanges
[
j
].
flat
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
axisRanges
[
j
].
flat
).
assertInstanceOf
(
'
N
umber
'
);
expect
(
res
.
axisRanges
[
j
].
resolution
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
.
axisRanges
[
j
].
resolution
).
assertInstanceOf
(
'
N
umber
'
);
}
}
})
})
expect
(
arr
.
length
>
0
).
assertTrue
();
}
}
}
}
console
.
info
(
`inputDevice::getDevice_test-02 exit`
);
console
.
info
(
`inputDevice::getDevice_test-02 exit`
);
...
@@ -176,7 +175,7 @@ describe('MultimodalInput_test', function () {
...
@@ -176,7 +175,7 @@ describe('MultimodalInput_test', function () {
}
else
{
}
else
{
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
inputDevice
.
getKeyboardType
(
data
[
i
],
(
res
,
err
)
=>
{
inputDevice
.
getKeyboardType
(
data
[
i
],
(
res
,
err
)
=>
{
expect
(
res
).
assertInstanceOf
(
'
n
umber
'
);
expect
(
res
).
assertInstanceOf
(
'
N
umber
'
);
});
});
}
}
}
}
...
@@ -204,8 +203,7 @@ describe('MultimodalInput_test', function () {
...
@@ -204,8 +203,7 @@ describe('MultimodalInput_test', function () {
}
else
{
}
else
{
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
inputDevice
.
getKeyboardType
(
data
[
i
]).
then
((
res
)
=>
{
inputDevice
.
getKeyboardType
(
data
[
i
]).
then
((
res
)
=>
{
expect
(
res
).
assertInstanceOf
(
'
number
'
);
expect
(
res
).
assertInstanceOf
(
'
Number
'
);
done
();
});
});
}
}
}
}
...
@@ -282,13 +280,15 @@ describe('MultimodalInput_test', function () {
...
@@ -282,13 +280,15 @@ describe('MultimodalInput_test', function () {
* @tc.name MultimodalInputDevice_getDeviceIds_Promise_test
* @tc.name MultimodalInputDevice_getDeviceIds_Promise_test
* @tc.desc inputdevice interface getDeviceIds & supportKeys test
* @tc.desc inputdevice interface getDeviceIds & supportKeys test
*/
*/
it
(
"
MultimodalInputDevice_getDeviceIds_Promise_test
"
,
0
,
async
function
()
{
it
(
"
MultimodalInputDevice_getDeviceIds_Promise_test
"
,
0
,
async
function
(
done
)
{
console
.
info
(
`
inputDevice::supportKeys_test-01
enter`
);
console
.
info
(
`
MultimodalInputDevice_getDeviceIds_Promise_test
enter`
);
await
inputDevice
.
getDeviceIds
().
then
((
data
,
err
)
=>
{
inputDevice
.
getDeviceIds
().
then
((
data
,
err
)
=>
{
if
(
err
)
{
if
(
err
)
{
console
.
info
(
`MultimodalInputDevice_getDeviceIds_Promise_test err`
);
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
done
();
done
();
}
else
{
}
else
{
console
.
info
(
`MultimodalInputDevice_getDeviceIds_Promise_test data`
);
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
inputDevice
.
supportKeys
(
data
[
i
],
[
17
,
22
,
2055
]).
then
((
res
,
err
)
=>
{
inputDevice
.
supportKeys
(
data
[
i
],
[
17
,
22
,
2055
]).
then
((
res
,
err
)
=>
{
expect
(
res
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
).
assertInstanceOf
(
'
Array
'
);
...
@@ -296,7 +296,7 @@ describe('MultimodalInput_test', function () {
...
@@ -296,7 +296,7 @@ describe('MultimodalInput_test', function () {
}
}
done
();
done
();
}
}
console
.
info
(
`
inputDevice::supportKeys_test-01
exit`
);
console
.
info
(
`
MultimodalInputDevice_getDeviceIds_Promise_test
exit`
);
});
});
})
})
...
@@ -305,18 +305,20 @@ describe('MultimodalInput_test', function () {
...
@@ -305,18 +305,20 @@ describe('MultimodalInput_test', function () {
* @tc.name MultimodalInputDevice_getDevice_Promise_test
* @tc.name MultimodalInputDevice_getDevice_Promise_test
* @tc.desc inputdevice interface getDevice test
* @tc.desc inputdevice interface getDevice test
*/
*/
it
(
"
MultimodalInputDevice_getDevice_Promise_test
"
,
0
,
async
function
()
{
it
(
"
MultimodalInputDevice_getDevice_Promise_test
"
,
0
,
async
function
(
done
)
{
console
.
info
(
`
inputDevice::getDevice_test-01
enter`
);
console
.
info
(
`
MultimodalInputDevice_getDevice_Promise_test
enter`
);
await
inputDevice
.
getDevice
(
-
1
).
then
((
data
,
err
)
=>
{
inputDevice
.
getDevice
(
-
1
).
then
((
data
,
err
)
=>
{
if
(
err
)
{
if
(
err
)
{
console
.
info
(
`MultimodalInputDevice_getDevice_Promise_test err`
);
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
console
.
info
(
`
inputDevice::getDevice_test-01
${
JSON
.
stringify
(
err
)}
`
);
console
.
info
(
`
MultimodalInputDevice_getDevice_Promise_test
${
JSON
.
stringify
(
err
)}
`
);
done
();
done
();
}
else
{
}
else
{
console
.
info
(
`MultimodalInputDevice_getDevice_Promise_test data`
);
expect
(
JSON
.
stringify
(
data
)
!==
"
{}
"
).
assertTrue
();
expect
(
JSON
.
stringify
(
data
)
!==
"
{}
"
).
assertTrue
();
done
();
done
();
}
}
console
.
info
(
`
inputDevice::getDevice_test-01
exit`
);
console
.
info
(
`
MultimodalInputDevice_getDevice_Promise_test
exit`
);
});
});
})
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录