forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decoder_dynamic_test.go
63 lines (56 loc) · 1.7 KB
/
decoder_dynamic_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
package avro_test
import (
"bytes"
"testing"
"github.com/hamba/avro/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestDecoder_Interface(t *testing.T) {
tests := []struct {
name string
data []byte
schema string
got any
want any
}{
{
name: "Empty Interface",
data: []byte{0x36, 0x06, 0x66, 0x6f, 0x6f},
schema: `{"type": "record", "name": "test", "fields" : [{"name": "a", "type": "long"}, {"name": "b", "type": "string"}]}`,
got: nil,
want: map[string]any{"a": int64(27), "b": "foo"},
},
{
name: "Interface Non-Ptr",
data: []byte{0x36, 0x06, 0x66, 0x6f, 0x6f},
schema: `{"type": "record", "name": "test", "fields": [{"name": "a", "type": "long"}, {"name": "b", "type": "string"}]}`,
got: TestRecord{},
want: map[string]any{"a": int64(27), "b": "foo"},
},
{
name: "Interface Nil Ptr",
data: []byte{0x36, 0x06, 0x66, 0x6f, 0x6f},
schema: `{"type": "record", "name": "test", "fields" : [{"name": "a", "type": "long"}, {"name": "b", "type": "string"}]}`,
got: (*TestRecord)(nil),
want: &TestRecord{A: 27, B: "foo"},
},
{
name: "Interface Ptr",
data: []byte{0x36, 0x06, 0x66, 0x6f, 0x6f},
schema: `{"type": "record", "name": "test", "fields": [{"name": "a", "type": "long"}, {"name": "b", "type": "string"}]}`,
got: &TestRecord{},
want: &TestRecord{A: 27, B: "foo"},
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
defer ConfigTeardown()
dec, _ := avro.NewDecoder(test.schema, bytes.NewReader(test.data))
err := dec.Decode(&test.got)
require.NoError(t, err)
assert.Equal(t, test.want, test.got)
})
}
}