forked from cornfeedhobo/pflag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
uint64_slice_test.go
133 lines (123 loc) · 3.54 KB
/
uint64_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
128
129
130
131
132
133
// 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 TestUint64Slice(t *testing.T) {
tests := []struct {
name string
flagDefault []uint64
input []string
expectedErr string
expectedValues []uint64
visitor func(f *zflag.Flag)
}{
{
name: "no value passed",
input: []string{},
flagDefault: []uint64{},
expectedErr: "",
expectedValues: []uint64{},
},
{
name: "empty value passed",
input: []string{""},
flagDefault: []uint64{},
expectedErr: `invalid argument "" for "--ui64s" flag: strconv.ParseUint: parsing "": invalid syntax`,
},
{
name: "invalid uint64",
input: []string{"blabla"},
flagDefault: []uint64{},
expectedErr: `invalid argument "blabla" for "--ui64s" flag: strconv.ParseUint: parsing "blabla": invalid syntax`,
},
{
name: "no csv",
input: []string{"1,5"},
flagDefault: []uint64{},
expectedErr: `invalid argument "1,5" for "--ui64s" flag: strconv.ParseUint: parsing "1,5": invalid syntax`,
},
{
name: "empty defaults",
input: []string{"1", "5"},
flagDefault: []uint64{},
expectedValues: []uint64{1, 5},
},
{
name: "overrides default values",
input: []string{"5", "1"},
flagDefault: []uint64{1, 5},
expectedValues: []uint64{5, 1},
},
{
name: "with default values",
input: []string{},
flagDefault: []uint64{1, 5},
expectedValues: []uint64{1, 5},
},
{
name: "trims input",
input: []string{" 1", "2 ", " 3 "},
flagDefault: []uint64{},
expectedValues: []uint64{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: []uint64{3},
},
}
t.Parallel()
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
var ui64s []uint64
f := zflag.NewFlagSet("test", zflag.ContinueOnError)
f.SetOutput(ioutil.Discard)
f.Uint64SliceVar(&ui64s, "ui64s", test.flagDefault, "usage")
err := f.Parse(repeatFlag("--ui64s", 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, ui64s) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, ui64s)
}
uint64Slice, err := f.GetUint64Slice("ui64s")
if err != nil {
t.Fatal("got an error from GetUint64Slice():", err)
}
if !reflect.DeepEqual(test.expectedValues, uint64Slice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, uint64Slice)
}
uint64SliceGet, err := f.Get("ui64s")
if err != nil {
t.Fatal("got an error from Get():", err)
}
if !reflect.DeepEqual(uint64SliceGet, uint64Slice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, uint64SliceGet)
}
})
}
}