-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathreflect_test.go
208 lines (205 loc) · 4.23 KB
/
reflect_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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package form
import (
"html/template"
"reflect"
"testing"
)
// fields is where like 99% of the real work gets done, so most of the
// testing effort should be focused here. It is also very easy to
// test - just plug in values and verify that you get the expected
// field slice back.
func Test_fields(t *testing.T) {
type address struct {
Street1 string
}
var nilAddress *address
type addressWithTags struct {
Street1 string `form:"name=street"`
}
tests := []struct {
name string
arg interface{}
want []field
}{
{
name: "simple and empty",
arg: struct {
Name string
}{},
want: []field{
{
Name: "Name",
Label: "Name",
Placeholder: "Name",
Type: "text",
Value: "",
},
},
}, {
name: "simple with value",
arg: struct {
Name string
}{"Michael Scott"},
want: []field{
{
Name: "Name",
Label: "Name",
Placeholder: "Name",
Type: "text",
Value: "Michael Scott",
},
},
}, {
name: "simple with ignored",
arg: struct {
Name string
Ignored string `form:"-"`
}{"", "secret info"},
want: []field{
{
Name: "Name",
Label: "Name",
Placeholder: "Name",
Type: "text",
Value: "",
},
},
}, {
name: "pointer to struct w/ val",
arg: &address{},
want: []field{
{
Name: "Street1",
Label: "Street1",
Placeholder: "Street1",
Type: "text",
Value: "",
},
},
}, {
name: "nil pointer with type",
arg: nilAddress,
want: []field{
{
Name: "Street1",
Label: "Street1",
Placeholder: "Street1",
Type: "text",
Value: "",
},
},
}, {
name: "nested simple",
arg: struct {
Name string
Address struct {
Street1 string
}
}{},
want: []field{
{
Name: "Name",
Label: "Name",
Placeholder: "Name",
Type: "text",
Value: "",
}, {
Name: "Address.Street1",
Label: "Street1",
Placeholder: "Street1",
Type: "text",
Value: "",
},
},
}, {
name: "nested with values",
arg: struct {
Name string
Address address
}{
Name: "Michael Scott",
Address: address{"123 Test St"},
},
want: []field{
{
Name: "Name",
Label: "Name",
Placeholder: "Name",
Type: "text",
Value: "Michael Scott",
}, {
Name: "Address.Street1",
Label: "Street1",
Placeholder: "Street1",
Type: "text",
Value: "123 Test St",
},
},
}, {
name: "nested with tags",
arg: struct {
Name string `form:"label=Full Name;id=name"`
Password string `form:"type=password;footer=Something super secret!"`
Address addressWithTags
}{
Name: "Michael Scott",
Address: addressWithTags{"123 Test St"},
},
want: []field{
{
Name: "Name",
Label: "Full Name",
Placeholder: "Full Name",
Type: "text",
Value: "Michael Scott",
ID: "name",
}, {
Name: "Password",
Label: "Password",
Placeholder: "Password",
Type: "password",
Value: "",
Footer: template.HTML("Something super secret!"),
}, {
Name: "street",
Label: "Street1",
Placeholder: "Street1",
Type: "text",
Value: "123 Test St",
},
},
}, {
name: "nested with nil ptr",
arg: struct {
Name string
Address *address
}{
Name: "Michael Scott",
Address: nil,
},
want: []field{
{
Name: "Name",
Label: "Name",
Placeholder: "Name",
Type: "text",
Value: "Michael Scott",
}, {
Name: "Address.Street1",
Label: "Street1",
Placeholder: "Street1",
Type: "text",
Value: "",
},
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
got := fields(tc.arg)
if !reflect.DeepEqual(got, tc.want) {
t.Errorf("fields(%+v) = %+v, want %+v", tc.arg, got, tc.want)
}
})
}
}