-
Notifications
You must be signed in to change notification settings - Fork 1
/
lieut_test.go
1089 lines (847 loc) · 26.4 KB
/
lieut_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
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package lieut
import (
"bytes"
"context"
"errors"
"flag"
"fmt"
"io"
"os"
"runtime"
"sort"
"testing"
)
var testAppInfo = AppInfo{
Name: "test",
Summary: "A test",
Usage: "testing",
Version: "vTest",
}
var testNoOpExecutor = func(ctx context.Context, arguments []string) error {
return nil
}
func TestMain(m *testing.M) {
originalOSArgs := os.Args[:]
defer func() {
// Put back the original args... to not mess with global state
os.Args = originalOSArgs
}()
// Parse the flags, as the testing package needs them
flag.Parse()
// Set the args to just the executable name
// (removing passed flags to the test executable)
os.Args = os.Args[0:1]
os.Exit(m.Run())
}
func TestNewSingleCommandApp(t *testing.T) {
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewSingleCommandApp(testAppInfo, testNoOpExecutor, flagSet, os.Stdout, os.Stderr)
if app == nil {
t.Error("NewSingleCommandApp returned nil")
}
}
func TestNewSingleCommandApp_ZeroValues(t *testing.T) {
app := NewSingleCommandApp(AppInfo{}, nil, nil, nil, nil)
if app == nil {
t.Fatal("NewSingleCommandApp returned nil")
}
if inferredName := inferAppName(); app.info.Name != inferredName {
t.Errorf("NewSingleCommandApp with no given name gave %q name, wanted %q", app.info.Name, inferredName)
}
if app.info.Usage != DefaultCommandUsage {
t.Errorf("NewSingleCommandApp with no given usage gave %q usage, wanted %q", app.info.Usage, DefaultCommandUsage)
}
if app.flags.Flags == nil {
t.Errorf("NewSingleCommandApp with no given flags had nil flags")
}
}
func TestNewMultiCommandApp(t *testing.T) {
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(testAppInfo, flagSet, os.Stdout, os.Stderr)
if app == nil {
t.Error("NewMultiCommandApp returned nil")
}
}
func TestNewMultiCommandApp_ZeroValues(t *testing.T) {
app := NewMultiCommandApp(AppInfo{}, nil, nil, nil)
if app == nil {
t.Fatal("NewMultiCommandApp returned nil")
}
if inferredName := inferAppName(); app.info.Name != inferredName {
t.Errorf("NewMultiCommandApp with no given name gave %q name, wanted %q", app.info.Name, inferredName)
}
if app.info.Usage != DefaultParentCommandUsage {
t.Errorf("NewMultiCommandApp with no given usage gave %q usage, wanted %q", app.info.Usage, DefaultParentCommandUsage)
}
if app.flags.Flags == nil {
t.Errorf("NewMultiCommandApp with no given flags had nil flags")
}
}
func TestMultiCommandApp_SetCommand(t *testing.T) {
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(testAppInfo, flagSet, os.Stdout, os.Stderr)
includedCommandFlagSet := flag.NewFlagSet("included", flag.ExitOnError)
err := app.SetCommand(CommandInfo{Name: "included"}, nil, includedCommandFlagSet)
if err != nil {
t.Fatalf("SetCommand returned error: %v", err)
}
for testName, testData := range map[string]struct {
info CommandInfo
exec Executor
flags Flags
wantErr bool
}{
"all": {
info: CommandInfo{
Name: "test",
Summary: "testing",
Usage: "test testing test",
},
exec: testNoOpExecutor,
flags: flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError),
},
"only info": {
info: CommandInfo{
Name: "test",
Summary: "testing",
Usage: "test testing test",
},
},
"only exec": {
exec: testNoOpExecutor,
},
"only flags": {
flags: flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError),
},
"zero values": {},
"duplicate flags from globals": {
flags: flagSet,
wantErr: true,
},
"duplicate flags from other command": {
flags: includedCommandFlagSet,
wantErr: true,
},
} {
t.Run(testName, func(t *testing.T) {
err := app.SetCommand(testData.info, testData.exec, testData.flags)
if err != nil && !testData.wantErr {
t.Errorf("SetCommand returned error: %v", err)
}
})
}
}
func TestMultiCommandApp_CommandNames(t *testing.T) {
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(testAppInfo, flagSet, os.Stdout, os.Stderr)
if names := app.CommandNames(); len(names) > 0 {
t.Errorf("CommandNames returned a non-empty slice %v", names)
}
app.SetCommand(CommandInfo{Name: "foo"}, nil, nil)
app.SetCommand(CommandInfo{Name: "bar"}, nil, nil)
names := app.CommandNames()
sort.Strings(names)
if names[0] != "bar" && names[1] != "foo" {
t.Errorf("CommandNames returned an unexpected slice %v", names)
}
}
func TestSingleCommandApp_PrintVersion(t *testing.T) {
for testName, testData := range map[string]struct {
version string
want string
}{
"specified": {
version: "vTest",
want: fmt.Sprintf("%s vTest (%s/%s)\n", testAppInfo.Name, runtime.GOOS, runtime.GOARCH),
},
"no version string": {
version: "",
want: fmt.Sprintf("%s (%s/%s)\n", testAppInfo.Name, runtime.GOOS, runtime.GOARCH),
},
} {
t.Run(testName, func(t *testing.T) {
appInfo := testAppInfo
appInfo.Version = testData.version
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewSingleCommandApp(appInfo, testNoOpExecutor, flagSet, &buf, &buf)
app.PrintVersion()
got := buf.String()
if got != testData.want {
t.Errorf("app.PrintVersion gave %q, want %q", got, testData.want)
}
})
}
}
func TestMultiCommandApp_PrintVersion(t *testing.T) {
for testName, testData := range map[string]struct {
version string
want string
}{
"specified": {
version: "vTest",
want: fmt.Sprintf("%s vTest (%s/%s)\n", testAppInfo.Name, runtime.GOOS, runtime.GOARCH),
},
"no version string": {
version: "",
want: fmt.Sprintf("%s (%s/%s)\n", testAppInfo.Name, runtime.GOOS, runtime.GOARCH),
},
} {
t.Run(testName, func(t *testing.T) {
appInfo := testAppInfo
appInfo.Version = testData.version
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(appInfo, flagSet, &buf, &buf)
app.PrintVersion()
got := buf.String()
if got != testData.want {
t.Errorf("app.PrintVersion gave %q, want %q", got, testData.want)
}
})
}
}
func TestSingleCommandApp_PrintHelp(t *testing.T) {
wantFormat := `Usage: test testing
A test
Options:
-help
Display the help message
-testflag string
A test flag (default "testval")
-version
Display the application version
test vTest (%s/%s)
`
want := fmt.Sprintf(wantFormat, runtime.GOOS, runtime.GOARCH)
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
flagSet.String("testflag", "testval", "A test flag")
app := NewSingleCommandApp(testAppInfo, testNoOpExecutor, flagSet, &buf, &buf)
app.PrintHelp()
got := buf.String()
if got != want {
t.Errorf("app.PrintHelp gave %q, want %q", got, want)
}
}
func TestMultiCommandApp_PrintHelp(t *testing.T) {
wantFormat := `Usage: test testing
A test
Commands:
testcommand A test command
Options:
-help
Display the help message
-testflag string
A test flag (default "testval")
-version
Display the application version
test vTest (%s/%s)
`
want := fmt.Sprintf(wantFormat, runtime.GOOS, runtime.GOARCH)
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
flagSet.String("testflag", "testval", "A test flag")
app := NewMultiCommandApp(testAppInfo, flagSet, &buf, &buf)
testCommandInfo := CommandInfo{
Name: "testcommand",
Summary: "A test command",
Usage: "args here...",
}
commandFlagSet := flag.NewFlagSet(testCommandInfo.Name, flag.ExitOnError)
commandFlagSet.Int("testcommandflag", 5, "A test command flag")
err := app.SetCommand(testCommandInfo, testNoOpExecutor, commandFlagSet)
if err != nil {
t.Fatalf("SetCommand returned error: %v", err)
}
app.PrintHelp("")
got := buf.String()
if got != want {
t.Errorf("app.PrintHelp gave %q, want %q", got, want)
}
}
func TestMultiCommandApp_PrintHelp_Command(t *testing.T) {
wantFormat := `Usage: test testcommand args here...
A test command
Options:
-help
Display the help message
-testcommandflag int
A test command flag (default 5)
-testflag string
A test flag (default "testval")
-version
Display the application version
test vTest (%s/%s)
`
want := fmt.Sprintf(wantFormat, runtime.GOOS, runtime.GOARCH)
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
flagSet.String("testflag", "testval", "A test flag")
app := NewMultiCommandApp(testAppInfo, flagSet, &buf, &buf)
testCommandInfo := CommandInfo{
Name: "testcommand",
Summary: "A test command",
Usage: "args here...",
}
commandFlagSet := flag.NewFlagSet(testCommandInfo.Name, flag.ExitOnError)
commandFlagSet.Int("testcommandflag", 5, "A test command flag")
err := app.SetCommand(testCommandInfo, testNoOpExecutor, commandFlagSet)
if err != nil {
t.Fatalf("SetCommand returned error: %v", err)
}
app.PrintHelp("testcommand")
got := buf.String()
if got != want {
t.Errorf("app.PrintHelp gave %q, want %q", got, want)
}
}
func TestSingleCommandApp_PrintUsage(t *testing.T) {
for testName, testData := range map[string]struct {
usage string
want string
}{
"specified": {
usage: "testing [test]",
want: fmt.Sprintf("Usage: %s testing [test]\n", testAppInfo.Name),
},
"no usage string": {
usage: "",
want: fmt.Sprintf("Usage: %s %s\n", testAppInfo.Name, DefaultCommandUsage),
},
} {
t.Run(testName, func(t *testing.T) {
appInfo := testAppInfo
appInfo.Usage = testData.usage
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewSingleCommandApp(appInfo, testNoOpExecutor, flagSet, &buf, &buf)
app.PrintUsage()
got := buf.String()
if got != testData.want {
t.Errorf("app.PrintUsage gave %q, want %q", got, testData.want)
}
})
}
}
func TestMultiCommandApp_PrintUsage(t *testing.T) {
testCommandInfo := CommandInfo{
Name: "test",
Summary: "testing",
}
for testName, testData := range map[string]struct {
appUsage string
commandUsage string
forCommand string
want string
}{
"specified app and command usage, for command": {
appUsage: "testing [test]",
commandUsage: "test [opts]",
forCommand: testCommandInfo.Name,
want: fmt.Sprintf("Usage: %s %s test [opts]\n", testAppInfo.Name, testCommandInfo.Name),
},
"specified app usage, no command usage, for command": {
appUsage: "testing [test]",
commandUsage: "",
forCommand: testCommandInfo.Name,
want: fmt.Sprintf("Usage: %s %s %s\n", testAppInfo.Name, testCommandInfo.Name, DefaultCommandUsage),
},
"no app usage, specified command usage, for command": {
appUsage: "",
commandUsage: "test [opts]",
forCommand: testCommandInfo.Name,
want: fmt.Sprintf("Usage: %s %s test [opts]\n", testAppInfo.Name, testCommandInfo.Name),
},
"no app or command usage, for command": {
appUsage: "",
commandUsage: "",
forCommand: testCommandInfo.Name,
want: fmt.Sprintf("Usage: %s %s %s\n", testAppInfo.Name, testCommandInfo.Name, DefaultCommandUsage),
},
"specified app and command usage, no command": {
appUsage: "testing [test]",
commandUsage: "test [opts]",
forCommand: "",
want: fmt.Sprintf("Usage: %s testing [test]\n", testAppInfo.Name),
},
"specified app usage, no command usage, no command": {
appUsage: "testing [test]",
commandUsage: "",
forCommand: "",
want: fmt.Sprintf("Usage: %s testing [test]\n", testAppInfo.Name),
},
"no app usage, specified command usage, no command": {
appUsage: "",
commandUsage: "test [opts]",
forCommand: "",
want: fmt.Sprintf("Usage: %s %s\n", testAppInfo.Name, DefaultParentCommandUsage),
},
"no app or command usage, no command": {
appUsage: "",
commandUsage: "",
forCommand: "",
want: fmt.Sprintf("Usage: %s %s\n", testAppInfo.Name, DefaultParentCommandUsage),
},
} {
t.Run(testName, func(t *testing.T) {
appInfo := testAppInfo
appInfo.Usage = testData.appUsage
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(appInfo, flagSet, &buf, &buf)
testCommandInfo.Usage = testData.commandUsage
commandFlagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
err := app.SetCommand(testCommandInfo, testNoOpExecutor, commandFlagSet)
if err != nil {
t.Errorf("SetCommand returned error: %v", err)
}
app.PrintUsage(testData.forCommand)
got := buf.String()
if got != testData.want {
t.Errorf("app.PrintUsage gave %q, want %q", got, testData.want)
}
})
}
}
func TestSingleCommandApp_PrintUsageError(t *testing.T) {
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewSingleCommandApp(testAppInfo, testNoOpExecutor, flagSet, &buf, &buf)
usageErr := errors.New("test usage error")
want := `Error: test usage error
Usage: test testing
Run 'test --help' for usage.
`
app.PrintUsageError(usageErr)
got := buf.String()
if got != want {
t.Errorf("app.PrintUsageError gave %q, want %q", got, want)
}
}
func TestMultiCommandApp_PrintUsageError(t *testing.T) {
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(testAppInfo, flagSet, &buf, &buf)
usageErr := errors.New("test usage error")
want := `Error: test usage error
Usage: test testing
Run 'test --help' for usage.
`
app.PrintUsageError("", usageErr)
got := buf.String()
if got != want {
t.Errorf("app.PrintUsageError gave %q, want %q", got, want)
}
}
func TestMultiCommandApp_PrintUsageError_Command(t *testing.T) {
var buf bytes.Buffer
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
app := NewMultiCommandApp(testAppInfo, flagSet, &buf, &buf)
testCommandInfo := CommandInfo{Name: "testcommand"}
app.SetCommand(testCommandInfo, nil, nil)
usageErr := errors.New("test usage error")
want := `Error: test usage error
Usage: test testcommand [arguments ...]
Run 'test testcommand --help' for usage.
`
app.PrintUsageError(testCommandInfo.Name, usageErr)
got := buf.String()
if got != want {
t.Errorf("app.PrintUsageError gave %q, want %q", got, want)
}
}
func TestSingleCommandApp_Run(t *testing.T) {
var executorCapture struct {
ctx context.Context
arguments []string
}
executor := func(ctx context.Context, arguments []string) error {
executorCapture.ctx = ctx
executorCapture.arguments = arguments
return nil
}
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
out := io.Discard
app := NewSingleCommandApp(testAppInfo, executor, flagSet, out, out)
ctxTestKey := struct{ k string }{k: "test-key-for-testing"}
ctxTestVal := "test context val"
ctx := context.WithValue(context.TODO(), ctxTestKey, ctxTestVal)
args := []string{"testarg1", "testarg2"}
wantedExitCode := 0
initRan := false
initFn := func() error {
initRan = true
return nil
}
app.OnInit(initFn)
exitCode := app.Run(ctx, args)
if exitCode != wantedExitCode {
t.Errorf("app.Run gave %v, wanted %v", exitCode, wantedExitCode)
}
if !initRan {
t.Error("app.Run didn't run init function")
}
if executorCapture.ctx.Value(ctxTestKey) != ctxTestVal {
t.Errorf("app.Run executor gave %q, wanted %q", executorCapture.ctx.Value(ctxTestKey), ctxTestVal)
}
if executorCapture.arguments[0] != args[0] && executorCapture.arguments[1] != args[1] {
t.Errorf("app.Run executor gave %q, wanted %q", executorCapture.arguments, args)
}
}
func TestSingleCommandApp_Run_EmptyArgsProvided(t *testing.T) {
var capturedArgs []string
executor := func(ctx context.Context, arguments []string) error {
capturedArgs = arguments
return nil
}
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
out := io.Discard
app := NewSingleCommandApp(testAppInfo, executor, flagSet, out, out)
originalOSArgs := os.Args[:]
defer func() {
// Put back the original args... to not mess with global state
os.Args = originalOSArgs
}()
os.Args = []string{testAppInfo.Name, "arg"}
expectedArgs := os.Args[1:]
if exitCode := app.Run(context.TODO(), nil); exitCode != 0 {
t.Errorf("app.Run gave non-zero exit code %v", exitCode)
}
if capturedArgs[0] != expectedArgs[0] {
t.Errorf("app.Run executor gave args %q, wanted %q", capturedArgs, expectedArgs)
}
}
func TestSingleCommandApp_Run_AltPaths(t *testing.T) {
for testName, testData := range map[string]struct {
exec Executor
init func() error
flags Flags
args []string
wantedExitCode int
wantedOut string
wantedErrOut string
}{
"version requested": {
args: []string{"--version"},
wantedExitCode: 0,
wantedOut: fmt.Sprintf("test vTest (%s/%s)\n", runtime.GOOS, runtime.GOARCH),
wantedErrOut: "",
},
"help requested": {
args: []string{"--help"},
wantedExitCode: 0,
wantedOut: "",
wantedErrOut: fmt.Sprintf(`Usage: test testing
A test
Options:
-help
Display the help message
-version
Display the application version
test vTest (%s/%s)
`, runtime.GOOS, runtime.GOARCH),
},
"args contain non-defined flags": {
flags: flag.NewFlagSet("test", flag.ContinueOnError),
args: []string{"--non-existent-flag=val"},
wantedExitCode: 2,
wantedOut: "",
wantedErrOut: `Error: flag provided but not defined: -non-existent-flag
Usage: test testing
Run 'test --help' for usage.
`,
},
"initialize returns error": {
init: func() error {
return errors.New("test init error")
},
args: []string{"test"},
wantedExitCode: 1,
wantedOut: "",
wantedErrOut: "Error: test init error\n",
},
"initialize returns status code error": {
init: func() error {
return ErrWithStatusCode(errors.New("test init error"), 101)
},
args: []string{"test"},
wantedExitCode: 101,
wantedOut: "",
wantedErrOut: "Error: test init error\n",
},
"initialize returns status code empty error": {
init: func() error {
return ErrWithStatusCode(errors.New(""), 101)
},
args: []string{"test"},
wantedExitCode: 101,
wantedOut: "",
wantedErrOut: "",
},
"execute returns error": {
exec: func(ctx context.Context, arguments []string) error {
return errors.New("test exec error")
},
args: []string{"test"},
wantedExitCode: 1,
wantedOut: "",
wantedErrOut: "Error: test exec error\n",
},
"execute returns status code error": {
exec: func(ctx context.Context, arguments []string) error {
return ErrWithStatusCode(errors.New("test exec error"), 217)
},
args: []string{"test"},
wantedExitCode: 217,
wantedOut: "",
wantedErrOut: "Error: test exec error\n",
},
"execute returns status code empty error": {
exec: func(ctx context.Context, arguments []string) error {
return ErrWithStatusCode(errors.New(""), 217)
},
args: []string{"test"},
wantedExitCode: 217,
wantedOut: "",
wantedErrOut: "",
},
} {
t.Run(testName, func(t *testing.T) {
var out, errOut bytes.Buffer
app := NewSingleCommandApp(testAppInfo, testData.exec, testData.flags, &out, &errOut)
if testData.init != nil {
app.OnInit(testData.init)
}
exitCode := app.Run(context.TODO(), testData.args)
if exitCode != testData.wantedExitCode {
t.Errorf("app.Run gave %v, wanted %v", exitCode, testData.wantedExitCode)
}
if out.String() != testData.wantedOut {
t.Errorf("app.Run gave out %q, wanted %q", out.String(), testData.wantedOut)
}
if errOut.String() != testData.wantedErrOut {
t.Errorf("app.Run gave errOut %q, wanted %q", errOut.String(), testData.wantedErrOut)
}
})
}
}
func TestMultiCommandApp_Run(t *testing.T) {
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
out := io.Discard
app := NewMultiCommandApp(testAppInfo, flagSet, out, out)
testCommandInfo := CommandInfo{Name: "testcommand"}
var executorCapture struct {
ctx context.Context
arguments []string
}
executor := func(ctx context.Context, arguments []string) error {
executorCapture.ctx = ctx
executorCapture.arguments = arguments
return nil
}
commandFlagSet := flag.NewFlagSet(testCommandInfo.Name, flag.ExitOnError)
app.SetCommand(testCommandInfo, executor, commandFlagSet)
ctxTestKey := struct{ k string }{k: "test-key-for-testing"}
ctxTestVal := "test context val"
ctx := context.WithValue(context.TODO(), ctxTestKey, ctxTestVal)
args := []string{testCommandInfo.Name, "testarg1", "testarg2"}
wantedExitCode := 0
initRan := false
initFn := func() error {
initRan = true
return nil
}
app.OnInit(initFn)
exitCode := app.Run(ctx, args)
if exitCode != wantedExitCode {
t.Errorf("app.Run gave %v, wanted %v", exitCode, wantedExitCode)
}
if !initRan {
t.Error("app.Run didn't run init function")
}
if executorCapture.ctx.Value(ctxTestKey) != ctxTestVal {
t.Errorf("app.Run executor gave %q, wanted %q", executorCapture.ctx.Value(ctxTestKey), ctxTestVal)
}
if executorCapture.arguments[0] != args[1] && executorCapture.arguments[1] != args[2] {
t.Errorf("app.Run executor gave %q, wanted %q", executorCapture.arguments, args)
}
}
func TestMultiCommandApp_Run_EmptyArgsProvided(t *testing.T) {
flagSet := flag.NewFlagSet(testAppInfo.Name, flag.ExitOnError)
out := io.Discard
app := NewMultiCommandApp(testAppInfo, flagSet, out, out)
testCommandInfo := CommandInfo{Name: "testcommand"}
var capturedArgs []string
executor := func(ctx context.Context, arguments []string) error {
capturedArgs = arguments
return nil
}
commandFlagSet := flag.NewFlagSet(testCommandInfo.Name, flag.ExitOnError)
app.SetCommand(testCommandInfo, executor, commandFlagSet)
originalOSArgs := os.Args[:]
defer func() {
// Put back the original args... to not mess with global state
os.Args = originalOSArgs
}()
os.Args = []string{testAppInfo.Name, testCommandInfo.Name, "arg"}
expectedArgs := os.Args[2:]
if exitCode := app.Run(context.TODO(), nil); exitCode != 0 {
t.Errorf("app.Run gave non-zero exit code %v", exitCode)
}
if capturedArgs[0] != expectedArgs[0] {
t.Errorf("app.Run executor gave args %q, wanted %q", capturedArgs, expectedArgs)
}
}
func TestMultiCommandApp_Run_AltPaths(t *testing.T) {
testCommandInfo := CommandInfo{
Name: "testcommand",
Summary: "A test command",
Usage: "args here...",
}
for testName, testData := range map[string]struct {
flags Flags
exec Executor
commandFlags Flags
init func() error
args []string
wantedExitCode int
wantedOut string
wantedErrOut string
}{
"version requested": {
args: []string{"--version"},
wantedExitCode: 0,
wantedOut: fmt.Sprintf("test vTest (%s/%s)\n", runtime.GOOS, runtime.GOARCH),
wantedErrOut: "",
},
"help requested": {
args: []string{"--help"},
wantedExitCode: 0,
wantedOut: "",
wantedErrOut: fmt.Sprintf(`Usage: test testing
A test
Commands:
testcommand A test command
Options:
-help
Display the help message
-version
Display the application version
test vTest (%s/%s)
`, runtime.GOOS, runtime.GOARCH),
},
"command help requested": {
args: []string{testCommandInfo.Name, "--help"},
wantedExitCode: 0,
wantedOut: "",
wantedErrOut: fmt.Sprintf(`Usage: test testcommand args here...
A test command
Options:
-help
Display the help message
-version
Display the application version
test vTest (%s/%s)
`, runtime.GOOS, runtime.GOARCH),
},
"empty args": {
args: []string{},
wantedExitCode: 2,
wantedOut: "",
wantedErrOut: fmt.Sprintf(`Usage: test testing
A test
Commands:
testcommand A test command
Options:
-help
Display the help message
-version
Display the application version
test vTest (%s/%s)
`, runtime.GOOS, runtime.GOARCH),
},
"args contain non-defined flags": {
flags: flag.NewFlagSet("test", flag.ContinueOnError),
args: []string{"--non-existent-flag=val"},
wantedExitCode: 2,
wantedOut: "",
wantedErrOut: `Error: flag provided but not defined: -non-existent-flag
Usage: test testing
Run 'test --help' for usage.
`,
},
"initialize returns error": {
init: func() error {
return errors.New("test init error")
},