forked from drone-plugins/drone-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin_test.go
187 lines (158 loc) · 4.13 KB
/
plugin_test.go
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package main
import (
"io"
"net/http"
"net/http/httptest"
"testing"
"gotest.tools/assert"
)
func TestExec(t *testing.T) {
plugin := Plugin{
Repo: getTestRepo(),
Build: getTestBuild(),
Job: getTestJob(),
Config: getTestConfig(),
}
handler := func(w http.ResponseWriter, r *http.Request) {
out, _ := io.ReadAll(r.Body)
got := string(out)
want := `{"attachments":[{"color":"good","fallback":"Message Template Fallback:\nInitial commit\nmaster\nsuccess","text":"Message Template:\nInitial commit\n\nMessage body\nInitial commit\nMessage body","mrkdwn_in":["text","fallback"]}]}`
assert.Equal(t, got, want)
}
server := httptest.NewServer(http.HandlerFunc(handler))
defer server.Close()
plugin.Config.Webhook = server.URL
_ = plugin.Exec()
}
func TestNewCommitMessage(t *testing.T) {
testCases := map[string]struct {
Msg string
Expect Message
}{
"Empty Message": {
Msg: "",
Expect: Message{},
},
"Title Only": {
Msg: "title with space",
Expect: Message{
msg: "title with space",
Title: "title with space",
Body: "",
},
},
"Title and Body": {
Msg: "Title with space\nBody with space",
Expect: Message{
msg: "Title with space\nBody with space",
Title: "Title with space",
Body: "Body with space",
},
},
"Empty Second Line": {
Msg: "Title with space\n\nBody with space",
Expect: Message{
msg: "Title with space\n\nBody with space",
Title: "Title with space",
Body: "Body with space",
},
},
}
for name, testCase := range testCases {
assert.Equal(t, testCase.Expect, newCommitMessage(testCase.Msg), name)
}
}
func TestDefaultMessage(t *testing.T) {
repo := getTestRepo()
build := getTestBuild()
config := getTestConfig()
msg := message(repo, build, config)
expectedMessage := "*:white_check_mark: Push SUCCESS*\nRepo: `octocat/hello-world` (master)\nBuild #1 (7fd1a60b) by octocat\n<http://github.com/octocat/hello-world|Drone CI>"
assert.Equal(t, expectedMessage, msg)
}
func TestDefaultFallbackMessage(t *testing.T) {
repo := getTestRepo()
build := getTestBuild()
msg := fallback(repo, build)
expectedMessage := "success octocat/hello-world#7fd1a60b (master) by octocat"
assert.Equal(t, expectedMessage, msg)
}
func TestTemplateMessage(t *testing.T) {
plugin := getTestPlugin()
msg, err := templateMessage(plugin.Config.Template, plugin)
assert.NilError(t, err, "should create message by template without error")
expectedMessage := `Message Template:
Initial commit
Message body
Initial commit
Message body`
assert.Equal(t, expectedMessage, msg)
}
func TestTemplateFallbackMessage(t *testing.T) {
plugin := getTestPlugin()
msg, err := templateMessage(plugin.Config.Fallback, plugin)
assert.NilError(t, err, "should create message by template without error")
expectedMessage := `Message Template Fallback:
Initial commit
master
success`
assert.Equal(t, expectedMessage, msg)
}
func getTestPlugin() Plugin {
return Plugin{
Repo: getTestRepo(),
Build: getTestBuild(),
Config: getTestConfig(),
}
}
func getTestRepo() Repo {
return Repo{
Owner: "octocat",
Name: "hello-world",
}
}
func getTestBuild() Build {
author := Author{
Username: "octocat",
Name: "The Octocat",
Email: "[email protected]",
Avatar: "https://avatars0.githubusercontent.com/u/583231?s=460&v=4",
}
return Build{
Tag: "1.0.0",
Event: "push",
Number: 1,
Commit: "7fd1a60b01f91b314f59955a4e4d4e80d8edf11d",
Ref: "",
Branch: "master",
Author: author,
Pull: "",
Message: newCommitMessage("Initial commit\n\nMessage body"),
DeployTo: "",
Status: "success",
Link: "http://github.com/octocat/hello-world",
Started: 1546340400, // 2019-01-01 12:00:00
Created: 1546340400, // 2019-01-01 12:00:00
}
}
func getTestJob() Job {
return Job{
Started: 1546340400,
}
}
func getTestConfig() Config {
t := `Message Template:
{{build.message}}
{{build.message.title}}
{{build.message.body}}`
tf := `Message Template Fallback:
{{build.message.title}}
{{build.branch}}
{{build.status}}`
return Config{
Template: t,
Fallback: tf,
HostInternal: "",
HostExternal: "",
}
}