Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
f10d5a96
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看板
未验证
提交
f10d5a96
编写于
8月 24, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 24, 2022
浏览文件
操作
浏览文件
下载
差异文件
!5119 【XTS】【事件通知子系统】属性整改_monthly
Merge pull request !5119 from zhijianwen/monthly_20220816
上级
357e4315
2777484f
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
379 addition
and
249 deletion
+379
-249
notification/ans_standard/actsnotificationshow/src/main/js/test/ActsNotificationShowTest.js
...ficationshow/src/main/js/test/ActsNotificationShowTest.js
+81
-75
notification/ans_standard/publish_test/actsansdistributedtest/src/main/js/test/actsansdistributedtest.js
...istributedtest/src/main/js/test/actsansdistributedtest.js
+298
-174
未找到文件。
notification/ans_standard/actsnotificationshow/src/main/js/test/ActsNotificationShowTest.js
浏览文件 @
f10d5a96
...
@@ -77,26 +77,27 @@ export default function ActsNotificationShowTest() {
...
@@ -77,26 +77,27 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_0400
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_0400
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0400 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0400 START
'
)
let
ActionResult
=
{
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentTitle
:
'
Title4
'
,
contentTitle
:
'
Title4
'
,
contentText
:
'
This is a notification 004
'
,
contentText
:
'
This is a notification 004
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title4
'
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title4
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 004
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 004
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
uri
).
assertEqual
(
'
/
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
uri
).
assertEqual
(
'
/
'
)
done
()
done
()
})
})
...
@@ -107,26 +108,27 @@ export default function ActsNotificationShowTest() {
...
@@ -107,26 +108,27 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_0500
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_0500
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0500 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0500 START
'
)
let
ActionResult
=
{
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
pages/index/index
'
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentTitle
:
'
Title5
'
,
contentTitle
:
'
Title5
'
,
contentText
:
'
This is a notification 005
'
,
contentText
:
'
This is a notification 005
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
pages/index/index
'
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title5
'
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title5
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 005
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 005
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
uri
).
assertEqual
(
'
pages/index/index
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
uri
).
assertEqual
(
'
pages/index/index
'
)
done
()
done
()
})
})
...
@@ -137,25 +139,26 @@ export default function ActsNotificationShowTest() {
...
@@ -137,25 +139,26 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_0600
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_0600
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0600 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0600 START
'
)
let
ActionResult
=
{
bundleName
:
''
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentTitle
:
'
Title6
'
,
contentTitle
:
'
Title6
'
,
contentText
:
'
This is a notification 006
'
,
contentText
:
'
This is a notification 006
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
''
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title6
'
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title6
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 006
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 006
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
uri
).
assertEqual
(
'
/
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
uri
).
assertEqual
(
'
/
'
)
done
()
done
()
})
})
...
@@ -166,25 +169,26 @@ export default function ActsNotificationShowTest() {
...
@@ -166,25 +169,26 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_0700
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_0700
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0700 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0700 START
'
)
let
ActionResult
=
{
bundleName
:
'
com.example.notification
'
,
abilityName
:
''
,
uri
:
'
/
'
,
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentTitle
:
'
Title7
'
,
contentTitle
:
'
Title7
'
,
contentText
:
'
This is a notification 007
'
,
contentText
:
'
This is a notification 007
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
'
com.example.notification
'
,
abilityName
:
''
,
uri
:
'
/
'
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title7
'
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title7
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 007
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 007
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
uri
).
assertEqual
(
'
/
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
uri
).
assertEqual
(
'
/
'
)
done
()
done
()
})
})
...
@@ -195,25 +199,26 @@ export default function ActsNotificationShowTest() {
...
@@ -195,25 +199,26 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_0800
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_0800
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0800 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0800 START
'
)
let
ActionResult
=
{
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
''
,
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentTitle
:
'
Title8
'
,
contentTitle
:
'
Title8
'
,
contentText
:
'
This is a notification 008
'
,
contentText
:
'
This is a notification 008
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
''
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title8
'
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title8
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 008
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 008
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
done
()
done
()
})
})
...
@@ -224,23 +229,24 @@ export default function ActsNotificationShowTest() {
...
@@ -224,23 +229,24 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_0900
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_0900
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0900 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_0900 START
'
)
let
ActionResult
=
{
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentText
:
'
This is a notification 009
'
,
contentText
:
'
This is a notification 009
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
contentText:
'
+
ShowNotificationOptions
.
contentText
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 009
'
)
expect
(
ShowNotificationOptions
.
contentText
).
assertEqual
(
'
This is a notification 009
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
uri
).
assertEqual
(
'
/
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
uri
).
assertEqual
(
'
/
'
)
done
()
done
()
})
})
...
@@ -251,23 +257,24 @@ export default function ActsNotificationShowTest() {
...
@@ -251,23 +257,24 @@ export default function ActsNotificationShowTest() {
*/
*/
it
(
'
ActsNotificationShowTest_1000
'
,
0
,
async
function
(
done
)
{
it
(
'
ActsNotificationShowTest_1000
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
'
ActsNotificationShowTest_1000 START
'
)
console
.
info
(
TAG
+
'
ActsNotificationShowTest_1000 START
'
)
let
ActionResult
=
{
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
let
ShowNotificationOptions
=
{
let
ShowNotificationOptions
=
{
contentTitle
:
'
Title10
'
,
contentTitle
:
'
Title10
'
,
ActionResult
:
{
clickAction
:
ActionResult
bundleName
:
'
com.example.notification
'
,
abilityName
:
'
com.example.notification.MainAbility
'
,
uri
:
'
/
'
,
}
}
}
notification
.
show
(
ShowNotificationOptions
)
notification
.
show
(
ShowNotificationOptions
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
conteneTitle:
'
+
ShowNotificationOptions
.
contentTitle
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
ActionResult
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult bundleName:
'
+
ShowNotificationOptions
.
clickAction
.
bundleName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
ActionResult
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult abilityName:
'
+
ShowNotificationOptions
.
clickAction
.
abilityName
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
ActionResult
.
uri
)
console
.
info
(
TAG
+
'
ActionResult uri:
'
+
ShowNotificationOptions
.
clickAction
.
uri
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title10
'
)
expect
(
ShowNotificationOptions
.
contentTitle
).
assertEqual
(
'
Title10
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
bundleName
).
assertEqual
(
'
com.example.notification
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
abilityName
).
assertEqual
(
'
com.example.notification.MainAbility
'
)
expect
(
ShowNotificationOptions
.
ActionResult
.
uri
).
assertEqual
(
'
/
'
)
expect
(
ShowNotificationOptions
.
clickAction
.
uri
).
assertEqual
(
'
/
'
)
done
()
done
()
})
})
...
@@ -275,5 +282,4 @@ export default function ActsNotificationShowTest() {
...
@@ -275,5 +282,4 @@ export default function ActsNotificationShowTest() {
})
})
}
}
notification/ans_standard/publish_test/actsansdistributedtest/src/main/js/test/actsansdistributedtest.js
浏览文件 @
f10d5a96
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录