forked from reo7sp/go-tarantool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacket_test.go
49 lines (40 loc) · 1.56 KB
/
packet_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
package tarantool
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestDecodePacket(t *testing.T) {
assert := assert.New(t)
body := []byte("\x83\x00\xce\x00\x00\x00\x00\x01\xcf\x00\x00\x00\x00\x00\x00\x00\x03\x05\xce\x00\x00\x006\x810\xdd\x00\x00\x00\x03\x92\x01\xacFirst record\x92\x02\xa5Music\x93\x03\xa6Length]")
pp := &BinaryPacket{body: body}
res := &pp.packet
err := res.UnmarshalBinary(pp.body)
assert.NoError(err)
assert.EqualValues(3, res.requestID)
assert.EqualValues(0, res.Result.ErrorCode)
//assert.EqualValues([][]interface{}{[]interface{}{int64(1), "First record"}, []interface{}{int64(2), "Music"}, []interface{}{int64(3), "Length", int64(93)}}, res.Result.Data)
}
func BenchmarkDecodePacket(b *testing.B) {
b.ReportAllocs()
body := []byte("\x83\x00\xce\x00\x00\x00\x00\x01\xcf\x00\x00\x00\x00\x00\x00\x00\x03\x05\xce\x00\x00\x006\x810\xdd\x00\x00\x00\x03\x92\x01\xacFirst record\x92\x02\xa5Music\x93\x03\xa6Length]")
pp := &BinaryPacket{body: body}
res := &pp.packet
for i := 0; i < b.N; i++ {
err := res.UnmarshalBinary(pp.body)
if err != nil || res.requestID != 3 {
b.FailNow()
}
}
}
func BenchmarkDecodeHeader(b *testing.B) {
b.ReportAllocs()
body := []byte("\x83\x00\xce\x00\x00\x00\x00\x01\xcf\x00\x00\x00\x00\x00\x00\x00\x03\x05\xce\x00\x00\x006\x810\xdd\x00\x00\x00\x03\x92\x01\xacFirst record\x92\x02\xa5Music\x93\x03\xa6Length]")
pp := &BinaryPacket{body: body}
pack := &pp.packet
for i := 0; i < b.N; i++ {
_, err := pack.UnmarshalBinaryHeader(pp.body)
if err != nil || pack.requestID != 3 {
b.FailNow()
}
}
}