forked from panjf2000/gnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codec_test.go
343 lines (318 loc) · 10.9 KB
/
codec_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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
// Copyright (c) 2019 Andy Pan
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package gnet
import (
"bytes"
"encoding/binary"
"math/rand"
"testing"
"github.com/panjf2000/gnet/errors"
)
type mockConn struct {
Conn
buf []byte
}
func (c *mockConn) Read() []byte {
return c.buf
}
func (c *mockConn) ShiftN(_ int) int { return 0 }
func TestLengthFieldBasedFrameCodecWith1(t *testing.T) {
encoderConfig := EncoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldLength: 1,
LengthAdjustment: 0,
LengthIncludesLengthFieldLength: false,
}
decoderConfig := DecoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldOffset: 0,
LengthFieldLength: 1,
LengthAdjustment: 0,
InitialBytesToStrip: 1,
}
codec := NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz := 256
data := make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
if _, err := codec.Encode(nil, data); err == nil {
t.Fatal("should have a error of exceeding bytes")
}
sz = 255
data = make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
out, _ := codec.Encode(nil, data)
if !bytes.Equal(out[1:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[1:]), string(data))
}
c := &mockConn{buf: out}
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to the original data(%s)\n", string(res), string(data))
}
encoderConfig.ByteOrder = binary.LittleEndian
decoderConfig.ByteOrder = binary.LittleEndian
codec = NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
out, _ = codec.Encode(nil, data)
if !bytes.Equal(out[1:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[1:]), string(data))
}
c.buf = out
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to original data(%s)\n", string(res), string(data))
}
}
func TestLengthFieldBasedFrameCodecWith2(t *testing.T) {
encoderConfig := EncoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldLength: 2,
LengthAdjustment: 0,
LengthIncludesLengthFieldLength: false,
}
decoderConfig := DecoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldOffset: 0,
LengthFieldLength: 2,
LengthAdjustment: 0,
InitialBytesToStrip: 2,
}
codec := NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz := 65536
data := make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
if _, err := codec.Encode(nil, data); err == nil {
t.Fatal("should have a error of exceeding bytes.")
}
sz = rand.Intn(10) * 1024
data = make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
out, _ := codec.Encode(nil, data)
if !bytes.Equal(out[2:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[2:]), string(data))
}
c := &mockConn{buf: out}
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to the original data(%s)\n", string(res), string(data))
}
encoderConfig.ByteOrder = binary.LittleEndian
decoderConfig.ByteOrder = binary.LittleEndian
codec = NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz = rand.Intn(10) * 1024
data = make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
out, _ = codec.Encode(nil, data)
if !bytes.Equal(out[2:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[2:]), string(data))
}
c.buf = out
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to original data(%s)\n", string(res), string(data))
}
}
func TestLengthFieldBasedFrameCodecWith3(t *testing.T) {
encoderConfig := EncoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldLength: 3,
LengthAdjustment: 0,
LengthIncludesLengthFieldLength: false,
}
decoderConfig := DecoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldOffset: 0,
LengthFieldLength: 3,
LengthAdjustment: 0,
InitialBytesToStrip: 3,
}
codec := NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz := 16777216
data := make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
if _, err := codec.Encode(nil, data); err == nil {
t.Fatal("should have a error of exceeding bytes.")
}
sz = rand.Intn(10) * 64 * 1024
data = make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
out, _ := codec.Encode(nil, data)
if !bytes.Equal(out[3:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[3:]), string(data))
}
c := &mockConn{buf: out}
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to the original data(%s)\n", string(res), string(data))
}
encoderConfig.ByteOrder = binary.LittleEndian
decoderConfig.ByteOrder = binary.LittleEndian
codec = NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz = rand.Intn(10) * 64 * 1024
data = make([]byte, sz)
if _, err := rand.Read(data); err != nil {
panic(err)
}
out, _ = codec.Encode(nil, data)
if !bytes.Equal(out[3:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[3:]), string(data))
}
c.buf = out
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to original data(%s)\n", string(res), string(data))
}
buf := make([]byte, 3)
rand.Read(buf)
bNum := readUint24(binary.BigEndian, buf)
p := writeUint24(binary.BigEndian, int(bNum))
if !bytes.Equal(buf, p) {
t.Fatalf("data don't match with big endian, raw data: %s, recovered data: %s\n", string(buf), string(p))
}
rand.Read(buf)
bNum = readUint24(binary.LittleEndian, buf)
p = writeUint24(binary.LittleEndian, int(bNum))
if !bytes.Equal(buf, p) {
t.Fatalf("data don't match with little endian, raw data: %s, recovered data: %s\n", string(buf), string(p))
}
}
func TestLengthFieldBasedFrameCodecWith8(t *testing.T) {
encoderConfig := EncoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldLength: 8,
LengthAdjustment: 0,
LengthIncludesLengthFieldLength: false,
}
decoderConfig := DecoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldOffset: 0,
LengthFieldLength: 8,
LengthAdjustment: 0,
InitialBytesToStrip: 8,
}
codec := NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz := rand.Intn(10) * 1024 * 1024
data := make([]byte, sz)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
out, _ := codec.Encode(nil, data)
if !bytes.Equal(out[8:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[8:]), string(data))
}
c := &mockConn{buf: out}
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to the original data(%s)\n", string(res), string(data))
}
encoderConfig.ByteOrder = binary.LittleEndian
decoderConfig.ByteOrder = binary.LittleEndian
codec = NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
sz = rand.Intn(10) * 1024 * 1024
data = make([]byte, sz)
if _, err := rand.Read(data); err != nil {
panic(err)
}
out, _ = codec.Encode(nil, data)
if !bytes.Equal(out[8:], data) {
t.Fatalf("encoded data(%s) shoule be equal to the original data(%s)\n", string(out[8:]), string(data))
}
c.buf = out
if res, err := codec.Decode(c); err != nil {
t.Fatalf("decode data with error: %v\n", err)
} else if !bytes.Equal(res, data) {
t.Fatalf("decoded data(%s) shoule be equal to original data(%s)\n", string(res), string(data))
}
}
func TestFixedLengthFrameCodec_Encode(t *testing.T) {
codec := NewFixedLengthFrameCodec(8)
if data, err := codec.Encode(nil, make([]byte, 15)); data != nil || err != errors.ErrInvalidFixedLength {
t.Fatal("should have a error of invalid fixed length")
}
}
func TestLengthFieldBasedFrameCodecZeroPlayLoad(t *testing.T) {
encoderConfig := EncoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldLength: 4,
LengthAdjustment: 0,
LengthIncludesLengthFieldLength: false,
}
decoderConfig := DecoderConfig{
ByteOrder: binary.BigEndian,
LengthFieldOffset: 0,
LengthFieldLength: 4,
LengthAdjustment: 0,
InitialBytesToStrip: 4,
}
codec := NewLengthFieldBasedFrameCodec(encoderConfig, decoderConfig)
out, _ := codec.Encode(nil, nil)
if len(out[4:]) != 0 {
t.Fatalf("encoded data should be empty, but got: %s\n", string(out[4:]))
}
res, err := codec.Decode(&mockConn{buf: out})
if err != nil {
t.Fatalf("decode error with error: %v\n", err)
} else if len(res) != 0 {
t.Fatalf("decoded data should be empty, but got: %s\n", string(res[4:]))
}
}
func TestInnerBufferReadN(t *testing.T) {
var in innerBuffer
data := make([]byte, 10)
if _, err := rand.Read(data); err != nil {
t.Fatal(err)
}
in = data
if _, err := in.readN(-1); err == nil {
t.Fatal("error missing")
}
if _, err := in.readN(11); err == nil {
t.Fatal("error missing")
}
if _, err := in.readN(1); err != nil {
t.Fatal("unexpected error")
}
if len(in) != 9 {
t.Fatal("wrong length of leftover bytes")
}
}