-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_test.go
365 lines (281 loc) · 7.73 KB
/
server_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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
package ws
import (
"net/http/httptest"
"net/url"
log "github.com/sirupsen/logrus"
// "net/url"
"fmt"
"strings"
"testing"
"time"
)
type simpleMsg struct {
Msg string
N int
}
type simpleAnswer struct {
Msg string
N int
}
const (
testBounce = MsgClient + iota
testTimeout
testNoResponse
testAbruptClose
testEmptyResponse
testSockedClosed
)
// type cstHandler struct{ *testing.T }
type wsServer struct {
*httptest.Server
url *url.URL
}
var (
serverHandler *wsServer
)
// TestServerWSHandler implement the handler interface
type TestServerWSHandler struct {
clientId string
countRedial int
}
func (h TestServerWSHandler) Process(clientId string, msg WSMsg) (response WSMsg, err error) {
log.Info("got new msg for ", clientId)
switch msg.Type() {
case testEmptyResponse:
response, err = EncodeResponse(msg, nil)
return response, nil
case testSockedClosed:
response, err = EncodeResponse(msg, nil)
/***
go func() {
time.Sleep(time.Millisecond * 200)
entry := GetWebSocketByClientId(clientId)
if entry == nil {
log.Error("cannot get client ", clientId, err)
}
log.Info("closing socket for ", clientId)
entry.c = 0
}()
***/
return response, nil
case testAbruptClose:
return NoResponse, ErrorClosed
case testTimeout, testNoResponse:
return NoResponse, nil
}
return NoResponse, nil
}
var countConnections = 0
func (h TestServerWSHandler) Accept(wsConn *WSConn) error {
if strings.Contains(wsConn.ClientId, "error") {
log.Errorf("test accept %s error nconn %d mapn %d", wsConn.ClientId, countConnections, len(webSocketMap))
return ErrorInternal
}
countConnections++
log.Infof("test accept %s success nconn %d mapn %d", wsConn.ClientId, countConnections, len(webSocketMap))
return nil
}
func (h TestServerWSHandler) Closed(wsConn *WSConn) {
countConnections--
log.Infof("server conn %s closed nconns %d", wsConn.ClientId, countConnections)
}
func (h TestServerWSHandler) BeforeRedial() {
h.countRedial++
log.Infof("WS client redial %v", h.countRedial)
}
func (h TestServerWSHandler) AfterRedial(wsConn *WSConn) {
log.Infof("WS client %s redial %d", wsConn.ClientId, h.countRedial)
}
func newServer(t *testing.T) *wsServer {
var s wsServer
handler := TestServerWSHandler{clientId: "server123"}
s.Server = httptest.NewServer(WebSocketHandler(&handler))
u := "ws" + strings.TrimPrefix(s.Server.URL, "http") // make WS protocol
s.url, _ = url.Parse(u + "/ws/")
return &s
}
func setupServer(t *testing.T) {
if serverHandler == nil {
serverHandler = newServer(t)
}
// Clean up websocket map
webSocketMap = make(map[string]*WSConn, 128)
}
func Test_ServerConn(t *testing.T) {
// s := newServer(t)
// defer s.Close()
setupServer(t)
countConnections = 0
conn1 := dial(t, *serverHandler.url, "client1CONN")
defer conn1.Close()
conn2 := dial(t, *serverHandler.url, "client2CONN")
// conn3 := dial(t, *serverHandler.url, "client3")
in := simpleMsg{N: 100, Msg: "conn 1 first msg"}
// out := simpleAnswer{}
err := conn1.RPC(testEmptyResponse, &msgToken, &in, nil)
if err != nil {
t.Fatal("cannot rpc", err)
}
in2 := simpleMsg{N: 101, Msg: "conn 2 first msg"}
// out2 := simpleAnswer{}
err = conn2.RPC(testEmptyResponse, &msgToken, &in2, nil)
if err != nil || len(webSocketMap) != 2 {
t.Fatal("cannot rpc", err, countConnections)
}
conn1.Close()
conn2.Close()
time.Sleep(time.Millisecond * 500)
if len(webSocketMap) != 0 {
t.Fatal("cannot rpc", len(webSocketMap))
}
}
func Test_ServerAccept(t *testing.T) {
setAndSaveEnv(time.Second*10, time.Millisecond*500)
defer resetEnv()
AutoRedial = false
defer func() { AutoRedial = true }()
setupServer(t)
total := 32
var table []*WSConn
for i := 0; i < total; i++ {
n := i
go func() {
conn := dial(t, *serverHandler.url, fmt.Sprintf("clientACCEPT%d", n))
table = append(table, conn)
}()
}
time.Sleep(time.Second * 2)
// time.Sleep(time.Second * 30)
if len(webSocketMap) != total {
t.Fatal("wrong total", len(webSocketMap))
}
for i := range table {
go table[i].Close()
}
time.Sleep(time.Second * 2)
if len(webSocketMap) != 0 {
t.Fatal("wrong end total", len(webSocketMap))
}
}
func Test_ServerPingPongNormal(t *testing.T) {
setAndSaveEnv(time.Millisecond*300, time.Millisecond*100)
defer resetEnv()
s := newServer(t)
defer s.Close()
countClosed = 0
AutoRedial = false
defer func() { AutoRedial = true }()
conn := dial(t, *s.url, "client1PINGPONG")
conn2 := dial(t, *s.url, "client12PINGPONG")
conn3 := dial(t, *s.url, "client123PINGPONG")
time.Sleep(time.Second * 3)
if len(webSocketMap) != 3 {
t.Fatal("failed to pong ws ", len(webSocketMap))
}
conn2.Close()
conn.Close()
conn3.Close()
time.Sleep(time.Second * 1)
if len(webSocketMap) != 0 {
t.Fatal("failed to close ws ", len(webSocketMap))
}
}
func Test_ServerPongFailure(t *testing.T) {
setAndSaveEnv(time.Millisecond*300, time.Millisecond*100)
defer resetEnv()
s := newServer(t)
defer s.Close()
countClosed = 0
AutoRedial = false
defer func() { AutoRedial = true }()
conn := dial(t, *s.url, "client1PONGFailure")
defer conn.Close()
time.Sleep(time.Second * 1)
if len(webSocketMap) != 1 {
t.Fatal("failed to pong ws ", len(webSocketMap))
}
conn.c.SetPingHandler(func(msg string) error {
log.Info("WS client PONG will fail")
return nil
})
time.Sleep(time.Second * 1)
if len(webSocketMap) != 0 {
t.Fatal("failed to close ws ", len(webSocketMap))
}
}
func Test_ServerPingRedial(t *testing.T) {
setAndSaveEnv(time.Millisecond*300, time.Millisecond*100)
defer resetEnv()
setupServer(t)
conn1 := dial(t, *serverHandler.url, "client1PING")
defer conn1.Close()
in := simpleMsg{N: 100, Msg: "conn 1 first msg"}
// out := simpleAnswer{}
err := conn1.RPC(testEmptyResponse, &msgToken, &in, nil)
if err != nil {
t.Fatal("cannot rpc", err)
}
time.Sleep(time.Second * 1)
if len(webSocketMap) != 1 {
t.Fatal("wrong total", len(webSocketMap))
}
conn1.c.Close() // close underlying socket - client will redial
time.Sleep(time.Second * 1)
if len(webSocketMap) != 1 {
t.Fatal("wrong end total", len(webSocketMap))
}
// time.Sleep(time.Second * 30)
}
func Test_ServerDupClient(t *testing.T) {
AutoRedial = false
defer func() { AutoRedial = true }()
setupServer(t)
conn1 := dial(t, *serverHandler.url, "client1Duplicate")
defer conn1.Close()
conn2 := dial(t, *serverHandler.url, "client2Duplicate")
defer conn2.Close()
// time.Sleep(time.Second * 1)
if len(webSocketMap) != 2 {
t.Fatal("wrong total", len(webSocketMap), countConnections)
}
conn3 := dial(t, *serverHandler.url, "client1Duplicate")
defer conn3.Close()
time.Sleep(time.Second * 1)
if len(webSocketMap) != 2 {
t.Fatal("wrong total at end", len(webSocketMap), countConnections)
}
}
func Test_ServerConnError(t *testing.T) {
// AutoRedial = false
// defer func() { AutoRedial = true }()
setupServer(t)
if _, err := WebSocketDial(*serverHandler.url, "client1_error", TestClientWSHandler{}); err == nil {
t.Fatalf("Dial: %v", err)
}
time.Sleep(time.Millisecond * 500)
if len(webSocketMap) != 0 {
t.Fatal("wrong total at end", len(webSocketMap), countConnections)
}
}
func Test_ServerNormalClose(t *testing.T) {
AutoRedial = false
defer func() { AutoRedial = true }()
setupServer(t)
clientid := "firstIP"
if _, err := WebSocketDial(*serverHandler.url, clientid, TestClientWSHandler{}); err != nil {
t.Fatalf("Dial: %v", err)
}
serverConn := GetWebSocketByClientId(clientid)
if serverConn == nil {
t.Fatalf("No serverconn: ")
}
serverConn.Close() // simulate normal closure of previous IP
time.Sleep(time.Millisecond * 100)
serverConn = GetWebSocketByClientId(clientid)
if serverConn != nil {
t.Fatalf("Invalid serverconn: ")
}
if len(webSocketMap) != 0 {
t.Fatal("wrong total at end", len(webSocketMap), countConnections)
}
}