-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_test.go
More file actions
818 lines (791 loc) · 19.2 KB
/
config_test.go
File metadata and controls
818 lines (791 loc) · 19.2 KB
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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
package app
import (
"log/slog"
"path/filepath"
"testing"
"github.com/google/go-tpm/tpm2"
"github.com/spf13/viper"
)
func TestValidateEvidence(t *testing.T) {
tests := []struct {
name string
cfg EvidenceConfig
wantErr bool
errMsg string
}{
{
name: "none enabled",
cfg: EvidenceConfig{},
wantErr: true,
errMsg: "at least one evidence type must be enabled",
},
{
name: "nitronsm only",
cfg: EvidenceConfig{NitroNSM: true},
wantErr: false,
},
{
name: "nitrotpm only",
cfg: EvidenceConfig{NitroTPM: true},
wantErr: false,
},
{
name: "sevsnp only",
cfg: EvidenceConfig{SEVSNP: true},
wantErr: false,
},
{
name: "tdx only",
cfg: EvidenceConfig{TDX: true},
wantErr: false,
},
{
name: "nitrotpm and sevsnp",
cfg: EvidenceConfig{NitroTPM: true, SEVSNP: true},
wantErr: false,
},
{
name: "nitronsm and nitrotpm",
cfg: EvidenceConfig{NitroNSM: true, NitroTPM: true},
wantErr: true,
errMsg: "nitronsm cannot be combined",
},
{
name: "nitronsm and sevsnp",
cfg: EvidenceConfig{NitroNSM: true, SEVSNP: true},
wantErr: true,
errMsg: "nitronsm cannot be combined",
},
{
name: "nitronsm and tdx",
cfg: EvidenceConfig{NitroNSM: true, TDX: true},
wantErr: true,
errMsg: "nitronsm cannot be combined",
},
{
name: "nitronsm with all others",
cfg: EvidenceConfig{NitroNSM: true, NitroTPM: true, SEVSNP: true, TDX: true},
wantErr: true,
errMsg: "nitronsm cannot be combined",
},
{
name: "tdx and nitrotpm",
cfg: EvidenceConfig{TDX: true, NitroTPM: true},
wantErr: true,
errMsg: "tdx cannot be combined",
},
{
name: "tdx and sevsnp",
cfg: EvidenceConfig{TDX: true, SEVSNP: true},
wantErr: true,
errMsg: "tdx cannot be combined",
},
{
name: "tdx and nitronsm",
cfg: EvidenceConfig{TDX: true, NitroNSM: true},
wantErr: true,
// NitroNSM check fires first in the code
errMsg: "nitronsm cannot be combined",
},
{
name: "sevsnp with vmpl set",
cfg: EvidenceConfig{SEVSNP: true, SEVSNPVMPL: 2},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateEvidence(tt.cfg)
if tt.wantErr {
if err == nil {
t.Fatal("expected error, got nil")
}
if tt.errMsg != "" && !contains(err.Error(), tt.errMsg) {
t.Fatalf("error %q does not contain %q", err.Error(), tt.errMsg)
}
} else {
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
}
})
}
}
func TestValidateEnvNames(t *testing.T) {
tests := []struct {
name string
names []string
wantErr bool
errMsg string
}{
{
name: "empty slice",
names: []string{},
wantErr: false,
},
{
name: "nil slice",
names: nil,
wantErr: false,
},
{
name: "single valid name",
names: []string{"HOME"},
wantErr: false,
},
{
name: "multiple valid names",
names: []string{"HOME", "PATH", "MY_VAR_123"},
wantErr: false,
},
{
name: "underscore prefix",
names: []string{"_PRIVATE"},
wantErr: false,
},
{
name: "single underscore",
names: []string{"_"},
wantErr: false,
},
{
name: "lowercase",
names: []string{"my_var"},
wantErr: false,
},
{
name: "mixed case",
names: []string{"My_Var_1"},
wantErr: false,
},
{
name: "starts with digit",
names: []string{"1BAD"},
wantErr: true,
errMsg: "invalid environment variable name",
},
{
name: "contains dash",
names: []string{"BAD-NAME"},
wantErr: true,
errMsg: "invalid environment variable name",
},
{
name: "contains dot",
names: []string{"BAD.NAME"},
wantErr: true,
errMsg: "invalid environment variable name",
},
{
name: "contains space",
names: []string{"BAD NAME"},
wantErr: true,
errMsg: "invalid environment variable name",
},
{
name: "empty string element",
names: []string{""},
wantErr: true,
errMsg: "invalid environment variable name",
},
{
name: "duplicate names",
names: []string{"HOME", "PATH", "HOME"},
wantErr: true,
errMsg: "duplicate",
},
{
name: "invalid after valid",
names: []string{"GOOD", "2BAD"},
wantErr: true,
errMsg: "invalid environment variable name",
},
{
name: "duplicate checked before validity",
names: []string{"A", "A"},
wantErr: true,
errMsg: "duplicate",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateEnvNames(tt.names)
if tt.wantErr {
if err == nil {
t.Fatal("expected error, got nil")
}
if tt.errMsg != "" && !contains(err.Error(), tt.errMsg) {
t.Fatalf("error %q does not contain %q", err.Error(), tt.errMsg)
}
} else {
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
}
})
}
}
func TestFindDuplicate(t *testing.T) {
tests := []struct {
name string
vals []string
want string
}{
{
name: "empty slice",
vals: []string{},
want: "",
},
{
name: "nil slice",
vals: nil,
want: "",
},
{
name: "no duplicates",
vals: []string{"a", "b", "c"},
want: "",
},
{
name: "single element",
vals: []string{"a"},
want: "",
},
{
name: "duplicate at end",
vals: []string{"a", "b", "a"},
want: "a",
},
{
name: "duplicate adjacent",
vals: []string{"x", "x"},
want: "x",
},
{
name: "first duplicate returned",
vals: []string{"a", "b", "c", "b", "a"},
want: "b",
},
{
name: "all same",
vals: []string{"z", "z", "z"},
want: "z",
},
{
name: "empty string duplicate",
vals: []string{"", ""},
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := findDuplicate(tt.vals)
if got != tt.want {
t.Fatalf("findDuplicate(%v) = %q, want %q", tt.vals, got, tt.want)
}
})
}
}
func TestParseTPMAlgorithm(t *testing.T) {
tests := []struct {
name string
input string
want tpm2.TPMAlgID
wantErr bool
errMsg string
}{
{
name: "sha1 lowercase",
input: "sha1",
want: tpm2.TPMAlgSHA1,
},
{
name: "sha1 uppercase",
input: "SHA1",
want: tpm2.TPMAlgSHA1,
},
{
name: "sha1 mixed case",
input: "Sha1",
want: tpm2.TPMAlgSHA1,
},
{
name: "sha256 lowercase",
input: "sha256",
want: tpm2.TPMAlgSHA256,
},
{
name: "sha256 uppercase",
input: "SHA256",
want: tpm2.TPMAlgSHA256,
},
{
name: "sha384 lowercase",
input: "sha384",
want: tpm2.TPMAlgSHA384,
},
{
name: "sha384 uppercase",
input: "SHA384",
want: tpm2.TPMAlgSHA384,
},
{
name: "sha512 lowercase",
input: "sha512",
want: tpm2.TPMAlgSHA512,
},
{
name: "sha512 uppercase",
input: "SHA512",
want: tpm2.TPMAlgSHA512,
},
{
name: "empty string",
input: "",
wantErr: true,
errMsg: "unsupported algorithm",
},
{
name: "unknown algorithm",
input: "md5",
wantErr: true,
errMsg: "unsupported algorithm",
},
{
name: "sha3-256 unsupported",
input: "sha3-256",
wantErr: true,
errMsg: "unsupported algorithm",
},
{
name: "numeric string",
input: "256",
wantErr: true,
errMsg: "unsupported algorithm",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := parseTPMAlgorithm(tt.input)
if tt.wantErr {
if err == nil {
t.Fatal("expected error, got nil")
}
if tt.errMsg != "" && !contains(err.Error(), tt.errMsg) {
t.Fatalf("error %q does not contain %q", err.Error(), tt.errMsg)
}
} else {
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if got != tt.want {
t.Fatalf("parseTPMAlgorithm(%q) = %v, want %v", tt.input, got, tt.want)
}
}
})
}
}
func TestParseLogLevel(t *testing.T) {
tests := []struct {
name string
input string
want slog.Level
}{
{name: "debug lowercase", input: "debug", want: slog.LevelDebug},
{name: "debug uppercase", input: "DEBUG", want: slog.LevelDebug},
{name: "debug mixed case", input: "Debug", want: slog.LevelDebug},
{name: "info lowercase", input: "info", want: slog.LevelInfo},
{name: "info uppercase", input: "INFO", want: slog.LevelInfo},
{name: "warn lowercase", input: "warn", want: slog.LevelWarn},
{name: "warn uppercase", input: "WARN", want: slog.LevelWarn},
{name: "warning lowercase", input: "warning", want: slog.LevelWarn},
{name: "warning uppercase", input: "WARNING", want: slog.LevelWarn},
{name: "error lowercase", input: "error", want: slog.LevelError},
{name: "error uppercase", input: "ERROR", want: slog.LevelError},
{name: "unknown defaults to info", input: "trace", want: slog.LevelInfo},
{name: "empty defaults to info", input: "", want: slog.LevelInfo},
{name: "gibberish defaults to info", input: "xyzzy", want: slog.LevelInfo},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := parseLogLevel(tt.input)
if got != tt.want {
t.Fatalf("parseLogLevel(%q) = %v, want %v", tt.input, got, tt.want)
}
})
}
}
func TestAbsPath(t *testing.T) {
tests := []struct {
name string
input string
check func(t *testing.T, result string)
}{
{
name: "empty returns empty",
input: "",
check: func(t *testing.T, result string) {
if result != "" {
t.Fatalf("absPath(%q) = %q, want %q", "", result, "")
}
},
},
{
name: "absolute path unchanged",
input: "/abs/path/to/file",
check: func(t *testing.T, result string) {
if result != "/abs/path/to/file" {
t.Fatalf("absPath(%q) = %q, want %q", "/abs/path/to/file", result, "/abs/path/to/file")
}
},
},
{
name: "relative path becomes absolute",
input: "relative/path",
check: func(t *testing.T, result string) {
if !filepath.IsAbs(result) {
t.Fatalf("absPath(%q) = %q, expected absolute path", "relative/path", result)
}
// The result should end with the relative path components
if !contains(result, "relative/path") {
t.Fatalf("absPath(%q) = %q, expected to contain %q", "relative/path", result, "relative/path")
}
},
},
{
name: "dot path becomes absolute",
input: ".",
check: func(t *testing.T, result string) {
if !filepath.IsAbs(result) {
t.Fatalf("absPath(%q) = %q, expected absolute path", ".", result)
}
},
},
{
name: "filename only becomes absolute",
input: "file.pem",
check: func(t *testing.T, result string) {
if !filepath.IsAbs(result) {
t.Fatalf("absPath(%q) = %q, expected absolute path", "file.pem", result)
}
if !contains(result, "file.pem") {
t.Fatalf("absPath(%q) = %q, expected to contain %q", "file.pem", result, "file.pem")
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := absPath(tt.input)
tt.check(t, result)
})
}
}
func TestParseDependencyEndpoints(t *testing.T) {
tests := []struct {
name string
input []string
wantLen int
wantErr string
}{
{
name: "empty list",
input: []string{},
wantLen: 0,
},
{
name: "nil list",
input: nil,
wantLen: 0,
},
{
name: "single http endpoint",
input: []string{"http://host1:8187/api/v1/attestation"},
wantLen: 1,
},
{
name: "single https endpoint",
input: []string{"https://host1:8187/api/v1/attestation"},
wantLen: 1,
},
{
name: "multiple valid endpoints",
input: []string{"http://host1:8187/attest", "https://host2:8187/attest"},
wantLen: 2,
},
{
name: "empty strings are skipped",
input: []string{"", "http://host1:8187/attest", ""},
wantLen: 1,
},
{
name: "host without port",
input: []string{"http://myhost/api/v1/attestation"},
wantLen: 1,
},
{
name: "host without path",
input: []string{"http://myhost"},
wantLen: 1,
},
{
name: "invalid scheme ftp",
input: []string{"ftp://host1:8187/attest"},
wantErr: "scheme must be http or https",
},
{
name: "no scheme",
input: []string{"host1:8187/attest"},
wantErr: "scheme must be http or https",
},
{
name: "missing host",
input: []string{"http:///path"},
wantErr: "missing host",
},
{
name: "duplicate endpoints",
input: []string{"http://host1:8187/attest", "http://host1:8187/attest"},
wantErr: "duplicate value",
},
{
name: "error on first invalid stops parsing",
input: []string{"http://valid:8187", "ftp://invalid:8187"},
wantErr: "scheme must be http or https",
},
{
name: "comma-separated single string from env var",
input: []string{"http://host1:8187/attest", "http://host2:8187/attest"},
wantLen: 2,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := parseDependencyEndpoints(tt.input)
if tt.wantErr != "" {
if err == nil {
t.Fatalf("expected error containing %q, got nil", tt.wantErr)
}
if !contains(err.Error(), tt.wantErr) {
t.Fatalf("error %q does not contain %q", err.Error(), tt.wantErr)
}
return
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if len(got) != tt.wantLen {
t.Errorf("got %d URLs, want %d", len(got), tt.wantLen)
}
})
}
}
func TestSplitCommaValues(t *testing.T) {
tests := []struct {
name string
raw []string
want []string
}{
{
name: "nil input",
raw: nil,
want: nil,
},
{
name: "empty input",
raw: []string{},
want: nil,
},
{
name: "single value no comma",
raw: []string{"abc"},
want: []string{"abc"},
},
{
name: "comma-separated in one element",
raw: []string{"a,b,c"},
want: []string{"a", "b", "c"},
},
{
name: "comma-separated with spaces",
raw: []string{"a , b , c"},
want: []string{"a", "b", "c"},
},
{
name: "trailing comma",
raw: []string{"a,b,"},
want: []string{"a", "b"},
},
{
name: "leading comma",
raw: []string{",a,b"},
want: []string{"a", "b"},
},
{
name: "multiple elements already split",
raw: []string{"a", "b", "c"},
want: []string{"a", "b", "c"},
},
{
name: "mixed single and comma-separated",
raw: []string{"a", "b,c", "d"},
want: []string{"a", "b", "c", "d"},
},
{
name: "empty strings filtered",
raw: []string{"", "a", ""},
want: []string{"a"},
},
{
name: "only commas",
raw: []string{",,,"},
want: nil,
},
{
name: "urls comma-separated",
raw: []string{"http://host1:8187/attest,http://host2:8187/attest"},
want: []string{"http://host1:8187/attest", "http://host2:8187/attest"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := splitCommaValues(tt.raw)
if len(got) != len(tt.want) {
t.Fatalf("splitCommaValues(%v) = %v (len %d), want %v (len %d)", tt.raw, got, len(got), tt.want, len(tt.want))
}
for i := range got {
if got[i] != tt.want[i] {
t.Errorf("splitCommaValues(%v)[%d] = %q, want %q", tt.raw, i, got[i], tt.want[i])
}
}
})
}
}
// contains reports whether s contains substr. Avoids importing strings just
// for tests.
func contains(s, substr string) bool {
return len(substr) == 0 || len(s) >= len(substr) && searchString(s, substr)
}
func TestValidateDomainAllowlist(t *testing.T) {
tests := []struct {
name string
domains []string
wantErr bool
errMsg string
}{
{name: "empty list", domains: nil, wantErr: false},
{name: "valid single domain", domains: []string{"cdn.example.com"}, wantErr: false},
{name: "valid multiple domains", domains: []string{"a.example.com", "b.example.org"}, wantErr: false},
{name: "duplicate domain", domains: []string{"a.com", "a.com"}, wantErr: true, errMsg: "duplicate"},
{name: "invalid domain with port", domains: []string{"a.com:8080"}, wantErr: true, errMsg: "invalid domain"},
{name: "invalid domain with path", domains: []string{"a.com/path"}, wantErr: true, errMsg: "invalid domain"},
{name: "empty string entry", domains: []string{""}, wantErr: true, errMsg: "invalid domain"},
{name: "wildcard not allowed", domains: []string{"*.example.com"}, wantErr: true, errMsg: "invalid domain"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateDomainAllowlist(tt.domains)
if tt.wantErr {
if err == nil {
t.Fatal("expected error, got nil")
}
if tt.errMsg != "" && !contains(err.Error(), tt.errMsg) {
t.Fatalf("error %q does not contain %q", err.Error(), tt.errMsg)
}
} else if err != nil {
t.Fatalf("unexpected error: %v", err)
}
})
}
}
func TestCheckEndorsementDomain(t *testing.T) {
tests := []struct {
name string
host string
allowed []string
wantErr bool
}{
{name: "empty allowlist permits all", host: "any.com", allowed: nil, wantErr: false},
{name: "exact match", host: "cdn.example.com", allowed: []string{"cdn.example.com"}, wantErr: false},
{name: "case insensitive match", host: "CDN.Example.COM", allowed: []string{"cdn.example.com"}, wantErr: false},
{name: "no match", host: "evil.com", allowed: []string{"cdn.example.com"}, wantErr: true},
{name: "subdomain does not match parent", host: "sub.cdn.example.com", allowed: []string{"cdn.example.com"}, wantErr: true},
{name: "parent does not match child", host: "example.com", allowed: []string{"cdn.example.com"}, wantErr: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := CheckEndorsementDomain(tt.host, tt.allowed)
if tt.wantErr && err == nil {
t.Fatal("expected error, got nil")
}
if !tt.wantErr && err != nil {
t.Fatalf("unexpected error: %v", err)
}
})
}
}
func TestParseDuration(t *testing.T) {
tests := []struct {
name string
value string
wantErr string
}{
{name: "valid duration", value: "10s"},
{name: "zero duration", value: "0s"},
{name: "empty string", value: "", wantErr: "invalid duration"},
{name: "unparseable", value: "5xs", wantErr: "invalid duration"},
{name: "negative duration", value: "-5s", wantErr: "negative duration"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
key := "test.parse_duration." + tt.name
viper.Set(key, tt.value)
defer viper.Set(key, nil)
d, err := parseDuration(key)
if tt.wantErr != "" {
if err == nil {
t.Fatal("expected error, got nil")
}
if !contains(err.Error(), tt.wantErr) {
t.Fatalf("error %q does not contain %q", err.Error(), tt.wantErr)
}
if !contains(err.Error(), key) {
t.Fatalf("error %q does not contain key %q", err.Error(), key)
}
return
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if d < 0 {
t.Fatalf("parseDuration(%q) = %v, want non-negative", tt.value, d)
}
})
}
}
func TestParseByteSizeOverflow(t *testing.T) {
_, err := parseByteSize("9EiB")
if err == nil {
t.Fatal("expected error for int64 overflow, got nil")
}
if !contains(err.Error(), "overflows") {
t.Fatalf("error %q does not contain %q", err.Error(), "overflows")
}
}
func TestParseByteSizeEmpty(t *testing.T) {
_, err := parseByteSize("")
if err == nil {
t.Fatal("expected error for empty input, got nil")
}
if !contains(err.Error(), "empty") {
t.Fatalf("error %q does not contain %q", err.Error(), "empty")
}
}
func searchString(s, substr string) bool {
for i := 0; i <= len(s)-len(substr); i++ {
if s[i:i+len(substr)] == substr {
return true
}
}
return false
}