forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encoder_array_test.go
78 lines (56 loc) · 1.87 KB
/
encoder_array_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/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestEncoder_ArrayInvalidType(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"array", "items": "int"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode("test")
assert.Error(t, err)
}
func TestEncoder_Array(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"array", "items": "int"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode([]int{27, 28})
require.NoError(t, err)
assert.Equal(t, []byte{0x03, 0x04, 0x36, 0x38, 0x0}, buf.Bytes())
}
func TestEncoder_ArrayEmpty(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"array", "items": "int"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode([]int{})
require.NoError(t, err)
assert.Equal(t, []byte{0x0}, buf.Bytes())
}
func TestEncoder_ArrayOfStruct(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"array", "items": {"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([]TestRecord{{A: 27, B: "foo"}, {A: 27, B: "foo"}})
require.NoError(t, err)
assert.Equal(t, []byte{0x03, 0x14, 0x36, 0x06, 0x66, 0x6f, 0x6f, 0x36, 0x06, 0x66, 0x6f, 0x6f, 0x0}, buf.Bytes())
}
func TestEncoder_ArrayError(t *testing.T) {
defer ConfigTeardown()
schema := `{"type":"array", "items": "int"}`
buf := bytes.NewBuffer([]byte{})
enc, err := avro.NewEncoder(schema, buf)
require.NoError(t, err)
err = enc.Encode([]string{"foo", "bar"})
assert.Error(t, err)
}