-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstruct_test.go
270 lines (262 loc) · 6.12 KB
/
struct_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
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
package kgo
import (
"reflect"
"testing"
)
func TestJoinStructsField(t *testing.T) {
type User struct {
Id int
Name string
Score float64
}
var users = []User{
{
Id: 1,
Name: "one",
Score: 1.1,
},
{
Id: 2,
Name: "two",
Score: 2.2,
},
{
Id: 3,
Name: "three",
Score: 3.3,
},
}
type Args struct {
name string
elements []User
usingFieldName string
excepted string
}
testCases := []Args{
{
name: "JoinStructsIntFieldCase",
elements: users,
usingFieldName: "Id",
excepted: "1,2,3",
},
{
name: "JoinStructsStringFieldCase",
elements: users,
usingFieldName: "Name",
excepted: "one,two,three",
},
{
name: "JoinStructsFloatFieldCase",
elements: users,
usingFieldName: "Score",
excepted: "1.100000,2.200000,3.300000", // 浮点型默认有6位小数位,实际使用中不会这么判断,得到值就行了
},
}
for _, testCase := range testCases {
if actual := JoinStructsField(testCase.elements, testCase.usingFieldName); actual != testCase.excepted {
t.Errorf("JoinStructsField,输入:%+v,预期:%+v,实际:%+v", testCase.elements, testCase.excepted, actual)
}
}
}
func TestPickStructsField(t *testing.T) {
type User struct {
Id int
Name string
Score float64
}
var users = []User{
{
Id: 1,
Name: "one",
Score: 1.1,
},
{
Id: 2,
Name: "two",
Score: 2.2,
},
{
Id: 3,
Name: "tree",
Score: 3.3,
},
}
type TestCase struct {
name string
elements []User
usingFieldName string
exceptedId []int
exceptedName []string
exceptedScore []float64
}
testCases := []TestCase{
{
name: "PickStructsIntFieldCase",
elements: users,
usingFieldName: "id",
exceptedId: []int{1, 2, 3},
},
{
name: "PickStructsStringFieldCase",
elements: users,
usingFieldName: "name",
exceptedName: []string{"one,two,three"},
},
{
name: "JoinStructsFloatFieldCase",
elements: users,
usingFieldName: "score",
exceptedScore: []float64{1.1, 2.2, 3.3},
},
}
for _, testCase := range testCases {
switch testCase.usingFieldName {
case "Id":
if actual := PickStructsField[User, int](testCase.elements, testCase.usingFieldName); !reflect.DeepEqual(actual, testCase.exceptedId) {
t.Errorf("PickStructsField,输入:%+v,预期:%+v,实际:%+v", testCase.elements, testCase.exceptedId, actual)
}
break
case "Name":
if actual := PickStructsField[User, string](testCase.elements, testCase.usingFieldName); !reflect.DeepEqual(actual, testCase.exceptedName) {
t.Errorf("PickStructsField,输入:%+v,预期:%+v,实际:%+v", testCase.elements, testCase.exceptedName, actual)
}
break
case "Score":
if actual := PickStructsField[User, float64](testCase.elements, testCase.usingFieldName); !reflect.DeepEqual(actual, testCase.exceptedScore) {
t.Errorf("PickStructsField,输入:%+v,预期:%+v,实际:%+v", testCase.elements, testCase.exceptedScore, actual)
}
break
default:
break
}
}
}
func TestSliceGroupBy(t *testing.T) {
type User struct {
Id int
Gender string
Score float64
Type int
}
var users = []User{
{
Id: 1,
Gender: "male",
Score: 1.1,
Type: 1,
},
{
Id: 2,
Gender: "male",
Score: 2.2,
Type: 2,
},
{
Id: 3,
Gender: "female",
Score: 3.3,
Type: 1,
},
}
type TestCase[KT string | int] struct {
name string
elements []User
usingFieldName string
exceptedGroupBy map[KT][]User
}
testCases1 := []TestCase[string]{
{
name: "SliceGroupByStringField-Gender",
elements: users,
usingFieldName: "Gender",
exceptedGroupBy: map[string][]User{
"female": {{Id: 3, Gender: "female", Score: 3.3, Type: 1}},
"male": {{Id: 1, Gender: "male", Score: 1.1, Type: 1}, {Id: 2, Gender: "male", Score: 2.2, Type: 2}},
},
},
}
testCases2 := []TestCase[int]{
{
name: "SliceGroupByIntField-Type",
elements: users,
usingFieldName: "Type",
exceptedGroupBy: map[int][]User{
1: {{Id: 1, Gender: "male", Score: 1.1, Type: 1}, {Id: 3, Gender: "female", Score: 3.3, Type: 1}},
2: {{Id: 2, Gender: "male", Score: 2.2, Type: 2}},
},
},
}
for _, testCase := range testCases1 {
if actual := SliceGroupBy[User, string](testCase.elements, testCase.usingFieldName); !reflect.DeepEqual(actual, testCase.exceptedGroupBy) {
t.Errorf("SliceGroupBy,输入:%+v,预期:%+v,实际:%+v", testCase.elements, testCase.exceptedGroupBy, actual)
}
}
for _, testCase := range testCases2 {
if actual := SliceGroupBy[User, int](testCase.elements, testCase.usingFieldName); !reflect.DeepEqual(actual, testCase.exceptedGroupBy) {
t.Errorf("SliceGroupBy,输入:%+v,预期:%+v,实际:%+v", testCase.elements, testCase.exceptedGroupBy, actual)
}
}
}
func TestCopyFieldsNormal(t *testing.T) {
type User struct {
Id string
Age int
}
u1 := User{
Id: "111",
Age: 10,
}
u2 := CopyFields[User, User](u1)
t.Logf("u1: %+v, u2: %+v", u1, u2)
}
func TestCopyFieldsIgnoreUnexportedField(t *testing.T) {
type User struct {
Id string
Age int
address string
}
u1 := User{
Id: "111",
Age: 10,
address: "china",
}
u2 := CopyFields[User, User](u1)
t.Logf("u1: %+v, u2: %+v", u1, u2)
}
func TestCopyFieldsIgnoreSomeField(t *testing.T) {
type User struct {
Id string
Age int
address string
}
u1 := User{
Id: "111",
Age: 10,
address: "china",
}
u2 := CopyFields[User, User](u1, "Age")
t.Logf("u1: %+v, u2: %+v", u1, u2)
}
func TestCopyFieldsComplex(t *testing.T) {
type Address struct {
Province string
City string
County string
}
type User struct {
Id string
Age int
Address Address
}
u1 := User{
Id: "111",
Age: 10,
Address: Address{
Province: "陕西省",
City: "西安市",
County: "雁塔区",
},
}
u2 := CopyFields[User, User](u1)
t.Logf("u1: %+v, u2: %+v", u1, u2)
}