-
Notifications
You must be signed in to change notification settings - Fork 3k
/
webSocket-spec.ts
616 lines (485 loc) · 16.4 KB
/
webSocket-spec.ts
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
import {expect} from 'chai';
import * as sinon from 'sinon';
import * as Rx from '../../../dist/cjs/Rx';
import {MockWebSocket} from '../../helpers/ajax-helper';
declare const __root__: any;
const Observable = Rx.Observable;
let __ws: any;
function setupMockWebSocket() {
MockWebSocket.clearSockets();
__ws = __root__.WebSocket;
__root__.WebSocket = MockWebSocket;
}
function teardownMockWebSocket() {
__root__.WebSocket = __ws;
MockWebSocket.clearSockets();
}
/** @test {webSocket} */
describe('Observable.webSocket', () => {
beforeEach(() => {
setupMockWebSocket();
});
afterEach(() => {
teardownMockWebSocket();
});
it('should send and receive messages', () => {
let messageReceived = false;
const subject = Observable.webSocket('ws://mysocket');
subject.next('ping');
subject.subscribe((x: string) => {
expect(x).to.equal('pong');
messageReceived = true;
});
const socket = MockWebSocket.lastSocket;
expect(socket.url).to.equal('ws://mysocket');
socket.open();
expect(socket.lastMessageSent).to.equal('ping');
socket.triggerMessage(JSON.stringify('pong'));
expect(messageReceived).to.be.true;
subject.unsubscribe();
});
it('should allow the user to chain operators', () => {
let messageReceived = false;
const subject = Observable.webSocket('ws://mysocket');
subject
.map(x => x + '?')
.map(x => x + '!')
.map(x => x + '!')
.subscribe((x: string) => {
expect(x).to.equal('pong?!!');
messageReceived = true;
});
const socket = MockWebSocket.lastSocket;
socket.open();
socket.triggerMessage(JSON.stringify('pong'));
expect(messageReceived).to.be.true;
subject.unsubscribe();
});
it('receive multiple messages', () => {
const expected = ['what', 'do', 'you', 'do', 'with', 'a', 'drunken', 'sailor?'];
const results = [];
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe((x: string) => {
results.push(x);
});
const socket = MockWebSocket.lastSocket;
socket.open();
expected.forEach((x: string) => {
socket.triggerMessage(JSON.stringify(x));
});
expect(results).to.deep.equal(expected);
subject.unsubscribe();
});
it('should queue messages prior to subscription', () => {
const expected = ['make', 'him', 'walk', 'the', 'plank'];
const subject = Observable.webSocket('ws://mysocket');
expected.forEach((x: string) => {
subject.next(x);
});
let socket = MockWebSocket.lastSocket;
expect(socket).not.exist;
subject.subscribe();
socket = MockWebSocket.lastSocket;
expect(socket.sent.length).to.equal(0);
socket.open();
expect(socket.sent.length).to.equal(expected.length);
subject.unsubscribe();
});
it('should send messages immediately if already open', () => {
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe();
const socket = MockWebSocket.lastSocket;
socket.open();
subject.next('avast!');
expect(socket.lastMessageSent).to.equal('avast!');
subject.next('ye swab!');
expect(socket.lastMessageSent).to.equal('ye swab!');
subject.unsubscribe();
});
it('should close the socket when completed', () => {
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe();
const socket = MockWebSocket.lastSocket;
socket.open();
expect(socket.readyState).to.equal(1); // open
sinon.spy(socket, 'close');
expect(socket.close).not.have.been.called;
subject.complete();
expect(socket.close).have.been.called;
expect(socket.readyState).to.equal(3); // closed
subject.unsubscribe();
(<any>socket.close).restore();
});
it('should close the socket with a code and a reason when errored', () => {
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe();
const socket = MockWebSocket.lastSocket;
socket.open();
sinon.spy(socket, 'close');
expect(socket.close).not.have.been.called;
subject.error({ code: 1337, reason: 'Too bad, so sad :('});
expect(socket.close).have.been.calledWith(1337, 'Too bad, so sad :(');
subject.unsubscribe();
(<any>socket.close).restore();
});
it('should allow resubscription after closure via complete', () => {
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe();
const socket1 = MockWebSocket.lastSocket;
socket1.open();
subject.complete();
subject.next('a mariner yer not. yarrr.');
subject.subscribe();
const socket2 = MockWebSocket.lastSocket;
socket2.open();
expect(socket2).not.to.equal(socket1);
expect(socket2.lastMessageSent).to.equal('a mariner yer not. yarrr.');
subject.unsubscribe();
});
it('should allow resubscription after closure via error', () => {
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe();
const socket1 = MockWebSocket.lastSocket;
socket1.open();
subject.error({ code: 1337 });
subject.next('yo-ho! yo-ho!');
subject.subscribe();
const socket2 = MockWebSocket.lastSocket;
socket2.open();
expect(socket2).not.to.equal(socket1);
expect(socket2.lastMessageSent).to.equal('yo-ho! yo-ho!');
subject.unsubscribe();
});
it('should have a default resultSelector that parses message data as JSON', () => {
let result;
const expected = { mork: 'shazbot!' };
const subject = Observable.webSocket('ws://mysocket');
subject.subscribe((x: any) => {
result = x;
});
const socket = MockWebSocket.lastSocket;
socket.open();
socket.triggerMessage(JSON.stringify(expected));
expect(result).to.deep.equal(expected);
subject.unsubscribe();
});
describe('with a config object', () => {
it('should send and receive messages', () => {
let messageReceived = false;
const subject = Observable.webSocket({ url: 'ws://mysocket' });
subject.next('ping');
subject.subscribe((x: string) => {
expect(x).to.equal('pong');
messageReceived = true;
});
const socket = MockWebSocket.lastSocket;
expect(socket.url).to.equal('ws://mysocket');
socket.open();
expect(socket.lastMessageSent).to.equal('ping');
socket.triggerMessage(JSON.stringify('pong'));
expect(messageReceived).to.be.true;
subject.unsubscribe();
});
it('should take a protocol and set it properly on the web socket', () => {
const subject = Observable.webSocket({
url: 'ws://mysocket',
protocol: 'someprotocol'
});
subject.subscribe();
const socket = MockWebSocket.lastSocket;
expect(socket.protocol).to.equal('someprotocol');
subject.unsubscribe();
});
it('should take a resultSelector', () => {
const results = [];
const subject = Observable.webSocket({
url: 'ws://mysocket',
resultSelector: (e: any) => {
return e.data + '!';
}
});
subject.subscribe((x: any) => {
results.push(x);
});
const socket = MockWebSocket.lastSocket;
socket.open();
['ahoy', 'yarr', 'shove off'].forEach((x: any) => {
socket.triggerMessage(x);
});
expect(results).to.deep.equal(['ahoy!', 'yarr!', 'shove off!']);
subject.unsubscribe();
});
it('if the resultSelector fails it should go down the error path', () => {
const subject = Observable.webSocket({
url: 'ws://mysocket',
resultSelector: (e: any) => {
throw new Error('I am a bad error');
}
});
subject.subscribe((x: any) => {
expect(x).to.equal('this should not happen');
}, (err: any) => {
expect(err).to.be.an('error', 'I am a bad error');
});
const socket = MockWebSocket.lastSocket;
socket.open();
socket.triggerMessage('weee!');
subject.unsubscribe();
});
it('should accept a closingObserver', () => {
let calls = 0;
const subject = Observable.webSocket(<any>{
url: 'ws://mysocket',
closingObserver: {
next: function (x) {
calls++;
expect(x).to.be.an('undefined');
}
}
});
subject.subscribe();
let socket = MockWebSocket.lastSocket;
socket.open();
expect(calls).to.equal(0);
subject.complete();
expect(calls).to.equal(1);
subject.subscribe();
socket = MockWebSocket.lastSocket;
socket.open();
subject.error({ code: 1337 });
expect(calls).to.equal(2);
subject.unsubscribe();
});
it('should accept a closeObserver', () => {
const expected = [{ wasClean: true }, { wasClean: false }];
const closes = [];
const subject = Observable.webSocket(<any>{
url: 'ws://mysocket',
closeObserver: {
next: function (e) {
closes.push(e);
}
}
});
subject.subscribe();
let socket = MockWebSocket.lastSocket;
socket.open();
expect(closes.length).to.equal(0);
socket.triggerClose(expected[0]);
expect(closes.length).to.equal(1);
subject.subscribe(null, function (err) {
expect(err).to.equal(expected[1]);
});
socket = MockWebSocket.lastSocket;
socket.open();
socket.triggerClose(expected[1]);
expect(closes.length).to.equal(2);
expect(closes[0]).to.equal(expected[0]);
expect(closes[1]).to.equal(expected[1]);
subject.unsubscribe();
});
it('should handle constructor errors', () => {
const subject = Observable.webSocket(<any>{
url: 'bad_url',
WebSocketCtor: (url: string, protocol?: string | string[]): WebSocket => {
throw new Error(`connection refused`);
}
});
subject.subscribe((x: any) => {
expect(x).to.equal('this should not happen');
}, (err: any) => {
expect(err).to.be.an('error', 'connection refused');
});
subject.unsubscribe();
});
});
describe('multiplex', () => {
it('should be retryable', () => {
const results = [];
const subject = Observable.webSocket('ws://websocket');
const source = subject.multiplex(() => {
return { sub: 'foo'};
}, () => {
return { unsub: 'foo' };
}, function (value: any) {
return value.name === 'foo';
});
source
.retry(1)
.map((x: any) => x.value)
.take(2)
.subscribe((x: any) => {
results.push(x);
});
const socket = MockWebSocket.lastSocket;
socket.open();
expect(socket.lastMessageSent).to.deep.equal({ sub: 'foo' });
socket.triggerClose({ wasClean: false }); // Bad connection
const socket2 = MockWebSocket.lastSocket;
expect(socket2).not.to.equal(socket);
socket2.open();
expect(socket2.lastMessageSent).to.deep.equal({ sub: 'foo' });
socket2.triggerMessage(JSON.stringify({ name: 'foo', value: 'test' }));
socket2.triggerMessage(JSON.stringify({ name: 'foo', value: 'this' }));
expect(results).to.deep.equal(['test', 'this']);
});
it('should be repeatable', () => {
const results = [];
const subject = Observable.webSocket('ws://websocket');
const source = subject.multiplex(() => {
return { sub: 'foo'};
}, () => {
return { unsub: 'foo' };
}, function (value: any) {
return value.name === 'foo';
});
source
.repeat(2)
.map((x: any) => x.value)
.subscribe((x: any) => {
results.push(x);
});
const socket = MockWebSocket.lastSocket;
socket.open();
expect(socket.lastMessageSent).to.deep.equal({ sub: 'foo' }, 'first multiplexed sub');
socket.triggerMessage(JSON.stringify({ name: 'foo', value: 'test' }));
socket.triggerMessage(JSON.stringify({ name: 'foo', value: 'this' }));
socket.triggerClose({ wasClean: true });
const socket2 = MockWebSocket.lastSocket;
expect(socket2).not.to.equal(socket, 'a new socket was not created');
socket2.open();
expect(socket2.lastMessageSent).to.deep.equal({ sub: 'foo' }, 'second multiplexed sub');
socket2.triggerMessage(JSON.stringify({ name: 'foo', value: 'test' }));
socket2.triggerMessage(JSON.stringify({ name: 'foo', value: 'this' }));
socket2.triggerClose({ wasClean: true });
expect(results).to.deep.equal(['test', 'this', 'test', 'this'], 'results were not equal');
});
it('should multiplex over the websocket', () => {
const results = [];
const subject = Observable.webSocket('ws://websocket');
const source = subject.multiplex(() => {
return { sub: 'foo'};
}, () => {
return { unsub: 'foo' };
}, function (value: any) {
return value.name === 'foo';
});
const sub = source.subscribe(function (x: any) {
results.push(x.value);
});
const socket = MockWebSocket.lastSocket;
socket.open();
expect(socket.lastMessageSent).to.deep.equal({ sub: 'foo' });
[1, 2, 3, 4, 5].map((x: number) => {
return {
name: x % 3 === 0 ? 'bar' : 'foo',
value: x
};
}).forEach((x: any) => {
socket.triggerMessage(JSON.stringify(x));
});
expect(results).to.deep.equal([1, 2, 4, 5]);
sinon.spy(socket, 'close');
sub.unsubscribe();
expect(socket.lastMessageSent).to.deep.equal({ unsub: 'foo' });
expect(socket.close).have.been.called;
(<any>socket.close).restore();
});
it('should keep the same socket for multiple multiplex subscriptions', () => {
const socketSubject = Rx.Observable.webSocket(<any>{url: 'ws://mysocket'});
const results = [];
const socketMessages = [
{id: 'A'},
{id: 'B'},
{id: 'A'},
{id: 'B'},
{id: 'B'},
];
const sub1 = socketSubject.multiplex(
() => 'no-op',
() => results.push('A unsub'),
(req: any) => req.id === 'A')
.takeWhile((req: any) => !req.complete)
.subscribe(
() => results.push('A next'),
(e) => results.push('A error ' + e),
() => results.push('A complete')
);
socketSubject.multiplex(
() => 'no-op',
() => results.push('B unsub'),
(req: any) => req.id === 'B')
.subscribe(
() => results.push('B next'),
(e) => results.push('B error ' + e),
() => results.push('B complete')
);
// Setup socket and send messages
let socket = MockWebSocket.lastSocket;
socket.open();
socketMessages.forEach((msg, i) => {
if (i === 1) {
sub1.unsubscribe();
expect(socketSubject.socket).to.equal(socket);
}
socket.triggerMessage(JSON.stringify(msg));
});
socket.triggerClose({ wasClean: true });
expect(results).to.deep.equal([
'A next',
'A unsub',
'B next',
'B next',
'B next',
'B complete',
'B unsub',
]);
});
it('should not close the socket until all subscriptions complete', () => {
const socketSubject = Rx.Observable.webSocket(<any>{url: 'ws://mysocket'});
const results = [];
const socketMessages = [
{id: 'A'},
{id: 'B'},
{id: 'A', complete: true},
{id: 'B'},
{id: 'B', complete: true},
];
socketSubject.multiplex(
() => 'no-op',
() => results.push('A unsub'),
(req: any) => req.id === 'A')
.takeWhile((req: any) => !req.complete)
.subscribe(
() => results.push('A next'),
(e) => results.push('A error ' + e),
() => results.push('A complete')
);
socketSubject.multiplex(
() => 'no-op',
() => results.push('B unsub'),
(req: any) => req.id === 'B')
.takeWhile((req: any) => !req.complete)
.subscribe(
() => results.push('B next'),
(e) => results.push('B error ' + e),
() => results.push('B complete')
);
// Setup socket and send messages
let socket = MockWebSocket.lastSocket;
socket.open();
socketMessages.forEach((msg) => {
socket.triggerMessage(JSON.stringify(msg));
});
expect(results).to.deep.equal([
'A next',
'B next',
'A complete',
'A unsub',
'B next',
'B complete',
'B unsub',
]);
});
});
});