未验证 提交 f10d5a96 编写于 作者: O openharmony_ci 提交者: Gitee

!5119 【XTS】【事件通知子系统】属性整改_monthly

Merge pull request !5119 from zhijianwen/monthly_20220816
...@@ -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() {
}) })
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册