Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
f113d71b
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看板
提交
f113d71b
编写于
6月 22, 2022
作者:
Z
zhijianwen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
API覆盖
Signed-off-by:
N
zhijianwen
<
zhijianwen@huawei.com
>
上级
82061e02
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
91 addition
and
1 deletion
+91
-1
notification/ans_standard/publish_test/actsansdistributedtest/entry/src/main/js/test/actsansdistributedtest.js
...utedtest/entry/src/main/js/test/actsansdistributedtest.js
+34
-0
notification/ces_standard/subscribeandpublish/actssubscriberunordertest/entry/src/main/js/test/ActsSubscriber_test_unorder.js
...est/entry/src/main/js/test/ActsSubscriber_test_unorder.js
+44
-0
notification/ces_standard/subscribeandpublish/emittertest/entry/src/main/js/test/EmitterTest.js
...publish/emittertest/entry/src/main/js/test/EmitterTest.js
+13
-1
未找到文件。
notification/ans_standard/publish_test/actsansdistributedtest/entry/src/main/js/test/actsansdistributedtest.js
浏览文件 @
f113d71b
...
...
@@ -158,6 +158,40 @@ describe('ActsAnsDistributeTest', function () {
done
();
}),
timeout
);
})
/*
* @tc.number: ActsDistribute_test_0600
* @tc.name: Query whether the template exists
* @tc.desc: isSupportTemplate(templateName: string, callback: AsyncCallback<boolean>): void
*/
it
(
'
ActsDistribute_test_0600
'
,
0
,
async
function
(
done
)
{
var
templateName
=
'
/system/etc/notification_template/assets/js/downloadTemplate.js
'
;
await
notify
.
isSupportTemplate
(
templateName
,
function
(
data
){
console
.
log
(
"
===>isSupportTemplateCallback success===>
"
+
JSON
.
stringify
(
data
))
console
.
log
(
"
===>isSupportTemplateCallback success===>
"
+
err
.
code
)
})
done
();
})
/*
* @tc.number: ActsDistribute_test_0700
* @tc.name: Query whether the template exists
* @tc.desc: isSupportTemplate(templateName: string): Promise<boolean>
*/
it
(
'
ActsDistribute_test_0700
'
,
0
,
async
function
(
done
)
{
var
templateName
=
'
/system/etc/notification_template/assets/js/downloadTemplate.js
'
;
await
notify
.
isSupportTemplate
(
templateName
).
then
((
data
)
=>
{
console
.
log
(
"
isSupportTemplatePromise
"
)
console
.
log
(
"
==>ActsDistribute_test_0700 success==>
"
+
JSON
.
stringify
(
data
))
})
done
();
})
})
notification/ces_standard/subscribeandpublish/actssubscriberunordertest/entry/src/main/js/test/ActsSubscriber_test_unorder.js
浏览文件 @
f113d71b
...
...
@@ -228,5 +228,49 @@ describe('ActsSubscriberTestUnorder', async function (done) {
})
/*
* @tc.number : ActsSubscriberTestUnorder_0600
* @tc.name : verify subscribe and publish : Check whether the current public event is a sticky event
* @tc.desc : isStickyCommonEvent(callback: AsyncCallback<boolean>): void
*/
it
(
'
ActsSubscriberTestUnorder_0600
'
,
0
,
async
function
(
done
)
{
console
.
info
(
"
===============ActsSubscriberTestUnorder_0600==========================>
"
);
let
commonEventSubscribeInfo
=
{
events
:
[
"
publish_event0600
"
]
};
let
commonEventPublishData
=
{
isOrdered
:
false
,
isSticky
:
false
,
}
function
isStickyCallback
(
err
,
data
)
{
console
.
info
(
"
==========================>isStickyCallback
"
);
expect
(
data
).
assertEqual
(
false
);
done
();
}
function
subscriberCallBack006
(
err
,
data
)
{
console
.
info
(
"
==========================>subscriberCallBack006
"
);
commonEventSubscriber006
.
isStickyCommonEvent
(
isStickyCallback
);
}
Subscriber
.
createSubscriber
(
commonEventSubscribeInfo
).
then
((
data
)
=>
{
console
.
info
(
"
===============ActsSubscriberTestUnorder_0600=========createSubscriber promise
"
);
commonEventSubscriber006
=
data
;
data
.
getSubscribeInfo
().
then
(()
=>
{
console
.
info
(
"
===============ActsSubscriberTestUnorder_0600=========getSubscribeInfo promise
"
);
Subscriber
.
subscribe
(
commonEventSubscriber006
,
subscriberCallBack006
);
Subscriber
.
unsubscribe
(
commonEventSubscriber006
,
unsubscriberCallBack
);
setTimeout
(
function
(){
console
.
info
(
"
==========ActsSubscriberTestUnorder_0600 publish start============
"
);
Subscriber
.
publish
(
"
publish_event0600
"
,
commonEventPublishData
,
publishCallback
);
},
1000
);
});
})
})
})
notification/ces_standard/subscribeandpublish/emittertest/entry/src/main/js/test/EmitterTest.js
浏览文件 @
f113d71b
...
...
@@ -92,6 +92,18 @@ describe('EmitterTest', function () {
done
();
})
/*
* @tc.number : EmitterOffTest
* @tc.name : verify off : Check subscribe same off common ordered event
* @tc.desc : Check the subscriber can receive event "EmitterOffTest" type of the interface (by Promise)
*/
it
(
'
EmitterOffTest
'
,
0
,
async
function
(
done
){
console
.
info
(
"
===========EmitterOffTest111====================>
"
);
emitter
.
once
(
InnerEventLow
,
callback01
);
emitter
.
emit
(
InnerEventImmediate
,
eventData
);
emitter
.
off
(
1
);
done
();
})
})
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录