This repository has been archived by the owner on May 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
/
plugin_test.go
324 lines (306 loc) · 6.53 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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
package main
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
)
// commits is a list of commits of different types (push, pull request, tag)
// to help us verify that this clone plugin can handle multiple commit types.
var commits = []struct {
path string
clone string
event string
branch string
commit string
ref string
file string
data string
recursive bool
}{
// first commit
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "push",
branch: "master",
commit: "553c2077f0edc3d5dc5d17262f6aa498e69d6f8e",
ref: "refs/heads/master",
file: "README",
data: "Hello World!",
},
// head commit
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "push",
branch: "master",
commit: "7fd1a60b01f91b314f59955a4e4d4e80d8edf11d",
ref: "refs/heads/master",
file: "README",
data: "Hello World!\n",
},
// pull request commit
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "pull_request",
branch: "master",
commit: "553c2077f0edc3d5dc5d17262f6aa498e69d6f8e",
ref: "refs/pull/208/merge",
file: "README",
data: "Goodbye World!\n",
},
// branch
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "push",
branch: "test",
commit: "b3cbd5bbd7e81436d2eee04537ea2b4c0cad4cdf",
ref: "refs/heads/test",
file: "CONTRIBUTING.md",
data: "## Contributing\n",
},
// tags
{
path: "github/mime-types",
clone: "https://github.com/github/mime-types.git",
event: "tag",
branch: "master",
commit: "553c2077f0edc3d5dc5d17262f6aa498e69d6f8e",
ref: "refs/tags/v1.17",
file: ".gitignore",
data: "*.swp\n*~\n.rake_tasks~\nhtml\ndoc\npkg\npublish\ncoverage\n",
},
// submodules
{
path: "msteinert/drone-git-test-submodule",
clone: "https://github.com/msteinert/drone-git-test-submodule.git",
event: "push",
branch: "master",
commit: "072ae3ddb6883c8db653f8d4432b07c035b93753",
ref: "refs/heads/master",
file: "Hello-World/README",
data: "Hello World!\n",
recursive: true,
},
}
// TestClone tests the ability to clone a specific commit into
// a fresh, empty directory every time.
func TestClone(t *testing.T) {
for _, c := range commits {
dir := setup()
defer teardown(dir)
plugin := Plugin{
Repo: Repo{
Clone: c.clone,
},
Build: Build{
Path: filepath.Join(dir, c.path),
Commit: c.commit,
Event: c.event,
Ref: c.ref,
},
Config: Config{
Recursive: c.recursive,
},
}
if err := plugin.Exec(); err != nil {
t.Errorf("Expected successful clone. Got error. %s.", err)
}
data := readFile(plugin.Build.Path, c.file)
if data != c.data {
t.Errorf("Expected %s to contain [%s]. Got [%s].", c.file, c.data, data)
}
}
}
// TestCloneNonEmpty tests the ability to clone a specific commit into
// a non-empty directory. This is useful if the git workspace is cached
// and re-stored for every build.
func TestCloneNonEmpty(t *testing.T) {
dir := setup()
defer teardown(dir)
for _, c := range commits {
plugin := Plugin{
Repo: Repo{
Clone: c.clone,
},
Build: Build{
Path: filepath.Join(dir, c.path),
Commit: c.commit,
Event: c.event,
Ref: c.ref,
},
Config: Config{
Recursive: c.recursive,
},
}
if err := plugin.Exec(); err != nil {
t.Errorf("Expected successful clone. Got error. %s.", err)
}
data := readFile(plugin.Build.Path, c.file)
if data != c.data {
t.Errorf("Expected %s to contain [%s]. Got [%s].", c.file, c.data, data)
break
}
}
}
// TestFetch tests if the arguments to `git fetch` are constructed properly.
func TestFetch(t *testing.T) {
testdata := []struct {
ref string
tags bool
depth int
exp []string
}{
{
"refs/heads/master",
false,
0,
[]string{
"git",
"fetch",
"--no-tags",
"origin",
"+refs/heads/master:",
},
},
{
"refs/heads/master",
false,
50,
[]string{
"git",
"fetch",
"--no-tags",
"--depth=50",
"origin",
"+refs/heads/master:",
},
},
{
"refs/heads/master",
true,
100,
[]string{
"git",
"fetch",
"--tags",
"--depth=100",
"origin",
"+refs/heads/master:",
},
},
}
for _, td := range testdata {
c := fetch(td.ref, td.tags, td.depth)
if len(c.Args) != len(td.exp) {
t.Errorf("Expected: %s, got %s", td.exp, c.Args)
}
for i := range c.Args {
if c.Args[i] != td.exp[i] {
t.Errorf("Expected: %s, got %s", td.exp, c.Args)
}
}
}
}
// TestUpdateSubmodules tests if the arguments to `git submodule update`
// are constructed properly.
func TestUpdateSubmodules(t *testing.T) {
testdata := []struct {
depth int
exp []string
}{
{
50,
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
},
},
{
100,
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
},
},
}
for _, td := range testdata {
c := updateSubmodules(false)
if len(c.Args) != len(td.exp) {
t.Errorf("Expected: %s, got %s", td.exp, c.Args)
}
for i := range c.Args {
if c.Args[i] != td.exp[i] {
t.Errorf("Expected: %s, got %s", td.exp, c.Args)
}
}
}
}
// TestUpdateSubmodules tests if the arguments to `git submodule update`
// are constructed properly.
func TestUpdateSubmodulesRemote(t *testing.T) {
testdata := []struct {
depth int
exp []string
}{
{
50,
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
"--remote",
},
},
{
100,
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
"--remote",
},
},
}
for _, td := range testdata {
c := updateSubmodules(true)
if len(c.Args) != len(td.exp) {
t.Errorf("Expected: %s, got %s", td.exp, c.Args)
}
for i := range c.Args {
if c.Args[i] != td.exp[i] {
t.Errorf("Expected: %s, got %s", td.exp, c.Args)
}
}
}
}
// helper function that will setup a temporary workspace.
// to which we can clone the repositroy
func setup() string {
dir, _ := ioutil.TempDir("/tmp", "drone_git_test_")
os.Mkdir(dir, 0777)
return dir
}
// helper function to delete the temporary workspace.
func teardown(dir string) {
os.RemoveAll(dir)
}
// helper function to read a file in the temporary worskapce.
func readFile(dir, file string) string {
filename := filepath.Join(dir, file)
data, _ := ioutil.ReadFile(filename)
return string(data)
}