-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathmercury-events.js
More file actions
492 lines (412 loc) · 14.5 KB
/
Copy pathmercury-events.js
File metadata and controls
492 lines (412 loc) · 14.5 KB
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
/*!
* Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
*/
import {assert} from '@webex/test-helper-chai';
import Mercury, {config as mercuryConfig, Socket} from '@webex/internal-plugin-mercury';
import sinon from 'sinon';
import MockWebex from '@webex/test-helper-mock-webex';
import MockWebSocket from '@webex/test-helper-mock-web-socket';
import uuid from 'uuid';
import FakeTimers from '@sinonjs/fake-timers';
import {wrap} from 'lodash';
import promiseTick from '../lib/promise-tick';
describe('plugin-mercury', () => {
describe('Mercury', () => {
describe('Events', () => {
let clock, mercury, mockWebSocket, socketOpenStub, webex;
const fakeTestMessage = {
id: uuid.v4(),
data: {
eventType: 'fake.test',
},
timestamp: Date.now(),
trackingId: `suffix_${uuid.v4()}_${Date.now()}`,
};
const statusStartTypingMessage = {
id: uuid.v4(),
data: {
eventType: 'status.start_typing',
actor: {
id: 'actorId',
},
conversationId: uuid.v4(),
},
timestamp: Date.now(),
trackingId: `suffix_${uuid.v4()}_${Date.now()}`,
sessionId: 'mercury-default-session',
};
beforeEach(() => {
clock = FakeTimers.install({now: Date.now()});
});
afterEach(async () => {
clock.uninstall();
// Clean up mercury socket and mockWebSocket
if (mercury && mercury.socket) {
try {
await mercury.socket.close();
} catch (e) {}
}
if (mockWebSocket && typeof mockWebSocket.close === 'function') {
mockWebSocket.close();
}
// Restore stubs
if (Socket.getWebSocketConstructor.restore) {
Socket.getWebSocketConstructor.restore();
}
if (socketOpenStub && socketOpenStub.restore) {
socketOpenStub.restore();
}
});
beforeEach(() => {
webex = new MockWebex({
children: {
mercury: Mercury,
},
});
webex.internal.metrics.submitClientMetrics = sinon.stub();
webex.internal.newMetrics.callDiagnosticMetrics.setMercuryConnectedStatus = sinon.stub();
webex.trackingId = 'fakeTrackingId';
webex.config.mercury = mercuryConfig.mercury;
webex.logger = console;
mockWebSocket = new MockWebSocket('ws://example.com');
sinon.stub(Socket, 'getWebSocketConstructor').returns(() => mockWebSocket);
const origOpen = Socket.prototype.open;
socketOpenStub = sinon.stub(Socket.prototype, 'open').callsFake(function (...args) {
const promise = Reflect.apply(origOpen, this, args);
process.nextTick(() => mockWebSocket.open());
return promise;
});
mercury = webex.internal.mercury;
mercury.defaultSessionId = 'mercury-default-session';
});
afterEach(() => {
if (socketOpenStub) {
socketOpenStub.restore();
}
if (Socket.getWebSocketConstructor.restore) {
Socket.getWebSocketConstructor.restore();
}
});
describe('when connected', () => {
it('emits the `online` event', () => {
const spy = sinon.spy();
mercury.on('online', spy);
const promise = mercury.connect();
mockWebSocket.open();
return promise.then(() => assert.called(spy));
});
});
describe('when disconnected', () => {
it('emits the `offline` event', () => {
const spy = sinon.spy();
mercury.on('offline', spy);
const promise = mercury.connect();
mockWebSocket.open();
return promise
.then(() => {
const promise = mercury.disconnect();
mockWebSocket.emit('close', {
code: 1000,
reason: 'Done',
});
return promise;
})
.then(() => assert.calledOnce(spy));
});
describe('when reconnected', () => {
it('emits the `online` event', () => {
const spy = sinon.spy();
mercury.on('online', spy);
const promise = mercury.connect();
mockWebSocket.open();
return promise
.then(() => assert.calledOnce(spy))
.then(() => mockWebSocket.emit('close', {code: 1000, reason: 'Idle'}))
.then(() => mercury.connect())
.then(() => assert.calledTwice(spy));
});
});
});
describe('when `mercury.buffer_state` is received', () => {
// This test is here because the buffer states message may arrive before
// the mercury Promise resolves.
it('gets emitted', (done) => {
const spy = mockWebSocket.send;
assert.notCalled(spy);
const bufferStateSpy = sinon.spy();
const onlineSpy = sinon.spy();
mercury.on('event:mercury.buffer_state', bufferStateSpy);
mercury.on('online', onlineSpy);
Socket.getWebSocketConstructor.returns(() => {
process.nextTick(() => {
assert.isTrue(mercury.connecting, 'Mercury is still connecting');
assert.isFalse(mercury.connected, 'Mercury has not yet connected');
assert.notCalled(onlineSpy);
assert.lengthOf(spy.args, 0, 'The client has not yet sent the auth message');
// set websocket readystate to 1 to allow a successful send message
mockWebSocket.readyState = 1;
mockWebSocket.emit('open');
mockWebSocket.emit('message', {
data: JSON.stringify({
id: uuid.v4(),
data: {
eventType: 'mercury.buffer_state',
},
}),
});
// using lengthOf because notCalled doesn't allow the helpful
// string assertion
assert.lengthOf(spy.args, 0, 'The client has not acked the buffer_state message');
promiseTick(1)
.then(() => {
assert.calledOnce(bufferStateSpy);
return mercury.connect().then(done);
})
.catch(done);
});
return mockWebSocket;
});
// Delay send for a tick to ensure the buffer message comes before
// auth completes.
mockWebSocket.send = wrap(mockWebSocket.send, function (fn, ...args) {
process.nextTick(() => {
Reflect.apply(fn, this, args);
});
});
mercury.connect();
assert.lengthOf(spy.args, 0);
});
});
describe('when a CloseEvent is received', () => {
const events = [
{
code: 1000,
reason: 'idle',
action: 'reconnect',
},
{
code: 1000,
reason: 'done (forced)',
action: 'reconnect',
},
{
code: 1000,
reason: 'pong not received',
action: 'reconnect',
},
{
code: 1000,
reason: 'pong mismatch',
action: 'reconnect',
},
{
code: 1000,
action: 'close',
},
{
code: 1003,
action: 'close',
},
{
code: 1001,
action: 'reconnect',
},
{
code: 1005,
action: 'reconnect',
},
{
code: 1006,
action: 'reconnect',
},
{
code: 1011,
action: 'reconnect',
},
{
code: 4000,
action: 'reconnect',
},
{
action: 'close',
},
];
events.forEach((def) => {
const {action, reason, code} = def;
let description;
if (code && reason) {
description = `with code \`${code}\` and reason \`${reason}\``;
} else if (code) {
description = `with code \`${code}\``;
} else if (reason) {
description = `with reason \`${reason}\``;
}
describe(`when an event ${description} is received`, () => {
it(`takes the ${action} action`, () => {
if (mercury._reconnect.restore) {
mercury._reconnect.restore();
}
sinon.spy(mercury, 'connect');
const offlineSpy = sinon.spy();
const permanentSpy = sinon.spy();
const transientSpy = sinon.spy();
const replacedSpy = sinon.spy();
mercury.on('offline', offlineSpy);
mercury.on('offline.permanent', permanentSpy);
mercury.on('offline.transient', transientSpy);
mercury.on('offline.replaced', replacedSpy);
const promise = mercury.connect();
mockWebSocket.open();
return promise
.then(() => {
// Make sure mercury.connect has a call count of zero
mercury.connect.resetHistory();
mockWebSocket.emit('close', {code, reason});
return promiseTick(1);
})
.then(() => {
assert.called(offlineSpy);
assert.calledWith(offlineSpy, {code, reason, sessionId: 'mercury-default-session'});
switch (action) {
case 'close':
assert.called(permanentSpy);
assert.notCalled(transientSpy);
assert.notCalled(replacedSpy);
break;
case 'reconnect':
assert.notCalled(permanentSpy);
assert.called(transientSpy);
assert.notCalled(replacedSpy);
break;
case 'replace':
assert.notCalled(permanentSpy);
assert.notCalled(transientSpy);
assert.called(replacedSpy);
break;
default:
assert(false, 'unreachable code reached');
}
assert.isFalse(mercury.connected, 'Mercury is not connected');
if (action === 'reconnect') {
assert.called(mercury.connect);
assert.calledWith(mercury.connect, mockWebSocket.url);
assert.isTrue(mercury.connecting, 'Mercury is connecting');
// Block until reconnect completes so logs don't overlap
return mercury.connect();
}
assert.notCalled(mercury.connect);
assert.isFalse(mercury.connecting, 'Mercury is not connecting');
return Promise.resolve();
});
});
});
});
});
describe('when a MessageEvent is received', () => {
it('processes the Event via any autowired event handlers', () => {
webex.fake = {
processTestEvent: sinon.spy(),
};
const promise = mercury.connect();
mockWebSocket.open();
return promise
.then(() => {
mockWebSocket.emit('message', {data: JSON.stringify(fakeTestMessage)});
return promiseTick(1);
})
.then(() => {
assert.called(webex.fake.processTestEvent);
});
});
it('emits the Mercury envelope', () => {
const startSpy = sinon.spy();
const stopSpy = sinon.spy();
mercury.on('event:status.start_typing', startSpy);
mercury.on('event:status.stop_typing', stopSpy);
const promise = mercury.connect();
mockWebSocket.open();
return promise
.then(() => {
mockWebSocket.emit('message', {data: JSON.stringify(statusStartTypingMessage)});
return promiseTick(1);
})
.then(() => {
assert.calledOnce(startSpy);
assert.notCalled(stopSpy);
assert.calledWith(startSpy, statusStartTypingMessage);
});
});
it("emits the Mercury envelope named by the Mercury event's eventType", () => {
const startSpy = sinon.spy();
const stopSpy = sinon.spy();
mercury.on('event:status.start_typing', startSpy);
mercury.on('event:status.stop_typing', stopSpy);
const promise = mercury.connect();
mockWebSocket.open();
return promise
.then(() => {
mockWebSocket.emit('message', {data: JSON.stringify(statusStartTypingMessage)});
return promiseTick(1);
})
.then(() => {
assert.calledOnce(startSpy);
assert.notCalled(stopSpy);
assert.calledWith(startSpy, statusStartTypingMessage);
});
});
});
describe('when a sequence number is skipped', () => {
it('emits an event', () => {
const spy = sinon.spy();
mercury.on('sequence-mismatch', spy);
const promise = mercury.connect();
mockWebSocket.open();
return promise.then(() => {
mockWebSocket.emit('message', {
data: JSON.stringify({
sequenceNumber: 2,
id: 'mockid',
data: {
eventType: 'mercury.buffer_state',
},
}),
});
mockWebSocket.emit('message', {
data: JSON.stringify({
sequenceNumber: 4,
id: 'mockid',
data: {
eventType: 'mercury.buffer_state',
},
}),
});
assert.called(spy);
});
});
});
});
});
/*
// On mercury:
online
offline
offline.transient
offline.permanent
offline.replaced
event
event:locus.participant_joined
mockWebSocket.connection-failed
mockWebSocket.sequence-mismatch
// On webex:
mercury.online
mercury.offline
mercury.offline.transient
mercury.offline.permanent
mercury.offline.replaced
mercury.event
mercury.event:locus.participant_joined
mercury.mockWebSocket.connection-failed
mercury.mockWebSocket.sequence-mismatch
// TODO go through all it(`emits...`) and make sure corresponding tests are here
*/
});