-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage_test.go
240 lines (213 loc) · 5.82 KB
/
message_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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package gearman
import (
"bufio"
"bytes"
"encoding/binary"
"io"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func longString(n int) string {
buff := make([]byte, n)
for i := 0; i < n; i++ {
buff[i] = 'a'
}
return string(buff)
}
// encode the message without arguments size validation
func (m *Message) encodeWithoutValidation() []byte {
body := strings.Join(m.Arguments, separator)
buff := bytes.NewBuffer(make([]byte, 0, len(body)+12))
buff.WriteString(m.MagicType.String())
binary.Write(buff, byteOrder, uint32(m.PacketType))
// must convert to uint32 as encoding/binary dose not work with int
binary.Write(buff, byteOrder, uint32(len(body)))
buff.WriteString(body)
return buff.Bytes()
}
func TestEncode(t *testing.T) {
// normal case
msg := &Message{
MagicType: MagicReq,
PacketType: SUBMIT_JOB,
Arguments: []string{"echo", "111", "hello world"},
}
encodedBytes, err := msg.Encode()
assert.Nil(t, err)
assert.NotNil(t, encodedBytes)
//Invalid magic type
msg.MagicType = 32
encodedBytes, err = msg.Encode()
assert.Equal(t, errInvalidMagic, err)
assert.Nil(t, encodedBytes)
//Invalid packet type
msg.MagicType = MagicReq
msg.PacketType = PacketTypeMax + 5
encodedBytes, err = msg.Encode()
assert.Equal(t, errInvaldPacketType, err)
assert.Nil(t, encodedBytes)
// Arguments too long
msg.PacketType = SUBMIT_JOB
msg.Arguments = []string{"echo", "1234", longString(65)}
encodedBytes, err = msg.Encode()
assert.Equal(t, errArgumentsTooLong, err)
assert.Nil(t, encodedBytes)
}
func TestDecode(t *testing.T) {
msg := &Message{
MagicType: MagicReq,
PacketType: SUBMIT_JOB,
Arguments: []string{"echo", "111", "hello world"},
}
encodedBytes, err := msg.Encode()
assert.Nil(t, err)
reader := bufio.NewReader(bytes.NewReader(encodedBytes))
decodedMsg, _, err := NextMessage(reader)
assert.Equal(t, msg, decodedMsg)
assert.Nil(t, err)
decodedMsg, _, err = NextMessage(reader)
assert.Nil(t, decodedMsg)
assert.Equal(t, io.EOF, err)
//Invalid magic type
msg.MagicType = 32
encodedBytes = msg.encodeWithoutValidation()
reader = bufio.NewReader(bytes.NewReader(encodedBytes))
decodedMsg, _, err = NextMessage(reader)
assert.Nil(t, decodedMsg)
assert.Equal(t, errInvalidMagic, err)
//Invalid packet type
msg.MagicType = MagicReq
msg.PacketType = 232
encodedBytes = msg.encodeWithoutValidation()
reader = bufio.NewReader(bytes.NewReader(encodedBytes))
decodedMsg, _, err = NextMessage(reader)
assert.Nil(t, decodedMsg)
assert.Equal(t, errInvaldPacketType, err)
}
func TestValidate(t *testing.T) {
// Request
msg := &Message{
MagicType: MagicReq,
PacketType: SUBMIT_JOB,
Arguments: []string{"echo", "111", "hello world"},
}
assert.Nil(t, msg.Validate(RoleServer))
assert.Equal(t, errInvalidMsgRole, msg.Validate(RoleWorker))
// Response
msg = &Message{
MagicType: MagicRes,
PacketType: JOB_ASSIGN,
Arguments: []string{"1111", "echo", "hello world"},
}
assert.Nil(t, msg.Validate(RoleWorker))
assert.Error(t, errInvalidMsgRole, msg.Validate(RoleClient))
assert.Error(t, errInvalidMsgRole, msg.Validate(RoleServer))
// Two roles
msg = &Message{
MagicType: MagicRes,
PacketType: ECHO_RES,
Arguments: []string{"hello world"},
}
assert.Nil(t, msg.Validate(RoleClient))
assert.Nil(t, msg.Validate(RoleWorker))
assert.Equal(t, errInvalidMsgRole, msg.Validate(RoleServer))
// Args length
msg = &Message{
MagicType: MagicReq,
PacketType: SUBMIT_JOB,
Arguments: []string{},
}
assert.Equal(t, errInvalidArgsLen, msg.Validate(RoleServer))
}
func TestContinousRead(t *testing.T) {
msg := &Message{
MagicType: MagicRes,
PacketType: 243,
Arguments: []string{"echo", "111", "hello world"},
}
encodededMsgs := make([][]byte, 0, 5)
// an invalid message first
encodededMsgs = append(encodededMsgs, msg.encodeWithoutValidation())
// a text message
expectedTxtMsg := "status"
encodededMsgs = append(encodededMsgs, []byte(expectedTxtMsg+"\n"))
// valid one
msg.PacketType = WORK_COMPLETE
validMsg := *msg
encodededMsgs = append(encodededMsgs, msg.encodeWithoutValidation())
// another txt msg
expectedMsg2 := "maxqueue 10 2 3"
encodededMsgs = append(encodededMsgs, []byte(expectedMsg2+"\n"))
buff := bufio.NewReader(bytes.NewBuffer(bytes.Join(encodededMsgs, nil)))
binMsg, txtMsg, err := NextMessage(buff)
assert.Nil(t, binMsg)
assert.Equal(t, errInvaldPacketType, err)
binMsg, txtMsg, err = NextMessage(buff)
assert.Nil(t, binMsg)
assert.Nil(t, err)
assert.Equal(t, expectedTxtMsg, txtMsg)
binMsg, txtMsg, err = NextMessage(buff)
assert.Equal(t, "", txtMsg)
assert.Nil(t, err)
assert.Equal(t, validMsg, *binMsg)
binMsg, txtMsg, err = NextMessage(buff)
assert.Nil(t, binMsg)
assert.Nil(t, err)
assert.Equal(t, expectedMsg2, txtMsg)
}
type repeatReader struct {
content []byte
pos int
}
func (r *repeatReader) Read(b []byte) (int, error) {
readCnt := 0
needCnt := len(b)
contentSize := len(r.content)
for readCnt < needCnt {
n := copy(b[readCnt:], r.content[r.pos:])
readCnt += n
r.pos += n
if r.pos >= contentSize {
r.pos %= contentSize
}
}
return readCnt, nil
}
func BenchmarkDecode(b *testing.B) {
msg := &Message{
MagicType: MagicReq,
PacketType: SUBMIT_JOB,
Arguments: []string{"echo", "1234567890123456", "hello world, blabla blabla"},
}
encodedBytes, err := msg.Encode()
if err != nil {
b.FailNow()
return
}
reader := bufio.NewReader(&repeatReader{content: encodedBytes})
b.ResetTimer()
for i := 0; i < b.N; i++ {
msg, _, err := NextMessage(reader)
if msg != nil {
MsgPool.Put(msg)
}
if err != nil {
b.Fail()
}
}
}
func BenchmarkEncode(b *testing.B) {
msg := &Message{
MagicType: MagicReq,
PacketType: SUBMIT_JOB,
Arguments: []string{"echo", "1234567890123456", "hello world, blabla blabla"},
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, err := msg.Encode()
if err != nil {
b.Fail()
}
}
}