Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
a5f753c2
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看板
未验证
提交
a5f753c2
编写于
11月 16, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 16, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6521 continuationManager测试套添加自动点击授权
Merge pull request !6521 from 杜智海/master
上级
1f28a7f4
862d1964
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
35 addition
and
0 deletion
+35
-0
ability/dmsfwk/continuationmanagertest/src/main/js/TestAbility/app.js
...wk/continuationmanagertest/src/main/js/TestAbility/app.js
+14
-0
ability/dmsfwk/continuationmanagertest/src/main/js/test/ContinuationManagerJsunit.test.js
...ertest/src/main/js/test/ContinuationManagerJsunit.test.js
+21
-0
未找到文件。
ability/dmsfwk/continuationmanagertest/src/main/js/TestAbility/app.js
浏览文件 @
a5f753c2
...
...
@@ -17,6 +17,19 @@ import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry
import
{
Hypium
}
from
'
@ohos/hypium
'
import
testsuite
from
'
../test/List.test
'
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
async
function
requestPermission
()
{
try
{
let
context
=
featureAbility
.
getContext
();
await
context
.
requestPermissionsFromUser
([
'
ohos.permission.DISTRIBUTED_DATASYNC
'
],
666
,
(
data
)
=>
{
console
.
info
(
'
TestApplication requestPermission data:
'
+
JSON
.
stringify
(
data
));
});
}
catch
(
err
)
{
console
.
error
(
'
TestApplication permission
'
+
JSON
.
stringify
(
err
));
}
}
export
default
{
onCreate
()
{
console
.
info
(
'
TestApplication onCreate
'
)
...
...
@@ -24,6 +37,7 @@ export default {
var
abilityDelegatorArguments
=
AbilityDelegatorRegistry
.
getArguments
()
console
.
info
(
'
start run testcase!!!
'
)
Hypium
.
hypiumTest
(
abilityDelegator
,
abilityDelegatorArguments
,
testsuite
)
requestPermission
()
},
onDestroy
()
{
console
.
info
(
"
TestApplication onDestroy
"
);
...
...
ability/dmsfwk/continuationmanagertest/src/main/js/test/ContinuationManagerJsunit.test.js
浏览文件 @
a5f753c2
...
...
@@ -13,6 +13,7 @@
* 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
"
;
...
...
@@ -24,6 +25,26 @@ 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
(
'
点击多设备授权框的允许按钮
'
)
}
done
();
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录