forked from ogier/pflag
-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathstring_to_string_test.go
More file actions
400 lines (358 loc) · 11.1 KB
/
string_to_string_test.go
File metadata and controls
400 lines (358 loc) · 11.1 KB
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
// Copyright 2009 The Go Authors. All rights reserved.
// Use of ths2s source code s2s governed by a BSD-style
// license that can be found in the LICENSE file.
package pflag
import (
"bytes"
"encoding/csv"
"fmt"
"reflect"
"strings"
"testing"
)
func TestStringToString(t *testing.T) {
tt := []struct {
args []string
def map[string]string
expected map[string]string
}{
{
// should permit no args and defaults
args: []string{},
def: map[string]string{},
expected: map[string]string{},
},
{
// should use defaults when no args given
args: []string{},
def: map[string]string{"a": "1", "b": "2"},
expected: map[string]string{"a": "1", "b": "2"},
},
{
// should parse single key-value pair
args: []string{"--arg", "a=1"},
def: map[string]string{},
expected: map[string]string{"a": "1"},
},
{
// should allow comma-separated key-value pairs
args: []string{"--arg", "a=1,b=2"},
def: map[string]string{},
expected: map[string]string{"a": "1", "b": "2"},
},
{
// should correctly parse values with commas
args: []string{"--arg", "a=1,2"},
def: map[string]string{},
expected: map[string]string{"a": "1,2"},
},
{
// should correctly parse values with equal symbols
args: []string{"--arg", "a=1="},
def: map[string]string{},
expected: map[string]string{"a": "1="},
},
{
// should allow multiple map args, merging into a single result
args: []string{"--arg", "a=1,b=2", "--arg", "c=3", "--arg", "a=2"},
def: map[string]string{},
expected: map[string]string{"a": "2", "b": "2", "c": "3"},
},
{
// should ensure command-line args take precedence over defaults
args: []string{"--arg", "a=4"},
def: map[string]string{"a": "1", "b": "2"},
expected: map[string]string{"a": "4"},
},
{
// should allow quoting of values to handle values with '=' and ','
args: []string{"--arg", `"foo=bar,bar=qix",qix=foo`},
def: map[string]string{},
expected: map[string]string{"foo": "bar,bar=qix", "qix": "foo"},
},
{
// should allow quoting of values to handle values with '=' and ','
args: []string{"--arg", `"foo=bar,bar=qix"`, "--arg", "qix=foo"},
def: map[string]string{},
expected: map[string]string{"foo": "bar,bar=qix", "qix": "foo"},
},
{
// should allow stuck values
args: []string{`--arg="e=5,6",a=1,b=2,d=4,c=3`},
def: map[string]string{},
expected: map[string]string{"a": "1", "b": "2", "d": "4", "c": "3", "e": "5,6"},
},
{
// should allow stuck values with defaults
args: []string{`--arg=a=1,b=2,"e=5,6"`},
def: map[string]string{"da": "1", "db": "2", "de": "5,6"},
expected: map[string]string{"a": "1", "b": "2", "e": "5,6"},
},
{
// should allow multiple stuck value args
args: []string{"--arg=a=1,b=2", "--arg=b=3", `--arg="e=5,6"`, `--arg=f=7,8`},
def: map[string]string{},
expected: map[string]string{"a": "1", "b": "3", "e": "5,6", "f": "7,8"},
},
{
// should parse arg with empty key and value
args: []string{"--arg", "="},
def: map[string]string{},
expected: map[string]string{"": ""},
},
{
// should parse comma delimited empty mappings
args: []string{"--arg", "=,=,="},
def: map[string]string{},
expected: map[string]string{"": ""},
},
{
// should peremit overlapping mappings
args: []string{"--arg", "a=1,a=2"},
def: map[string]string{},
expected: map[string]string{"a": "2"},
},
{
// should correctly parse short args
args: []string{"-a", "a=1,b=2", "-a=c=3"},
def: map[string]string{},
expected: map[string]string{"a": "1", "b": "2", "c": "3"},
},
}
for num, test := range tt {
t.Logf("=== TEST %d ===", num)
t.Logf(" Args: %v", test.args)
t.Logf(" Default Value: %v", test.def)
t.Logf(" Expected: %v", test.expected)
f := NewFlagSet("test", ContinueOnError)
f.StringToStringP("arg", "a", test.def, "test string-to-string arg")
if err := f.Parse(test.args); err != nil {
t.Fatalf("unexpected error: %v", err)
}
result, err := f.GetStringToString("arg")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
t.Logf(" Actual: %v", result)
for k, v := range test.expected {
actual, ok := result[k]
if !ok {
t.Fatalf("missing key in result: %s", k)
}
if actual != v {
t.Fatalf("unexpected value in result for key '%s': %s", k, actual)
}
}
if len(test.expected) != len(result) {
t.Fatalf("unexpected extra key-value pairs in result: %v", result)
}
}
}
// This test ensures that [FlagSet.GetStringToString] always return the pointers which were given during flag
// initialization.
//
// This behaviour is important as it ensures consumers of the library can access the underlying map in a stable,
// consistent manner.
func TestS2SStablePointers(t *testing.T) {
f := NewFlagSet("test", ContinueOnError)
defval := map[string]string{"a": "1", "b": "2"}
ptr := f.StringToString("map-flag", defval, "test for s2s arg")
if reflect.ValueOf(*ptr).Pointer() != reflect.ValueOf(defval).Pointer() {
t.Fatal("pointer mismatch")
}
// initially, arg should have defaults
result0, err := f.GetStringToString("map-flag")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if v, ok := result0["a"]; !ok || v != "1" {
t.Fatalf("value not present in map or unexpected value: %v", result0)
}
if v, ok := result0["b"]; !ok || v != "2" {
t.Fatalf("value not present in map or unexpected value: %v", result0)
}
if reflect.ValueOf(result0).Pointer() != reflect.ValueOf(defval).Pointer() {
t.Fatal("pointer mismatch")
}
if reflect.ValueOf(*ptr).Pointer() != reflect.ValueOf(result0).Pointer() {
t.Fatal("pointer mismatch")
}
// manipulate the map; the map should now have a single mapping and the pointers should be stable
if err := f.Set("map-flag", "c=3"); err != nil {
t.Fatalf("unexpected error: %v", err)
}
result1, err := f.GetStringToString("map-flag")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if reflect.ValueOf(*ptr).Pointer() != reflect.ValueOf(result1).Pointer() {
t.Fatal("pointer mismatch")
}
if reflect.ValueOf(result0).Pointer() != reflect.ValueOf(result1).Pointer() {
t.Fatal("pointer mismatch")
}
// manipulate the map once more
if err := f.Set("map-flag", "d=4"); err != nil {
t.Fatalf("unexpected error: %v", err)
}
result2, err := f.GetStringToString("map-flag")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if reflect.ValueOf(*ptr).Pointer() != reflect.ValueOf(result2).Pointer() {
t.Fatal("pointer mismatch")
}
if reflect.ValueOf(result1).Pointer() != reflect.ValueOf(result2).Pointer() {
t.Fatal("pointer mismatch")
}
// check that the newly added flag value was updated
if v, ok := result1["c"]; !ok || v != "3" {
t.Fatalf("value not present in map or unexpected value: %v", result1)
}
if v, ok := result1["d"]; !ok || v != "4" {
t.Fatalf("value not present in map or unexpected value: %v", result1)
}
// finally, if we clear the map, it should reset flag
for k := range result1 {
delete(result1, k)
}
result3, err := f.GetStringToString("map-flag")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if len(result3) != 0 {
t.Fatalf("unexpected map values: %v", result3)
}
}
func setUpS2SFlagSet(s2sp *map[string]string) *FlagSet {
f := NewFlagSet("test", ContinueOnError)
f.StringToStringVar(s2sp, "s2s", map[string]string{}, "Command separated ls2st!")
return f
}
func setUpS2SFlagSetWithDefault(s2sp *map[string]string) *FlagSet {
f := NewFlagSet("test", ContinueOnError)
f.StringToStringVar(s2sp, "s2s", map[string]string{"da": "1", "db": "2", "de": "5,6"}, "Command separated ls2st!")
return f
}
func createS2SFlag(vals map[string]string) string {
records := make([]string, 0, len(vals)>>1)
for k, v := range vals {
records = append(records, k+"="+v)
}
var buf bytes.Buffer
w := csv.NewWriter(&buf)
if err := w.Write(records); err != nil {
panic(err)
}
w.Flush()
return strings.TrimSpace(buf.String())
}
func TestEmptyS2S(t *testing.T) {
var s2s map[string]string
f := setUpS2SFlagSet(&s2s)
err := f.Parse([]string{})
if err != nil {
t.Fatal("expected no error; got", err)
}
getS2S, err := f.GetStringToString("s2s")
if err != nil {
t.Fatal("got an error from GetStringToString():", err)
}
if len(getS2S) != 0 {
t.Fatalf("got s2s %v with len=%d but expected length=0", getS2S, len(getS2S))
}
}
func TestS2S(t *testing.T) {
var s2s map[string]string
f := setUpS2SFlagSet(&s2s)
vals := map[string]string{"a": "1", "b": "2", "d": "4", "c": "3", "e": "5,6"}
arg := fmt.Sprintf("--s2s=%s", createS2SFlag(vals))
err := f.Parse([]string{arg})
if err != nil {
t.Fatal("expected no error; got", err)
}
for k, v := range s2s {
if vals[k] != v {
t.Fatalf("expected s2s[%s] to be %s but got: %s", k, vals[k], v)
}
}
getS2S, err := f.GetStringToString("s2s")
if err != nil {
t.Fatalf("got error: %v", err)
}
for k, v := range getS2S {
if vals[k] != v {
t.Fatalf("expected s2s[%s] to be %s but got: %s from GetStringToString", k, vals[k], v)
}
}
}
func TestS2SDefault(t *testing.T) {
var s2s map[string]string
f := setUpS2SFlagSetWithDefault(&s2s)
vals := map[string]string{"da": "1", "db": "2", "de": "5,6"}
err := f.Parse([]string{})
if err != nil {
t.Fatal("expected no error; got", err)
}
for k, v := range s2s {
if vals[k] != v {
t.Fatalf("expected s2s[%s] to be %s but got: %s", k, vals[k], v)
}
}
getS2S, err := f.GetStringToString("s2s")
if err != nil {
t.Fatal("got an error from GetStringToString():", err)
}
for k, v := range getS2S {
if vals[k] != v {
t.Fatalf("expected s2s[%s] to be %s from GetStringToString but got: %s", k, vals[k], v)
}
}
}
func TestS2SWithDefault(t *testing.T) {
var s2s map[string]string
f := setUpS2SFlagSetWithDefault(&s2s)
vals := map[string]string{"a": "1", "b": "2", "e": "5,6"}
arg := fmt.Sprintf("--s2s=%s", createS2SFlag(vals))
err := f.Parse([]string{arg})
if err != nil {
t.Fatal("expected no error; got", err)
}
for k, v := range s2s {
if vals[k] != v {
t.Fatalf("expected s2s[%s] to be %s but got: %s", k, vals[k], v)
}
}
getS2S, err := f.GetStringToString("s2s")
if err != nil {
t.Fatal("got an error from GetStringToString():", err)
}
for k, v := range getS2S {
if vals[k] != v {
t.Fatalf("expected s2s[%s] to be %s from GetStringToString but got: %s", k, vals[k], v)
}
}
}
func TestS2SCalledTwice(t *testing.T) {
var s2s map[string]string
f := setUpS2SFlagSet(&s2s)
in := []string{"a=1,b=2", "b=3", `"e=5,6"`, `f=7,8`}
expected := map[string]string{"a": "1", "b": "3", "e": "5,6", "f": "7,8"}
argfmt := "--s2s=%s"
arg0 := fmt.Sprintf(argfmt, in[0])
arg1 := fmt.Sprintf(argfmt, in[1])
arg2 := fmt.Sprintf(argfmt, in[2])
arg3 := fmt.Sprintf(argfmt, in[3])
err := f.Parse([]string{arg0, arg1, arg2, arg3})
if err != nil {
t.Fatal("expected no error; got", err)
}
if len(s2s) != len(expected) {
t.Fatalf("expected %d flags; got %d flags", len(expected), len(s2s))
}
for i, v := range s2s {
if expected[i] != v {
t.Fatalf("expected s2s[%s] to be %s but got: %s", i, expected[i], v)
}
}
}