-
Notifications
You must be signed in to change notification settings - Fork 1
/
structtag_test.go
74 lines (71 loc) · 974 Bytes
/
structtag_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
package cli
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestParseStructTagInner(t *testing.T) {
cases := []struct {
in string
out map[string]string
}{
{
"",
map[string]string{},
},
{
"foo",
map[string]string{
"foo": "",
},
},
{
"foo=bar",
map[string]string{
"foo": "bar",
},
},
{
"foo=bar,baz",
map[string]string{
"foo": "bar",
"baz": "",
},
},
{
"foo=bar,baz=quux",
map[string]string{
"foo": "bar",
"baz": "quux",
},
},
{
"foo=bar, baz=quux",
map[string]string{
"foo": "bar",
"baz": "quux",
},
},
{
"foo=bar,baz='quux1,quux2'",
map[string]string{
"foo": "bar",
"baz": "quux1,quux2",
},
},
{
"foo,bar='one, two',baz=42",
map[string]string{
"foo": "",
"bar": "one, two",
"baz": "42",
},
},
}
for _, c := range cases {
assert.Equal(
t,
c.out,
parseStructTagInner(c.in),
)
}
}