forked from cornfeedhobo/pflag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstring_slice_test.go
138 lines (128 loc) · 3.86 KB
/
string_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
// 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"
"strings"
"testing"
"github.com/zulucmd/zflag/v2"
)
func TestStringSlice(t *testing.T) {
tests := []struct {
name string
flagDefault []string
input []string
expectedErr string
expectedValues []string
visitor func(f *zflag.Flag)
}{
{
name: "no value passed",
input: []string{},
flagDefault: []string{},
expectedErr: "",
expectedValues: []string{},
},
{
name: "empty value passed",
input: []string{""},
flagDefault: []string{},
expectedValues: []string{""},
},
{
name: "single string",
input: []string{"blabla"},
flagDefault: []string{},
expectedValues: []string{"blabla"},
},
{
name: "no csv",
input: []string{"testing,something"},
flagDefault: []string{},
expectedValues: []string{"testing,something"},
},
{
name: "multiple values passed",
input: []string{"testing", "something", "all the strings"},
flagDefault: []string{},
expectedValues: []string{"testing", "something", "all the strings"},
},
{
name: "with default values",
input: []string{},
flagDefault: []string{"testing", "0:0:0:0:0:0:0:1"},
expectedValues: []string{"testing", "0:0:0:0:0:0:0:1"},
},
{
name: "overrides default values",
input: []string{"all the strings", "testing"},
flagDefault: []string{"testing", "0:0:0:0:0:0:0:1"},
expectedValues: []string{"all the strings", "testing"},
},
{
name: "as slice values",
input: []string{"testing", "all the strings"},
visitor: func(f *zflag.Flag) {
if val, ok := f.Value.(zflag.SliceValue); ok {
_ = val.Replace([]string{"overridden"})
}
},
expectedValues: []string{"overridden"},
},
{
name: "keeps spacing",
input: []string{"somestring", " somestring", "somestring ", " somestring "},
expectedValues: []string{"somestring", " somestring", "somestring ", " somestring "},
},
{
name: "keeps new lines",
input: []string{"foo\nbar\nbaz\n\n\nasdasd\n\n"},
expectedValues: []string{"foo\nbar\nbaz\n\n\nasdasd\n\n"},
},
}
t.Parallel()
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
var ss []string
f := zflag.NewFlagSet("test", zflag.ContinueOnError)
f.SetOutput(ioutil.Discard)
f.StringSliceVar(&ss, "ss", test.flagDefault, "usage")
err := f.Parse(repeatFlag("--ss", test.input...))
if test.expectedErr != "" {
if err == nil {
t.Fatalf("expected an error; got none")
}
if test.expectedErr != "" && !strings.Contains(err.Error(), test.expectedErr) {
t.Fatalf("expected error to contain %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, ss) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, ss)
}
stringSlice, err := f.GetStringSlice("ss")
if err != nil {
t.Fatal("got an error from GetStringSlice():", err)
}
if !reflect.DeepEqual(test.expectedValues, stringSlice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, stringSlice)
}
stringSliceGet, err := f.Get("ss")
if err != nil {
t.Fatal("got an error from Get():", err)
}
if !reflect.DeepEqual(stringSliceGet, stringSlice) {
t.Fatalf("expected %[1]v with type %[1]T but got %[2]v with type %[2]T", test.expectedValues, stringSliceGet)
}
})
}
}