summaryrefslogtreecommitdiffstats
path: root/app/slack_test.go
diff options
context:
space:
mode:
authorJoey Lee <jayd005@gmail.com>2017-11-18 03:17:59 +1100
committerHarrison Healey <harrisonmhealey@gmail.com>2017-11-17 11:17:59 -0500
commit3836f9992056410e00041004132f5d53b4e43300 (patch)
treea75570472e9000c7cde74454af7fa186dcab2062 /app/slack_test.go
parent065d8e97313b9c8ffad37862665186668c88499f (diff)
downloadchat-3836f9992056410e00041004132f5d53b4e43300.tar.gz
chat-3836f9992056410e00041004132f5d53b4e43300.tar.bz2
chat-3836f9992056410e00041004132f5d53b4e43300.zip
PLT-7824 Added support for mentions with <@userid> and <!here> (#7615) (#7737)
Diffstat (limited to 'app/slack_test.go')
-rw-r--r--app/slack_test.go83
1 files changed, 83 insertions, 0 deletions
diff --git a/app/slack_test.go b/app/slack_test.go
new file mode 100644
index 000000000..370942ba0
--- /dev/null
+++ b/app/slack_test.go
@@ -0,0 +1,83 @@
+package app
+
+import (
+ "testing"
+
+ "github.com/mattermost/mattermost-server/model"
+)
+
+func TestProcessSlackText(t *testing.T) {
+ th := Setup().InitBasic()
+ defer th.TearDown()
+
+ if th.App.ProcessSlackText("<!channel> foo <!channel>") != "@channel foo @channel" {
+ t.Fail()
+ }
+
+ if th.App.ProcessSlackText("<!here> bar <!here>") != "@here bar @here" {
+ t.Fail()
+ }
+
+ if th.App.ProcessSlackText("<!all> bar <!all>") != "@all bar @all" {
+ t.Fail()
+ }
+
+ userId := th.BasicUser.Id
+ username := th.BasicUser.Username
+ if th.App.ProcessSlackText("<@"+userId+"> hello") != "@"+username+" hello" {
+ t.Fail()
+ }
+}
+
+func TestProcessSlackAnnouncement(t *testing.T) {
+ th := Setup().InitBasic()
+ defer th.TearDown()
+
+ userId := th.BasicUser.Id
+ username := th.BasicUser.Username
+
+ attachments := []*model.SlackAttachment{
+ {
+ Pretext: "<!channel> pretext <!here>",
+ Text: "<!channel> text <!here>",
+ Title: "<!channel> title <!here>",
+ Fields: []*model.SlackAttachmentField{
+ {
+ Title: "foo",
+ Value: "<!channel> bar <!here>",
+ Short: true,
+ },
+ },
+ },
+ {
+ Pretext: "<@" + userId + "> pretext",
+ Text: "<@" + userId + "> text",
+ Title: "<@" + userId + "> title",
+ Fields: []*model.SlackAttachmentField{
+ {
+ Title: "foo",
+ Value: "<@" + userId + "> bar",
+ Short: true,
+ },
+ },
+ },
+ }
+ attachments = th.App.ProcessSlackAttachments(attachments)
+ if len(attachments) != 2 || len(attachments[0].Fields) != 1 || len(attachments[1].Fields) != 1 {
+ t.Fail()
+ }
+
+ if attachments[0].Pretext != "@channel pretext @here" ||
+ attachments[0].Text != "@channel text @here" ||
+ attachments[0].Title != "@channel title @here" ||
+ attachments[0].Fields[0].Value != "@channel bar @here" {
+ t.Fail()
+ }
+
+ if attachments[1].Pretext != "@"+username+" pretext" ||
+ attachments[1].Text != "@"+username+" text" ||
+ attachments[1].Title != "@"+username+" title" ||
+ attachments[1].Fields[0].Value != "@"+username+" bar" {
+ t.Fail()
+ }
+}