1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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()
}
}
|