-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathregistry_test.go
125 lines (109 loc) · 2.43 KB
/
registry_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
package codec
import (
"errors"
"testing"
"github.com/lytics/grid/v3/codec/protomessage"
)
func TestTypeName(t *testing.T) {
t.Parallel()
const expected = "github.com/lytics/grid/v3/codec/protomessage/Person"
msg := protomessage.Person{}
name := TypeName(&msg)
if name != expected {
t.Fatal("expected:", expected, " got:", name)
}
}
func TestRegisterMarshalUnmarshal(t *testing.T) {
err := Register(protomessage.Person{})
if err != nil {
t.Fatal(err)
}
msg := &protomessage.Person{
Name: "James Tester",
Phones: []*protomessage.Person_PhoneNumber{
{
Number: "555-555-5555",
PhoneType: protomessage.Person_HOME,
},
},
}
typeName, data, err := Marshal(msg)
if err != nil {
t.Fatal(err)
}
res, err := Unmarshal(data, typeName)
if err != nil {
t.Fatal(err)
}
switch res := res.(type) {
case *protomessage.Person:
if msg.Name != res.Name {
t.Fatal("expected same name")
}
if msg.Phones[0].Number != res.Phones[0].Number {
t.Fatal("expected same phone number")
}
if msg.Phones[0].PhoneType != res.Phones[0].PhoneType {
t.Fatal("expected same phone type")
}
}
}
func TestNonProtobuf(t *testing.T) {
notProto := "notProto"
err := Register(notProto)
if !errors.Is(err, ErrUnsupportedMessage) {
t.Fatalf("expected %[1]v, got %[2]T: %[2]v", ErrUnsupportedMessage, err)
}
}
// BenchmarkMarshal checks how fast it is to look up
// a type in the registry and marshal.
//
// Local results:
// BenchmarkMarshal-4 3000000 545 ns/op
//
func BenchmarkMarshal(b *testing.B) {
err := Register(protomessage.Person{})
if err != nil {
b.Fatal(err)
}
msg := &protomessage.Person{
Name: "James Tester",
}
for i := 0; i < b.N; i++ {
_, data, err := Marshal(msg)
if err != nil {
b.Fatal(err)
}
if len(data) == 0 {
b.Fatal("marshal produced zero bytes")
}
}
}
// BenchmarkUnmarshal checks how fast it is to look up
// a type in the registry and unmarshal.
//
// Local results:
// BenchmarkUnmarshal-4 3000000 496 ns/op
//
func BenchmarkUnmarshal(b *testing.B) {
err := Register(protomessage.Person{})
if err != nil {
b.Fatal(err)
}
msg := &protomessage.Person{
Name: "James Tester",
}
typeName, data, err := Marshal(msg)
if err != nil {
b.Fatal(err)
}
for i := 0; i < b.N; i++ {
res, err := Unmarshal(data, typeName)
if err != nil {
b.Fatal(err)
}
if res.(*protomessage.Person).Name != "James Tester" {
b.Fatal("wrong name")
}
}
}