-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_test.go
74 lines (70 loc) · 1.61 KB
/
config_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
package main
import (
"testing"
)
func TestBuildK8sConfig(t *testing.T) {
testCases := []struct {
desc string
input ActionInput
wantErr bool
}{
{
desc: "missing input 'image'",
input: ActionInput{image: ""},
wantErr: true,
},
{
desc: "missing input 'cluster-token'",
input: ActionInput{image: "test-image", clusterURL: "localhost:8000"},
wantErr: true,
},
{
desc: "missing input 'clusterURL'",
input: ActionInput{image: "test-image", clusterURL: ""},
wantErr: true,
},
{
desc: "missing input 'caFile' without 'allow-insecure'",
input: ActionInput{
image: "test-image",
clusterURL: "localhost:8000",
clusterToken: "test-token",
caFile: "",
},
wantErr: true,
},
{
desc: "non-bool 'allow-insecure' input",
input: ActionInput{
image: "test-image",
clusterURL: "localhost:8000",
clusterToken: "test-token",
allowInsecure: "not a bool",
},
wantErr: true,
},
{
desc: "non-base64 'kubeconfig-file' input",
input: ActionInput{image: "test-image", kubeconfigFile: "not base64"},
wantErr: true,
},
{
desc: "'allow-insecure' without 'caFile'",
input: ActionInput{
image: "test-image",
clusterURL: "localhost:8000",
clusterToken: "test-token",
allowInsecure: "true",
},
wantErr: false,
},
}
for _, tt := range testCases {
t.Run(tt.desc, func(t *testing.T) {
_, err := BuildK8sConfig(tt.input)
if didErr := err != nil; didErr != tt.wantErr {
t.Errorf("'wantErr' was %t, but err value was: '%v'", tt.wantErr, err)
}
})
}
}