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

!4335 【XTS】【事件通知子系统】fail用例修改-release

Merge pull request !4335 from 付家睿/OpenHarmony-3.1-Release
...@@ -214,9 +214,10 @@ describe('ActsAnsAddSlotSystem', function () { ...@@ -214,9 +214,10 @@ describe('ActsAnsAddSlotSystem', function () {
(err)=>{ (err)=>{
console.debug("====>addSlot OTHER_TYPES callback====>"); console.debug("====>addSlot OTHER_TYPES callback====>");
expect(err.code).assertEqual(0); expect(err.code).assertEqual(0);
notification.getSlot(notification.SlotType.OTHER_TYPES, getSlotCallback);
}) })
console.debug("====>getSlot SlotType.OTHER_TYPES====>"); console.debug("====>getSlot SlotType.OTHER_TYPES====>");
notification.getSlot(notification.SlotType.OTHER_TYPES, getSlotCallback);
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ActsAnsAddSlotSystem_0400====>"); console.debug("====>time out ActsAnsAddSlotSystem_0400====>");
}, TIMEOUT); }, TIMEOUT);
...@@ -404,7 +405,7 @@ describe('ActsAnsAddSlotSystem', function () { ...@@ -404,7 +405,7 @@ describe('ActsAnsAddSlotSystem', function () {
it('ActsAnsAddSlotSystem_0900', 0, async function (done) { it('ActsAnsAddSlotSystem_0900', 0, async function (done) {
console.debug("====>ActsAnsAddSlotSystem_0900 start====>"); console.debug("====>ActsAnsAddSlotSystem_0900 start====>");
console.debug("====>addSlot OTHER_TYPES====>"); console.debug("====>addSlot OTHER_TYPES====>");
notification.addSlot( await notification.addSlot(
{ {
type: notification.SlotType.OTHER_TYPES, type: notification.SlotType.OTHER_TYPES,
level: notification.SlotLevel.LEVEL_DEFAULT, level: notification.SlotLevel.LEVEL_DEFAULT,
......
...@@ -279,7 +279,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -279,7 +279,7 @@ describe('ActsAnsNotificationTest', function () {
var notificationInfo = { var notificationInfo = {
id: 2, id: 2,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE, contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE,
multiLine: { multiLine: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -373,7 +373,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -373,7 +373,7 @@ describe('ActsAnsNotificationTest', function () {
var promise = notification.publish({ var promise = notification.publish({
id: 5, id: 5,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE, contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE,
multiLine: { multiLine: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -384,7 +384,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -384,7 +384,7 @@ describe('ActsAnsNotificationTest', function () {
}, },
} }
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ACTS_PublishMULTILINEContent_0500====>"); console.debug("====>time out ACTS_PublishMULTILINEContent_0500====>");
...@@ -400,18 +400,18 @@ describe('ActsAnsNotificationTest', function () { ...@@ -400,18 +400,18 @@ describe('ActsAnsNotificationTest', function () {
var promise = notification.publish({ var promise = notification.publish({
id: 6, id: 6,
content: { content: {
contentType: notification.ContentType.NOTIFICATION_CONTENT_PICTURE, contentType: notification.ContentType.NOTIFICATION_CONTENT_MULTILINE,
multiLine: { multiLine: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
additionalText: "test_additionalText", additionalText: "test_additionalText",
briefText:"briefText", briefText:"briefText",
longTitle:"longTitle", longTitle:"longTitle",
lines: ["thrive", "democracy", "civilization", "harmonious"] lines: ["thrive", "civilization", "harmonious"]
}, },
} }
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ACTS_PublishMULTILINEContent_0600====>"); console.debug("====>time out ACTS_PublishMULTILINEContent_0600====>");
...@@ -470,7 +470,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -470,7 +470,7 @@ describe('ActsAnsNotificationTest', function () {
await notification.publish({ await notification.publish({
id: 8, id: 8,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT,
longText: { longText: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -490,13 +490,13 @@ describe('ActsAnsNotificationTest', function () { ...@@ -490,13 +490,13 @@ describe('ActsAnsNotificationTest', function () {
/* /*
* @tc.number: ACTS_PublishLONGContent_0300 * @tc.number: ACTS_PublishLONGContent_0300
* @tc.name: publish() * @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) { it('ACTS_PublishLONGContent_0300', 0,async function (done) {
await notification.publish({ await notification.publish({
id: 9, id: 9,
content: { content: {
contentType: notification.ContentType.NOTIFICATION_CONTENT_MEDIA, contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT,
longText: { longText: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -566,7 +566,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -566,7 +566,7 @@ describe('ActsAnsNotificationTest', function () {
var promise = await notification.publish({ var promise = await notification.publish({
id: 11, id: 11,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT,
longText: { longText: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -576,30 +576,30 @@ describe('ActsAnsNotificationTest', function () { ...@@ -576,30 +576,30 @@ describe('ActsAnsNotificationTest', function () {
expandedTitle:"expandedTitle" expandedTitle:"expandedTitle"
}} }}
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
}) })
/* /*
* @tc.number: ACTS_PublishLONGContent_0600 * @tc.number: ACTS_PublishLONGContent_0600
* @tc.name: publish() * @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) { it('ACTS_PublishLONGContent_0600', 0,async function (done) {
var promise = notification.publish({ var promise = notification.publish({
id: 12, id: 12,
content: { content: {
contentType: notification.ContentType.NOTIFICATION_CONTENT_MEDIA, contentType: notification.ContentType.NOTIFICATION_CONTENT_LONG_TEXT,
longText: { longText: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
additionalText: "test_additionalText", additionalText: "test_additionalText",
longText:"longText", longText:"longText",
briefText:"briefText", briefText:"briefText",
expandedTitle:"expandedTitle" expandedTitle:"expandedTitleing"
}} }}
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
}) })
...@@ -657,7 +657,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -657,7 +657,7 @@ describe('ActsAnsNotificationTest', function () {
await notification.publish({ await notification.publish({
id: 14, id: 14,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -816,7 +816,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -816,7 +816,7 @@ describe('ActsAnsNotificationTest', function () {
var promise = notification.publish({ var promise = notification.publish({
id: 18, id: 18,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -825,7 +825,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -825,7 +825,7 @@ describe('ActsAnsNotificationTest', function () {
}, },
slotType:notification.SlotType.CONTENT_INFORMATION slotType:notification.SlotType.CONTENT_INFORMATION
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ACTS_Publish_SlotTypeContent_0600====>"); console.debug("====>time out ACTS_Publish_SlotTypeContent_0600====>");
...@@ -974,7 +974,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -974,7 +974,7 @@ describe('ActsAnsNotificationTest', function () {
await notification.publish({ await notification.publish({
id:22, id:22,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -1133,7 +1133,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1133,7 +1133,7 @@ describe('ActsAnsNotificationTest', function () {
var promise = notification.publish({ var promise = notification.publish({
id:26, id:26,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -1142,7 +1142,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1142,7 +1142,7 @@ describe('ActsAnsNotificationTest', function () {
slotType:notification.SlotType.OTHER_TYPES slotType:notification.SlotType.OTHER_TYPES
} }
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ACTS_PublishSlotTypeOther_0600====>"); console.debug("====>time out ACTS_PublishSlotTypeOther_0600====>");
...@@ -1291,7 +1291,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1291,7 +1291,7 @@ describe('ActsAnsNotificationTest', function () {
await notification.publish({ await notification.publish({
id: 30, id: 30,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -1450,7 +1450,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1450,7 +1450,7 @@ describe('ActsAnsNotificationTest', function () {
var promise = notification.publish({ var promise = notification.publish({
id: 34, id: 34,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -1459,7 +1459,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1459,7 +1459,7 @@ describe('ActsAnsNotificationTest', function () {
}, },
slotType:notification.SlotType.SERVICE_INFORMATION slotType:notification.SlotType.SERVICE_INFORMATION
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ACTS_PublishSlotTypeService_0600====>"); console.debug("====>time out ACTS_PublishSlotTypeService_0600====>");
...@@ -1608,7 +1608,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1608,7 +1608,7 @@ describe('ActsAnsNotificationTest', function () {
await notification.publish({ await notification.publish({
id: 38, id: 38,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -1767,7 +1767,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1767,7 +1767,7 @@ describe('ActsAnsNotificationTest', function () {
var promise = notification.publish({ var promise = notification.publish({
id: 42, id: 42,
content: { content: {
// contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: { normal: {
title: "test_title", title: "test_title",
text: "test_text", text: "test_text",
...@@ -1776,7 +1776,7 @@ describe('ActsAnsNotificationTest', function () { ...@@ -1776,7 +1776,7 @@ describe('ActsAnsNotificationTest', function () {
slotType:notification.SlotType.SOCIAL_COMMUNICATION slotType:notification.SlotType.SOCIAL_COMMUNICATION
} }
}) })
expect(promise).assertEqual(undefined) expect(typeof(promise)).assertEqual("object")
done(); done();
setTimeout(function(){ setTimeout(function(){
console.debug("====>time out ACTS_PublishSlotTypeSocial_0600====>"); console.debug("====>time out ACTS_PublishSlotTypeSocial_0600====>");
......
...@@ -364,7 +364,7 @@ describe('ActsAnsSubscriberTest', function () { ...@@ -364,7 +364,7 @@ describe('ActsAnsSubscriberTest', function () {
}) })
/* /*
* @tc.number: ActsSubscriber_test_0700 * @tc.number: ActsSubscriber_test_0600
* @tc.name: subscribe() * @tc.name: subscribe()
* @tc.desc: verify the function of subscribe * @tc.desc: verify the function of subscribe
*/ */
...@@ -480,7 +480,7 @@ describe('ActsAnsSubscriberTest', function () { ...@@ -480,7 +480,7 @@ describe('ActsAnsSubscriberTest', function () {
onConnect:connectCallbacko, onConnect:connectCallbacko,
onDisconnect:disconnectCallbacko, onDisconnect:disconnectCallbacko,
} }
await notify.subscribe(subInfo,{bundleNames:[]},subscribeCallbackp); await notify.subscribe(subInfo,{bundleNames:[""]},subscribeCallbackp);
await notify.unsubscribe(subInfo, unSubscribeCallbacko); await notify.unsubscribe(subInfo, unSubscribeCallbacko);
console.debug("==ActsSubscriber_test_1400==end==>"); console.debug("==ActsSubscriber_test_1400==end==>");
done(); done();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册