forked from googollee/go-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder_test.go
124 lines (104 loc) · 2.78 KB
/
encoder_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
package parser
import (
"bytes"
"github.com/googollee/go-socket.io/engineio/session"
"io"
"reflect"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type fakeWriter struct {
typ session.FrameType
current *bytes.Buffer
types []session.FrameType
data []*bytes.Buffer
}
func (w *fakeWriter) NextWriter(ft session.FrameType) (io.WriteCloser, error) {
w.current = bytes.NewBuffer(nil)
w.typ = ft
return w, nil
}
func (w *fakeWriter) Write(p []byte) (int, error) {
return w.current.Write(p)
}
func (w *fakeWriter) Close() error {
w.types = append(w.types, w.typ)
w.data = append(w.data, w.current)
return nil
}
func TestEncoder(t *testing.T) {
for _, test := range tests {
t.Run(test.Name, func(t *testing.T) {
should := assert.New(t)
must := require.New(t)
w := fakeWriter{}
encoder := NewEncoder(&w)
v := test.Var
if test.Header.Type == Event {
v = append([]interface{}{test.Event}, test.Var...)
}
var err error
if v != nil {
err = encoder.Encode(test.Header, v)
} else {
err = encoder.Encode(test.Header)
}
must.NoError(err)
must.Equal(len(test.Data), len(w.types))
must.Equal(len(test.Data), len(w.data))
for i := range w.types {
if i == 0 {
should.Equal(session.TEXT, w.types[i])
should.Equal(string(test.Data[i]), w.data[i].String())
continue
}
should.Equal(session.BINARY, w.types[i])
should.Equal(test.Data[i], w.data[i].Bytes())
}
})
}
}
func TestAttachBuffer(t *testing.T) {
tests := []struct {
name string
data interface{}
max uint64
binary [][]byte
}{
{"&Buffer", &Buffer{Data: []byte{1, 2}}, 1, [][]byte{[]byte{1, 2}}},
{"[]interface{}{Buffer}", []interface{}{&Buffer{Data: []byte{1, 2}}}, 1, [][]byte{[]byte{1, 2}}},
{"[]interface{}{Buffer,Buffer}", []interface{}{
&Buffer{Data: []byte{1, 2}},
&Buffer{Data: []byte{3, 4}},
}, 2, [][]byte{[]byte{1, 2}, []byte{3, 4}}},
{"[1]interface{}{Buffer}", [...]interface{}{&Buffer{Data: []byte{1, 2}}}, 1, [][]byte{[]byte{1, 2}}},
{"[2]interface{}{Buffer,Buffer}", [...]interface{}{
&Buffer{Data: []byte{1, 2}},
&Buffer{Data: []byte{3, 4}},
}, 2, [][]byte{[]byte{1, 2}, []byte{3, 4}}},
{"Struct{Buffer}", struct {
Data *Buffer
I int
}{
&Buffer{Data: []byte{1, 2}},
3,
}, 1, [][]byte{[]byte{1, 2}}},
{"map{Buffer}", map[string]interface{}{
"data": &Buffer{Data: []byte{1, 2}},
"i": 3,
}, 1, [][]byte{[]byte{1, 2}}},
}
e := Encoder{}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
should := assert.New(t)
must := require.New(t)
index := uint64(0)
b, err := e.attachBuffer(reflect.ValueOf(test.data), &index)
must.NoError(err)
should.Equal(test.max, index)
should.Equal(test.binary, b)
})
}
}