forked from philippseith/signalr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_test.go
418 lines (394 loc) · 12.3 KB
/
client_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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
package signalr
import (
"context"
"errors"
"fmt"
"io"
"strings"
"sync/atomic"
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
type pipeConnection struct {
reader io.Reader
writer io.Writer
timeout time.Duration
fail atomic.Value
connectionID string
}
func (pc *pipeConnection) Context() context.Context {
return context.TODO()
}
func (pc *pipeConnection) Read(p []byte) (n int, err error) {
if err, ok := pc.fail.Load().(error); ok {
return 0, err
}
return pc.reader.Read(p)
}
func (pc *pipeConnection) Write(p []byte) (n int, err error) {
if err, ok := pc.fail.Load().(error); ok {
return 0, err
}
return pc.writer.Write(p)
}
func (pc *pipeConnection) ConnectionID() string {
return pc.connectionID
}
func (pc *pipeConnection) SetConnectionID(cID string) {
pc.connectionID = cID
}
func (pc *pipeConnection) SetTimeout(timeout time.Duration) {
pc.timeout = timeout
}
func (pc *pipeConnection) Timeout() time.Duration {
return pc.timeout
}
func newClientServerConnections() (cliConn *pipeConnection, svrConn *pipeConnection) {
cliReader, srvWriter := io.Pipe()
srvReader, cliWriter := io.Pipe()
cliConn = &pipeConnection{
reader: cliReader,
writer: cliWriter,
connectionID: "X",
}
svrConn = &pipeConnection{
reader: srvReader,
writer: srvWriter,
connectionID: "X",
}
return cliConn, svrConn
}
type simpleHub struct {
Hub
receiveStreamArg string
receiveStreamDone chan struct{}
}
func (s *simpleHub) InvokeMe(arg1 string, arg2 int) string {
return fmt.Sprintf("%v%v", arg1, arg2)
}
func (s *simpleHub) Callback(arg1 string) {
s.Hub.Clients().Caller().Send("OnCallback", strings.ToUpper(arg1))
}
func (s *simpleHub) ReadStream(i int) chan string {
ch := make(chan string)
go func() {
ch <- fmt.Sprintf("A%v", i)
ch <- fmt.Sprintf("B%v", i)
ch <- fmt.Sprintf("C%v", i)
ch <- fmt.Sprintf("D%v", i)
close(ch)
}()
return ch
}
func (s *simpleHub) ReceiveStream(arg string, ch <-chan int) int {
s.receiveStreamArg = arg
receiveStreamChanValues := make([]int, 0)
for v := range ch {
receiveStreamChanValues = append(receiveStreamChanValues, v)
}
s.receiveStreamDone <- struct{}{}
return 100
}
func (s *simpleHub) Abort() {
s.Hub.Abort()
}
type simpleReceiver struct {
result atomic.Value
ch chan string
}
func (s *simpleReceiver) OnCallback(result string) {
s.ch <- result
}
var _ = Describe("Client", func() {
formatOption := TransferFormat("Text")
j := 1
Context("Start/Cancel", func() {
It("should connect to the server and then be stopped without error", func(done Done) {
// Create a simple server
server, err := NewServer(context.TODO(), SimpleHubFactory(&simpleHub{}),
testLoggerOption(),
ChanReceiveTimeout(200*time.Millisecond),
StreamBufferCapacity(5))
Expect(err).NotTo(HaveOccurred())
Expect(server).NotTo(BeNil())
// Create both ends of the connection
cliConn, srvConn := newClientServerConnections()
// Start the server
go func() { _ = server.Serve(srvConn) }()
// Create the Client
ctx, cancelClient := context.WithCancel(context.Background())
clientConn, err := NewClient(ctx, WithConnection(cliConn), testLoggerOption(), formatOption)
Expect(err).NotTo(HaveOccurred())
Expect(clientConn).NotTo(BeNil())
// Start it
clientConn.Start()
Expect(<-clientConn.WaitForState(context.Background(), ClientConnected)).NotTo(HaveOccurred())
cancelClient()
server.cancel()
close(done)
}, 1.0)
})
Context("Invoke", func() {
It("should invoke a server method and return the result", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
r := <-client.Invoke("InvokeMe", "A", 1)
Expect(r.Value).To(Equal("A1"))
Expect(r.Error).NotTo(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
It("should invoke a server method and return the error when arguments don't match", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
r := <-client.Invoke("InvokeMe", "A", "B")
Expect(r.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
It("should invoke a server method and return the result after a bad invocation", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
client.Invoke("InvokeMe", "A", "B")
r := <-client.Invoke("InvokeMe", "A", 1)
Expect(r.Value).To(Equal("A1"))
Expect(r.Error).NotTo(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
It(fmt.Sprintf("should return an error when the connection fails: invocation %v", j), func(done Done) {
_, client, cliConn, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
cliConn.fail.Store(errors.New("fail"))
r := <-client.Invoke("InvokeMe", "A", 1)
Expect(r.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 1.0)
})
Context("Send", func() {
It("should invoke a server method and get the result via callback", func(done Done) {
receiver := &simpleReceiver{}
_, client, _, cancelClient := getTestBed(receiver, formatOption)
receiver.result.Store("x")
errCh := client.Send("Callback", "low")
ch := make(chan string, 1)
go func() {
for {
if result, ok := receiver.result.Load().(string); ok {
if result != "x" {
ch <- result
break
}
}
}
}()
select {
case val := <-ch:
Expect(val).To(Equal("LOW"))
case err := <-errCh:
Expect(err).NotTo(HaveOccurred())
}
cancelClient()
close(done)
}, 1.0)
It("should invoke a server method and return the error when arguments don't match", func(done Done) {
receiver := &simpleReceiver{}
_, client, _, cancelClient := getTestBed(receiver, formatOption)
receiver.result.Store("x")
errCh := client.Send("Callback", 1)
ch := make(chan string, 1)
go func() {
for {
if result, ok := receiver.result.Load().(string); ok {
if result != "x" {
ch <- result
break
}
}
}
}()
select {
case val := <-ch:
Fail(fmt.Sprintf("Value %v should not be returned", val))
case err := <-errCh:
Expect(err).To(HaveOccurred())
}
// Stop the above go func
receiver.result.Store("Stop")
cancelClient()
close(done)
}, 2.0)
It(fmt.Sprintf("should return an error when the connection fails: invocation %v", j), func(done Done) {
_, client, cliConn, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
cliConn.fail.Store(errors.New("fail"))
err := <-client.Send("Callback", 1)
Expect(err).To(HaveOccurred())
cancelClient()
close(done)
}, 1.0)
})
Context("PullStream", func() {
j := 1
It("should pull a stream from the server", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
ch := client.PullStream("ReadStream", j)
values := make([]interface{}, 0)
for r := range ch {
Expect(r.Error).NotTo(HaveOccurred())
values = append(values, r.Value)
}
Expect(values).To(Equal([]interface{}{
fmt.Sprintf("A%v", j),
fmt.Sprintf("B%v", j),
fmt.Sprintf("C%v", j),
fmt.Sprintf("D%v", j),
}))
cancelClient()
close(done)
})
It("should return no error when the method returns no stream but a single result", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
r := <-client.PullStream("InvokeMe", "A", 1)
Expect(r.Error).NotTo(HaveOccurred())
Expect(r.Value).To(Equal("A1"))
cancelClient()
close(done)
}, 2.0)
It("should return an error when the method returns no result", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
r := <-client.PullStream("Callback", "A")
Expect(r.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
It("should return an error when the method does not exist on the server", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
r := <-client.PullStream("ReadStream2")
Expect(r.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
It("should return an error when the method arguments are not matching", func(done Done) {
_, client, _, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
r := <-client.PullStream("ReadStream", "A", 1)
Expect(r.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
It("should return an error when the connection fails", func(done Done) {
_, client, cliConn, cancelClient := getTestBed(&simpleReceiver{}, formatOption)
cliConn.fail.Store(errors.New("fail"))
r := <-client.PullStream("ReadStream")
Expect(r.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 2.0)
})
Context("PushStreams", func() {
var cliConn *pipeConnection
var srvConn *pipeConnection
var client Client
var cancelClient context.CancelFunc
var server Server
hub := &simpleHub{}
BeforeEach(func(done Done) {
hub.receiveStreamDone = make(chan struct{}, 1)
server, _ = NewServer(context.TODO(), HubFactory(func() HubInterface { return hub }),
testLoggerOption(),
ChanReceiveTimeout(200*time.Millisecond),
StreamBufferCapacity(5))
// Create both ends of the connection
cliConn, srvConn = newClientServerConnections()
// Start the server
go func() { _ = server.Serve(srvConn) }()
// Create the Client
receiver := &simpleReceiver{}
var ctx context.Context
ctx, cancelClient = context.WithCancel(context.Background())
client, _ = NewClient(ctx, WithConnection(cliConn), WithReceiver(receiver), testLoggerOption(), formatOption)
// Start it
client.Start()
Expect(<-client.WaitForState(context.Background(), ClientConnected)).NotTo(HaveOccurred())
close(done)
}, 2.0)
AfterEach(func(done Done) {
cancelClient()
server.cancel()
close(done)
}, 2.0)
It("should push a stream to the server", func(done Done) {
ch := make(chan int, 1)
r := client.PushStreams("ReceiveStream", "test", ch)
go func(ch chan int) {
for i := 1; i < 5; i++ {
ch <- i
}
close(ch)
}(ch)
<-hub.receiveStreamDone
ir := <-r
Expect(ir.Error).To(BeNil())
Expect(ir.Value).To(Equal(float64(100)))
Expect(hub.receiveStreamArg).To(Equal("test"))
cancelClient()
close(done)
}, 1.0)
It("should return an error when the connection fails", func(done Done) {
cliConn.fail.Store(errors.New("fail"))
ch := make(chan int, 1)
ir := <-client.PushStreams("ReceiveStream", "test", ch)
Expect(ir.Error).To(HaveOccurred())
cancelClient()
close(done)
}, 1.0)
})
Context("Reconnect", func() {
var cliConn *pipeConnection
var srvConn *pipeConnection
var client Client
var cancelClient context.CancelFunc
var server Server
hub := &simpleHub{}
BeforeEach(func(done Done) {
hub.receiveStreamDone = make(chan struct{}, 1)
server, _ = NewServer(context.TODO(), HubFactory(func() HubInterface { return hub }),
testLoggerOption(),
ChanReceiveTimeout(200*time.Millisecond),
StreamBufferCapacity(5))
// Create both ends of the connection
cliConn, srvConn = newClientServerConnections()
// Start the server
go func() { _ = server.Serve(srvConn) }()
// Create the Client
receiver := &simpleReceiver{}
var ctx context.Context
ctx, cancelClient = context.WithCancel(context.Background())
client, _ = NewClient(ctx, WithConnection(cliConn), WithReceiver(receiver), testLoggerOption(), formatOption)
// Start it
client.Start()
Expect(<-client.WaitForState(context.Background(), ClientConnected)).NotTo(HaveOccurred())
close(done)
}, 2.0)
AfterEach(func(done Done) {
cancelClient()
server.cancel()
close(done)
}, 2.0)
// TODO
})
})
func getTestBed(receiver interface{}, formatOption func(Party) error) (Server, Client, *pipeConnection, context.CancelFunc) {
server, _ := NewServer(context.TODO(), SimpleHubFactory(&simpleHub{}),
testLoggerOption(),
ChanReceiveTimeout(200*time.Millisecond),
StreamBufferCapacity(5))
// Create both ends of the connection
cliConn, srvConn := newClientServerConnections()
// Start the server
go func() { _ = server.Serve(srvConn) }()
// Create the Client
var ctx context.Context
ctx, cancelClient := context.WithCancel(context.Background())
client, _ := NewClient(ctx, WithConnection(cliConn), WithReceiver(receiver), testLoggerOption(), formatOption)
// Start it
client.Start()
return server, client, cliConn, cancelClient
}