Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
39b03d59
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看板
未验证
提交
39b03d59
编写于
7月 21, 2022
作者:
O
openharmony_ci
提交者:
Gitee
7月 21, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4411 更新multimodalinput acts testcase
Merge pull request !4411 from chenkang/cherry-pick-1658242800
上级
c8e3b42a
a12b3c6b
变更
4
展开全部
隐藏空白更改
内联
并排
Showing
4 changed file
with
800 addition
and
715 deletion
+800
-715
multimodalinput/input_js_standard/src/main/js/default/test/InputDevice.test.js
..._js_standard/src/main/js/default/test/InputDevice.test.js
+114
-29
multimodalinput/input_js_standard/src/main/js/default/test/ListMultimodalinput.test.js
...dard/src/main/js/default/test/ListMultimodalinput.test.js
+0
-0
multimodalinput/input_js_standard/src/main/js/default/test/MultimodalInputEventType.test.js
...src/main/js/default/test/MultimodalInputEventType.test.js
+26
-26
multimodalinput/input_js_standard/src/main/js/default/test/MultimodalInputKey_Code.test.js
.../src/main/js/default/test/MultimodalInputKey_Code.test.js
+660
-660
未找到文件。
multimodalinput/input_js_standard/src/main/js/default/test/InputDevice.test.js
浏览文件 @
39b03d59
...
...
@@ -28,71 +28,71 @@ describe('MultimodalInput_test', function () {
// 参数正确,返回一个数组
it
(
'
inputDevice::getDeviceIds_test-01
'
,
0
,
function
()
{
console
.
log
(
`inputDevice::getDeviceIds_test-01 enter`
);
console
.
info
(
`inputDevice::getDeviceIds_test-01 enter`
);
inputDevice
.
getDeviceIds
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
}
else
{
expect
(
data
).
assertInstanceOf
(
'
Array
'
);
}
console
.
log
(
`inputDevice::getDeviceIds_test-01 exit`
);
console
.
info
(
`inputDevice::getDeviceIds_test-01 exit`
);
})
})
// 参数正确,判断一种或多种设备
it
(
"
inputDevice::getDeviceIds_test-02
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getDeviceIds_test-02 enter`
);
console
.
info
(
`inputDevice::getDeviceIds_test-02 enter`
);
inputDevice
.
getDeviceIds
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
}
else
{
expect
(
data
.
length
>
0
).
assertTure
();
}
console
.
log
(
`inputDevice::getDeviceIds_test-02 exit`
);
console
.
info
(
`inputDevice::getDeviceIds_test-02 exit`
);
})
})
// 参数类型错误
it
(
"
inputDevice::getDeviceIds_test-03
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getDeviceIds_test-03 enter`
);
console
.
info
(
`inputDevice::getDeviceIds_test-03 enter`
);
try
{
inputDevice
.
getDeviceIds
(
-
1
);
}
catch
(
error
)
{
expect
(
error
.
message
).
assertEqual
(
"
GetDeviceIds:
\"
The first parameter type is wrong
\"
"
);
}
console
.
log
(
`inputDevice::getDeviceIds_test-03 exit`
);
console
.
info
(
`inputDevice::getDeviceIds_test-03 exit`
);
})
// 参数数量错误
it
(
"
inputDevice::getDeviceIds_test-04
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getDeviceIds_test-04 enter`
);
console
.
info
(
`inputDevice::getDeviceIds_test-04 enter`
);
try
{
inputDevice
.
getDeviceIds
(
-
1
,
(
data
)
=>
{
console
.
log
(
data
);
console
.
info
(
data
);
});
}
catch
(
error
)
{
expect
(
error
.
message
).
assertEqual
(
"
GetDeviceIds:
\"
too many parameters
\"
"
);
}
console
.
log
(
`inputDevice::getDeviceIds_test-04 exit`
);
console
.
info
(
`inputDevice::getDeviceIds_test-04 exit`
);
})
// 无效的设备id
it
(
"
inputDevice::getDevice_test-01
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getDevice_test-01 enter`
);
console
.
info
(
`inputDevice::getDevice_test-01 enter`
);
inputDevice
.
getDevice
(
-
1
,
(
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
console
.
log
(
`inputDevice::getDevice_test-01
${
JSON
.
stringify
(
err
)}
`
);
console
.
info
(
`inputDevice::getDevice_test-01
${
JSON
.
stringify
(
err
)}
`
);
}
else
{
expect
(
JSON
.
stringify
(
data
)
!==
"
{}
"
).
assertTrue
();
}
console
.
log
(
`inputDevice::getDevice_test-01 exit`
);
console
.
info
(
`inputDevice::getDevice_test-01 exit`
);
})
})
// 参数正常,返回值正常
it
(
"
inputDevice::getDevice_test-02
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getDevice_test-03
enter`
);
console
.
info
(
`inputDevice::getDevice_test-02
enter`
);
inputDevice
.
getDeviceIds
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
...
...
@@ -100,23 +100,46 @@ describe('MultimodalInput_test', function () {
let
arr
=
[];
for
(
let
i
=
0
;
i
<
data
.
length
;
i
++
)
{
inputDevice
.
getDevice
(
data
[
i
],
(
res
,
err
)
=>
{
console
.
log
(
`getDevice:data
${
JSON
.
stringify
(
data
)}
`
)
console
.
info
(
`getDevice:data
${
JSON
.
stringify
(
data
)}
`
);
arr
=
Object
.
keys
(
res
);
expect
(
res
.
id
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
name
).
assertInstanceOf
(
'
string
'
);
expect
(
res
.
sources
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
.
axisRanges
).
assertInstanceOf
(
'
Array
'
);
expect
(
res
.
bus
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
product
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
vendor
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
version
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
phys
).
assertInstanceOf
(
'
string
'
);
expect
(
res
.
uniq
).
assertInstanceOf
(
'
string
'
);
expect
(
res
).
assertInstanceOf
(
'
InputDeviceData
'
);
for
(
let
j
=
0
;
j
<
res
.
axisRanges
.
length
;
j
++
){
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
==
'
joystick
'
||
res
.
axisRanges
[
j
].
source
==
'
trackball
'
).
assertTrue
();
expect
(
res
.
axisRanges
[
j
].
axis
==
'
touchMajor
'
||
res
.
axisRanges
[
j
].
axis
==
'
touchMinor
'
||
res
.
axisRanges
[
j
].
axis
==
'
orientation
'
||
res
.
axisRanges
[
j
].
axis
==
'
x
'
||
res
.
axisRanges
[
j
].
axis
==
'
y
'
||
res
.
axisRanges
[
j
].
axis
==
'
pressure
'
||
res
.
axisRanges
[
j
].
axis
==
'
toolMinor
'
||
res
.
axisRanges
[
j
].
axis
==
'
touchMajor
'
||
res
.
axisRanges
[
j
].
axis
==
'
NULL
'
).
assertTrue
();
expect
(
res
.
axisRanges
[
j
].
max
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
axisRanges
[
j
]).
assertInstanceOf
(
'
AxisRange
'
);
expect
(
res
.
axisRanges
[
j
].
min
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
axisRanges
[
j
].
fuzz
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
axisRanges
[
j
].
flat
).
assertInstanceOf
(
'
number
'
);
expect
(
res
.
axisRanges
[
j
].
resolution
).
assertInstanceOf
(
'
number
'
);
}
})
expect
(
arr
.
length
>
0
).
assertTrue
();
}
}
console
.
log
(
`inputDevice::getDevice_test-02 exit`
);
console
.
info
(
`inputDevice::getDevice_test-02 exit`
);
});
})
// 参数正常,返回值正常
it
(
"
inputDevice::supportKeys_test-01
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::supportKeys_test-01 enter`
);
console
.
info
(
`inputDevice::supportKeys_test-01 enter`
);
inputDevice
.
getDeviceIds
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
...
...
@@ -127,26 +150,26 @@ describe('MultimodalInput_test', function () {
});
}
}
console
.
log
(
`inputDevice::supportKeys_test-01 exit`
);
console
.
info
(
`inputDevice::supportKeys_test-01 exit`
);
});
})
// 第二个参数异常
it
(
"
inputDevice::supportKeys_test-02
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::supportKeys_test-01
enter`
);
console
.
info
(
`inputDevice::supportKeys_test-02
enter`
);
try
{
inputDevice
.
supportKeys
(
0
,
2022
,
(
res
)
=>
{
console
.
log
(
res
);
console
.
info
(
res
);
});
}
catch
(
error
)
{
expect
(
error
.
message
).
assertEqual
(
"
SupportKeys:
\"
The second parameter type is wrong
\"
"
);
}
console
.
log
(
`inputDevice::supportKeys_test-02 exit`
);
console
.
info
(
`inputDevice::supportKeys_test-02 exit`
);
})
// 参数正常
it
(
"
inputDevice::getKeyboardType_test-01
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getKeyboardType_test-01 enter`
);
console
.
info
(
`inputDevice::getKeyboardType_test-01 enter`
);
inputDevice
.
getDeviceIds
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
...
...
@@ -157,24 +180,24 @@ describe('MultimodalInput_test', function () {
});
}
}
console
.
log
(
`inputDevice::getKeyboardType_test-01 exit`
);
console
.
info
(
`inputDevice::getKeyboardType_test-01 exit`
);
});
})
//参数异常
it
(
"
inputDevice::getKeyboardType_test-02
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getKeyboardType_test-02 enter`
);
console
.
info
(
`inputDevice::getKeyboardType_test-02 enter`
);
try
{
inputDevice
.
getKeyboardType
(
-
1
);
}
catch
(
error
)
{
expect
(
error
.
message
).
assertEqual
(
"
getKeyboardType:
\"
The second parameter type is wrong
\"
"
);
}
console
.
log
(
`inputDevice::getKeyboardType_test-02 exit`
);
console
.
info
(
`inputDevice::getKeyboardType_test-02 exit`
);
});
// 参数正常
it
(
"
inputDevice::getKeyboardType_test-03
"
,
0
,
function
()
{
console
.
log
(
`inputDevice::getKeyboardType_test-03 enter`
);
console
.
info
(
`inputDevice::getKeyboardType_test-03 enter`
);
inputDevice
.
getDeviceIds
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
...
...
@@ -186,7 +209,7 @@ describe('MultimodalInput_test', function () {
});
}
}
console
.
log
(
`inputDevice::getKeyboardType_test-03 exit`
);
console
.
info
(
`inputDevice::getKeyboardType_test-03 exit`
);
});
})
...
...
@@ -260,7 +283,7 @@ describe('MultimodalInput_test', function () {
* @tc.desc inputdevice interface getDeviceIds & supportKeys test
*/
it
(
"
MultimodalInputDevice_getDeviceIds_Promise_test
"
,
0
,
async
function
()
{
console
.
log
(
`inputDevice::supportKeys_test-01 enter`
);
console
.
info
(
`inputDevice::supportKeys_test-01 enter`
);
await
inputDevice
.
getDeviceIds
().
then
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
...
...
@@ -269,11 +292,73 @@ describe('MultimodalInput_test', function () {
for
(
let
i
=
0
;
i
<
data
.
length
;
++
i
)
{
inputDevice
.
supportKeys
(
data
[
i
],
[
17
,
22
,
2055
]).
then
((
res
,
err
)
=>
{
expect
(
res
).
assertInstanceOf
(
'
Array
'
);
})
})
;
}
done
();
}
console
.
log
(
`inputDevice::supportKeys_test-01 exit`
);
console
.
info
(
`inputDevice::supportKeys_test-01 exit`
);
});
})
/**
* @tc.number MultimodalInputDevice_js_0080
* @tc.name MultimodalInputDevice_getDevice_Promise_test
* @tc.desc inputdevice interface getDevice test
*/
it
(
"
MultimodalInputDevice_getDevice_Promise_test
"
,
0
,
async
function
()
{
console
.
info
(
`inputDevice::getDevice_test-01 enter`
);
await
inputDevice
.
getDevice
(
-
1
).
then
((
data
,
err
)
=>
{
if
(
err
)
{
expect
(
false
).
assertTrue
();
console
.
info
(
`inputDevice::getDevice_test-01
${
JSON
.
stringify
(
err
)}
`
);
done
();
}
else
{
expect
(
JSON
.
stringify
(
data
)
!==
"
{}
"
).
assertTrue
();
done
();
}
console
.
info
(
`inputDevice::getDevice_test-01 exit`
);
});
})
/**
* @tc.number MultimodalInputDevice_js_0090
* @tc.name MultimodalInputDevice_on_test
* @tc.desc inputdevice interface getDevice test
*/
it
(
"
MultimodalInputDevice_on_test
"
,
0
,
function
()
{
console
.
info
(
`MultimodalInputDevice_on_test enter`
);
let
isPhysicalKeyboardExist
=
true
;
inputDevice
.
on
(
"
changed
"
,
(
data
)
=>
{
console
.
info
(
"
type:
"
+
data
.
type
+
"
, deviceId:
"
+
data
.
deviceId
);
inputDevice
.
getKeyboardType
(
data
.
deviceId
,
(
err
,
ret
)
=>
{
console
.
info
(
"
The keyboard type of the device is:
"
+
ret
);
if
(
ret
==
inputDevice
.
KeyboardType
.
ALPHABETIC_KEYBOARD
&&
data
.
type
==
'
add
'
)
{
// 监听物理键盘已连接。
isPhysicalKeyboardExist
=
true
;
}
else
if
(
ret
==
inputDevice
.
KeyboardType
.
ALPHABETIC_KEYBOARD
&&
data
.
type
==
'
remove
'
)
{
// 监听物理键盘已断开。
isPhysicalKeyboardExist
=
false
;
}
});
});
console
.
info
(
`MultimodalInputDevice_on_test exit`
);
})
/**
* @tc.number MultimodalInputDevice_js_0100
* @tc.name MultimodalInputDevice_off_test
* @tc.desc inputdevice interface getDevice test
*/
it
(
"
MultimodalInputDevice_off_test
"
,
0
,
function
()
{
console
.
info
(
`MultimodalInputDevice_off_test enter`
);
function
listener
(
data
)
{
console
.
info
(
"
type:
"
+
data
.
type
+
"
, deviceId:
"
+
data
.
deviceId
);
expect
(
data
.
type
==
'
add
'
||
data
.
type
==
'
remove
'
).
assertTrue
();
expect
(
data
).
assertInstanceOf
(
'
DeviceListener
'
);
}
// 单独取消listener的监听。
inputDevice
.
off
(
"
changed
"
,
listener
);
console
.
info
(
`MultimodalInputDevice_off_test exit`
);
})
})
multimodalinput/input_js_standard/src/main/js/default/test/ListMultimodalinput.test.js
100644 → 100755
浏览文件 @
39b03d59
文件模式从 100644 更改为 100755
multimodalinput/input_js_standard/src/main/js/default/test/MultimodalInputEventType.test.js
浏览文件 @
39b03d59
...
...
@@ -34,17 +34,17 @@ import {
describe
(
'
MultimodalInput_test
'
,
function
()
{
it
(
'
MultimodalInput_test::KeyEventTypeTest_0010
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::KeyEventTypeTest_0010 enter`
);
console
.
info
(
`MultimodalInput_test::KeyEventTypeTest_0010 enter`
);
expect
(
keyEvent
.
Action
.
CANCEL
==
0
).
assertTrue
();
expect
(
keyEvent
.
Action
.
DOWN
==
1
).
assertTrue
();
expect
(
keyEvent
.
Action
.
UP
==
2
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::KeyEventTypeTest_0010 exit`
);
console
.
info
(
`MultimodalInput_test::KeyEventTypeTest_0010 exit`
);
})
it
(
'
MultimodalInput_test::KeyEventTypeTest_0020
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::KeyEventTypeTest_0020 enter`
);
console
.
info
(
`MultimodalInput_test::KeyEventTypeTest_0020 enter`
);
let
testKey
:
Key
=
{
code
:
inputkeyCode
.
KeyCode
.
KEYCODE_FN
,
pressedTime
:
10
,
deviceId
:
1
};
...
...
@@ -52,11 +52,11 @@ describe('MultimodalInput_test', function () {
expect
(
testKey
.
pressedTime
==
10
).
assertTrue
();
expect
(
testKey
.
deviceId
==
1
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::KeyEventTypeTest_0020 exit`
);
console
.
info
(
`MultimodalInput_test::KeyEventTypeTest_0020 exit`
);
})
it
(
'
MultimodalInput_test::KeyEventTypeTest_0030
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::KeyEventTypeTest_0030 enter`
);
console
.
info
(
`MultimodalInput_test::KeyEventTypeTest_0030 enter`
);
let
testKey
:
Key
=
{
code
:
inputkeyCode
.
KeyCode
.
KEYCODE_FN
,
pressedTime
:
10
,
deviceId
:
1
};
let
testKeyEvent
:
KeyEvent
=
{
...
...
@@ -78,11 +78,11 @@ describe('MultimodalInput_test', function () {
expect
(
testKeyEvent
.
numLock
).
assertTrue
();
expect
(
testKeyEvent
.
scrollLock
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::KeyEventTypeTest_0030 exit`
);
console
.
info
(
`MultimodalInput_test::KeyEventTypeTest_0030 exit`
);
})
it
(
'
MultimodalInput_test::MouseEventTypeTest_0010
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0010 enter`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0010 enter`
);
expect
(
mouseEvent
.
Action
.
CANCEL
==
0
).
assertTrue
();
expect
(
mouseEvent
.
Action
.
MOVE
==
1
).
assertTrue
();
...
...
@@ -92,11 +92,11 @@ describe('MultimodalInput_test', function () {
expect
(
mouseEvent
.
Action
.
AXIS_UPDATE
==
5
).
assertTrue
();
expect
(
mouseEvent
.
Action
.
AXIS_END
==
6
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0010 exit`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0010 exit`
);
})
it
(
'
MultimodalInput_test::MouseEventTypeTest_0020
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0020 enter`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0020 enter`
);
expect
(
mouseEvent
.
Button
.
LEFT
==
0
).
assertTrue
();
expect
(
mouseEvent
.
Button
.
MIDDLE
==
1
).
assertTrue
();
...
...
@@ -107,31 +107,31 @@ describe('MultimodalInput_test', function () {
expect
(
mouseEvent
.
Button
.
BACK
==
6
).
assertTrue
();
expect
(
mouseEvent
.
Button
.
TASK
==
6
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0020 exit`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0020 exit`
);
})
it
(
'
MultimodalInput_test::MouseEventTypeTest_0030
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0030 enter`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0030 enter`
);
expect
(
mouseEvent
.
Axis
.
SCROLL_VERTICAL
==
0
).
assertTrue
();
expect
(
mouseEvent
.
Axis
.
SCROLL_HORIZONTAL
==
1
).
assertTrue
();
expect
(
mouseEvent
.
Axis
.
PINCH
==
2
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0030 exit`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0030 exit`
);
})
it
(
'
MultimodalInput_test::MouseEventTypeTest_0040
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0040 enter`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0040 enter`
);
let
testAxisValue
:
AxisValue
=
{
axis
:
mouseEvent
.
Axis
.
SCROLL_VERTICAL
,
value
:
1
};
expect
(
testAxisValue
.
axis
==
mouseEvent
.
Axis
.
SCROLL_VERTICAL
).
assertTrue
();
expect
(
testAxisValue
.
value
==
1
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0040 exit`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0040 exit`
);
})
it
(
'
MultimodalInput_test::MouseEventTypeTest_0050
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0050 enter`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0050 enter`
);
let
testAxisValue
:
AxisValue
=
{
axis
:
mouseEvent
.
Axis
.
SCROLL_VERTICAL
,
value
:
1
};
let
testMouseEvent
:
MouseEvent
=
{
...
...
@@ -161,22 +161,22 @@ describe('MultimodalInput_test', function () {
expect
(
testMouseEvent
.
numLock
).
assertTrue
();
expect
(
testMouseEvent
.
scrollLock
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::MouseEventTypeTest_0050 exit`
);
console
.
info
(
`MultimodalInput_test::MouseEventTypeTest_0050 exit`
);
})
it
(
'
MultimodalInput_test::TouchEventTypeTest_0010
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0010 enter`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0010 enter`
);
expect
(
touchEvent
.
Action
.
CANCEL
==
0
).
assertTrue
();
expect
(
touchEvent
.
Action
.
DOWN
==
1
).
assertTrue
();
expect
(
touchEvent
.
Action
.
MOVE
==
2
).
assertTrue
();
expect
(
touchEvent
.
Action
.
UP
==
3
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0010 exit`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0010 exit`
);
})
it
(
'
MultimodalInput_test::TouchEventTypeTest_0020
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0020 enter`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0020 enter`
);
expect
(
touchEvent
.
ToolType
.
FINGER
==
0
).
assertTrue
();
expect
(
touchEvent
.
ToolType
.
PEN
==
1
).
assertTrue
();
...
...
@@ -187,21 +187,21 @@ describe('MultimodalInput_test', function () {
expect
(
touchEvent
.
ToolType
.
MOUSE
==
6
).
assertTrue
();
expect
(
touchEvent
.
ToolType
.
LENS
==
7
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0020 exit`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0020 exit`
);
})
it
(
'
MultimodalInput_test::TouchEventTypeTest_0030
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0030 enter`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0030 enter`
);
expect
(
touchEvent
.
SourceType
.
TOUCH_SCREEN
==
0
).
assertTrue
();
expect
(
touchEvent
.
SourceType
.
PEN
==
1
).
assertTrue
();
expect
(
touchEvent
.
SourceType
.
TOUCH_PAD
==
2
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0030 exit`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0030 exit`
);
})
it
(
'
MultimodalInput_test::TouchEventTypeTest_0040
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0040 enter`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0040 enter`
);
let
testTouch
:
Touch
=
{
id
:
1
,
pressedTime
:
1
,
screenX
:
1
,
screenY
:
1
,
windowX
:
1
,
windowY
:
1
,
pressure
:
1
,
...
...
@@ -227,11 +227,11 @@ describe('MultimodalInput_test', function () {
expect
(
touchEvent
.
rawY
==
1
).
assertTrue
();
expect
(
touchEvent
.
toolType
==
touchEvent
.
ToolType
.
FINGER
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0040 exit`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0040 exit`
);
})
it
(
'
MultimodalInput_test::TouchEventTypeTest_0050
'
,
0
,
function
()
{
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0050 enter`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0050 enter`
);
let
testTouch
:
Touch
=
{
id
:
1
,
pressedTime
:
1
,
screenX
:
1
,
screenY
:
1
,
windowX
:
1
,
windowY
:
1
,
pressure
:
1
,
...
...
@@ -247,6 +247,6 @@ describe('MultimodalInput_test', function () {
expect
(
testTouchEvent
.
touches
[
0
].
id
==
1
).
assertTrue
();
expect
(
testTouchEvent
.
sourceType
==
touchEvent
.
SourceType
.
TOUCH_SCREEN
).
assertTrue
();
console
.
log
(
`MultimodalInput_test::TouchEventTypeTest_0050 exit`
);
console
.
info
(
`MultimodalInput_test::TouchEventTypeTest_0050 exit`
);
})
})
multimodalinput/input_js_standard/src/main/js/default/test/MultimodalInputKey_Code.test.js
100644 → 100755
浏览文件 @
39b03d59
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录