forked from cornfeedhobo/pflag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
int16_slice_test.go
127 lines (117 loc) · 3.35 KB
/
int16_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 TestInt16Slice(t *testing.T) {
tests := []struct {
name string
flagDefault []int16
input []string
expectedErr string
expectedValues []int16
visitor func(f *zflag.Flag)
}{
{
name: "no value passed",
input: []string{},
flagDefault: []int16{},
expectedErr: "",
expectedValues: []int16{},
},
{
name: "empty value passed",
input: []string{""},
flagDefault: []int16{},
expectedErr: `invalid argument "" for "--i16s" flag: strconv.ParseInt: parsing "": invalid syntax`,
},
{
name: "invalid int16",
input: []string{"blabla"},
flagDefault: []int16{},
expectedErr: `invalid argument "blabla" for "--i16s" flag: strconv.ParseInt: parsing "blabla": invalid syntax`,
},
{
name: "no csv",
input: []string{"1,5"},
flagDefault: []int16{},
expectedErr: `invalid argument "1,5" for "--i16s" flag: strconv.ParseInt: parsing "1,5": invalid syntax`,
},
{
name: "empty defaults",
input: []string{"1", "5"},
flagDefault: []int16{},
expectedValues: []int16{1, 5},
},
{
name: "with default values",
input: []string{"5", "1"},
flagDefault: []int16{1, 5},
expectedValues: []int16{5, 1},
},
{
name: "trims input",
input: []string{" 1", "2 ", " 3 "},
flagDefault: []int16{},
expectedValues: []int16{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: []int16{3},
},
}
t.Parallel()
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
var i16s []int16
f := zflag.NewFlagSet("test", zflag.ContinueOnError)
f.SetOutput(ioutil.Discard)
f.Int16SliceVar(&i16s, "i16s", test.flagDefault, "usage")
err := f.Parse(repeatFlag("--i16s", 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, i16s) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, i16s)
}
int16Slice, err := f.GetInt16Slice("i16s")
if err != nil {
t.Fatal("got an error from GetInt16Slice():", err)
}
if !reflect.DeepEqual(test.expectedValues, int16Slice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, int16Slice)
}
int16SliceGet, err := f.Get("i16s")
if err != nil {
t.Fatal("got an error from Get():", err)
}
if !reflect.DeepEqual(int16SliceGet, int16Slice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, int16SliceGet)
}
})
}
}