forked from Praqma/helmsman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init_test.go
134 lines (127 loc) · 2.67 KB
/
init_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
package main
import "testing"
func Test_toolExists(t *testing.T) {
type args struct {
tool string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "test case 1 -- checking helm exists.",
args: args{
tool: "helm",
},
want: true,
}, {
name: "test case 2 -- checking kubectl exists.",
args: args{
tool: "kubectl",
},
want: true,
}, {
name: "test case 3 -- checking ipconfig exists.",
args: args{
tool: "ipconfig",
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := toolExists(tt.args.tool); got != tt.want {
t.Errorf("toolExists() = %v, want %v", got, tt.want)
}
})
}
}
// func Test_addNamespaces(t *testing.T) {
// type args struct {
// namespaces map[string]string
// }
// tests := []struct {
// name string
// args args
// }{
// // TODO: Add test cases.
// }
// for _, tt := range tests {
// t.Run(tt.name, func(t *testing.T) {
// addNamespaces(tt.args.namespaces)
// })
// }
// }
// func Test_validateReleaseCharts(t *testing.T) {
// type args struct {
// apps map[string]release
// }
// tests := []struct {
// name string
// args args
// want bool
// }{
// // TODO: Add test cases.
// }
// for _, tt := range tests {
// t.Run(tt.name, func(t *testing.T) {
// if got := validateReleaseCharts(tt.args.apps); got != tt.want {
// t.Errorf("validateReleaseCharts() = %v, want %v", got, tt.want)
// }
// })
// }
// }
// func Test_addHelmRepos(t *testing.T) {
// type args struct {
// repos map[string]string
// }
// tests := []struct {
// name string
// args args
// want bool
// }{
// // TODO: Add test cases.
// }
// for _, tt := range tests {
// t.Run(tt.name, func(t *testing.T) {
// if got := addHelmRepos(tt.args.repos); got != tt.want {
// t.Errorf("addHelmRepos() = %v, want %v", got, tt.want)
// }
// })
// }
// }
// func Test_setKubeContext(t *testing.T) {
// type args struct {
// context string
// }
// tests := []struct {
// name string
// args args
// want bool
// }{
// // TODO: Add test cases.
// }
// for _, tt := range tests {
// t.Run(tt.name, func(t *testing.T) {
// if got := setKubeContext(tt.args.context); got != tt.want {
// t.Errorf("setKubeContext() = %v, want %v", got, tt.want)
// }
// })
// }
// }
// func Test_createContext(t *testing.T) {
// tests := []struct {
// name string
// want bool
// }{
// // TODO: Add test cases.
// }
// for _, tt := range tests {
// t.Run(tt.name, func(t *testing.T) {
// if got := createContext(); got != tt.want {
// t.Errorf("createContext() = %v, want %v", got, tt.want)
// }
// })
// }
// }