-
Notifications
You must be signed in to change notification settings - Fork 25
/
plugin_test.go
479 lines (453 loc) · 9.82 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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package main
import (
"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
dataSize int64
recursive bool
lfs bool
}{
// first commit
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "push",
branch: "master",
commit: "553c2077f0edc3d5dc5d17262f6aa498e69d6f8e",
ref: "",
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: "",
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: "762941318ee16e59dabbacb1b4049eec22f0d303",
ref: "",
file: "README",
data: "Hello World!\n",
},
// branch
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "push",
branch: "test",
commit: "b3cbd5bbd7e81436d2eee04537ea2b4c0cad4cdf",
ref: "",
file: "CONTRIBUTING.md",
data: "## Contributing\n",
},
// tags
{
path: "github/mime-types",
clone: "https://github.com/github/mime-types.git",
event: "tag",
branch: "master",
commit: "bf68d60215a167c935bc5976b7d06a7ffb290926",
ref: "",
file: ".gitignore",
data: "*.swp\n*~\n.rake_tasks~\nhtml\ndoc\npkg\npublish\ncoverage\n",
},
// submodules
{
path: "test-assets/woodpecker-git-test-submodule",
clone: "https://github.com/test-assets/woodpecker-git-test-submodule.git",
event: "push",
branch: "main",
commit: "cc020eb6aaa601c13ca7b0d5db9d1ca694e7a003",
ref: "",
file: "Hello-World/README",
data: "Hello World!\n",
recursive: true,
},
// checkout with ref only
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "push",
// commit: "a11fb45a696bf1d696fc9ab2c733f8f123aa4cf5",
ref: "pull/2403/head",
file: "README",
data: "Hello World!\n\nsomething is changed!\n",
},
// checkout with short SHA!
{
path: "octocat/Hello-World",
clone: "https://github.com/octocat/Hello-World.git",
event: "pull_request",
branch: "test",
commit: "7629413",
ref: "",
file: "README",
data: "Hello World!\n",
},
// ### test lfs, please do not change order, otherwise TestCloneNonEmpty will fail ###
// checkout with lfs skip
{
path: "test-assets/woodpecker-git-test-lfs",
clone: "https://github.com/test-assets/woodpecker-git-test-lfs.git",
event: "push",
commit: "69d4dadb4c2899efb73c0095bb58a6454d133cef",
ref: "",
file: "4M.bin",
dataSize: 132,
},
// checkout with lfs
{
path: "test-assets/woodpecker-git-test-lfs",
clone: "https://github.com/test-assets/woodpecker-git-test-lfs.git",
event: "push",
commit: "69d4dadb4c2899efb73c0095bb58a6454d133cef",
ref: "",
file: "4M.bin",
dataSize: 4194304,
lfs: 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,
},
Pipeline: Pipeline{
Path: filepath.Join(dir, c.path),
Commit: c.commit,
Event: c.event,
Ref: c.ref,
},
Config: Config{
Recursive: c.recursive,
Lfs: c.lfs,
Home: "/tmp",
Branch: c.branch,
},
}
if err := plugin.Exec(); err != nil {
t.Errorf("Expected successful clone. Got error. %s.", err)
}
if c.data != "" {
data := readFile(plugin.Pipeline.Path, c.file)
if data != c.data {
t.Errorf("Expected %s to contain [%s]. Got [%s].", c.file, c.data, data)
}
}
if c.dataSize != 0 {
size := getFileSize(plugin.Pipeline.Path, c.file)
if size != c.dataSize {
t.Errorf("Expected %s size to be [%d]. Got [%d].", c.file, c.dataSize, size)
}
}
}
}
// 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 workflow.
func TestCloneNonEmpty(t *testing.T) {
dir := setup()
defer teardown(dir)
for _, c := range commits {
plugin := Plugin{
Repo: Repo{
Clone: c.clone,
},
Pipeline: Pipeline{
Path: filepath.Join(dir, c.path),
Commit: c.commit,
Event: c.event,
Ref: c.ref,
},
Config: Config{
Recursive: c.recursive,
Lfs: c.lfs,
Home: "/tmp",
Branch: c.branch,
},
}
if err := plugin.Exec(); err != nil {
t.Errorf("Expected successful clone. Got error. %s.", err)
}
if c.data != "" {
data := readFile(plugin.Pipeline.Path, c.file)
if data != c.data {
t.Errorf("Expected %s to contain [%s]. Got [%s].", c.file, c.data, data)
break
}
}
if c.dataSize != 0 {
size := getFileSize(plugin.Pipeline.Path, c.file)
if size != c.dataSize {
t.Errorf("Expected %s size to be [%d]. Got [%d].", c.file, c.dataSize, size)
}
}
}
}
// 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 {
partial bool
exp []string
}{
{
false,
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
},
},
{
true,
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
"--depth=1",
"--recommend-shallow",
},
},
}
for _, td := range testdata {
c := updateSubmodules(false, td.partial)
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)
}
}
}
}
func TestCustomCertUrl(t *testing.T) {
testdata := []struct {
exp []string
}{
{
[]string{
"git",
"config",
"--global",
"http.sslCAInfo",
customCertTmpPath,
},
},
}
for _, td := range testdata {
c := customCertHandler("http://example.com")
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)
}
}
}
}
func TestCustomCertFile(t *testing.T) {
testdata := []struct {
exp []string
}{
{
[]string{
"git",
"config",
"--global",
"http.sslCAInfo",
"/etc/ssl/my-cert.pem",
},
},
}
for _, td := range testdata {
c := customCertHandler("/etc/ssl/my-cert.pem")
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)
}
}
}
}
func TestSwitchBranch(t *testing.T) {
testdata := []struct {
exp []string
}{
{
[]string{
"git",
"switch",
"-q",
"test",
},
},
}
for _, td := range testdata {
c := switchBranch("test")
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 {
exp []string
}{
{
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
"--remote",
},
},
{
[]string{
"git",
"submodule",
"update",
"--init",
"--recursive",
"--remote",
},
},
}
for _, td := range testdata {
c := updateSubmodules(true, 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)
}
}
}
}
// helper function that will setup a temporary workspace.
// to which we can clone the repositroy
func setup() string {
dir, _ := os.MkdirTemp("/tmp", "plugin_git_test_")
os.Mkdir(dir, 0o777)
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, _ := os.ReadFile(filename)
return string(data)
}
func getFileSize(dir, file string) int64 {
filename := filepath.Join(dir, file)
fi, _ := os.Stat(filename)
return fi.Size()
}