forked from cornfeedhobo/pflag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
int_slice_test.go
127 lines (117 loc) · 3.26 KB
/
int_slice_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
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package zflag_test
import (
"io/ioutil"
"reflect"
"testing"
"github.com/zulucmd/zflag/v2"
)
func TestIntSlice(t *testing.T) {
tests := []struct {
name string
flagDefault []int
input []string
expectedErr string
expectedValues []int
visitor func(f *zflag.Flag)
}{
{
name: "no value passed",
input: []string{},
flagDefault: []int{},
expectedErr: "",
expectedValues: []int{},
},
{
name: "empty value passed",
input: []string{""},
flagDefault: []int{},
expectedErr: `invalid argument "" for "--is" flag: strconv.Atoi: parsing "": invalid syntax`,
},
{
name: "invalid int",
input: []string{"blabla"},
flagDefault: []int{},
expectedErr: `invalid argument "blabla" for "--is" flag: strconv.Atoi: parsing "blabla": invalid syntax`,
},
{
name: "no csv",
input: []string{"1,5"},
flagDefault: []int{},
expectedErr: `invalid argument "1,5" for "--is" flag: strconv.Atoi: parsing "1,5": invalid syntax`,
},
{
name: "empty defaults",
input: []string{"1", "5"},
flagDefault: []int{},
expectedValues: []int{1, 5},
},
{
name: "with default values",
input: []string{"5", "1"},
flagDefault: []int{1, 5},
expectedValues: []int{5, 1},
},
{
name: "trims input",
input: []string{" 1", "2 ", " 3 "},
flagDefault: []int{},
expectedValues: []int{1, 2, 3},
},
{
name: "replace values",
input: []string{"5", "1"},
visitor: func(f *zflag.Flag) {
if val, ok := f.Value.(zflag.SliceValue); ok {
_ = val.Replace([]string{"3"})
}
},
expectedValues: []int{3},
},
}
t.Parallel()
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
var is []int
f := zflag.NewFlagSet("test", zflag.ContinueOnError)
f.SetOutput(ioutil.Discard)
f.IntSliceVar(&is, "is", test.flagDefault, "usage")
err := f.Parse(repeatFlag("--is", test.input...))
if test.expectedErr != "" {
if err == nil {
t.Fatalf("expected an error; got none")
}
if test.expectedErr != "" && err.Error() != test.expectedErr {
t.Fatalf("expected error to equal %q, but was: %s", test.expectedErr, err)
}
return
}
if err != nil {
t.Fatalf("expected no error; got %q", err)
}
if test.visitor != nil {
f.VisitAll(test.visitor)
}
if !reflect.DeepEqual(test.expectedValues, is) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, is)
}
intSlice, err := f.GetIntSlice("is")
if err != nil {
t.Fatal("got an error from GetIntSlice():", err)
}
if !reflect.DeepEqual(test.expectedValues, intSlice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, intSlice)
}
intSliceGet, err := f.Get("is")
if err != nil {
t.Fatal("got an error from Get():", err)
}
if !reflect.DeepEqual(intSliceGet, intSlice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, intSliceGet)
}
})
}
}