-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathencoder_decoder_test.go
92 lines (68 loc) · 1.61 KB
/
encoder_decoder_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
package message
import (
"bytes"
"reflect"
"testing"
"code.google.com/p/gogoprotobuf/proto"
"github.com/go-epaxos/message/example"
)
// a simple test that encodes a message into a buffer
// and decodes a message out of the buffer.
func TestEncoderAndDecoder(t *testing.T) {
buf := new(bytes.Buffer)
inPb := &example.A{
Description: "hello world!",
Number: 1,
}
// UUID is 16 byte long
for i := 0; i < 16; i++ {
inPb.Id = append(inPb.Id, byte(i))
}
bytes, err := proto.Marshal(inPb)
if err != nil {
t.Fatal(err)
}
msg := NewMessage(0, bytes)
e := NewMsgEncoder(buf)
e.Encode(msg)
outMsg := NewEmptyMessage()
d := NewMsgDecoder(buf)
d.Decode(outMsg)
if !reflect.DeepEqual(msg, outMsg) {
t.Fatal("Messages are not equal!")
}
outPb := new(example.A)
proto.Unmarshal(outMsg.bytes, outPb)
if !reflect.DeepEqual(outPb, inPb) {
t.Fatal("Protos are not equal!")
}
}
// a simple test that encodes a message into a buffer
// and decodes a message out of the buffer.
func TestPbEncoderAndDecoder(t *testing.T) {
register(0, reflect.TypeOf(example.A{}))
buf := new(bytes.Buffer)
inPb := &example.A{
Description: "hello world!",
Number: 1,
}
// UUID is 16 byte long
for i := 0; i < 16; i++ {
inPb.Id = append(inPb.Id, byte(i))
}
msg := NewPbMessage(0, inPb)
e := NewMsgEncoder(buf)
e.EncodePb(msg)
outMsg := NewEmptyPbMessage()
d := NewMsgDecoder(buf)
err := d.DecodePb(outMsg)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(msg, outMsg) {
t.Fatal("Messages are not equal!")
}
if !reflect.DeepEqual(inPb, outMsg.pb) {
t.Fatal("Protos are not equal!")
}
}