Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
3da6a741
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看板
未验证
提交
3da6a741
编写于
11月 18, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 18, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6549 continuationManager测试套自动授权问题修复
Merge pull request !6549 from 杜智海/master
上级
1b005f59
110d5ddf
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
37 addition
and
20 deletion
+37
-20
ability/dmsfwk/continuationmanagertest/Test.json
ability/dmsfwk/continuationmanagertest/Test.json
+8
-0
ability/dmsfwk/continuationmanagertest/src/main/js/TestAbility/app.js
...wk/continuationmanagertest/src/main/js/TestAbility/app.js
+26
-0
ability/dmsfwk/continuationmanagertest/src/main/js/test/ContinuationManagerJsunit.test.js
...ertest/src/main/js/test/ContinuationManagerJsunit.test.js
+3
-20
未找到文件。
ability/dmsfwk/continuationmanagertest/Test.json
浏览文件 @
3da6a741
...
...
@@ -14,6 +14,14 @@
],
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
},
{
"type"
:
"ShellKit"
,
"run-command"
:
[
"power-shell wakeup"
,
"power-shell setmode 602"
,
"uinput -T -d 300 600 -m 300 600 300 100 -u 300 100"
]
}
]
}
\ No newline at end of file
ability/dmsfwk/continuationmanagertest/src/main/js/TestAbility/app.js
浏览文件 @
3da6a741
...
...
@@ -15,6 +15,7 @@
import
AbilityDelegatorRegistry
from
'
@ohos.application.abilityDelegatorRegistry
'
import
{
Hypium
}
from
'
@ohos/hypium
'
import
{
UiDriver
,
BY
}
from
'
@ohos.uitest
'
import
testsuite
from
'
../test/List.test
'
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
...
...
@@ -30,6 +31,29 @@ async function requestPermission() {
}
}
async
function
clickPermission
(
driver
)
{
console
.
info
(
"
clickPermission begin
"
);
await
driver
.
delayMs
(
2000
);
var
data_sync_allow
=
await
driver
.
findComponent
(
BY
.
text
(
"
允许
"
))
await
driver
.
delayMs
(
1000
)
var
wait_count
=
0
while
(
data_sync_allow
==
null
||
data_sync_allow
==
undefined
)
{
data_sync_allow
=
await
driver
.
findComponent
(
BY
.
text
(
"
允许
"
))
wait_count
+=
1
await
driver
.
delayMs
(
1000
)
if
(
wait_count
==
15
)
{
break
}
}
if
(
data_sync_allow
==
null
)
{
console
.
info
(
'
应用非首次开启
'
)
}
else
{
await
data_sync_allow
.
click
()
console
.
log
(
'
点击多设备授权框的允许按钮
'
)
}
}
export
default
{
onCreate
()
{
console
.
info
(
'
TestApplication onCreate
'
)
...
...
@@ -37,7 +61,9 @@ export default {
var
abilityDelegatorArguments
=
AbilityDelegatorRegistry
.
getArguments
()
console
.
info
(
'
start run testcase!!!
'
)
Hypium
.
hypiumTest
(
abilityDelegator
,
abilityDelegatorArguments
,
testsuite
)
var
driver
=
UiDriver
.
create
()
requestPermission
()
clickPermission
(
driver
)
},
onDestroy
()
{
console
.
info
(
"
TestApplication onDestroy
"
);
...
...
ability/dmsfwk/continuationmanagertest/src/main/js/test/ContinuationManagerJsunit.test.js
浏览文件 @
3da6a741
...
...
@@ -13,7 +13,6 @@
* limitations under the License.
*/
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
@ohos/hypium
'
import
{
UiDriver
,
BY
}
from
'
@ohos.uitest
'
import
continuationManager
from
'
@ohos.continuation.continuationManager
'
;
const
TEST_DEVICE_ID
=
"
test_deviceId
"
;
...
...
@@ -25,26 +24,10 @@ describe('continuationManagerTest', function() {
beforeAll
(
async
function
(
done
)
{
console
.
info
(
'
beforeAll
'
);
var
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
2000
);
var
data_sync_allow
=
await
driver
.
findComponent
(
BY
.
text
(
"
允许
"
))
await
driver
.
delayMs
(
1000
)
var
wait_count
=
0
while
(
data_sync_allow
==
null
||
data_sync_allow
==
undefined
)
{
data_sync_allow
=
await
driver
.
findComponent
(
BY
.
text
(
"
允许
"
))
wait_count
+=
1
await
driver
.
delayMs
(
1000
)
if
(
wait_count
==
3
)
{
break
}
}
if
(
data_sync_allow
==
null
)
{
console
.
info
(
'
应用非首次开启
'
)
}
else
{
await
data_sync_allow
.
click
()
console
.
log
(
'
点击多设备授权框的允许按钮
'
)
function
sleep
(
ms
)
{
return
new
Promise
(
resolve
=>
setTimeout
(
resolve
,
ms
));
}
await
sleep
(
20000
)
done
();
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录