-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
validate_test.go
190 lines (169 loc) · 4.19 KB
/
validate_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
package main
import (
"testing"
)
func Test_validateFlags_NoProvider(t *testing.T) {
c := InfraConfig{
Provider: "",
}
err := validateFlags(c)
want := "provider flag is required"
if err.Error() != want {
t.Errorf("want error: %q, but got: %q", want, err.Error())
}
}
func Test_validateFlags_DO(t *testing.T) {
c := InfraConfig{
Provider: "digitalocean",
Region: "lon1",
AccessKey: "set",
}
err := validateFlags(c)
if err != nil {
t.Errorf("expected no error for valid DO config, but got: %s", err.Error())
}
}
func Test_validateFlags_EquinixMetal(t *testing.T) {
c := InfraConfig{
Provider: "equinix-metal",
ProjectID: "",
}
err := validateFlags(c)
want := "project-id required for provider: equinix-metal"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}
func Test_validateFlags_AccessTokenRequired(t *testing.T) {
c := InfraConfig{
Provider: "equinix-metal",
ProjectID: "proj-1",
}
err := validateFlags(c)
want := "access-key or access-key-file must be given"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}
func Test_validateFlags_GCE_Zone(t *testing.T) {
c := InfraConfig{
Provider: "gce",
Zone: "",
ProjectID: "my-project",
}
err := validateFlags(c)
want := "zone required for provider: gce"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}
func Test_validateFlags_GCE_Region(t *testing.T) {
c := InfraConfig{
Provider: "gce",
Zone: "Zone",
ProjectID: "my-project",
Region: "",
}
err := validateFlags(c)
want := "region required for provider: gce"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}
func Test_validateFlags_GCE_ProjectID(t *testing.T) {
c := InfraConfig{
Provider: "gce",
Zone: "zone",
ProjectID: "",
}
err := validateFlags(c)
want := "project-id required for provider: gce"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}
func Test_validateFlags_Azure_SubscriptionID_EmptyValue(t *testing.T) {
c := InfraConfig{
Provider: "azure",
Region: "eastus",
SubscriptionID: "",
}
err := validateFlags(c)
want := "subscription-id required for provider: azure"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}
func Test_validateFlags_Azure_SubscriptionID_GoodValue(t *testing.T) {
c := InfraConfig{
Provider: "azure",
Region: "eastus",
SubscriptionID: "7136bb17-a334-41e1-9543-284f4af96420",
AccessKeyFile: "key.json",
}
err := validateFlags(c)
if err != nil {
t.Errorf("expected: nil, got: %s", err)
}
}
func Test_validateFlags_BadMemoryValue(t *testing.T) {
c := InfraConfig{
Provider: "digitalocean",
MaxClientMemory: "hundred",
AccessKeyFile: "key.json",
}
err := validateFlags(c)
want := "invalid memory value: quantities must match the regular expression '^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$'"
if err == nil {
t.Errorf("expected an error with bad memory format")
return
}
if err.Error() != want {
t.Errorf("expected error: %q, got: %q", want, err)
}
}
func Test_validateFlags_GoodMemoryValue(t *testing.T) {
c := InfraConfig{
Provider: "digitalocean",
MaxClientMemory: "100Mi",
AccessKeyFile: "key.json",
}
err := validateFlags(c)
if err != nil {
t.Errorf("expected no error, got: %s", err.Error())
}
}
func Test_validateFlags_EmptyMemoryValue(t *testing.T) {
c := InfraConfig{
Provider: "digitalocean",
MaxClientMemory: "",
AccessKeyFile: "key.json",
}
err := validateFlags(c)
if err != nil {
t.Errorf("expected no error, got: %s", err.Error())
}
}
func Test_validateFlags_Hetzner(t *testing.T) {
c := InfraConfig{
Provider: "hetzner",
Region: "fsn1",
AccessKey: "set",
}
err := validateFlags(c)
if err != nil {
t.Errorf("expected no error for valid Hetzner config, but got: %s", err.Error())
}
}
func Test_validateFlags_Region_Hetzner(t *testing.T) {
c := InfraConfig{
Provider: "hetzner",
Region: "",
AccessKey: "set",
}
err := validateFlags(c)
want := "region required for provider: hetzner"
if err.Error() != want {
t.Errorf("expected error: %s, got: %s", want, err)
}
}