-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathnetwork_test.go
765 lines (730 loc) · 22.5 KB
/
network_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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
//go:build !integration
package common
import (
"encoding/json"
"fmt"
"strconv"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestCacheCheckPolicy(t *testing.T) {
for num, tc := range []struct {
object CachePolicy
subject CachePolicy
expected bool
expectErr bool
description string
}{
{CachePolicyPullPush, CachePolicyPull, true, false, "pull-push allows pull"},
{CachePolicyPullPush, CachePolicyPush, true, false, "pull-push allows push"},
{CachePolicyUndefined, CachePolicyPull, true, false, "undefined allows pull"},
{CachePolicyUndefined, CachePolicyPush, true, false, "undefined allows push"},
{CachePolicyPull, CachePolicyPull, true, false, "pull allows pull"},
{CachePolicyPull, CachePolicyPush, false, false, "pull forbids push"},
{CachePolicyPush, CachePolicyPull, false, false, "push forbids pull"},
{CachePolicyPush, CachePolicyPush, true, false, "push allows push"},
{"unknown", CachePolicyPull, false, true, "unknown raises error on pull"},
{"unknown", CachePolicyPush, false, true, "unknown raises error on push"},
} {
cache := Cache{Policy: tc.object}
result, err := cache.CheckPolicy(tc.subject)
if tc.expectErr {
assert.Errorf(t, err, "case %d: %s", num, tc.description)
} else {
assert.NoErrorf(t, err, "case %d: %s", num, tc.description)
}
assert.Equal(t, tc.expected, result, "case %d: %s", num, tc.description)
}
}
func TestShouldCache(t *testing.T) {
for _, params := range []struct {
jobSuccess bool
when CacheWhen
expectedShouldCache bool
}{
{true, CacheWhenOnSuccess, true},
{true, CacheWhenAlways, true},
{true, CacheWhenOnFailure, false},
{false, CacheWhenOnSuccess, false},
{false, CacheWhenAlways, true},
{false, CacheWhenOnFailure, true},
} {
tn := "jobSuccess=" + strconv.FormatBool(params.jobSuccess) + ",when=" + string(params.when)
t.Run(tn, func(t *testing.T) {
expected := params.expectedShouldCache
actual := params.when.ShouldCache(params.jobSuccess)
assert.Equal(
t,
actual,
expected,
"Value returned from ShouldCache was not as expected",
)
})
}
}
func TestSecrets_expandVariables(t *testing.T) {
testServerURL := "server-url"
testNamespace := "custom-namespace"
testAuthName := "auth-name"
testAuthPath := "auth-path"
testAuthJWT := "auth-jwt"
testAuthRole := "auth-role"
testAuthUnknown := "auth-unknown"
testEngineName := "engine-name"
testEnginePath := "engine-path"
testPath := "secret-path"
testField := "secret-field"
variables := JobVariables{
{Key: "CI_VAULT_SERVER_URL", Value: testServerURL},
{Key: "CI_VAULT_NAMESPACE", Value: testNamespace},
{Key: "CI_VAULT_AUTH_NAME", Value: testAuthName},
{Key: "CI_VAULT_AUTH_PATH", Value: testAuthPath},
{Key: "CI_VAULT_AUTH_JWT", Value: testAuthJWT},
{Key: "CI_VAULT_AUTH_ROLE", Value: testAuthRole},
{Key: "CI_VAULT_AUTH_UNKNOWN_DATA", Value: testAuthUnknown},
{Key: "CI_VAULT_ENGINE_NAME", Value: testEngineName},
{Key: "CI_VAULT_ENGINE_PATH", Value: testEnginePath},
{Key: "CI_VAULT_PATH", Value: testPath},
{Key: "CI_VAULT_FIELD", Value: testField},
}
assertValue := func(t *testing.T, prefix string, variableValue string, testedValue interface{}) {
assert.Equal(
t,
fmt.Sprintf("%s %s", prefix, variableValue),
testedValue,
)
}
tests := map[string]struct {
secrets Secrets
assertSecrets func(t *testing.T, secrets Secrets)
}{
"no secrets defined": {
secrets: nil,
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Nil(t, secrets)
},
},
"nil vault secret": {
secrets: Secrets{
"VAULT": Secret{
Vault: nil,
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Nil(t, secrets["VAULT"].Vault)
},
},
"vault missing data": {
secrets: Secrets{
"VAULT": Secret{
Vault: &VaultSecret{},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.NotNil(t, secrets["VAULT"].Vault)
},
},
"vault missing jwt data": {
secrets: Secrets{
"VAULT": Secret{
Vault: &VaultSecret{
Server: VaultServer{
Auth: VaultAuth{
Data: map[string]interface{}{
"role": testAuthRole,
},
},
},
},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
require.NotNil(t, secrets["VAULT"].Vault)
assert.Equal(t, testAuthRole, secrets["VAULT"].Vault.Server.Auth.Data["role"])
},
},
"vault secret defined": {
secrets: Secrets{
"VAULT": Secret{
Vault: &VaultSecret{
Server: VaultServer{
URL: "url ${CI_VAULT_SERVER_URL}",
Namespace: "namespace ${CI_VAULT_NAMESPACE}",
Auth: VaultAuth{
Name: "name ${CI_VAULT_AUTH_NAME}",
Path: "path ${CI_VAULT_AUTH_PATH}",
Data: map[string]interface{}{
"jwt": "jwt ${CI_VAULT_AUTH_JWT}",
"role": "role ${CI_VAULT_AUTH_ROLE}",
"unknown": "unknown ${CI_VAULT_AUTH_UNKNOWN_DATA}",
},
},
},
Engine: VaultEngine{
Name: "name ${CI_VAULT_ENGINE_NAME}",
Path: "path ${CI_VAULT_ENGINE_PATH}",
},
Path: "path ${CI_VAULT_PATH}",
Field: "field ${CI_VAULT_FIELD}",
},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
require.NotNil(t, secrets["VAULT"].Vault)
assertValue(t, "url", testServerURL, secrets["VAULT"].Vault.Server.URL)
assertValue(t, "namespace", testNamespace, secrets["VAULT"].Vault.Server.Namespace)
assertValue(t, "name", testAuthName, secrets["VAULT"].Vault.Server.Auth.Name)
assertValue(t, "path", testAuthPath, secrets["VAULT"].Vault.Server.Auth.Path)
require.NotNil(t, secrets["VAULT"].Vault.Server.Auth.Data["jwt"])
assertValue(t, "jwt", testAuthJWT, secrets["VAULT"].Vault.Server.Auth.Data["jwt"])
require.NotNil(t, secrets["VAULT"].Vault.Server.Auth.Data["role"])
assertValue(t, "role", testAuthRole, secrets["VAULT"].Vault.Server.Auth.Data["role"])
require.NotNil(t, secrets["VAULT"].Vault.Server.Auth.Data["unknown"])
assertValue(t, "unknown", testAuthUnknown, secrets["VAULT"].Vault.Server.Auth.Data["unknown"])
assertValue(t, "name", testEngineName, secrets["VAULT"].Vault.Engine.Name)
assertValue(t, "path", testEnginePath, secrets["VAULT"].Vault.Engine.Path)
assertValue(t, "path", testPath, secrets["VAULT"].Vault.Path)
assertValue(t, "field", testField, secrets["VAULT"].Vault.Field)
},
},
}
for tn, tt := range tests {
t.Run(tn, func(t *testing.T) {
assert.NotPanics(t, func() {
tt.secrets.expandVariables(variables)
tt.assertSecrets(t, tt.secrets)
})
})
}
}
func TestGCPSecretManagerSecrets_expandVariables(t *testing.T) {
secretName := "my-secret-1234"
secretVersion := "version-999"
projectNumber := "8888"
poolId := "my-pool-123"
providerId := "my-provider-123"
jwt := "my-jwt"
variables := JobVariables{
{Key: "NAME", Value: secretName},
{Key: "VERSION", Value: secretVersion},
{Key: "PROJECT_NUMBER", Value: projectNumber},
{Key: "POOL_ID", Value: poolId},
{Key: "PROVIDER_ID", Value: providerId},
{Key: "JWT", Value: jwt},
}
tests := map[string]struct {
secrets Secrets
assertSecrets func(t *testing.T, secrets Secrets)
}{
"no secrets defined": {
secrets: nil,
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Nil(t, secrets)
},
},
"empty data": {
secrets: Secrets{
"VAULT": Secret{
GCPSecretManager: &GCPSecretManagerSecret{},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Equal(t, &GCPSecretManagerSecret{}, secrets["VAULT"].GCPSecretManager)
},
},
"without expansion": {
secrets: Secrets{
"VAULT": Secret{
GCPSecretManager: &GCPSecretManagerSecret{
Name: "my-secret",
Version: "latest",
Server: GCPSecretManagerServer{
ProjectNumber: "1234",
WorkloadIdentityFederationPoolId: "pool-id",
WorkloadIdentityFederationProviderID: "provider-id",
JWT: "jwt",
},
},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Equal(t, "my-secret", secrets["VAULT"].GCPSecretManager.Name)
assert.Equal(t, "latest", secrets["VAULT"].GCPSecretManager.Version)
assert.Equal(t, "1234", secrets["VAULT"].GCPSecretManager.Server.ProjectNumber)
assert.Equal(t, "pool-id", secrets["VAULT"].GCPSecretManager.Server.WorkloadIdentityFederationPoolId)
assert.Equal(t, "provider-id", secrets["VAULT"].GCPSecretManager.Server.WorkloadIdentityFederationProviderID)
assert.Equal(t, "jwt", secrets["VAULT"].GCPSecretManager.Server.JWT)
},
},
"with expansion": {
secrets: Secrets{
"VAULT": Secret{
GCPSecretManager: &GCPSecretManagerSecret{
Name: "$NAME",
Version: "$VERSION",
Server: GCPSecretManagerServer{
ProjectNumber: "$PROJECT_NUMBER",
WorkloadIdentityFederationPoolId: "$POOL_ID",
WorkloadIdentityFederationProviderID: "$PROVIDER_ID",
JWT: "$JWT",
},
},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Equal(t, secretName, secrets["VAULT"].GCPSecretManager.Name)
assert.Equal(t, secretVersion, secrets["VAULT"].GCPSecretManager.Version)
assert.Equal(t, projectNumber, secrets["VAULT"].GCPSecretManager.Server.ProjectNumber)
assert.Equal(t, poolId, secrets["VAULT"].GCPSecretManager.Server.WorkloadIdentityFederationPoolId)
assert.Equal(t, providerId, secrets["VAULT"].GCPSecretManager.Server.WorkloadIdentityFederationProviderID)
assert.Equal(t, jwt, secrets["VAULT"].GCPSecretManager.Server.JWT)
},
},
}
for tn, tt := range tests {
t.Run(tn, func(t *testing.T) {
assert.NotPanics(t, func() {
tt.secrets.expandVariables(variables)
tt.assertSecrets(t, tt.secrets)
})
})
}
}
func TestAzureKeyVaultSecrets_expandVariables(t *testing.T) {
testName := "key-name"
testVersion := "key-version"
testAuthJWT := "auth-jwt"
variables := JobVariables{
{Key: "CI_AZURE_KEY_VAULT_KEY_NAME", Value: testName},
{Key: "CI_AZURE_KEY_VAULT_KEY_VERSION", Value: testVersion},
{Key: "CI_AZURE_KEY_VAULT_AUTH_JWT", Value: testAuthJWT},
}
assertValue := func(t *testing.T, prefix string, variableValue string, testedValue interface{}) {
assert.Equal(
t,
fmt.Sprintf("%s %s", prefix, variableValue),
testedValue,
)
}
tests := map[string]struct {
secrets Secrets
assertSecrets func(t *testing.T, secrets Secrets)
}{
"no secrets defined": {
secrets: nil,
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Nil(t, secrets)
},
},
"nil vault secret": {
secrets: Secrets{
"VAULT": Secret{
AzureKeyVault: nil,
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.Nil(t, secrets["VAULT"].Vault)
},
},
"vault missing data": {
secrets: Secrets{
"VAULT": Secret{
AzureKeyVault: &AzureKeyVaultSecret{},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
assert.NotNil(t, secrets["VAULT"].AzureKeyVault)
},
},
"vault missing jwt data": {
secrets: Secrets{
"VAULT": Secret{
AzureKeyVault: &AzureKeyVaultSecret{
Name: testName,
Version: testVersion,
Server: AzureKeyVaultServer{
ClientID: "test_client_id",
TenantID: "test_tenant_id",
URL: "test_url",
},
},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
require.NotNil(t, secrets["VAULT"].AzureKeyVault)
assert.Equal(t, testName, secrets["VAULT"].AzureKeyVault.Name)
assert.Equal(t, testVersion, secrets["VAULT"].AzureKeyVault.Version)
},
},
"vault secret defined": {
secrets: Secrets{
"VAULT": Secret{
AzureKeyVault: &AzureKeyVaultSecret{
Name: "name ${CI_AZURE_KEY_VAULT_KEY_NAME}",
Version: "version ${CI_AZURE_KEY_VAULT_KEY_VERSION}",
Server: AzureKeyVaultServer{
ClientID: "client_id",
TenantID: "tenant_id",
JWT: "jwt ${CI_AZURE_KEY_VAULT_AUTH_JWT}",
URL: "url",
},
},
},
},
assertSecrets: func(t *testing.T, secrets Secrets) {
require.NotNil(t, secrets["VAULT"].AzureKeyVault)
assertValue(t, "name", testName, secrets["VAULT"].AzureKeyVault.Name)
assertValue(t, "version", testVersion, secrets["VAULT"].AzureKeyVault.Version)
assertValue(t, "jwt", testAuthJWT, secrets["VAULT"].AzureKeyVault.Server.JWT)
},
},
}
for tn, tt := range tests {
t.Run(tn, func(t *testing.T) {
assert.NotPanics(t, func() {
tt.secrets.expandVariables(variables)
tt.assertSecrets(t, tt.secrets)
})
})
}
}
func TestJobResponse_JobURL(t *testing.T) {
jobID := int64(1)
testCases := map[string]string{
"http://user:pass@gitlab.example.com/my-namespace/my-project.git": "http://gitlab.example.com/my-namespace/my-project/-/jobs/1",
"http://user:pass@gitlab.example.com/my-namespace/my-project": "http://gitlab.example.com/my-namespace/my-project/-/jobs/1",
"http://user:pass@gitlab.example.com/my-namespace/my.git.project.git": "http://gitlab.example.com/my-namespace/my.git.project/-/jobs/1",
"http://user:pass@gitlab.example.com/my-namespace/my.git.project": "http://gitlab.example.com/my-namespace/my.git.project/-/jobs/1",
}
for repoURL, expectedURL := range testCases {
job := JobResponse{
ID: jobID,
GitInfo: GitInfo{
RepoURL: repoURL,
},
}
assert.Equal(t, expectedURL, job.JobURL())
}
}
func Test_Image_ExecutorOptions_UnmarshalJSON(t *testing.T) {
tests := map[string]struct {
json string
expected func(*testing.T, Image)
expectedErrMsg []string
}{
"no executor_opts": {
json: `{"executor_opts":{}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, "", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
},
},
"docker, empty": {
json: `{"executor_opts":{"docker": {}}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, "", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
},
},
"docker, only user": {
json: `{"executor_opts":{"docker": {"user": "ubuntu"}}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, "", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "ubuntu", i.ExecutorOptions.Docker.User)
},
},
"docker, only platform": {
json: `{"executor_opts":{"docker": {"platform": "amd64"}}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, "amd64", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
},
},
"docker, all options": {
json: `{"executor_opts":{"docker": {"platform": "arm64", "user": "ubuntu"}}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, "arm64", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "ubuntu", i.ExecutorOptions.Docker.User)
},
},
"docker, invalid options": {
json: `{"executor_opts":{"docker": {"foobar": 1234}}}`,
expectedErrMsg: []string{`Unsupported "image" options [foobar] for "docker executor"; supported options are [platform user]`},
expected: func(t *testing.T, i Image) {
assert.Equal(t, "", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
},
},
"kubernetes, empty": {
json: `{"executor_opts":{"kubernetes": {}}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, int64(0), i.ExecutorOptions.Kubernetes.User)
},
},
"kubernetes, all options": {
json: `{"executor_opts":{"kubernetes": {"user": 1000}}}`,
expected: func(t *testing.T, i Image) {
assert.Equal(t, int64(1000), i.ExecutorOptions.Kubernetes.User)
},
},
"kubernetes, invalid options": {
json: `{"executor_opts":{"kubernetes": {"foobar": 1234}}}`,
expectedErrMsg: []string{`Unsupported "image" options [foobar] for "kubernetes executor"; supported options are [user]`},
expected: func(t *testing.T, i Image) {
assert.Equal(t, "", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
assert.Equal(t, int64(0), i.ExecutorOptions.Kubernetes.User)
},
},
"invalid executor": {
json: `{"executor_opts":{"k8s": {}}}`,
expectedErrMsg: []string{`Unsupported "image" options [k8s] for "executor_opts"; supported options are [docker kubernetes]`},
expected: func(t *testing.T, i Image) {
assert.Equal(t, "", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
assert.Equal(t, int64(0), i.ExecutorOptions.Kubernetes.User)
},
},
"docker, invalid executor, valid executor, invalid option": {
json: `{"executor_opts":{"k8s": {}, "docker": {"platform": "amd64", "foobar": 1234}}}`,
expectedErrMsg: []string{
`Unsupported "image" options [k8s] for "executor_opts"; supported options are [docker kubernetes]`,
`Unsupported "image" options [foobar] for "docker executor"; supported options are [platform user]`,
},
expected: func(t *testing.T, i Image) {
assert.Equal(t, "amd64", i.ExecutorOptions.Docker.Platform)
assert.Equal(t, "", i.ExecutorOptions.Docker.User)
},
},
"kubernetes, invalid executor, valid executor, invalid option": {
json: `{"executor_opts":{"dockers": {}, "kubernetes": {"user": 1000, "foobar": 1234}}}`,
expectedErrMsg: []string{
`Unsupported "image" options [dockers] for "executor_opts"; supported options are [docker kubernetes]`,
`Unsupported "image" options [foobar] for "kubernetes executor"; supported options are [user]`,
},
expected: func(t *testing.T, i Image) {
assert.Equal(t, int64(1000), i.ExecutorOptions.Kubernetes.User)
},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
got := Image{}
err := json.Unmarshal([]byte(tt.json), &got)
assert.NoError(t, err)
tt.expected(t, got)
if len(tt.expectedErrMsg) == 0 {
assert.Nil(t, got.UnsupportedOptions())
} else {
for i := range tt.expectedErrMsg {
assert.Contains(t, got.UnsupportedOptions().Error(), tt.expectedErrMsg[i])
}
}
})
}
}
func TestJobResponse_Run(t *testing.T) {
tests := map[string]struct {
json string
wantJSON string
wantErr bool
execNativeSteps bool
}{
"steps not requested": {
json: `{}`,
wantJSON: `{}`,
},
"steps not requested, image is unmodified": {
json: `{"Image":{"Name":"registry.gitlab.com/project/image:v1"}}`,
wantJSON: `{"Image":{"Name":"registry.gitlab.com/project/image:v1"}}`,
},
"steps are requested via shim, default image set": {
json: `{"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]"}`,
wantJSON: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"STEPS",
"Value":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Raw":true
}
],
"Steps":[
{
"Name":"script",
"Script":["step-runner ci"],
"Timeout":3600,
"When":"on_success"
}
],
"Image":{"Name":"registry.gitlab.com/gitlab-org/step-runner:v0"}
}`,
},
"steps are requested via shim, image unmodified": {
json: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Image":{"Name":"registry.gitlab.com/project/image:v1"}
}`,
wantJSON: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"STEPS",
"Value":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Raw":true
}
],
"Steps":[
{
"Name":"script",
"Script":["step-runner ci"],
"Timeout":3600,
"When":"on_success"
}
],
"Image":{"Name":"registry.gitlab.com/project/image:v1"}
}`,
},
"steps and script are requested": {
json: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Steps":[
{
"Name":"script",
"Script":["echo hello job"],
"Timeout":3600,
"When":"on_success"
}
]
}`,
wantErr: true,
},
"steps requested and STEP variable used": {
json: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"STEPS",
"Value":"not steps",
"Raw":true
}
]
}`,
wantErr: true,
},
"steps request via native exec, executor supports native exec": {
execNativeSteps: true,
json: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"FF_USE_NATIVE_STEPS",
"Value":"true"
}
]
}`,
wantJSON: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"FF_USE_NATIVE_STEPS",
"Value":"true"
}
],
"Steps":[
{
"Name":"run"
}
],
"Image":{"Name":"registry.gitlab.com/gitlab-org/step-runner:v0"}
}`,
},
"steps request via native exec, executor does not support native exec": {
execNativeSteps: false,
json: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"FF_USE_NATIVE_STEPS",
"Value":"true"
}
]
}`,
wantJSON: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"FF_USE_NATIVE_STEPS",
"Value":"true"
},
{
"Key":"STEPS",
"Value":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Raw":true
}
],
"Steps":[
{
"Name":"script",
"Script":["step-runner ci"],
"Timeout":3600,
"When":"on_success"
}
],
"Image":{"Name":"registry.gitlab.com/gitlab-org/step-runner:v0"}
}`,
},
"steps are requested via shim, executor supports native exec": {
execNativeSteps: true,
json: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]"
}`,
wantJSON: `
{
"Run":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Variables":[
{
"Key":"STEPS",
"Value":"[{\"Name:\":\"hello\",\"Script\":\"echo hello world\"}]",
"Raw":true
}
],
"Steps":[
{
"Name":"script",
"Script":["step-runner ci"],
"Timeout":3600,
"When":"on_success"
}
],
"Image":{"Name":"registry.gitlab.com/gitlab-org/step-runner:v0"}
}`,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
jobResponse := &JobResponse{}
require.NoError(t, json.Unmarshal([]byte(tt.json), &jobResponse))
err := jobResponse.ValidateStepsJobRequest(tt.execNativeSteps)
if tt.wantErr {
require.Error(t, err)
return
}
require.NoError(t, err)
want := &JobResponse{}
require.NoError(t, json.Unmarshal([]byte(tt.wantJSON), &want))
require.Equal(t, want, jobResponse)
})
}
}