Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
37372617
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,发现更多精彩内容 >>
未验证
提交
37372617
编写于
7月 15, 2022
作者:
O
openharmony_ci
提交者:
Gitee
7月 15, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4335 【XTS】【事件通知子系统】fail用例修改-release
Merge pull request !4335 from 付家睿/OpenHarmony-3.1-Release
上级
2fa18acf
12646f08
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
32 addition
and
31 deletion
+32
-31
notification/ans_standard/actsansslottest/actsansaddslotsystem/entry/src/main/js/test/ExampleJsunit.test.js
...ddslotsystem/entry/src/main/js/test/ExampleJsunit.test.js
+3
-2
notification/ans_standard/publish_test/publishcontentype/publishtype/entry/src/main/js/test/ExampleJsunit.test.js
.../publishtype/entry/src/main/js/test/ExampleJsunit.test.js
+27
-27
notification/ans_standard/publish_test/subscribe/subscribe/entry/src/main/js/test/Subscriber.js
.../subscribe/subscribe/entry/src/main/js/test/Subscriber.js
+2
-2
未找到文件。
notification/ans_standard/actsansslottest/actsansaddslotsystem/entry/src/main/js/test/ExampleJsunit.test.js
浏览文件 @
37372617
...
...
@@ -214,9 +214,10 @@ describe('ActsAnsAddSlotSystem', function () {
(
err
)
=>
{
console
.
debug
(
"
====>addSlot OTHER_TYPES callback====>
"
);
expect
(
err
.
code
).
assertEqual
(
0
);
notification
.
getSlot
(
notification
.
SlotType
.
OTHER_TYPES
,
getSlotCallback
);
})
console
.
debug
(
"
====>getSlot SlotType.OTHER_TYPES====>
"
);
notification
.
getSlot
(
notification
.
SlotType
.
OTHER_TYPES
,
getSlotCallback
);
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ActsAnsAddSlotSystem_0400====>
"
);
},
TIMEOUT
);
...
...
@@ -404,7 +405,7 @@ describe('ActsAnsAddSlotSystem', function () {
it
(
'
ActsAnsAddSlotSystem_0900
'
,
0
,
async
function
(
done
)
{
console
.
debug
(
"
====>ActsAnsAddSlotSystem_0900 start====>
"
);
console
.
debug
(
"
====>addSlot OTHER_TYPES====>
"
);
notification
.
addSlot
(
await
notification
.
addSlot
(
{
type
:
notification
.
SlotType
.
OTHER_TYPES
,
level
:
notification
.
SlotLevel
.
LEVEL_DEFAULT
,
...
...
notification/ans_standard/publish_test/publishcontentype/publishtype/entry/src/main/js/test/ExampleJsunit.test.js
浏览文件 @
37372617
...
...
@@ -279,7 +279,7 @@ describe('ActsAnsNotificationTest', function () {
var
notificationInfo
=
{
id
:
2
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_MULTILINE
,
multiLine
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -373,7 +373,7 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
notification
.
publish
({
id
:
5
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_MULTILINE
,
multiLine
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -384,7 +384,7 @@ describe('ActsAnsNotificationTest', function () {
},
}
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_PublishMULTILINEContent_0500====>
"
);
...
...
@@ -400,18 +400,18 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
notification
.
publish
({
id
:
6
,
content
:
{
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_
PICTUR
E
,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_
MULTILIN
E
,
multiLine
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
additionalText
:
"
test_additionalText
"
,
briefText
:
"
briefText
"
,
longTitle
:
"
longTitle
"
,
lines
:
[
"
thrive
"
,
"
democracy
"
,
"
civilization
"
,
"
harmonious
"
]
lines
:
[
"
thrive
"
,
"
civilization
"
,
"
harmonious
"
]
},
}
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_PublishMULTILINEContent_0600====>
"
);
...
...
@@ -470,7 +470,7 @@ describe('ActsAnsNotificationTest', function () {
await
notification
.
publish
({
id
:
8
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_LONG_TEXT
,
longText
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -490,13 +490,13 @@ describe('ActsAnsNotificationTest', function () {
/*
* @tc.number: ACTS_PublishLONGContent_0300
* @tc.name: publish()
* @tc.desc: verify the function of publish(contentType:NOTIFICATION_CONTENT_
MEDIA
)
* @tc.desc: verify the function of publish(contentType:NOTIFICATION_CONTENT_
LONG_TEXT
)
*/
it
(
'
ACTS_PublishLONGContent_0300
'
,
0
,
async
function
(
done
)
{
await
notification
.
publish
({
id
:
9
,
content
:
{
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_
MEDIA
,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_
LONG_TEXT
,
longText
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -566,7 +566,7 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
await
notification
.
publish
({
id
:
11
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_LONG_TEXT
,
longText
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -576,30 +576,30 @@ describe('ActsAnsNotificationTest', function () {
expandedTitle
:
"
expandedTitle
"
}}
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
})
/*
* @tc.number: ACTS_PublishLONGContent_0600
* @tc.name: publish()
* @tc.desc: verify the function of publish(contentType:NOTIFICATION_CONTENT_
MEDIA
) promise
* @tc.desc: verify the function of publish(contentType:NOTIFICATION_CONTENT_
LONG_TEXT
) promise
*/
it
(
'
ACTS_PublishLONGContent_0600
'
,
0
,
async
function
(
done
)
{
var
promise
=
notification
.
publish
({
id
:
12
,
content
:
{
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_
MEDIA
,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_
LONG_TEXT
,
longText
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
additionalText
:
"
test_additionalText
"
,
longText
:
"
longText
"
,
briefText
:
"
briefText
"
,
expandedTitle
:
"
expandedTitle
"
expandedTitle
:
"
expandedTitle
ing
"
}}
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
})
...
...
@@ -657,7 +657,7 @@ describe('ActsAnsNotificationTest', function () {
await
notification
.
publish
({
id
:
14
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -816,7 +816,7 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
notification
.
publish
({
id
:
18
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -825,7 +825,7 @@ describe('ActsAnsNotificationTest', function () {
},
slotType
:
notification
.
SlotType
.
CONTENT_INFORMATION
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_Publish_SlotTypeContent_0600====>
"
);
...
...
@@ -974,7 +974,7 @@ describe('ActsAnsNotificationTest', function () {
await
notification
.
publish
({
id
:
22
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -1133,7 +1133,7 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
notification
.
publish
({
id
:
26
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -1142,7 +1142,7 @@ describe('ActsAnsNotificationTest', function () {
slotType
:
notification
.
SlotType
.
OTHER_TYPES
}
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_PublishSlotTypeOther_0600====>
"
);
...
...
@@ -1291,7 +1291,7 @@ describe('ActsAnsNotificationTest', function () {
await
notification
.
publish
({
id
:
30
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -1450,7 +1450,7 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
notification
.
publish
({
id
:
34
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -1459,7 +1459,7 @@ describe('ActsAnsNotificationTest', function () {
},
slotType
:
notification
.
SlotType
.
SERVICE_INFORMATION
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_PublishSlotTypeService_0600====>
"
);
...
...
@@ -1608,7 +1608,7 @@ describe('ActsAnsNotificationTest', function () {
await
notification
.
publish
({
id
:
38
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -1767,7 +1767,7 @@ describe('ActsAnsNotificationTest', function () {
var
promise
=
notification
.
publish
({
id
:
42
,
content
:
{
//
contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
title
:
"
test_title
"
,
text
:
"
test_text
"
,
...
...
@@ -1776,7 +1776,7 @@ describe('ActsAnsNotificationTest', function () {
slotType
:
notification
.
SlotType
.
SOCIAL_COMMUNICATION
}
})
expect
(
promise
).
assertEqual
(
undefined
)
expect
(
typeof
(
promise
)).
assertEqual
(
"
object
"
)
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_PublishSlotTypeSocial_0600====>
"
);
...
...
notification/ans_standard/publish_test/subscribe/subscribe/entry/src/main/js/test/Subscriber.js
浏览文件 @
37372617
...
...
@@ -364,7 +364,7 @@ describe('ActsAnsSubscriberTest', function () {
})
/*
* @tc.number: ActsSubscriber_test_0
7
00
* @tc.number: ActsSubscriber_test_0
6
00
* @tc.name: subscribe()
* @tc.desc: verify the function of subscribe
*/
...
...
@@ -480,7 +480,7 @@ describe('ActsAnsSubscriberTest', function () {
onConnect
:
connectCallbacko
,
onDisconnect
:
disconnectCallbacko
,
}
await
notify
.
subscribe
(
subInfo
,{
bundleNames
:[]},
subscribeCallbackp
);
await
notify
.
subscribe
(
subInfo
,{
bundleNames
:[
""
]},
subscribeCallbackp
);
await
notify
.
unsubscribe
(
subInfo
,
unSubscribeCallbacko
);
console
.
debug
(
"
==ActsSubscriber_test_1400==end==>
"
);
done
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录