-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargs_test.go
More file actions
306 lines (233 loc) · 4.89 KB
/
args_test.go
File metadata and controls
306 lines (233 loc) · 4.89 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
package goargs
import (
"testing"
)
type ArgsHost struct {
Host string `goargs:"long:host,short:h"`
}
type ArgsUser struct {
User string `goargs:"long:user"`
}
type ArgsPort struct {
Port int `goargs:"short:p"`
}
func testsetup() {
log("setup()")
EnvPrefix = "GOARG_"
DefaultArgs = []*Arg{}
DefaultSourceOrder = []SourceType{SourceFile, SourceEnv, SourceArgs}
}
func checkString(t *testing.T, expected string) {
if String() != expected {
t.Errorf("Expected `goargs.String()` to return value '%s', but found: '%s'", expected, String())
}
}
func BenchmarkTest(b *testing.B) {
testsetup()
var (
argsHost ArgsHost
)
Bind(&argsHost)
for i := 0; i < b.N; i++ {
ParseWith(
[]string{"test", "--host", "localhost"},
[]string{"TEST_USER=PKeidel"},
)
}
}
func TestSingeLongStringCmdArgument(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost"
argsHost ArgsHost
)
Bind(&argsHost)
ParseWith(
[]string{"test", "--host", "localhost"},
[]string{"TEST_USER=PKeidel"},
)
checkString(t, expectedArgs)
}
func TestSingeLongIntCmdArgument(t *testing.T) {
testsetup()
var expectedArgs = "--port 2345"
var argsPort ArgsPort
Bind(&argsPort)
ParseWith(
[]string{"test", "--port", "2345"},
[]string{},
)
checkString(t, expectedArgs)
}
func TestSingeShortCmdArgument(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost"
argsHost ArgsHost
)
Bind(&argsHost)
ParseWith(
[]string{"test", "-h", "localhost"},
[]string{"TEST_USER=PKeidel"},
)
checkString(t, expectedArgs)
}
func TestSourceSortOrderEnvArgs(t *testing.T) {
testsetup()
DefaultSourceOrder = []SourceType{SourceEnv, SourceArgs}
EnvPrefix = "TEST_"
var (
expectedArgs = "--host hostfromargs"
argsHost ArgsHost
)
Bind(&argsHost)
ParseWith(
[]string{"-h", "hostfromargs"},
[]string{"TEST_HOST=hostfromenv"},
)
checkString(t, expectedArgs)
}
func TestSourceSortOrderArgsEnv(t *testing.T) {
testsetup()
DefaultSourceOrder = []SourceType{SourceArgs, SourceEnv}
EnvPrefix = "TEST_"
var (
expectedArgs = "--host hostfromenv"
argsHost ArgsHost
)
Bind(&argsHost)
ParseWith(
[]string{"-h", "hostfromargs"},
[]string{"TEST_HOST=hostfromenv"},
)
checkString(t, expectedArgs)
}
func TestSingeEnv(t *testing.T) {
testsetup()
EnvPrefix = "TEST_"
var (
expectedArgs = "--host hostfromenv"
argsHost ArgsHost
)
Bind(&argsHost)
ParseWith(
[]string{},
[]string{"TEST_HOST=hostfromenv"},
)
checkString(t, expectedArgs)
}
func TestALotShortCmdArguments(t *testing.T) {
testsetup()
EnvPrefix = "TEST_"
var (
expectedArgs = "--host localhost --port 1234 --user PKeidel"
argsHostPort struct {
Host string `goargs:"long:host,short:h"`
Port int `goargs:"short:p"`
User string `goargs:"long:user"`
}
)
Bind(&argsHostPort)
ParseWith(
[]string{"test", "-h", "localhost", "-p", "1234"},
[]string{"TEST_USER=PKeidel"},
)
checkString(t, expectedArgs)
}
func TestRequiredArguments(t *testing.T) {
defer func() {
// we want a panic()! So if there is no error, the test should fail
if r := recover(); r == nil {
t.Fatal("Test must panic()! Because a required arg was not provided")
}
}()
testsetup()
var (
argsHost struct {
Host string `goargs:"long:host,short:h,required"`
}
)
Bind(&argsHost)
ParseWith(
[]string{"test", "-x", "localhost"},
[]string{},
)
}
func TestRequiredEnv1(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost"
argsHost struct {
Host string `goargs:"required"`
}
)
EnvPrefix = ""
Bind(&argsHost)
ParseWith(
[]string{},
[]string{"HOST=localhost"},
)
checkString(t, expectedArgs)
}
func TestRequiredEnv2(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost"
argsHost struct {
Host string `goargs:"required"`
}
)
Bind(&argsHost)
ParseWith(
[]string{},
[]string{"GOARG_HOST=localhost"},
)
checkString(t, expectedArgs)
}
func TestSingleVar01(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost"
host string
)
WithStringS("host", "h", &host)
ParseWith(
[]string{"test", "-h", "localhost"},
[]string{"TEST_USER=PKeidel"},
)
checkString(t, expectedArgs)
}
func TestBool1(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost --debug"
argHostDebug struct {
Host string `goargs:"long:host,short:h"`
Debug bool
}
)
Bind(&argHostDebug)
ParseWith(
[]string{"test", "-h", "localhost", "--debug"},
[]string{"TEST_USER=PKeidel"},
)
checkString(t, expectedArgs)
}
func TestExternalChange1(t *testing.T) {
testsetup()
var (
expectedArgs = "--host localhost"
argHostDebug struct {
Host string `goargs:"long:host"`
}
)
Bind(&argHostDebug)
ParseWith(
[]string{},
[]string{},
)
// now we modify the value directly
argHostDebug.Host = "localhost"
// the new value should be included in the generated string
checkString(t, expectedArgs)
}