summaryrefslogtreecommitdiffstats
path: root/model/slack_attachment_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/slack_attachment_test.go')
-rw-r--r--model/slack_attachment_test.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/model/slack_attachment_test.go b/model/slack_attachment_test.go
new file mode 100644
index 000000000..ff4df888f
--- /dev/null
+++ b/model/slack_attachment_test.go
@@ -0,0 +1,38 @@
+package model
+
+import (
+ "testing"
+)
+
+func TestExpandAnnouncement(t *testing.T) {
+ if ExpandAnnouncement("<!channel> foo <!channel>") != "@channel foo @channel" {
+ t.Fail()
+ }
+}
+
+func TestSlackAnnouncementProcess(t *testing.T) {
+ attachments := SlackAttachments{
+ {
+ Pretext: "<!channel> pretext",
+ Text: "<!channel> text",
+ Title: "<!channel> title",
+ Fields: []*SlackAttachmentField{
+ {
+ Title: "foo",
+ Value: "<!channel> bar",
+ Short: true,
+ }, nil,
+ },
+ }, nil,
+ }
+ attachments.Process()
+ if len(attachments) != 1 || len(attachments[0].Fields) != 1 {
+ t.Fail()
+ }
+ if attachments[0].Pretext != "@channel pretext" ||
+ attachments[0].Text != "@channel text" ||
+ attachments[0].Title != "@channel title" ||
+ attachments[0].Fields[0].Value != "@channel bar" {
+ t.Fail()
+ }
+}