forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecoder_map_test.go
78 lines (56 loc) · 2.01 KB
/
decoder_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
package avro_test
import (
"bytes"
"testing"
"github.com/hamba/avro"
"github.com/stretchr/testify/assert"
)
func TestDecoder_MapInvalidType(t *testing.T) {
defer ConfigTeardown()
data := []byte{0x02, 0x06, 0x66, 0x6F, 0x6F, 0x06, 0x66, 0x6F, 0x6F, 0x00}
schema := `{"type":"map", "values": "string"}`
dec, err := avro.NewDecoder(schema, bytes.NewReader(data))
assert.NoError(t, err)
var str string
err = dec.Decode(&str)
assert.Error(t, err)
}
func TestDecoder_MapMap(t *testing.T) {
defer ConfigTeardown()
data := []byte{0x02, 0x06, 0x66, 0x6F, 0x6F, 0x06, 0x66, 0x6F, 0x6F, 0x00}
schema := `{"type":"map", "values": "string"}`
dec, _ := avro.NewDecoder(schema, bytes.NewReader(data))
var got map[string]string
err := dec.Decode(&got)
assert.NoError(t, err)
assert.Equal(t, map[string]string{"foo": "foo"}, got)
}
func TestDecoder_MapMapOfStruct(t *testing.T) {
defer ConfigTeardown()
data := []byte{0x02, 0x06, 0x66, 0x6F, 0x6F, 0x36, 0x06, 0x66, 0x6f, 0x6f, 0x0}
schema := `{"type":"map", "values": {"type": "record", "name": "test", "fields" : [{"name": "a", "type": "long"}, {"name": "b", "type": "string"}]}}`
dec, _ := avro.NewDecoder(schema, bytes.NewReader(data))
var got map[string]TestRecord
err := dec.Decode(&got)
assert.NoError(t, err)
assert.Equal(t, map[string]TestRecord{"foo": {A: 27, B: "foo"}}, got)
}
func TestDecoder_MapMapError(t *testing.T) {
defer ConfigTeardown()
data := []byte{0xE2, 0xA2, 0xF3, 0xAD, 0xAD, 0xAD, 0xE2, 0xA2, 0xF3, 0xAD, 0xAD}
schema := `{"type":"map", "values": "string"}`
dec, err := avro.NewDecoder(schema, bytes.NewReader(data))
assert.NoError(t, err)
var got map[string]string
err = dec.Decode(&got)
assert.Error(t, err)
}
func TestDecoder_MapInvalidKeyType(t *testing.T) {
defer ConfigTeardown()
data := []byte{0x02, 0x06, 0x66, 0x6F, 0x6F, 0x06, 0x66, 0x6F, 0x6F, 0x00}
schema := `{"type":"map", "values": "string"}`
dec, _ := avro.NewDecoder(schema, bytes.NewReader(data))
var got map[int]string
err := dec.Decode(&got)
assert.Error(t, err)
}