-
Notifications
You must be signed in to change notification settings - Fork 4
/
main_test.go
52 lines (49 loc) · 1021 Bytes
/
main_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
package main
import (
"testing"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
)
func Test_getSeedNamespace(t *testing.T) {
tests := []struct {
name string
want string
rawKubeconfig []byte
wantErr bool
}{
{
name: "can extract seed namespace from current-context field",
want: "example",
rawKubeconfig: []byte(`apiVersion: v1
clusters:
- cluster:
certificate-authority-data: foo
server: server
name: example
contexts:
- context:
cluster: example
user: example
name: example
current-context: example
kind: Config
preferences: {}
users:
- name: example
user:
token: token`),
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := getSeedNamespace(tt.rawKubeconfig)
if (err != nil) != tt.wantErr {
t.Errorf("getSeedNamespace() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("getSeedNamespace() = %v, want %v", got, tt.want)
}
})
}
}