-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmetadata_test.go
263 lines (228 loc) · 5.5 KB
/
metadata_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
//go:build unit
package metadata_test
import (
"encoding/json"
"strings"
"testing"
"time"
"unicode"
"github.com/mailru/easyjson"
"github.com/stretchr/testify/assert"
"github.com/hellofresh/goengine/v2/metadata"
)
func TestNew(t *testing.T) {
asserts := assert.New(t)
m1 := metadata.New()
asserts.NotNil(m1)
m2 := metadata.New()
asserts.NotNil(m2)
asserts.False(m1 == m2, "New instances should not be identical")
}
func TestWithValue(t *testing.T) {
t.Run("with instance", func(t *testing.T) {
asserts := assert.New(t)
m := metadata.New()
asserts.Nil(m.Value(""))
m = metadata.WithValue(m, "", "empty_string")
asserts.Equal("empty_string", m.Value(""))
m = metadata.WithValue(m, "second", time.Second)
asserts.Equal(time.Second, m.Value("second"))
asserts.Equal("empty_string", m.Value(""))
})
t.Run("with nil", func(t *testing.T) {
var m metadata.Metadata
m = metadata.WithValue(m, "key", "empty_string")
assert.Equal(t, "empty_string", m.Value("key"))
})
}
func TestFromMap(t *testing.T) {
type mapTestCase struct {
title string
input map[string]interface{}
}
testCases := []mapTestCase{
{
"map with data",
map[string]interface{}{
"v": 1,
"foo": "bar",
"is_valid": true,
},
},
{
"empty map",
map[string]interface{}{},
},
{
"nil map",
nil,
},
}
for _, testCase := range testCases {
t.Run(testCase.title, func(t *testing.T) {
expectedMap := testCase.input
if expectedMap == nil {
expectedMap = map[string]interface{}{}
}
m := metadata.FromMap(testCase.input)
assert.Equal(t, expectedMap, m.AsMap())
})
}
}
func TestAsMap(t *testing.T) {
type mapTestCase struct {
title string
setup func() metadata.Metadata
expectedMap map[string]interface{}
}
testCases := []mapTestCase{
{
"empty metadata",
func() metadata.Metadata {
return metadata.New()
},
map[string]interface{}{},
},
{
"nil parent metadata",
func() metadata.Metadata {
var m metadata.Metadata
return metadata.WithValue(m, "test", 1.1)
},
map[string]interface{}{
"test": 1.1,
},
},
{
"metadata with multiple values",
func() metadata.Metadata {
m := metadata.New()
m = metadata.WithValue(m, "test", nil)
return metadata.WithValue(m, "another", "value")
},
map[string]interface{}{
"test": nil,
"another": "value",
},
},
{
"metadata with overridden values",
func() metadata.Metadata {
m := metadata.New()
m = metadata.WithValue(m, "test", nil)
m = metadata.WithValue(m, "another", "value")
return metadata.WithValue(m, "another", "another_value")
},
map[string]interface{}{
"test": nil,
"another": "another_value",
},
},
}
for _, testCase := range testCases {
t.Run(testCase.title, func(t *testing.T) {
m := testCase.setup()
mMap := m.AsMap()
assert.Equal(t, testCase.expectedMap, mMap)
})
}
}
var jsonTestCases = []struct {
title string
metadata func() metadata.Metadata
json string
}{
{
"empty metadata",
func() metadata.Metadata {
return metadata.New()
},
`{}`,
},
{
"metadata with multiple values",
func() metadata.Metadata {
m := metadata.New()
m = metadata.WithValue(m, "test", nil)
return metadata.WithValue(m, "another", "value")
},
`{
"test": null,
"another": "value"
}`,
},
{
"metadata with 'complex' json",
func() metadata.Metadata {
m := metadata.New()
m = metadata.WithValue(m, "test", nil)
m = metadata.WithValue(m, "another", "value")
m = metadata.WithValue(m, "arr", []interface{}{"a", "b", "c"})
m = metadata.WithValue(m, "arrInArr", []interface{}{"a", []interface{}{"b"}})
m = metadata.WithValue(m, "obj", map[string]interface{}{"a": float64(1)})
m = metadata.WithValue(m, "objInObj", map[string]interface{}{
"a": float64(1),
"b": map[string]interface{}{"a": float64(2)},
})
return m
},
`{
"test": null,
"another": "value",
"arr": [ "a", "b", "c" ],
"arrInArr": [ "a", [ "b" ] ],
"obj": { "a": 1 },
"objInObj": { "a": 1, "b": {"a": 2} }
}`,
},
}
func TestMarshalJSON(t *testing.T) {
for _, testCase := range jsonTestCases {
t.Run(testCase.title, func(t *testing.T) {
expectedJSON := strings.Map(func(r rune) rune {
if unicode.IsSpace(r) {
return -1
}
return r
}, testCase.json)
m := testCase.metadata()
mJSON, err := json.Marshal(m)
assert.Equal(t, expectedJSON, string(mJSON))
assert.NoError(t, err)
})
}
}
func TestUnmarshalJSON(t *testing.T) {
for _, testCase := range jsonTestCases {
t.Run(testCase.title, func(t *testing.T) {
m, err := metadata.UnmarshalJSON([]byte(testCase.json))
// Need to use AsMap otherwise we can have inconsistent tests results.
if assert.NoError(t, err) {
assert.Equal(t, testCase.metadata(), m)
}
})
}
}
func BenchmarkUnmarshalJSON(b *testing.B) {
payload := []byte(`{"_aggregate_id": "b9ebca7a-c1eb-40dd-94a4-fac7c5e84fb5", "_aggregate_type": "bank_account", "_aggregate_version": 1}`)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, err := metadata.UnmarshalJSON(payload)
if err != nil {
b.Fail()
}
}
}
func BenchmarkMarshalJSON(b *testing.B) {
m := metadata.New()
m = metadata.WithValue(m, "_aggregate_id", "b9ebca7a-c1eb-40dd-94a4-fac7c5e84fb5")
m = metadata.WithValue(m, "_aggregate_type", "bank_account")
m = metadata.WithValue(m, "_aggregate_version", 1)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, err := easyjson.Marshal(m.(easyjson.Marshaler))
if err != nil {
b.Fail()
}
}
}