-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli_test.go
More file actions
414 lines (363 loc) · 9.17 KB
/
cli_test.go
File metadata and controls
414 lines (363 loc) · 9.17 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
package cli
import (
"fmt"
"strings"
"testing"
)
func TestPrintCommand(t *testing.T) {
// comTree.Root.Print()
}
// func TestPrintTree(t *testing.T) {
// PrintTree(&comTree.Root)
// }
func TestPrintTree(t *testing.T) {
PrintTreeHelp(&comTree.Root)
}
func TestDefaultHelpTemplate(t *testing.T) {
ToHelpString(comTree.Root, nil)
}
func TestFind(t *testing.T) {
findHelper(t, "the", &comTree.Root)
findHelper(t, "the quick", Quick)
findHelper(t, "the quick brown", QuickBrown)
findHelper(t, "the quick brown fox", QuickBrownFox)
findHelper(t, "the quick brown bear", QuickBrownBear)
findHelper(t, "the quick brown cow", QuickBrownCow)
findHelper(t, "the quick red", QuickRed)
}
func TestParsingArguments(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Args: []Argument{{
Value: "fox",
}},
}
parseHelper(t, "the quick brown fox", *QuickBrown, expected1)
var expected2 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Args: []Argument{
{
Value: "fox",
},
{
Value: "dog",
},
},
}
parseHelper(t, "the quick brown fox dog", *QuickBrown, expected2)
}
func TestParsingFlags(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Flags: []Flag{{
ShortName: "b",
}},
}
parseHelper(t, "the quick brown -b", *QuickBrown, expected1)
var expected2 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Flags: []Flag{
{
LongName: "LongD",
},
{
ShortName: "c",
},
},
}
parseHelper(t, "the quick brown --LongD -c", *QuickBrown, expected2)
}
func TestParsingOptions(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Opts: []Option{{
LongName: "LongF",
Value: "val",
}},
}
parseHelper(t, "the quick brown --LongF val", *QuickBrown, expected1)
var expected2 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Opts: []Option{{
ShortName: "f",
Value: "val",
}},
}
parseHelper(t, "the quick brown -f val", *QuickBrown, expected2)
var expected3 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Opts: []Option{
{
ShortName: "g",
Value: "val",
},
{
LongName: "LongF",
Value: "val2",
},
},
}
parseHelper(t, "the quick brown -g val --LongF val2", *QuickBrown, expected3)
}
func TestParsingAll(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Args: []Argument{{
Value: "fox",
}},
Opts: []Option{
{
ShortName: "g",
Value: "val",
},
{
LongName: "LongF",
Value: "val2",
},
},
Flags: []Flag{
{
LongName: "LongD",
},
{
ShortName: "c",
},
},
}
parseHelper(t, "the quick brown fox -g val --LongF val2 --LongD -c", *QuickBrown, expected1)
}
func TestRunActions(t *testing.T) {
ResetActionTesters()
assertActions(t, false)
Run(strings.Split("the quick brown fox -i optVal --LongC arg1 arg2", " "), &comTree)
assertActions(t, true)
}
func TestSharedParameters(t *testing.T) {
shared := SharedParameters{
Opts: []Option{
{
ShortName: "x",
},
},
Flags: []Flag{
{
ShortName: "v",
},
},
}
tempTree := NewCommandTree()
tempTree.Root = *Quick
tempTree.Shared = shared
Run(strings.Split("quick brown fox -x val -k", " "), &tempTree)
}
func TestAutoHelp(t *testing.T) {
comTree.AutoHelp = true
ResetActionTesters()
assertActions(t, false)
// This does not fully test auto help, but if auto help is working the actions will
// never be run
Run(strings.Split("the quick brown fox -h", " "), &comTree)
Run(strings.Split("the quick brown fox --help", " "), &comTree)
Run(strings.Split("the quick brown fox ?", " "), &comTree)
assertActions(t, false)
}
func TestFlagDuplication(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Flags: []Flag{{
ShortName: "b",
}},
}
parseHelper(t, "the quick brown -bb", *QuickBrown, expected1)
parseHelper(t, "the quick brown -bbb -bbb", *QuickBrown, expected1)
}
func TestOptionDuplication(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Opts: []Option{{
ShortName: "f",
Value: "val",
}},
}
parseHelper(t, "the quick brown -f val -f val", *QuickBrown, expected1)
}
func TestOptionShortForm(t *testing.T) {
var expected1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Opts: []Option{{
ShortName: "f",
Value: "val",
}},
}
parseHelper(t, "the quick brown -f=val", *QuickBrown, expected1)
var expected2 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Opts: []Option{{
ShortName: "LongF",
Value: "val",
}},
}
parseHelperNeg(t, "the quick brown -TooLong=val ", *QuickBrown, expected2)
}
func TestArgSets(t *testing.T) {
var testCom1 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Args: ThreeArg,
ArgSets: []ArgumentSet{TwoArgSet},
}
assertParsePasses(t, "the quick brown one two", testCom1)
assertParsePasses(t, "the quick brown one two three", testCom1)
var testCom2 Command = Command{
Name: "brown",
Description: "the quick brown",
Usage: "use a brown?",
Args: TwoArg,
ArgSets: []ArgumentSet{ThreeArgSet},
}
assertParsePasses(t, "the quick brown one two", testCom2)
assertParsePasses(t, "the quick brown one two three", testCom2)
}
func assertParsePasses(t *testing.T, appArgs string, fullCom Command) {
argArray := strings.Split(appArgs, " ")
_, err := ParseArgs(argArray, fullCom)
if err != nil {
t.Errorf(err.Error())
}
}
func assertParseFails(t *testing.T, appArgs string, fullCom Command) {
argArray := strings.Split(appArgs, " ")
_, err := ParseArgs(argArray, fullCom)
if err == nil {
t.Errorf("ParseArgs Passed when it should have failed")
}
}
func assertActions(t *testing.T, assertion bool) {
if !(ActionOccured == PreActionOccured == PostActionOccured == assertion) {
t.Errorf("Actions were not run correctly")
}
}
func parseHelper(t *testing.T, appArgs string, fullCom Command, expectedCom Command) {
argArray := strings.Split(appArgs, " ")
userCom, err := ParseArgs(argArray, fullCom)
if err != nil {
t.Errorf(err.Error())
}
if userCom.String() != expectedCom.String() {
t.Errorf("\n Parsed Com For: \"%s\" \n%s \n NOT EQUAL Expected Com: \n%s", appArgs, userCom.String(), expectedCom.String())
}
}
func parseHelperNeg(t *testing.T, appArgs string, fullCom Command, expectedCom Command) {
argArray := strings.Split(appArgs, " ")
_, err := ParseArgs(argArray, fullCom)
if err == nil {
t.Errorf("")
}
}
func findHelper(t *testing.T, appArgs string, targetCom *Command) {
argArray := strings.Split(appArgs, " ")
foundCom, pathToCom, _ := comTree.FindCommand(argArray)
if foundCom.String() != targetCom.String() {
t.Errorf("FindCommand:Looking for \"%s\" but found \"%s\"", appArgs, foundCom.Name)
}
if strSliceCmp(argArray[:len(argArray)-1], pathToCom) != true {
errString := fmt.Sprintf("FindCommand:Path To Command is not correct\n")
errString += fmt.Sprintf("argArray: %v\n", argArray)
errString += fmt.Sprintf("pathToCom: %v\n", pathToCom)
t.Errorf(errString)
}
}
func strSliceCmp(a []string, b []string) bool {
if a == nil && b == nil {
return true
}
if a == nil || b == nil {
return false
}
if len(a) != len(b) {
return false
}
for i := range a {
if a[i] != b[i] {
return false
}
}
return true
}
// func TestReadMeCodeExamples(t *testing.T) {
// var BrownCow *Command = &Command{
// Name: "brown",
// HideHelp: true,
// }
// var BrownFox *Command = &Command{
// Name: "fox",
// }
// var Brown *Command = &Command{
// Name: "brown",
// Description: "silly example command",
// Usage: "use a brown what?",
// SubCommands: []Command{*BrownCow, *BrownFox},
// Flags: []Flag{
// {
// ShortName: "a",
// LongName: "LongA",
// Description: "Description for Flag1",
// },
// },
// Opts: []Option{
// {
// ShortName: "a",
// LongName: "LongA",
// Description: "Description for Opt A",
// },
// },
// Args: []Argument{
// {
// Name: "Arg1",
// Description: "Description for Arg1",
// },
// },
// }
// tree := NewCommandTree()
// tree.Root = *Brown
// tree.Version = "1.0.0"
// tree.Shared = SharedParameters{
// PreAction: func(c Command) (err error) {
// fmt.Println(c.Name)
// return
// },
// Flags: []Flag{
// {
// ShortName: "v",
// LongName: "verbose",
// Description: " Maybe all commands need a verbose flag.te",
// },
// },
// }
// Run([]string{"brown", "fox"}, &tree)
// }