-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathutil_test.go
643 lines (605 loc) · 17.2 KB
/
util_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
/*
Copyright 2019 The Skaffold Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package config
import (
"fmt"
"path/filepath"
"strings"
"testing"
"time"
yaml "gopkg.in/yaml.v2"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/util"
"github.com/GoogleContainerTools/skaffold/testutil"
)
func TestReadConfig(t *testing.T) {
baseConfig := &GlobalConfig{
Global: &ContextConfig{
DefaultRepo: "test-repository",
},
ContextConfigs: []*ContextConfig{
{
Kubecontext: "test-context",
InsecureRegistries: []string{"bad.io", "worse.io"},
LocalCluster: util.BoolPtr(true),
DefaultRepo: "context-local-repository",
},
},
}
tests := []struct {
description string
filename string
expectedCfg *GlobalConfig
content *GlobalConfig
}{
{
description: "first read",
filename: "config",
content: baseConfig,
expectedCfg: baseConfig,
},
{
description: "second run uses cached result",
expectedCfg: baseConfig,
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
tmpDir := t.NewTempDir().
Chdir()
if test.content != nil {
c, _ := yaml.Marshal(*test.content)
tmpDir.Write(test.filename, string(c))
}
cfg, err := ReadConfigFile(test.filename)
t.CheckNoError(err)
t.CheckDeepEqual(test.expectedCfg, cfg)
})
}
}
func TestResolveConfigFile(t *testing.T) {
testutil.Run(t, "", func(t *testutil.T) {
actual, err := ResolveConfigFile("")
t.CheckNoError(err)
suffix := filepath.FromSlash(".skaffold/config")
if !strings.HasSuffix(actual, suffix) {
t.Errorf("expecting %q to have suffix %q", actual, suffix)
}
})
testutil.Run(t, "", func(t *testutil.T) {
cfg := t.TempFile("givenConfigurationFile", nil)
actual, err := ResolveConfigFile(cfg)
t.CheckNoError(err)
t.CheckDeepEqual(cfg, actual)
})
}
func Test_getConfigForKubeContextWithGlobalDefaults(t *testing.T) {
const someKubeContext = "this_is_a_context"
sampleConfig1 := &ContextConfig{
Kubecontext: someKubeContext,
InsecureRegistries: []string{"bad.io", "worse.io"},
LocalCluster: util.BoolPtr(true),
DefaultRepo: "my-private-registry",
}
sampleConfig2 := &ContextConfig{
Kubecontext: "another_context",
LocalCluster: util.BoolPtr(false),
DefaultRepo: "my-public-registry",
}
tests := []struct {
description string
kubecontext string
cfg *GlobalConfig
expectedConfig *ContextConfig
}{
{
description: "global config when kubecontext is empty",
cfg: &GlobalConfig{
Global: &ContextConfig{
InsecureRegistries: []string{"mediocre.io"},
LocalCluster: util.BoolPtr(true),
DefaultRepo: "my-private-registry",
},
ContextConfigs: []*ContextConfig{
{
Kubecontext: someKubeContext,
DefaultRepo: "value",
},
},
},
expectedConfig: &ContextConfig{
InsecureRegistries: []string{"mediocre.io"},
LocalCluster: util.BoolPtr(true),
DefaultRepo: "my-private-registry",
},
},
{
description: "no global config and no kubecontext",
cfg: &GlobalConfig{},
expectedConfig: &ContextConfig{},
},
{
description: "config for unknown kubecontext",
kubecontext: someKubeContext,
cfg: &GlobalConfig{},
expectedConfig: &ContextConfig{
Kubecontext: someKubeContext,
},
},
{
description: "config for kubecontext when globals are empty",
kubecontext: someKubeContext,
cfg: &GlobalConfig{
ContextConfigs: []*ContextConfig{sampleConfig2, sampleConfig1},
},
expectedConfig: sampleConfig1,
},
{
description: "config for kubecontext without merged values",
kubecontext: someKubeContext,
cfg: &GlobalConfig{
Global: sampleConfig2,
ContextConfigs: []*ContextConfig{sampleConfig1},
},
expectedConfig: sampleConfig1,
},
{
description: "config for kubecontext with merged values",
kubecontext: someKubeContext,
cfg: &GlobalConfig{
Global: sampleConfig2,
ContextConfigs: []*ContextConfig{
{
Kubecontext: someKubeContext,
},
},
},
expectedConfig: &ContextConfig{
Kubecontext: someKubeContext,
LocalCluster: util.BoolPtr(false),
DefaultRepo: "my-public-registry",
},
},
{
description: "config for unknown kubecontext with merged values",
kubecontext: someKubeContext,
cfg: &GlobalConfig{Global: sampleConfig2},
expectedConfig: &ContextConfig{
Kubecontext: someKubeContext,
LocalCluster: util.BoolPtr(false),
DefaultRepo: "my-public-registry",
},
},
{
description: "merge global and context-specific insecure-registries",
kubecontext: someKubeContext,
cfg: &GlobalConfig{
Global: &ContextConfig{
InsecureRegistries: []string{"good.io", "better.io"},
},
ContextConfigs: []*ContextConfig{{
Kubecontext: someKubeContext,
InsecureRegistries: []string{"bad.io", "worse.io"},
}},
},
expectedConfig: &ContextConfig{
Kubecontext: someKubeContext,
InsecureRegistries: []string{"bad.io", "worse.io", "good.io", "better.io"},
},
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
actual, err := getConfigForKubeContextWithGlobalDefaults(test.cfg, test.kubecontext)
t.CheckNoError(err)
t.CheckDeepEqual(test.expectedConfig, actual)
})
}
}
func TestIsUpdateCheckEnabled(t *testing.T) {
tests := []struct {
description string
cfg *ContextConfig
readErr error
expected bool
}{
{
description: "config update-check is nil returns true",
cfg: &ContextConfig{},
expected: true,
},
{
description: "config update-check is true",
cfg: &ContextConfig{UpdateCheck: util.BoolPtr(true)},
expected: true,
},
{
description: "config update-check is false",
cfg: &ContextConfig{UpdateCheck: util.BoolPtr(false)},
},
{
description: "config is nil",
cfg: nil,
expected: true,
},
{
description: "config has err",
cfg: nil,
readErr: fmt.Errorf("error while reading"),
expected: true,
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
t.Override(&GetConfigForCurrentKubectx, func(string) (*ContextConfig, error) { return test.cfg, test.readErr })
actual := IsUpdateCheckEnabled("dummyconfig")
t.CheckDeepEqual(test.expected, actual)
})
}
}
func TestIsDefaultLocal(t *testing.T) {
tests := []struct {
context string
expectedLocal bool
}{
{context: "kind-other", expectedLocal: true},
{context: "kind@kind", expectedLocal: true},
{context: "k3d-k3s-default", expectedLocal: true},
{context: "docker-for-desktop", expectedLocal: true},
{context: "minikube", expectedLocal: true},
{context: "docker-desktop", expectedLocal: true},
{context: "anything-else", expectedLocal: false},
{context: "kind@blah", expectedLocal: false},
{context: "other-kind", expectedLocal: false},
{context: "not-k3d", expectedLocal: false},
}
for _, test := range tests {
testutil.Run(t, "", func(t *testutil.T) {
local := isDefaultLocal(test.context)
t.CheckDeepEqual(test.expectedLocal, local)
})
}
}
func TestIsImageLoadingRequired(t *testing.T) {
tests := []struct {
context string
expectedImageLoadingRequired bool
}{
{context: "kind-other", expectedImageLoadingRequired: true},
{context: "kind@kind", expectedImageLoadingRequired: true},
{context: "k3d-k3s-default", expectedImageLoadingRequired: true},
{context: "docker-for-desktop", expectedImageLoadingRequired: false},
{context: "minikube", expectedImageLoadingRequired: false},
{context: "docker-desktop", expectedImageLoadingRequired: false},
{context: "anything-else", expectedImageLoadingRequired: false},
{context: "kind@blah", expectedImageLoadingRequired: false},
{context: "other-kind", expectedImageLoadingRequired: false},
{context: "not-k3d", expectedImageLoadingRequired: false},
}
for _, test := range tests {
testutil.Run(t, "", func(t *testutil.T) {
imageLoadingRequired := IsImageLoadingRequired(test.context)
t.CheckDeepEqual(test.expectedImageLoadingRequired, imageLoadingRequired)
})
}
}
func TestIsKindCluster(t *testing.T) {
tests := []struct {
context string
expectedIsKind bool
}{
{context: "kind-kind", expectedIsKind: true},
{context: "kind-other", expectedIsKind: true},
{context: "kind@kind", expectedIsKind: true},
{context: "other@kind", expectedIsKind: true},
{context: "docker-for-desktop", expectedIsKind: false},
{context: "not-kind", expectedIsKind: false},
}
for _, test := range tests {
testutil.Run(t, test.context, func(t *testutil.T) {
isKind := IsKindCluster(test.context)
t.CheckDeepEqual(test.expectedIsKind, isKind)
})
}
}
func TestKindClusterName(t *testing.T) {
tests := []struct {
kubeCluster string
expectedName string
}{
{kubeCluster: "kind", expectedName: "kind"},
{kubeCluster: "kind-kind", expectedName: "kind"},
{kubeCluster: "kind-other", expectedName: "other"},
{kubeCluster: "kind@kind", expectedName: "kind"},
{kubeCluster: "other@kind", expectedName: "other"},
}
for _, test := range tests {
testutil.Run(t, test.kubeCluster, func(t *testutil.T) {
kindCluster := KindClusterName(test.kubeCluster)
t.CheckDeepEqual(test.expectedName, kindCluster)
})
}
}
func TestIsK3dCluster(t *testing.T) {
tests := []struct {
context string
expectedIsK3d bool
}{
{context: "k3d-k3s-default", expectedIsK3d: true},
{context: "k3d-other", expectedIsK3d: true},
{context: "kind-kind", expectedIsK3d: false},
{context: "docker-for-desktop", expectedIsK3d: false},
{context: "not-k3d", expectedIsK3d: false},
}
for _, test := range tests {
testutil.Run(t, "", func(t *testutil.T) {
isK3d := IsK3dCluster(test.context)
t.CheckDeepEqual(test.expectedIsK3d, isK3d)
})
}
}
func TestK3dClusterName(t *testing.T) {
tests := []struct {
kubeCluster string
expectedName string
}{
{kubeCluster: "k3d-k3s-default", expectedName: "k3s-default"},
{kubeCluster: "k3d-other", expectedName: "other"},
}
for _, test := range tests {
testutil.Run(t, "", func(t *testutil.T) {
k3dCluster := K3dClusterName(test.kubeCluster)
t.CheckDeepEqual(test.expectedName, k3dCluster)
})
}
}
func TestIsSurveyPromptDisabled(t *testing.T) {
tests := []struct {
description string
cfg *ContextConfig
readErr error
expected bool
}{
{
description: "config disable-prompt is nil returns false",
cfg: &ContextConfig{},
},
{
description: "config disable-prompt is true",
cfg: &ContextConfig{Survey: &SurveyConfig{DisablePrompt: util.BoolPtr(true)}},
expected: true,
},
{
description: "config disable-prompt is false",
cfg: &ContextConfig{Survey: &SurveyConfig{DisablePrompt: util.BoolPtr(false)}},
},
{
description: "config is nil",
cfg: nil,
},
{
description: "config has err",
cfg: nil,
readErr: fmt.Errorf("error while reading"),
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
t.Override(&GetConfigForCurrentKubectx, func(string) (*ContextConfig, error) { return test.cfg, test.readErr })
_, actual := isSurveyPromptDisabled("dummyconfig")
t.CheckDeepEqual(test.expected, actual)
})
}
}
func TestLessThan(t *testing.T) {
tests := []struct {
description string
date string
duration time.Duration
expected bool
}{
{
description: "date is less than 10 days from 01/30/2019",
date: "2019-01-22T13:04:05Z",
duration: 10 * 24 * time.Hour,
expected: true,
},
{
description: "date is not less than 10 days from 01/30/2019",
date: "2019-01-19T13:04:05Z",
duration: 10 * 24 * time.Hour,
},
{
description: "date is not right format",
date: "01-19=20129",
expected: false,
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
t.Override(¤t, func() time.Time {
t, _ := time.Parse(time.RFC3339, "2019-01-30T12:04:05Z")
return t
})
t.CheckDeepEqual(test.expected, lessThan(test.date, test.duration))
})
}
}
func TestShouldDisplayPrompt(t *testing.T) {
tests := []struct {
description string
cfg *ContextConfig
expected bool
}{
{
description: "should not display prompt when prompt is disabled",
cfg: &ContextConfig{Survey: &SurveyConfig{DisablePrompt: util.BoolPtr(true)}},
},
{
description: "should not display prompt when last prompted is less than 2 weeks",
cfg: &ContextConfig{
Survey: &SurveyConfig{
DisablePrompt: util.BoolPtr(false),
LastPrompted: "2019-01-22T00:00:00Z",
},
},
},
{
description: "should not display prompt when last taken in less than 3 months",
cfg: &ContextConfig{
Survey: &SurveyConfig{
DisablePrompt: util.BoolPtr(false),
LastTaken: "2018-11-22T00:00:00Z",
},
},
},
{
description: "should display prompt when last prompted is before 2 weeks",
cfg: &ContextConfig{
Survey: &SurveyConfig{
DisablePrompt: util.BoolPtr(false),
LastPrompted: "2019-01-10T00:00:00Z",
},
},
expected: true,
},
{
description: "should display prompt when last taken is before than 3 months ago",
cfg: &ContextConfig{
Survey: &SurveyConfig{
DisablePrompt: util.BoolPtr(false),
LastTaken: "2017-11-10T00:00:00Z",
},
},
expected: true,
},
{
description: "should not display prompt when last taken is recent than 3 months ago",
cfg: &ContextConfig{
Survey: &SurveyConfig{
DisablePrompt: util.BoolPtr(false),
LastTaken: "2019-01-10T00:00:00Z",
LastPrompted: "2019-01-10T00:00:00Z",
},
},
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
t.Override(&GetConfigForCurrentKubectx, func(string) (*ContextConfig, error) { return test.cfg, nil })
t.Override(¤t, func() time.Time {
t, _ := time.Parse(time.RFC3339, "2019-01-30T12:04:05Z")
return t
})
t.CheckDeepEqual(test.expected, ShouldDisplayPrompt("dummyconfig"))
})
}
}
func TestGetDefaultRepo(t *testing.T) {
tests := []struct {
description string
cfg *ContextConfig
cliValue *string
expectedRepo string
shouldErr bool
}{
{
description: "empty",
cfg: &ContextConfig{},
cliValue: nil,
expectedRepo: "",
},
{
description: "from cli",
cfg: &ContextConfig{},
cliValue: util.StringPtr("default/repo"),
expectedRepo: "default/repo",
},
{
description: "from global config",
cfg: &ContextConfig{DefaultRepo: "global/repo"},
cliValue: nil,
expectedRepo: "global/repo",
},
{
description: "cancel global config with cli",
cfg: &ContextConfig{DefaultRepo: "global/repo"},
cliValue: util.StringPtr(""),
expectedRepo: "",
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
t.Override(&GetConfigForCurrentKubectx, func(string) (*ContextConfig, error) { return test.cfg, nil })
defaultRepo, err := GetDefaultRepo("config", test.cliValue)
t.CheckNoError(err)
t.CheckDeepEqual(test.expectedRepo, defaultRepo)
})
}
}
func TestUpdateGlobalSurveyTaken(t *testing.T) {
tests := []struct {
description string
cfg string
expectedCfg *GlobalConfig
}{
{
description: "update global context when context is empty",
expectedCfg: &GlobalConfig{
Global: &ContextConfig{Survey: &SurveyConfig{}},
ContextConfigs: []*ContextConfig{},
},
},
{
description: "update global context when survey config is not nil",
cfg: `
global:
survey:
last-prompted: "some date"
kubeContexts: []`,
expectedCfg: &GlobalConfig{
Global: &ContextConfig{Survey: &SurveyConfig{LastPrompted: "some date"}},
ContextConfigs: []*ContextConfig{},
},
},
{
description: "update global context when survey config last taken is in past",
cfg: `
global:
survey:
last-taken: "some date in past"
kubeContexts: []`,
expectedCfg: &GlobalConfig{
Global: &ContextConfig{Survey: &SurveyConfig{}},
ContextConfigs: []*ContextConfig{},
},
},
}
for _, test := range tests {
testutil.Run(t, test.description, func(t *testutil.T) {
cfg := t.TempFile("config", []byte(test.cfg))
testTime := time.Now()
t.Override(&ReadConfigFile, ReadConfigFileNoCache)
t.Override(¤t, func() time.Time {
return testTime
})
// update the time
err := UpdateGlobalSurveyTaken(cfg)
t.CheckNoError(err)
actualConfig, cfgErr := ReadConfigFile(cfg)
t.CheckNoError(cfgErr)
// update time in expected cfg.
test.expectedCfg.Global.Survey.LastTaken = testTime.Format(time.RFC3339)
t.CheckDeepEqual(test.expectedCfg, actualConfig)
})
}
}