forked from adikari/monorepo-diff-buildkite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline_test.go
277 lines (244 loc) · 5.82 KB
/
pipeline_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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package main
import (
"io/ioutil"
"os"
"testing"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)
func TestMain(m *testing.M) {
// disable logs in test
log.SetOutput(ioutil.Discard)
// set some env variables for using in tests
os.Setenv("BUILDKITE_COMMIT", "123")
os.Setenv("BUILDKITE_MESSAGE", "fix: temp file not correctly deleted")
os.Setenv("BUILDKITE_BRANCH", "go-rewrite")
os.Setenv("env3", "env-3")
os.Setenv("env4", "env-4")
os.Setenv("TEST_MODE", "true")
run := m.Run()
os.Exit(run)
}
func mockGeneratePipeline(steps []Step, plugin Plugin) (*os.File, error) {
mockFile, _ := os.Create("pipeline.txt")
defer mockFile.Close()
return mockFile, nil
}
func TestUploadPipelineCallsBuildkiteAgentCommand(t *testing.T) {
plugin := Plugin{Diff: "echo ./foo-service", Interpolation: true}
cmd, args, err := uploadPipeline(plugin, mockGeneratePipeline)
assert.Equal(t, "buildkite-agent", cmd)
assert.Equal(t, []string{"pipeline", "upload", "pipeline.txt"}, args)
assert.Equal(t, err, nil)
}
func TestUploadPipelineCallsBuildkiteAgentCommandWithInterpolation(t *testing.T) {
plugin := Plugin{Diff: "echo ./foo-service", Interpolation: false}
cmd, args, err := uploadPipeline(plugin, mockGeneratePipeline)
assert.Equal(t, "buildkite-agent", cmd)
assert.Equal(t, []string{"pipeline", "upload", "pipeline.txt", "--no-interpolation"}, args)
assert.Equal(t, err, nil)
}
func TestUploadPipelineCancelsIfThereIsNoDiffOutput(t *testing.T) {
plugin := Plugin{Diff: "echo"}
cmd, args, err := uploadPipeline(plugin, mockGeneratePipeline)
assert.Equal(t, "", cmd)
assert.Equal(t, []string{}, args)
assert.Equal(t, err, nil)
}
func TestDiff(t *testing.T) {
want := []string{
"services/foo/serverless.yml",
"services/bar/config.yml",
"ops/bar/config.yml",
"README.md",
}
got, err := diff(`echo services/foo/serverless.yml
services/bar/config.yml
ops/bar/config.yml
README.md`)
assert.NoError(t, err)
assert.Equal(t, want, got)
}
func TestPipelinesToTriggerGetsListOfPipelines(t *testing.T) {
want := []string{"service-1", "service-2", "service-4"}
watch := []WatchConfig{
{
Paths: []string{"watch-path-1"},
Step: Step{Trigger: "service-1"},
},
{
Paths: []string{"watch-path-2/", "watch-path-3/", "watch-path-4"},
Step: Step{Trigger: "service-2"},
},
{
Paths: []string{"watch-path-5"},
Step: Step{Trigger: "service-3"},
},
{
Paths: []string{"watch-path-2"},
Step: Step{Trigger: "service-4"},
},
}
changedFiles := []string{
"watch-path-1/text.txt",
"watch-path-2/.gitignore",
"watch-path-2/src/index.go",
"watch-path-4/test/index_test.go",
}
pipelines, err := stepsToTrigger(changedFiles, watch)
assert.NoError(t, err)
var got []string
for _, v := range pipelines {
got = append(got, v.Trigger)
}
assert.Equal(t, want, got)
}
func TestPipelinesStepsToTrigger(t *testing.T) {
testCases := map[string]struct {
ChangedFiles []string
WatchConfigs []WatchConfig
Expected []Step
}{
"service-1": {
ChangedFiles: []string{
"watch-path-1/text.txt",
"watch-path-2/.gitignore",
},
WatchConfigs: []WatchConfig{{
Paths: []string{"watch-path-1"},
Step: Step{Trigger: "service-1"},
}},
Expected: []Step{
{Trigger: "service-1"},
},
},
"service-1-2": {
ChangedFiles: []string{
"watch-path-1/text.txt",
"watch-path-2/.gitignore",
},
WatchConfigs: []WatchConfig{
{
Paths: []string{"watch-path-1"},
Step: Step{Trigger: "service-1"},
},
{
Paths: []string{"watch-path-2"},
Step: Step{Trigger: "service-2"},
},
},
Expected: []Step{
{Trigger: "service-1"},
{Trigger: "service-2"},
},
},
"extension wildcard": {
ChangedFiles: []string{
"text.txt",
".gitignore",
},
WatchConfigs: []WatchConfig{
{
Paths: []string{"*.txt"},
Step: Step{Trigger: "txt"},
},
},
Expected: []Step{
{Trigger: "txt"},
},
},
"extension wildcard in subdir": {
ChangedFiles: []string{
"docs/text.txt",
},
WatchConfigs: []WatchConfig{
{
Paths: []string{"docs/*.txt"},
Step: Step{Trigger: "txt"},
},
},
Expected: []Step{
{Trigger: "txt"},
},
},
"directory wildcard": {
ChangedFiles: []string{
"docs/text.txt",
},
WatchConfigs: []WatchConfig{
{
Paths: []string{"**/text.txt"},
Step: Step{Trigger: "txt"},
},
},
Expected: []Step{
{Trigger: "txt"},
},
},
"directory and extension wildcard": {
ChangedFiles: []string{
"package/other.txt",
},
WatchConfigs: []WatchConfig{
{
Paths: []string{"*/*.txt"},
Step: Step{Trigger: "txt"},
},
},
Expected: []Step{
{Trigger: "txt"},
},
},
"double directory and extension wildcard": {
ChangedFiles: []string{
"package/docs/other.txt",
},
WatchConfigs: []WatchConfig{
{
Paths: []string{"**/*.txt"},
Step: Step{Trigger: "txt"},
},
},
Expected: []Step{
{Trigger: "txt"},
},
},
}
for name, tc := range testCases {
t.Run(name, func(t *testing.T) {
steps, err := stepsToTrigger(tc.ChangedFiles, tc.WatchConfigs)
assert.NoError(t, err)
assert.Equal(t, tc.Expected, steps)
})
}
}
func TestGeneratePipeline(t *testing.T) {
steps := []Step{
{
Trigger: "foo-service-pipeline",
Build: Build{Message: "build message"},
},
}
want :=
`steps:
- trigger: foo-service-pipeline
build:
message: build message
- wait
- command: echo "hello world"
- command: cat ./file.txt`
plugin := Plugin{
Wait: true,
Hooks: []HookConfig{
{Command: "echo \"hello world\""},
{Command: "cat ./file.txt"},
},
}
pipeline, err := generatePipeline(steps, plugin)
defer os.Remove(pipeline.Name())
if err != nil {
assert.Equal(t, true, false, err.Error())
}
got, _ := ioutil.ReadFile(pipeline.Name())
assert.Equal(t, want, string(got))
}