-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschematizedjson_test.go
114 lines (109 loc) · 2.33 KB
/
schematizedjson_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
package zfmt
import (
"testing"
"github.com/google/go-cmp/cmp"
av "github.com/zillow/zfmt/testdata"
)
func TestSchematizedJsonFormatter_Marshall(t *testing.T) {
type fields struct {
protobufFormatter JSONFormatter
SchemaID int
}
type args struct {
v any
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
{
name: "accept reference type of an object, default formatter should be useful",
fields: fields{},
args: args{
v: &av.ExampleJson{
Id: "hello",
},
},
wantErr: false,
},
{
name: "accept reference type of an object, with avro formatter and schemaID",
fields: fields{
protobufFormatter: JSONFormatter{},
SchemaID: 99,
},
args: args{
v: &av.ExampleJson{
Id: "hello",
},
},
wantErr: false,
},
{
name: "accept value type of an object, with avro formatter and schemaID",
fields: fields{
protobufFormatter: JSONFormatter{},
SchemaID: 99,
},
args: args{
v: av.ExampleJson{
Id: "hello",
},
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
p := &SchematizedJSONFormatter{
formatter: tt.fields.protobufFormatter,
SchemaID: tt.fields.SchemaID,
}
_, err := p.Marshall(tt.args.v)
if (err != nil) != tt.wantErr {
t.Errorf("SchematizedProtoFormatter.Marshall() error = %v, wantErr %v", err, tt.wantErr)
return
}
})
}
}
func TestSchematizedJsonFormmater_Unmarshall_PointerType(t *testing.T) {
fmtter := SchematizedJSONFormatter{
formatter: JSONFormatter{},
SchemaID: 123,
}
expected := av.ExampleJson{Id: "what"}
b, err := fmtter.Marshall(&expected)
if err != nil {
t.Fatal(err)
}
reslt := av.ExampleJson{}
if err := fmtter.Unmarshal(b, &reslt); err != nil {
t.Fatal(err)
}
diff := cmp.Diff(&reslt, &expected)
if diff != "" {
t.Fatal(diff)
}
}
func TestSchematizedJsonFormmater_Unmarshalll_ValueType(t *testing.T) {
fmtter := SchematizedJSONFormatter{
formatter: JSONFormatter{},
SchemaID: 123,
}
expected := av.ExampleJson{Id: "what"}
b, err := fmtter.Marshall(expected)
if err != nil {
t.Fatal(err)
}
reslt := av.ExampleJson{}
if err := fmtter.Unmarshal(b, &reslt); err != nil {
t.Fatal(err)
}
diff := cmp.Diff(&reslt, &expected)
if diff != "" {
t.Fatal(diff)
}
}