forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encoder_map_test.go
115 lines (85 loc) · 3.01 KB
/
encoder_map_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
package avro_test
import (
"bytes"
"testing"
"github.com/hamba/avro/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestEncoder_MapInvalidType(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"map", "values": "string"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode("test")
assert.Error(t, err)
}
func TestEncoder_Map(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"map", "values": "string"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode(map[string]string{})
require.NoError(t, err)
assert.Equal(t, []byte{0x00}, buf.Bytes())
}
func TestEncoder_MapEmpty(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"map", "values": "string"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode(map[string]string{"foo": "foo"})
require.NoError(t, err)
assert.Equal(t, []byte{0x01, 0x10, 0x06, 0x66, 0x6F, 0x6F, 0x06, 0x66, 0x6F, 0x6F, 0x00}, buf.Bytes())
}
func TestEncoder_MapOfStruct(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"map", "values": {"type": "record", "name": "test", "fields" : [{"name": "a", "type": "long"}, {"name": "b", "type": "string"}]}}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode(map[string]TestRecord{"foo": {A: 27, B: "foo"}})
require.NoError(t, err)
assert.Equal(t, []byte{0x01, 0x12, 0x06, 0x66, 0x6F, 0x6F, 0x36, 0x06, 0x66, 0x6f, 0x6f, 0x0}, buf.Bytes())
}
func TestEncoder_MapInvalidKeyType(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"map", "values": "string"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode(map[int]string{1: "foo"})
assert.Error(t, err)
}
func TestEncoder_MapError(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"map", "values": "string"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode(map[string]int{"foo": 1})
assert.Error(t, err)
}
func TestEncoder_MapWithMoreThanBlockLengthKeys(t *testing.T) {
avro.DefaultConfig = avro.Config{
TagKey: "avro",
BlockLength: 1,
UnionResolutionError: true,
}.Freeze()
schema := `{"type":"map", "values": "int"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode(map[string]int{"foo": 1, "bar": 2})
require.NoError(t, err)
assert.Condition(t, func() bool {
// {"foo": 1, "bar": 2}
foobar := bytes.Equal([]byte{0x01, 0x0a, 0x06, 0x66, 0x6F, 0x6F, 0x02, 0x01, 0x0a, 0x06, 0x62, 0x61, 0x72, 0x04, 0x0}, buf.Bytes())
// {"bar": 2, "foo": 1}
barfoo := bytes.Equal([]byte{0x01, 0x0a, 0x06, 0x62, 0x61, 0x72, 0x04, 0x01, 0x0a, 0x06, 0x66, 0x6F, 0x6F, 0x02, 0x0}, buf.Bytes())
return (foobar || barfoo)
})
}