-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapper_test.go
284 lines (269 loc) · 5.96 KB
/
mapper_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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
package anymapper
import (
"reflect"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestInvalidValues(t *testing.T) {
t.Run("invalid-src", func(t *testing.T) {
var dst string
err := MapRefl(reflect.Value{}, reflect.ValueOf(&dst))
assert.Error(t, err)
})
t.Run("invalid-dst", func(t *testing.T) {
err := MapRefl(reflect.ValueOf("foo"), reflect.Value{})
assert.Error(t, err)
})
t.Run("unaddressable-dst", func(t *testing.T) {
var dst string
err := MapRefl(reflect.ValueOf("foo"), reflect.ValueOf(dst))
assert.Error(t, err)
})
}
func TestCustomMapFunc(t *testing.T) {
type customType struct {
Foo string
}
typ := reflect.TypeOf(customType{})
m := Default.Copy()
m.Mappers[typ] = func(m *Mapper, src, dst reflect.Type) MapFunc {
if src == typ {
return func(m *Mapper, _ *Context, src, dst reflect.Value) error {
return m.MapRefl(src.FieldByName("Foo"), dst)
}
}
if dst == typ {
return func(m *Mapper, _ *Context, src, dst reflect.Value) error {
return m.MapRefl(src, reflect.ValueOf(&dst.Addr().Interface().(*customType).Foo))
}
}
return nil
}
t.Run("mapFrom", func(t *testing.T) {
var dst customType
require.NoError(t, m.Map("foo", &dst))
assert.Equal(t, "foo", dst.Foo)
})
t.Run("mapTo", func(t *testing.T) {
var dst string
require.NoError(t, m.Map(customType{Foo: "foo"}, &dst))
assert.Equal(t, "foo", dst)
})
t.Run("mapFromPtr", func(t *testing.T) {
var dst *customType
require.NoError(t, m.Map("foo", &dst))
assert.Equal(t, "foo", dst.Foo)
})
t.Run("mapToPtr", func(t *testing.T) {
var dst string
require.NoError(t, m.Map(&customType{Foo: "foo"}, &dst))
assert.Equal(t, "foo", dst)
})
t.Run("both", func(t *testing.T) {
var dst customType
require.NoError(t, m.Map(customType{Foo: "foo"}, &dst))
assert.Equal(t, "foo", dst.Foo)
})
}
func TestCustomMapFuncAny(t *testing.T) {
type customType struct {
Foo string
}
typ := reflect.TypeOf(customType{})
m := Default.Copy()
m.Mappers[typ] = func(m *Mapper, src, dst reflect.Type) MapFunc {
if dst == anyTy {
return func(m *Mapper, _ *Context, src, dst reflect.Value) error {
dst.Set(reflect.ValueOf(src.FieldByName("Foo").Interface()))
return nil
}
}
return nil
}
src := customType{Foo: "foo"}
dst := any(nil)
require.NoError(t, m.Map(src, &dst))
assert.Equal(t, "foo", dst.(string))
}
func TestFieldMapper(t *testing.T) {
m := Default.Copy()
m.Context.FieldMapper = func(name string) string {
return strings.ToLower(name)
}
type Src struct {
FOO string
BAR string `map:"BAR"` // field mapper is ignored for tagged fields
}
var dst map[string]any
err := m.Map(Src{
FOO: "foo",
BAR: "bar",
}, &dst)
assert.NoError(t, err)
assert.Equal(t, map[string]any{
"foo": "foo",
"BAR": "bar",
}, dst)
}
func TestEmptyTag(t *testing.T) {
m := Default.Copy()
m.Context.Tag = ""
type Src struct {
Foo string `map:"bar"`
}
var dst map[string]any
err := m.Map(Src{
Foo: "foo",
}, &dst)
assert.NoError(t, err)
assert.Equal(t, map[string]any{"Foo": "foo"}, dst)
}
func TestCopy(t *testing.T) {
cpy := Default.Copy()
assert.Equal(t, Default.Context, cpy.Context)
assert.Equal(t, &Default.Context.FieldMapper, &cpy.Context.FieldMapper)
assert.Equal(t, len(Default.Mappers), len(cpy.Mappers))
for k, v := range Default.Mappers {
rv1 := reflect.ValueOf(v)
rv2 := reflect.ValueOf(cpy.Mappers[k])
assert.Equal(t, rv1.Pointer(), rv2.Pointer())
}
}
func TestInvalidMappingErr_WithReason(t *testing.T) {
err := InvalidMappingErr{From: reflect.TypeOf(1), To: reflect.TypeOf("a"), Reason: "reason"}
assert.Equal(t, "mapper: cannot map int to string: reason", err.Error())
}
func TestInvalidMappingErr_WithoutReason(t *testing.T) {
err := InvalidMappingErr{From: reflect.TypeOf(1), To: reflect.TypeOf("a")}
assert.Equal(t, "mapper: cannot map int to string", err.Error())
}
func Benchmark(b *testing.B) {
b.Run("struct->struct", func(b *testing.B) {
type Src struct {
A int
B int
C int
D int
}
type Dst struct {
A string
B string
C string
D string
}
src := Src{
A: 1,
B: 2,
C: 3,
D: 4,
}
dst := Dst{}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
b.Run("struct->map", func(b *testing.B) {
type Src struct {
A int
B int
C int
D int
}
src := Src{
A: 1,
B: 2,
C: 3,
D: 4,
}
dst := map[string]string{}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
b.Run("map->struct", func(b *testing.B) {
src := map[string]int{
"A": 1,
"B": 2,
"C": 3,
"D": 4,
}
type Dst struct {
A string
B string
C string
D string
}
dst := Dst{}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
b.Run("map->map", func(b *testing.B) {
src := map[string]int{
"A": 1,
"B": 2,
"C": 3,
"D": 4,
}
dst := map[string]string{}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
b.Run("[]int->[]int", func(b *testing.B) {
src := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
var dst []int
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
b.Run("[]int->MyInt", func(b *testing.B) {
type MyInt int
src := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
var dst []MyInt
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
b.Run("[]int->any", func(b *testing.B) {
src := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
var dst []any
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Map(src, &dst)
}
})
}
func ptr(v any) any {
r := reflect.New(reflect.TypeOf(v)).Elem()
r.Set(reflect.ValueOf(v))
return r.Addr().Interface()
}
func exp(v any) any {
r := reflect.ValueOf(v)
for r.Kind() == reflect.Interface {
r = r.Elem()
}
if r.Kind() == reflect.Ptr {
return r.Interface()
}
return ptr(r.Interface())
}
func dst(v any) any {
r := reflect.ValueOf(v)
for r.Kind() == reflect.Interface {
r = r.Elem()
}
return r.Interface()
}
func anySlice() any {
return []any{}
}