summaryrefslogtreecommitdiffstats
path: root/app/notification_test.go
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2018-02-12 11:50:41 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2018-02-13 09:57:23 -0500
commitc1b49f8b77e0e75afcc6cf4dc0f1c36569824151 (patch)
tree33b1ad1c70226d79fd49fc57f42c5b8938ee5ece /app/notification_test.go
parentb8a4316b13bc0664648abda6b8d3de585d79173d (diff)
downloadchat-c1b49f8b77e0e75afcc6cf4dc0f1c36569824151.tar.gz
chat-c1b49f8b77e0e75afcc6cf4dc0f1c36569824151.tar.bz2
chat-c1b49f8b77e0e75afcc6cf4dc0f1c36569824151.zip
ICU-753 Added unit tests for push notification contents
Diffstat (limited to 'app/notification_test.go')
-rw-r--r--app/notification_test.go211
1 files changed, 211 insertions, 0 deletions
diff --git a/app/notification_test.go b/app/notification_test.go
index 11f4df685..2b7b260c4 100644
--- a/app/notification_test.go
+++ b/app/notification_test.go
@@ -1166,3 +1166,214 @@ func TestGetNotificationEmailBodyGenericNotificationDirectChannel(t *testing.T)
t.Fatal("Expected email text '" + teamURL + "'. Got " + body)
}
}
+
+func TestGetPushNotificationMessage(t *testing.T) {
+ th := Setup()
+ defer th.TearDown()
+
+ for name, tc := range map[string]struct {
+ Message string
+ WasMentioned bool
+ HasFiles bool
+ Locale string
+ PushNotificationContents string
+ ChannelType string
+
+ ExpectedMessage string
+ ExpectedCategory string
+ }{
+ "full message, public channel, no mention": {
+ Message: "this is a message",
+ ChannelType: model.CHANNEL_OPEN,
+ ExpectedMessage: "user in channel: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, public channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ ChannelType: model.CHANNEL_OPEN,
+ ExpectedMessage: "user in channel: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, private channel, no mention": {
+ Message: "this is a message",
+ ChannelType: model.CHANNEL_PRIVATE,
+ ExpectedMessage: "user in channel: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, private channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ ChannelType: model.CHANNEL_PRIVATE,
+ ExpectedMessage: "user in channel: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, group message channel, no mention": {
+ Message: "this is a message",
+ ChannelType: model.CHANNEL_GROUP,
+ ExpectedMessage: "user in channel: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, group message channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ ChannelType: model.CHANNEL_GROUP,
+ ExpectedMessage: "user in channel: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, direct message channel, no mention": {
+ Message: "this is a message",
+ ChannelType: model.CHANNEL_DIRECT,
+ ExpectedMessage: "user: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "full message, direct message channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ ChannelType: model.CHANNEL_DIRECT,
+ ExpectedMessage: "user: this is a message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message with channel, public channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_OPEN,
+ ExpectedMessage: "user posted in channel",
+ },
+ "generic message with channel, public channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_OPEN,
+ ExpectedMessage: "user mentioned you in channel",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message with channel, private channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_PRIVATE,
+ ExpectedMessage: "user posted in channel",
+ },
+ "generic message with channel, private channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_PRIVATE,
+ ExpectedMessage: "user mentioned you in channel",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message with channel, group message channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_GROUP,
+ ExpectedMessage: "user posted in channel",
+ },
+ "generic message with channel, group message channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_GROUP,
+ ExpectedMessage: "user mentioned you in channel",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message with channel, direct message channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_DIRECT,
+ ExpectedMessage: "user sent you a direct message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message with channel, direct message channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NOTIFICATION,
+ ChannelType: model.CHANNEL_DIRECT,
+ ExpectedMessage: "user sent you a direct message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message without channel, public channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_OPEN,
+ ExpectedMessage: "user posted a message",
+ },
+ "generic message without channel, public channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_OPEN,
+ ExpectedMessage: "user mentioned you",
+ },
+ "generic message without channel, private channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_PRIVATE,
+ ExpectedMessage: "user posted a message",
+ },
+ "generic message without channel, private channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_PRIVATE,
+ ExpectedMessage: "user mentioned you",
+ },
+ "generic message without channel, group message channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_GROUP,
+ ExpectedMessage: "user posted a message",
+ },
+ "generic message without channel, group message channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_GROUP,
+ ExpectedMessage: "user mentioned you",
+ },
+ "generic message without channel, direct message channel, no mention": {
+ Message: "this is a message",
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_DIRECT,
+ ExpectedMessage: "user sent you a direct message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ "generic message without channel, direct message channel, mention": {
+ Message: "this is a message",
+ WasMentioned: true,
+ PushNotificationContents: model.GENERIC_NO_CHANNEL_NOTIFICATION,
+ ChannelType: model.CHANNEL_DIRECT,
+ ExpectedMessage: "user sent you a direct message",
+ ExpectedCategory: model.CATEGORY_CAN_REPLY,
+ },
+ } {
+ t.Run(name, func(t *testing.T) {
+ locale := tc.Locale
+ if locale == "" {
+ locale = "en"
+ }
+
+ pushNotificationContents := tc.PushNotificationContents
+ if pushNotificationContents == "" {
+ pushNotificationContents = model.FULL_NOTIFICATION
+ }
+
+ th.App.UpdateConfig(func(cfg *model.Config) {
+ *cfg.EmailSettings.PushNotificationContents = pushNotificationContents
+ })
+
+ if actualMessage, actualCategory := th.App.getPushNotificationMessage(
+ tc.Message,
+ tc.WasMentioned,
+ tc.HasFiles,
+ "user",
+ "channel",
+ tc.ChannelType,
+ utils.GetUserTranslations(locale),
+ ); actualMessage != tc.ExpectedMessage {
+ t.Fatalf("Received incorrect push notification message `%v`, expected `%v`", actualMessage, tc.ExpectedMessage)
+ } else if actualCategory != tc.ExpectedCategory {
+ t.Fatalf("Received incorrect push notification category `%v`, expected `%v`", actualCategory, tc.ExpectedCategory)
+ }
+ })
+ }
+}