forked from spf13/pflag
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathint16_slice_test.go
193 lines (173 loc) · 4.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
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
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package pflag
import (
"fmt"
"strconv"
"strings"
"testing"
)
func setUpI16SFlagSet(isp *[]int16) *FlagSet {
f := NewFlagSet("test", ContinueOnError)
f.Int16SliceVar(isp, "is", []int16{}, "Command separated list!")
return f
}
func setUpI16SFlagSetWithDefault(isp *[]int16) *FlagSet {
f := NewFlagSet("test", ContinueOnError)
f.Int16SliceVar(isp, "is", []int16{0, 1}, "Command separated list!")
return f
}
func TestEmptyI16S(t *testing.T) {
var is []int16
f := setUpI16SFlagSet(&is)
err := f.Parse([]string{})
if err != nil {
t.Fatal("expected no error; got", err)
}
getI16S, err := f.GetInt16Slice("is")
if err != nil {
t.Fatal("got an error from GetInt16Slice():", err)
}
if len(getI16S) != 0 {
t.Fatalf("got is %v with len=%d but expected length=0", getI16S, len(getI16S))
}
}
func TestI16S(t *testing.T) {
var is []int16
f := setUpI16SFlagSet(&is)
vals := []string{"1", "2", "4", "3"}
arg := fmt.Sprintf("--is=%s", strings.Join(vals, ","))
err := f.Parse([]string{arg})
if err != nil {
t.Fatal("expected no error; got", err)
}
for i, v := range is {
d64, err := strconv.ParseInt(vals[i], 0, 16)
if err != nil {
t.Fatalf("got error: %v", err)
}
d := int16(d64)
if d != v {
t.Fatalf("expected is[%d] to be %s but got: %d", i, vals[i], v)
}
}
getI16S, err := f.GetInt16Slice("is")
if err != nil {
t.Fatalf("got error: %v", err)
}
for i, v := range getI16S {
d64, err := strconv.ParseInt(vals[i], 0, 16)
if err != nil {
t.Fatalf("got error: %v", err)
}
d := int16(d64)
if d != v {
t.Fatalf("expected is[%d] to be %s but got: %d from GetInt16Slice", i, vals[i], v)
}
}
}
func TestI16SDefault(t *testing.T) {
var is []int16
f := setUpI16SFlagSetWithDefault(&is)
vals := []string{"0", "1"}
err := f.Parse([]string{})
if err != nil {
t.Fatal("expected no error; got", err)
}
for i, v := range is {
d64, err := strconv.ParseInt(vals[i], 0, 16)
if err != nil {
t.Fatalf("got error: %v", err)
}
d := int16(d64)
if d != v {
t.Fatalf("expected is[%d] to be %d but got: %d", i, d, v)
}
}
getI16S, err := f.GetInt16Slice("is")
if err != nil {
t.Fatal("got an error from GetInt16Slice():", err)
}
for i, v := range getI16S {
d64, err := strconv.ParseInt(vals[i], 0, 16)
if err != nil {
t.Fatal("got an error from GetInt16Slice():", err)
}
d := int16(d64)
if d != v {
t.Fatalf("expected is[%d] to be %d from GetInt16Slice but got: %d", i, d, v)
}
}
}
func TestI16SWithDefault(t *testing.T) {
var is []int16
f := setUpI16SFlagSetWithDefault(&is)
vals := []string{"1", "2"}
arg := fmt.Sprintf("--is=%s", strings.Join(vals, ","))
err := f.Parse([]string{arg})
if err != nil {
t.Fatal("expected no error; got", err)
}
for i, v := range is {
d64, err := strconv.ParseInt(vals[i], 0, 16)
if err != nil {
t.Fatalf("got error: %v", err)
}
d := int16(d64)
if d != v {
t.Fatalf("expected is[%d] to be %d but got: %d", i, d, v)
}
}
getI16S, err := f.GetInt16Slice("is")
if err != nil {
t.Fatal("got an error from GetInt16Slice():", err)
}
for i, v := range getI16S {
d64, err := strconv.ParseInt(vals[i], 0, 16)
if err != nil {
t.Fatalf("got error: %v", err)
}
d := int16(d64)
if d != v {
t.Fatalf("expected is[%d] to be %d from GetInt16Slice but got: %d", i, d, v)
}
}
}
func TestI16SAsSliceValue(t *testing.T) {
var i16s []int16
f := setUpI16SFlagSet(&i16s)
in := []string{"1", "2"}
argfmt := "--is=%s"
arg1 := fmt.Sprintf(argfmt, in[0])
arg2 := fmt.Sprintf(argfmt, in[1])
err := f.Parse([]string{arg1, arg2})
if err != nil {
t.Fatal("expected no error; got", err)
}
f.VisitAll(func(f *Flag) {
if val, ok := f.Value.(SliceValue); ok {
_ = val.Replace([]string{"3"})
}
})
if len(i16s) != 1 || i16s[0] != 3 {
t.Fatalf("Expected ss to be overwritten with '3.1', but got: %v", i16s)
}
}
func TestI16SCalledTwice(t *testing.T) {
var is []int16
f := setUpI16SFlagSet(&is)
in := []string{"1,2", "3"}
expected := []int16{1, 2, 3}
argfmt := "--is=%s"
arg1 := fmt.Sprintf(argfmt, in[0])
arg2 := fmt.Sprintf(argfmt, in[1])
err := f.Parse([]string{arg1, arg2})
if err != nil {
t.Fatal("expected no error; got", err)
}
for i, v := range is {
if expected[i] != v {
t.Fatalf("expected is[%d] to be %d but got: %d", i, expected[i], v)
}
}
}