Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
5a2d74b1
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,发现更多精彩内容 >>
未验证
提交
5a2d74b1
编写于
4月 17, 2023
作者:
O
openharmony_ci
提交者:
Gitee
4月 17, 2023
浏览文件
操作
浏览文件
下载
差异文件
!8453 【杂散】【输入法框架】新增inputmethodEngine 测试用例
Merge pull request !8453 from 张育帅/master
上级
1df14524
0ebf2946
变更
11
展开全部
隐藏空白更改
内联
并排
Showing
11 changed file
with
955 addition
and
900 deletion
+955
-900
inputmethod/InputMethodEngine/entry/src/main/ets/InputMethodAbility/KeyboardDelegate.ts
...entry/src/main/ets/InputMethodAbility/KeyboardDelegate.ts
+143
-1
inputmethod/InputMethodEngine/entry/src/main/ets/InputMethodEngine/KeyboardController.ts
...ntry/src/main/ets/InputMethodEngine/KeyboardController.ts
+204
-0
inputmethod/InputMethodEngine/entry/src/main/ets/test/inputMethodAbility.test.ets
...ngine/entry/src/main/ets/test/inputMethodAbility.test.ets
+224
-0
inputmethod/InputMethodEngine/entry/src/main/ets/test/inputMethodEngine.test.ets
...Engine/entry/src/main/ets/test/inputMethodEngine.test.ets
+333
-0
inputmethod/InputMethodTest_ets/entry/src/main/config.json
inputmethod/InputMethodTest_ets/entry/src/main/config.json
+1
-2
inputmethod/InputMethodTest_ets/entry/src/main/ets/MainAbility/pages/index.ets
...odTest_ets/entry/src/main/ets/MainAbility/pages/index.ets
+38
-15
inputmethod/InputMethodTest_ets/entry/src/main/ets/MainAbility/pages/input.ets
...odTest_ets/entry/src/main/ets/MainAbility/pages/input.ets
+0
-45
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/List.test.ets
...InputMethodTest_ets/entry/src/main/ets/test/List.test.ets
+0
-2
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/Utils.ets
...hod/InputMethodTest_ets/entry/src/main/ets/test/Utils.ets
+0
-118
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets
...t_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets
+0
-717
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodNormalJSUnit.ets
...t_ets/entry/src/main/ets/test/inputMethodNormalJSUnit.ets
+12
-0
未找到文件。
inputmethod/InputMethodEngine/entry/src/main/ets/InputMethodAbility/KeyboardDelegate.ts
浏览文件 @
5a2d74b1
...
...
@@ -39,6 +39,9 @@ export class KeyboardDelegate {
this
.
initWindow
();
let
that
=
this
;
inputMethodAbility
.
on
(
"
inputStop
"
,
()
=>
{
inputMethodAbility
.
off
(
"
inputStop
"
,
()
=>
{
console
.
log
(
'
====>inputMethodEngine delete inputStop notification.
'
);
});
try
{
that
.
mContext
.
destroy
((
err
)
=>
{
console
.
info
(
TAG
+
'
====>inputMethodAbility destroy err:
'
+
JSON
.
stringify
(
err
));
...
...
@@ -149,6 +152,22 @@ export class KeyboardDelegate {
console
.
debug
(
TAG
+
'
====>inputMethodAbility_test_050 event:
'
+
data
.
event
);
that
.
inputMethodAbility_test_050
();
break
;
case
70
:
console
.
debug
(
TAG
+
'
====>inputMethodAbility_test_070 event:
'
+
data
.
event
);
that
.
inputMethodAbility_test_070
();
break
;
case
71
:
console
.
debug
(
TAG
+
'
====>inputMethodAbility_test_071 event:
'
+
data
.
event
);
that
.
inputMethodAbility_test_071
();
break
;
case
72
:
console
.
debug
(
TAG
+
'
====>inputMethodAbility_test_072 event:
'
+
data
.
event
);
that
.
inputMethodAbility_test_072
();
break
;
case
73
:
console
.
debug
(
TAG
+
'
====>inputMethodAbility_test_073 event:
'
+
data
.
event
);
that
.
inputMethodAbility_test_073
();
break
;
case
101
:
console
.
debug
(
TAG
+
'
====>inputMethodAbility_test_0101 event:
'
+
data
.
event
);
that
.
inputMethodAbility_test_101
();
...
...
@@ -762,7 +781,7 @@ export class KeyboardDelegate {
console
.
debug
(
TAG
+
'
====>receive inputMethodAbility_test_045 data
'
);
inputMethodAbility
.
on
(
'
inputStart
'
,
async
(
KeyboardDelegate
,
InputClient
)
=>
{
inputMethodAbility
.
off
(
'
inputStart
'
);
setTimeout
(()
=>
{
let
t
=
setTimeout
(()
=>
{
let
commonEventPublishData
;
if
(
InputClient
==
null
)
{
commonEventPublishData
=
{
...
...
@@ -785,6 +804,7 @@ export class KeyboardDelegate {
commoneventmanager
.
publish
(
"
inputMethodAbility_test_045
"
,
commonEventPublishData
,
this
.
publishCallback
);
});
}
clearTimeout
(
t
);
},
1000
);
});
...
...
@@ -925,6 +945,128 @@ export class KeyboardDelegate {
});
}
private
inputMethodAbility_test_070
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodAbility_test_070 success
'
);
let
count
=
0
;
inputMethodAbility
.
on
(
'
inputStart
'
,
(
KeyboardDelegate
,
InputClient
)
=>
{
inputMethodAbility
.
off
(
'
inputStart
'
);
console
.
info
(
TAG
+
'
====>inputMethodAbility.on("inputStart") count:
'
+
count
);
count
+=
1
;
});
inputMethodAbility
.
on
(
'
keyboardShow
'
,
()
=>
{
inputMethodAbility
.
off
(
'
keyboardShow
'
);
console
.
info
(
TAG
+
'
====>inputMethodAbility.on("keyboardShow") count:
'
+
count
);
count
+=
1
;
});
inputMethodAbility
.
on
(
'
setSubtype
'
,
()
=>
{
inputMethodAbility
.
off
(
'
setSubtype
'
);
console
.
info
(
TAG
+
'
====>inputMethodAbility.on("setSubtype") count:
'
+
count
);
count
+=
1
;
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
3
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodAbility_test_070
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
private
inputMethodAbility_test_071
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodAbility_test_071 success
'
);
let
count
=
0
;
inputMethodAbility
.
on
(
'
keyboardHide
'
,
()
=>
{
count
+=
1
;
inputMethodAbility
.
off
(
"
keyboardHide
"
);
console
.
info
(
TAG
+
'
====>inputMethodAbility.off("keyboardHide") count:
'
+
count
);
});
inputMethodAbility
.
on
(
'
inputStart
'
,
(
KeyboardDelegate
,
InputClient
)
=>
{
console
.
info
(
TAG
+
'
====>inputMethodAbility_test_071 inputMethodAbility.on("inputStart")
'
);
let
t
=
setInterval
(
async
()
=>
{
await
KeyboardDelegate
.
hideKeyboard
();
console
.
info
(
TAG
+
'
====>KeyboardDelegate.hideKeyboard count:
'
+
count
);
if
(
count
===
1
){
clearInterval
(
t
);
}
},
100
);
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
1
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodAbility_test_071
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
private
inputMethodAbility_test_072
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodAbility_test_072 success
'
);
let
count
=
0
;
inputMethodAbility
.
on
(
'
keyboardShow
'
,
()
=>
{
count
+=
1
;
inputMethodAbility
.
off
(
"
keyboardShow
"
);
console
.
info
(
TAG
+
'
====>inputMethodAbility.off("keyboardShow") count:
'
+
count
);
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
1
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodAbility_test_072
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
300
);
}
private
inputMethodAbility_test_073
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodAbility_test_073 success
'
);
let
count
=
0
;
inputKeyboardDelegate
.
on
(
'
keyDown
'
,
(
keyEvent
)
=>
{
inputKeyboardDelegate
.
off
(
'
keyDown
'
);
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('keyDown') count:
"
+
count
);
if
(
keyEvent
.
keyCode
===
2000
){
count
+=
1
;
}
return
true
;
});
inputKeyboardDelegate
.
on
(
'
keyUp
'
,
(
keyEvent
)
=>
{
inputKeyboardDelegate
.
off
(
'
keyUp
'
);
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('keyUp') count:
"
+
count
);
if
(
keyEvent
.
keyCode
===
2000
){
count
+=
1
;
}
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('keyUp') count:
"
+
count
);
return
true
;
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
2
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodAbility_test_073
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
private
inputMethodAbility_test_101
():
void
{
console
.
debug
(
TAG
+
'
====>receive inputMethodAbility_test_101 data
'
);
inputMethodAbility
.
on
(
'
inputStart
'
,
async
(
KeyboardDelegate
,
InputClient
)
=>
{
...
...
inputmethod/InputMethodEngine/entry/src/main/ets/InputMethodEngine/KeyboardController.ts
浏览文件 @
5a2d74b1
...
...
@@ -40,6 +40,9 @@ export class KeyboardController {
this
.
initWindow
();
let
that
=
this
;
inputMethodAbility
.
on
(
"
inputStop
"
,
()
=>
{
inputMethodAbility
.
off
(
"
inputStop
"
,
()
=>
{
console
.
log
(
'
====>inputMethodEngine delete inputStop notification.
'
);
});
try
{
that
.
mContext
.
destroy
((
err
)
=>
{
console
.
info
(
TAG
+
'
====>inputMethodEngine destroy err:
'
+
JSON
.
stringify
(
err
));
...
...
@@ -133,6 +136,30 @@ export class KeyboardController {
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_050 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_050
();
break
;
case
71
:
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_071 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_071
();
break
;
case
72
:
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_072 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_072
();
break
;
case
73
:
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_073 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_073
();
break
;
case
74
:
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_074 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_074
();
break
;
case
76
:
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_076 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_076
();
break
;
case
77
:
console
.
debug
(
TAG
+
'
====>inputMethodEngine_test_077 event:
'
+
data
.
event
);
that
.
inputMethodEngine_test_077
();
break
;
}
}
...
...
@@ -774,7 +801,184 @@ export class KeyboardController {
});
}
private
inputMethodEngine_test_071
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodEngine_test_071 success
'
);
let
count
=
0
;
inputMethodEngine
.
on
(
'
keyboardHide
'
,
()
=>
{
count
+=
1
;
inputMethodEngine
.
off
(
"
keyboardHide
"
);
console
.
info
(
TAG
+
'
====>inputMethodEngine.off("keyboardHide") count:
'
+
count
);
});
inputMethodEngine
.
on
(
'
inputStart
'
,
(
KeyboardDelegate
,
InputClient
)
=>
{
inputMethodEngine
.
off
(
'
inputStart
'
);
console
.
info
(
TAG
+
'
====>inputMethodEngine_test_071 inputMethodEngine.on("inputStart")
'
);
let
t
=
setInterval
(
async
()
=>
{
await
KeyboardDelegate
.
hideKeyboard
();
console
.
info
(
TAG
+
'
====>KeyboardDelegate.hideKeyboard count:
'
+
count
);
if
(
count
===
1
){
clearInterval
(
t
);
}
},
100
);
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
1
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodEngine_test_071
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
private
inputMethodEngine_test_072
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodEngine_test_072 success
'
);
let
count
=
0
;
inputMethodEngine
.
on
(
'
keyboardShow
'
,
()
=>
{
count
+=
1
;
inputMethodEngine
.
off
(
"
keyboardShow
"
);
console
.
info
(
TAG
+
'
====>inputMethodEngine.off("keyboardShow") count:
'
+
count
);
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
1
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodEngine_test_072
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
private
inputMethodEngine_test_073
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodEngine_test_073 success
'
);
let
count
=
0
;
inputKeyboardDelegate
.
on
(
'
keyDown
'
,
(
keyEvent
)
=>
{
inputKeyboardDelegate
.
off
(
'
keyDown
'
);
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('keyDown') count:
"
+
count
);
if
(
keyEvent
.
keyCode
===
2000
){
count
+=
1
;
}
return
true
;
});
inputKeyboardDelegate
.
on
(
'
keyUp
'
,
(
keyEvent
)
=>
{
inputKeyboardDelegate
.
off
(
'
keyUp
'
);
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('keyUp') count:
"
+
count
);
if
(
keyEvent
.
keyCode
===
2000
){
count
+=
1
;
}
return
true
;
});
let
t
=
setTimeout
(()
=>
{
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
commoneventmanager
.
publish
(
"
inputMethodEngine_test_073
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
300
);
}
private
inputMethodEngine_test_074
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodEngine_test_074 success
'
);
let
count
=
0
;
inputKeyboardDelegate
.
on
(
'
cursorContextChange
'
,
(
x
,
y
,
h
)
=>
{
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('cursorContextChange') count:
"
+
count
);
if
(
count
===
1
){
inputKeyboardDelegate
.
off
(
'
cursorContextChange
'
);
}
count
+=
1
;
console
.
info
(
TAG
+
'
====>inputMethodEngine_test_074 x,y,z:
'
+
x
+
"
---
"
+
y
+
"
---
"
+
h
);
});
inputMethodEngine
.
on
(
'
inputStart
'
,
(
KeyboardDelegate
,
InputClient
)
=>
{
inputMethodEngine
.
off
(
'
inputStart
'
);
console
.
info
(
TAG
+
'
====>inputMethodEngine_test_074 inputMethodEngine.on("inputStart")
'
);
let
t
=
setInterval
(
async
()
=>
{
await
InputClient
.
insertText
(
"
ttt
"
);
console
.
info
(
TAG
+
'
====>KeyboardDelegate.insertText count:
'
+
count
);
if
(
count
===
2
){
clearInterval
(
t
);
}
},
100
);
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
2
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodEngine_test_074
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
private
inputMethodEngine_test_076
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodEngine_test_076 success
'
);
inputKeyboardDelegate
.
on
(
'
selectionChange
'
,
(
oldBegin
,
oldEnd
,
newBegin
,
newEnd
)
=>
{
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('selectionChange')
"
);
inputKeyboardDelegate
.
off
(
'
selectionChange
'
);
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
console
.
info
(
TAG
+
'
====>inputMethodEngine_test_076 oldBegin,oldEnd,newBegin,newEnd:
'
+
oldBegin
+
"
---
"
+
oldEnd
+
"
---
"
+
newBegin
+
"
---
"
+
newEnd
);
});
let
t
=
setTimeout
(()
=>
{
commoneventmanager
.
publish
(
"
inputMethodEngine_test_076
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
2000
);
}
private
inputMethodEngine_test_077
():
void
{
let
commonEventPublishData
=
{
data
:
"
FAILED
"
};
console
.
info
(
TAG
+
'
====>receive inputMethodEngine_test_077 success
'
);
let
count
=
0
;
inputKeyboardDelegate
.
on
(
'
textChange
'
,
(
text
)
=>
{
console
.
info
(
TAG
+
"
====>inputKeyboardDelegate.on('textChange') count:
"
+
count
);
if
(
count
===
1
){
inputKeyboardDelegate
.
off
(
'
textChange
'
);
}
count
+=
1
;
console
.
info
(
TAG
+
'
====>inputMethodEngine_test_077 text:
'
+
text
);
});
inputMethodEngine
.
on
(
'
inputStart
'
,
(
KeyboardDelegate
,
InputClient
)
=>
{
inputMethodEngine
.
off
(
'
inputStart
'
);
console
.
info
(
TAG
+
'
====>inputMethodEngine_test_077 inputMethodEngine.on("inputStart")
'
);
let
t
=
setInterval
(
async
()
=>
{
await
InputClient
.
insertText
(
"
tttt
"
);
console
.
info
(
TAG
+
'
====>KeyboardDelegate.insertText count:
'
+
count
);
if
(
count
===
2
){
clearInterval
(
t
);
}
},
100
);
});
let
t
=
setTimeout
(()
=>
{
if
(
count
===
2
){
commonEventPublishData
=
{
data
:
"
SUCCESS
"
};
}
commoneventmanager
.
publish
(
"
inputMethodEngine_test_077
"
,
commonEventPublishData
,
this
.
publishCallback
);
clearTimeout
(
t
);
},
500
);
}
}
\ No newline at end of file
inputmethod/InputMethodEngine/entry/src/main/ets/test/inputMethodAbility.test.ets
浏览文件 @
5a2d74b1
...
...
@@ -1593,6 +1593,230 @@ export default function inputMethodAbility() {
commonEventManager
.
publish
(
'test'
,
commonEventPublishData
,
publishCallback
);
});
it
(
'inputMethodAbility_test_070'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_070 unSubscriberCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_070 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodAbility_test_070 unSubscriberCallback finish"
);
}
}
function
subscriberCallback
(
err
,
data
){
console
.
info
(
"====>inputMethodAbility_test_070 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodAbility_test_070 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
){
console
.
info
(
"====>inputMethodAbility_test_070 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_070 publishCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_070 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodAbility_test_070"
]
}
var
subscriber
;
commonEventManager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodAbility_test_070 subscriber data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodAbility_test_070 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
70
}
commonEventManager
.
publish
(
'test'
,
commonEventPublishData
,
publishCallback
);
});
it
(
'inputMethodAbility_test_071'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_071 unSubscriberCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_071 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodAbility_test_071 unSubscriberCallback finish"
);
}
}
function
subscriberCallback
(
err
,
data
){
console
.
info
(
"====>inputMethodAbility_test_071 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodAbility_test_071 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
){
console
.
info
(
"====>inputMethodAbility_test_071 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_071 publishCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_071 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodAbility_test_071"
]
}
var
subscriber
;
commonEventManager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodAbility_test_071 subscriber data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodAbility_test_071 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
71
}
commonEventManager
.
publish
(
'test'
,
commonEventPublishData
,
publishCallback
);
});
it
(
'inputMethodAbility_test_072'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_072 unSubscriberCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_072 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodAbility_test_072 unSubscriberCallback finish"
);
}
}
function
subscriberCallback
(
err
,
data
){
console
.
info
(
"====>inputMethodAbility_test_072 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodAbility_test_072 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
){
console
.
info
(
"====>inputMethodAbility_test_072 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_072 publishCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_072 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodAbility_test_072"
]
}
var
subscriber
;
commonEventManager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodAbility_test_072 subscriber data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodAbility_test_072 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
72
}
commonEventManager
.
publish
(
'test'
,
commonEventPublishData
,
publishCallback
);
});
it
(
'inputMethodAbility_test_073'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_073 unSubscriberCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_073 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodAbility_test_073 unSubscriberCallback finish"
);
}
}
function
subscriberCallback
(
err
,
data
){
console
.
info
(
"====>inputMethodAbility_test_073 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodAbility_test_073 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
){
console
.
info
(
"====>inputMethodAbility_test_073 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_073 publishCallback start"
);
if
(
err
){
console
.
info
(
"====>inputMethodAbility_test_073 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
let
t
=
setTimeout
(()
=>
{
runCmd
(
"uinput -K -d 2000 -u 2000"
);
clearTimeout
(
t
);
},
200
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodAbility_test_073"
]
}
var
subscriber
;
commonEventManager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodAbility_test_073 subscriber data:"
+
JSON
.
stringify
(
data
));
commonEventManager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodAbility_test_073 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
73
}
commonEventManager
.
publish
(
'test'
,
commonEventPublishData
,
publishCallback
);
});
it
(
'inputMethodAbility_test_101'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
){
console
.
info
(
"====>inputMethodAbility_test_101 unSubscriberCallback start"
);
...
...
inputmethod/InputMethodEngine/entry/src/main/ets/test/inputMethodEngine.test.ets
浏览文件 @
5a2d74b1
...
...
@@ -1198,6 +1198,339 @@ export default function inputMethodEngineJSUnit() {
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
);
});
it
(
'inputMethodEngine_test_071'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_071 unSubscriberCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_071 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodEngine_test_071 unSubscriberCallback finish"
)
}
}
function
subscriberCallback
(
err
,
data
)
{
console
.
info
(
"====>inputMethodEngine_test_071 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commoneventmanager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodEngine_test_071 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_071 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_071 publishCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_071 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodEngine_test_071"
]
}
var
subscriber
;
commoneventmanager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodEngine_test_071 subscriber data:"
+
JSON
.
stringify
(
data
))
commoneventmanager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodEngine_test_071 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
71
}
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
)
});
it
(
'inputMethodEngine_test_072'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_072 unSubscriberCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_072 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodEngine_test_072 unSubscriberCallback finish"
)
}
}
function
subscriberCallback
(
err
,
data
)
{
console
.
info
(
"====>inputMethodEngine_test_072 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commoneventmanager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodEngine_test_072 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_072 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_072 publishCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_072 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodEngine_test_072"
]
}
var
subscriber
;
commoneventmanager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodEngine_test_072 subscriber data:"
+
JSON
.
stringify
(
data
))
commoneventmanager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodEngine_test_072 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
72
}
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
)
});
it
(
'inputMethodEngine_test_073'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_073 unSubscriberCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_073 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodEngine_test_073 unSubscriberCallback finish"
)
}
}
function
subscriberCallback
(
err
,
data
)
{
console
.
info
(
"====>inputMethodEngine_test_073 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commoneventmanager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodEngine_test_073 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_073 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_073 publishCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_073 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
let
t
=
setTimeout
(()
=>
{
runCmd
(
"uinput -K -d 2000 -u 2000"
);
clearTimeout
(
t
);
},
200
)
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodEngine_test_073"
]
}
var
subscriber
;
commoneventmanager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodEngine_test_073 subscriber data:"
+
JSON
.
stringify
(
data
))
commoneventmanager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodEngine_test_073 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
73
}
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
)
});
it
(
'inputMethodEngine_test_074'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_074 unSubscriberCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_074 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodEngine_test_074 unSubscriberCallback finish"
)
}
}
function
subscriberCallback
(
err
,
data
)
{
console
.
info
(
"====>inputMethodEngine_test_074 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commoneventmanager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodEngine_test_074 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_074 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_074 publishCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_074 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodEngine_test_074"
]
}
var
subscriber
;
commoneventmanager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodEngine_test_074 subscriber data:"
+
JSON
.
stringify
(
data
))
commoneventmanager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodEngine_test_074 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
74
}
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
)
});
it
(
'inputMethodEngine_test_076'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_076 unSubscriberCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_076 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodEngine_test_076 unSubscriberCallback finish"
)
}
}
function
subscriberCallback
(
err
,
data
)
{
console
.
info
(
"====>inputMethodEngine_test_076 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commoneventmanager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodEngine_test_076 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_076 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_076 publishCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_076 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodEngine_test_076"
]
}
var
subscriber
;
commoneventmanager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodEngine_test_076 subscriber data:"
+
JSON
.
stringify
(
data
))
commoneventmanager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodEngine_test_076 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
76
}
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
)
});
it
(
'inputMethodEngine_test_077'
,
0
,
async
function
(
done
)
{
function
unSubscriberCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_077 unSubscriberCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_077 unSubscriberCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"====>inputMethodEngine_test_077 unSubscriberCallback finish"
)
}
}
function
subscriberCallback
(
err
,
data
)
{
console
.
info
(
"====>inputMethodEngine_test_077 subscriberCallback data:"
+
JSON
.
stringify
(
data
));
commoneventmanager
.
unsubscribe
(
subscriber
,
unSubscriberCallback
);
let
t
=
setTimeout
(()
=>
{
try
{
expect
(
data
.
data
)
.
assertEqual
(
"SUCCESS"
);
console
.
info
(
"====>inputMethodEngine_test_077 end"
);
clearTimeout
(
t
);
done
();
}
catch
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_077 err:"
+
JSON
.
stringify
(
err
));
clearTimeout
(
t
);
done
();
}
},
500
)
}
function
publishCallback
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_077 publishCallback start"
);
if
(
err
)
{
console
.
info
(
"====>inputMethodEngine_test_077 publishCallback failed:"
+
JSON
.
stringify
(
err
));
}
else
{
runCmd
(
getFocusCmd
);
}
}
var
commonEventSubscribeInfo
=
{
events
:
[
"inputMethodEngine_test_077"
]
}
var
subscriber
;
commoneventmanager
.
createSubscriber
(
commonEventSubscribeInfo
)
.
then
((
data
)
=>
{
subscriber
=
data
;
console
.
info
(
"====>inputMethodEngine_test_077 subscriber data:"
+
JSON
.
stringify
(
data
))
commoneventmanager
.
subscribe
(
subscriber
,
subscriberCallback
);
console
.
info
(
"====>inputMethodEngine_test_077 subscriber finish"
)
})
var
commonEventPublishData
=
{
code
:
77
}
commoneventmanager
.
publish
(
'test1'
,
commonEventPublishData
,
publishCallback
)
});
})
}
\ No newline at end of file
inputmethod/InputMethodTest_ets/entry/src/main/config.json
浏览文件 @
5a2d74b1
...
...
@@ -73,8 +73,7 @@
"type"
:
"pageAbility"
},
"pages"
:
[
"pages/index"
,
"pages/input"
"pages/index"
],
"name"
:
".MainAbility"
,
"window"
:
{
...
...
inputmethod/InputMethodTest_ets/entry/src/main/ets/MainAbility/pages/index.ets
浏览文件 @
5a2d74b1
// @ts-nocheck
/**
/*
* 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.
...
...
@@ -13,24 +12,48 @@
* 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'
@Entry
@Component
struct MyComponent {
aboutToAppear() {
}
struct Index {
@State message: string = 'Hello World';
@State inputValue: string = 'inputMethodEngine1inputMethodEngine2inputMethodEngine3inputMethodEngine' +
'inputMethodEngine4inputMethodEngine5inputMethodEngine6inputMethodEngine7inputMethodEngine8inputMethodEn' +
'gine9inputMethodEngine10inputMethodEngine11inputMethodEngine12inputMethodEngine13inputMethodEngine14inputMet' +
'hodEngine15inputMethodEngine16inputMethodEngine17inputMethodEngine18inputMethodEngine19inputMethodEngine20inputMethodEngine21';
build() {
Flex({
direction: FlexDirection.Column,
alignItems: ItemAlign.Center,
justifyContent: FlexAlign.Center
}) {
Text('ACE ETS TEST')
.fontSize(50)
.fontWeight(FontWeight.Bold)
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
.defaultFocus(true)
TextArea({ text: this.inputValue })
.onChange((value: string) => {
this.inputValue = value;
})
Button() {
Text('next page')
.fontSize(20)
.fontWeight(FontWeight.Bold)
}.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor('#0D9FFB')
.width('35%')
.height('5%')
.onClick(() => {
})
}
.width('100%')
}
.width('100%')
.height('100%')
}
}
}
inputmethod/InputMethodTest_ets/entry/src/main/ets/MainAbility/pages/input.ets
已删除
100644 → 0
浏览文件 @
1df14524
// @ts-nocheck
/**
* 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.
*/
@Entry
@Component
struct TextInputTest {
@State text: string = '';
build() {
Column() {
TextInput({ placeholder: 'input your word' })
.type(InputType.Normal)
.key('TextInput')
.placeholderColor(Color.Blue)
.placeholderFont({ size: 40, weight: FontWeight.Normal, family: "sans-serif", style: FontStyle.Normal })
.enterKeyType(EnterKeyType.Search)
.caretColor(Color.Green)
.height(60)
.fontSize(30)
.fontWeight(FontWeight.Bold)
.fontFamily("cursive")
.fontStyle(FontStyle.Italic)
.fontColor(Color.Red)
.maxLength(20)
.onChange((value: string) => {
this.text = value
})
Text(this.text)
}
}
}
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/List.test.ets
浏览文件 @
5a2d74b1
...
...
@@ -13,11 +13,9 @@
* limitations under the License.
*/
import inputMethodJSUnit from './inputMethodJSUnit';
import inputMethodEngineJSUnit from './inputMethodEngineJSUnit';
import inputMethodNormalJSUnit from './inputMethodNormalJSUnit';
export default function testsuite() {
inputMethodJSUnit();
inputMethodEngineJSUnit();
inputMethodNormalJSUnit();
}
\ No newline at end of file
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/Utils.ets
已删除
100644 → 0
浏览文件 @
1df14524
// @ts-nocheck
/**
* 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 class Utils {
static rect_left;
static rect_top;
static rect_right;
static rect_bottom;
static rect_value;
static sleep(time) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, time)
}).then(() => {
console.info(`sleep ${time} over...`)
})
}
static getComponentRect(key) {
let strJson = getInspectorByKey(key);
let obj = JSON.parse(strJson);
console.info("====>[getInspectorByKey] current component obj is: " + JSON.stringify(obj));
let rectInfo = JSON.parse('[' + obj.$rect + ']')
console.info("====>[getInspectorByKey] rectInfo is: " + rectInfo);
this.rect_left = JSON.parse('[' + rectInfo[0] + ']')[0]
this.rect_top = JSON.parse('[' + rectInfo[0] + ']')[1]
this.rect_right = JSON.parse('[' + rectInfo[1] + ']')[0]
this.rect_bottom = JSON.parse('[' + rectInfo[1] + ']')[1]
return this.rect_value = {
"left": this.rect_left, "top": this.rect_top, "right": this.rect_right, "bottom": this.rect_bottom
}
}
static async swipe(downX, downY, upX, upY, steps) {
console.info('====>start to swipe')
this.drags(downX, downY, upX, upY, steps, false)
}
static async drag(downX, downY, upX, upY, steps) {
console.info('====>start to drag')
this.drags(downX, downY, upX, upY, steps, true)
}
static async drags(downX, downY, upX, upY, steps, drag) {
let xStep;
let yStep;
let swipeSteps;
let ret;
xStep = 0;
yStep = 0;
ret = false;
swipeSteps = steps;
if (swipeSteps == 0) {
swipeSteps = 1;
}
xStep = (upX - downX) / swipeSteps;
yStep = (upY - downY) / swipeSteps;
console.info('====>move step is: ' + 'xStep: ' + xStep + ' yStep: ' + yStep)
let downPonit: TouchObject = {
id: 1,
x: downX,
y: downY,
type: TouchType.Down,
}
console.info('====>down touch started: ' + JSON.stringify(downPonit))
sendTouchEvent(downPonit);
console.info('====>start to move')
if (drag) {
await this.sleep(500)
}
for (let i = 1;i <= swipeSteps; i++) {
let movePoint: TouchObject = {
id: 1,
x: downX + (xStep * i),
y: downY + (yStep * i),
type: TouchType.Move
}
console.info('====>move touch started: ' + JSON.stringify(movePoint))
ret = sendTouchEvent(movePoint)
if (ret == false) {
break;
}
await this.sleep(5)
}
console.info('====>start to up')
if (drag) {
await this.sleep(100)
}
let upPoint: TouchObject = {
id: 1,
x: upX,
y: upY,
type: TouchType.Up,
}
console.info('====>up touch started: ' + JSON.stringify(upPoint))
sendTouchEvent(upPoint)
await this.sleep(500)
}
}
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets
已删除
100644 → 0
浏览文件 @
1df14524
此差异已折叠。
点击以展开。
inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodNormalJSUnit.ets
浏览文件 @
5a2d74b1
...
...
@@ -14,11 +14,23 @@
*/
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium';
import inputMethod from '@ohos.inputMethod';
import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry'
import display from '@ohos.display';
export default function inputMethodNormalJSUnit() {
describe('inputMethodNormalJSUnit', function () {
console.info("====>************* inputMethodNormalJSUnit settings Test start*************");
beforeAll(async (done)=>{
let display_info;
let getFocusCmd = '';
let abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
display_info = display.getDefaultDisplaySync();
getFocusCmd = `uinput -T -c ${display_info.width*0.5} ${display_info.height*0.5}`;
console.debug('====>runCmd info:' + getFocusCmd);
await abilityDelegator.executeShellCommand(getFocusCmd);
})
/*
* @tc.number inputmethodNomal_test_switchInputMethod_001
* @tc.name Test Indicates the input method which will replace the current one.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录