-
Notifications
You must be signed in to change notification settings - Fork 0
/
serialize_test.go
114 lines (99 loc) · 3.08 KB
/
serialize_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 goriffle
import (
"bytes"
"encoding/base64"
"encoding/json"
"fmt"
"reflect"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestjSONDeserialize(t *testing.T) {
type test struct {
packet string
exp message
// number of args past the message type
args int
}
tests := []test{
{
`[1,"some.realm",{}]`,
&hello{"some.realm", make(map[string]interface{})},
2,
},
}
s := new(jSONSerializer)
for _, tst := range tests {
if msg, err := s.deserialize([]byte(tst.packet)); err != nil {
t.Errorf("Error parsing good packet: %s, %s", err, tst.packet)
} else if msg.messageType() != tst.exp.messageType() {
t.Errorf("Incorrect message type: %d != %d", msg.messageType(), tst.exp.messageType())
} else if !reflect.DeepEqual(msg, tst.exp) {
t.Errorf("%+v != %+v", msg, tst.exp)
}
}
}
func TestApplySlice(t *testing.T) {
const msgType = pUBLISH
pubArgs := []string{"hello", "world"}
Convey("Deserializing into a message with a slice", t, func() {
args := []interface{}{msgType, 123, make(map[string]interface{}), "some.valid.topic", pubArgs}
msg, err := apply(msgType, args)
Convey("Should not error", func() {
So(err, ShouldBeNil)
})
pubMsg, ok := msg.(*publish)
Convey("The message returned should be a publish message", func() {
So(ok, ShouldBeTrue)
})
Convey("The message received should have the correct arguments", func() {
So(len(pubMsg.Arguments), ShouldEqual, 2)
So(pubMsg.Arguments[0], ShouldEqual, pubArgs[0])
So(pubMsg.Arguments[1], ShouldEqual, pubArgs[1])
})
})
}
func TestBinaryData(t *testing.T) {
from := []byte("hello")
arr, err := json.Marshal(BinaryData(from))
if err != nil {
t.Error("Error marshalling BinaryData:", err.Error())
}
exp := fmt.Sprintf(`"\u0000%s"`, base64.StdEncoding.EncodeToString(from))
if !bytes.Equal([]byte(exp), arr) {
//t.Errorf("%s != %s", string(arr), exp)
}
var b BinaryData
err = json.Unmarshal(arr, &b)
if err != nil {
t.Errorf("Error unmarshalling marshalled BinaryData: %v", err)
} else if !bytes.Equal([]byte(b), from) {
t.Errorf("%s != %s", string(b), string(from))
}
}
func TestToList(t *testing.T) {
type test struct {
args []interface{}
kwArgs map[string]interface{}
omit int
msg string
}
tests := []test{
{[]interface{}{1}, map[string]interface{}{"a": nil}, 0, "default case"},
{nil, map[string]interface{}{"a": nil}, 0, "nil args, non-empty kwArgs"},
{[]interface{}{}, map[string]interface{}{"a": nil}, 0, "empty args, non-empty kwArgs"},
{[]interface{}{1}, nil, 1, "non-empty args, nil kwArgs"},
{[]interface{}{1}, make(map[string]interface{}), 1, "non-empty args, empty kwArgs"},
{[]interface{}{}, make(map[string]interface{}), 2, "empty args, empty kwArgs"},
{nil, nil, 2, "nil args, nil kwArgs"},
}
for _, tst := range tests {
msg := &event{0, 0, nil, tst.args, tst.kwArgs}
// +1 to account for the message type
numField := reflect.ValueOf(msg).Elem().NumField() + 1
exp := numField - tst.omit
if l := len(toList(msg)); l != exp {
t.Errorf("Incorrect number of fields: %d != %d: %s", l, exp, tst.msg)
}
}
}