forked from linkedin/goavro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodec_test.go
144 lines (139 loc) · 4.02 KB
/
codec_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
// Copyright [2019] LinkedIn Corp. Licensed under the Apache License, Version
// 2.0 (the "License"); you may not use this file except in compliance with the
// License. You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
package goavro
import (
"fmt"
"testing"
)
func ExampleCodecCanonicalSchema() {
schema := `{"type":"map","values":{"type":"enum","name":"foo","symbols":["alpha","bravo"]}}`
codec, err := NewCodec(schema)
if err != nil {
fmt.Println(err)
} else {
fmt.Println(codec.CanonicalSchema())
}
// Output: {"type":"map","values":{"name":"foo","type":"enum","symbols":["alpha","bravo"]}}
}
func TestSchemaCRC64Avro(t *testing.T) {
cases := []struct {
Schema string
Fingerprint int64
}{
{
Schema: `"null"`,
Fingerprint: 7195948357588979594,
},
{
Schema: `"boolean"`,
Fingerprint: -6970731678124411036,
},
{
Schema: `"int"`,
Fingerprint: 8247732601305521295,
},
{
Schema: `"long"`,
Fingerprint: -3434872931120570953,
},
{
Schema: `"float"`,
Fingerprint: 5583340709985441680,
},
{
Schema: `"double"`,
Fingerprint: -8181574048448539266,
},
{
Schema: `"bytes"`,
Fingerprint: 5746618253357095269,
},
{
Schema: `"string"`,
Fingerprint: -8142146995180207161,
},
{
Schema: `[ "int" ]`,
Fingerprint: -5232228896498058493,
},
{
Schema: `[ "int" , {"type":"boolean"} ]`,
Fingerprint: 5392556393470105090,
},
{
Schema: `{"fields":[], "type":"record", "name":"foo"}`,
Fingerprint: -4824392279771201922,
},
{
Schema: `{"fields":[], "type":"record", "name":"foo", "namespace":"x.y"}`,
Fingerprint: 5916914534497305771,
},
{
Schema: `{"fields":[], "type":"record", "name":"a.b.foo", "namespace":"x.y"}`,
Fingerprint: -4616218487480524110,
},
{
Schema: `{"fields":[], "type":"record", "name":"foo", "doc":"Useful info"}`,
Fingerprint: -4824392279771201922,
},
{
Schema: `{"fields":[], "type":"record", "name":"foo", "aliases":["foo","bar"]}`,
Fingerprint: -4824392279771201922,
},
{
Schema: `{"fields":[], "type":"record", "name":"foo", "doc":"foo", "aliases":["foo","bar"]}`,
Fingerprint: -4824392279771201922,
},
{
Schema: `{"fields":[{"type":{"type":"boolean"}, "name":"f1"}], "type":"record", "name":"foo"}`,
Fingerprint: 7843277075252814651,
},
{
Schema: `{ "fields":[{"type":"boolean", "aliases":[], "name":"f1", "default":true}, {"order":"descending","name":"f2","doc":"Hello","type":"int"}], "type":"record", "name":"foo"}`,
Fingerprint: -4860222112080293046,
},
{
Schema: `{"type":"enum", "name":"foo", "symbols":["A1"]}`,
Fingerprint: -6342190197741309591,
},
{
Schema: `{"namespace":"x.y.z", "type":"enum", "name":"foo", "doc":"foo bar", "symbols":["A1", "A2"]}`,
Fingerprint: -4448647247586288245,
},
{
Schema: `{"name":"foo","type":"fixed","size":15}`,
Fingerprint: 1756455273707447556,
},
{
Schema: `{"namespace":"x.y.z", "type":"fixed", "name":"foo", "doc":"foo bar", "size":32}`,
Fingerprint: -3064184465700546786,
},
{
Schema: `{ "items":{"type":"null"}, "type":"array"}`,
Fingerprint: -589620603366471059,
},
{
Schema: `{ "values":"string", "type":"map"}`,
Fingerprint: -8732877298790414990,
},
{
Schema: `{"name":"PigValue","type":"record", "fields":[{"name":"value", "type":["null", "int", "long", "PigValue"]}]}`,
Fingerprint: -1759257747318642341,
},
}
for _, c := range cases {
codec, err := NewCodec(c.Schema)
if err != nil {
t.Fatalf("CASE: %s; cannot create code: %s", c.Schema, err)
}
if got, want := codec.SchemaCRC64Avro(), c.Fingerprint; got != want {
t.Errorf("CASE: %s; GOT: %#x; WANT: %#x", c.Schema, got, want)
}
}
}