This repository was archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.test.js
441 lines (382 loc) · 15.4 KB
/
index.test.js
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
'use strict'
const BtpPacket = require('btp-packet');
const assert = require('assert')
const btp = require('btp-packet')
const Plugin = require('..')
const mockSocket = require('./helpers/mockSocket')
const WebSocket = require('ws');
describe('BtpPlugin', function () {
beforeEach(async function () {
this.clientOpts = {
server: 'btp+ws://bob:secret@localhost:9000',
responseTimeout: 100
}
this.serverOpts = {
listener: {
port: 9000,
secret: 'secret'
},
responseTimeout: 100
}
this.authData = [
{ protocolName: 'auth', contentType: btp.MIME_APPLICATION_OCTET_STREAM, data: Buffer.from('') },
{ protocolName: 'auth_username', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('bob') },
{ protocolName: 'auth_token', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('secret') }
]
this.ilpReqData = [
{ protocolName: 'ilp', contentType: btp.MIME_APPLICATION_OCTET_STREAM, data: Buffer.from('ilp request') }
]
this.ilpResData = [
{ protocolName: 'ilp', contentType: btp.MIME_APPLICATION_OCTET_STREAM, data: Buffer.from('ilp response') }
]
this.errorData = {
code: 'F00',
name: 'NotAcceptedError',
data: 'error data',
triggeredAt: (new Date).toISOString(),
protocolData: []
}
this.authReqPacket = { type: btp.TYPE_MESSAGE, requestId: 123, data: {protocolData: this.authData} }
this.authResPacket = { type: btp.TYPE_RESPONSE, requestId: 123, data: {protocolData: []} }
this.ilpReqPacket = { type: btp.TYPE_MESSAGE, requestId: 456, data: {protocolData: this.ilpReqData} }
this.ilpResPacket = { type: btp.TYPE_RESPONSE, requestId: 456, data: {protocolData: this.ilpResData} }
this.errorPacket = { type: btp.TYPE_ERROR, requestId: 456, data: this.errorData }
this.setupServer = async () => {
this.ws = new mockSocket.IncomingSocket()
this.plugin = new Plugin(this.serverOpts, {WebSocketServer: mockSocket.Server})
const connect = this.plugin.connect()
this.plugin._wss.emit('connection', this.ws)
this.ws.emit('message', btp.serialize(this.authReqPacket))
await connect
}
})
describe('connect real WebSocket', function () {
beforeEach(async function () {
this.server = new Plugin(this.clientOpts)
this.client = new Plugin(this.serverOpts)
})
afterEach(async function () {
await this.client.disconnect()
await this.server.disconnect()
})
it('connects the client and server', async function () {
await Promise.all([
this.server.connect(),
this.client.connect()
])
assert.strictEqual(this.server.isConnected(), true)
assert.strictEqual(this.client.isConnected(), true)
this.server.registerDataHandler((ilp) => {
assert.deepEqual(ilp, Buffer.from('foo'))
return Buffer.from('bar')
})
const response = await this.client.sendData(Buffer.from('foo'))
assert.deepEqual(response, Buffer.from('bar'))
})
it('reconnects websockets if they close', async function () {
await Promise.all([
this.server.connect(),
this.client.connect()
])
assert.strictEqual(this.server.isConnected(), true)
assert.strictEqual(this.client.isConnected(), true)
const date0 = Date.now()
assert.equal(this.server._ws._tries, 0)
// first reconnect (0ms)
this.server._ws._instance.close()
await new Promise(res => this.server._ws.once('open', res))
const date1 = Date.now()
const timer1 = this.server._ws._clearTryTimer
assert.equal(this.server._ws._tries, 1)
// second reconnect (100ms)
this.server._ws._instance.close()
await new Promise(res => this.server._ws.once('open', res))
const date2 = Date.now()
const timer2 = this.server._ws._clearTryTimer
assert.equal(this.server._ws._tries, 2)
// third reconnect (500ms)
this.server._ws._instance.close()
await new Promise(res => this.server._ws.once('open', res))
const date3 = Date.now()
assert.equal(this.server._ws._tries, 3)
assert(timer1 !== timer2, 'should have reset try clear timer between tries')
assert(date1 - date0 >= 0, 'first reconnect should take at least 0ms')
assert(date2 - date1 >= 100, 'second reconnect should take at least 100ms')
assert(date3 - date2 >= 500, 'third reconnect should take at least 500ms')
})
})
describe('can pass in websocket connection', function () {
beforeEach(async function () {
this.client = new Plugin(this.clientOpts)
})
afterEach(async function () {
await this.client.disconnect()
})
it('get incoming socket connection and intantiate plugin', async function () {
return new Promise(resolve => {
const ws = new WebSocket.Server({ port: 9000 })
let clientConnect = null
ws.on('connection', async (connection) => {
//Manually reply to the auth message
connection.once('message', async (data) => {
const authPacket = BtpPacket.deserialize(data)
connection.send(BtpPacket.serializeResponse(authPacket.requestId, []))
})
this.server = new Plugin({raw: {socket: connection}})
await Promise.all([
clientConnect,
this.server.connect()
])
assert.strictEqual(this.server.isConnected(), true)
assert.strictEqual(this.client.isConnected(), true)
this.server.registerDataHandler((ilp) => {
assert.deepEqual(ilp, Buffer.from('foo'))
return Buffer.from('bar')
})
const response = await this.client.sendData(Buffer.from('foo'))
assert.deepEqual(response, Buffer.from('bar'))
await this.server.disconnect()
ws.close()
resolve()
})
clientConnect = this.client.connect()
})
})
})
describe('alternate client account/token config', function () {
beforeEach(async function () {
this.server = new Plugin(this.serverOpts)
})
afterEach(async function () {
await this.server.disconnect()
})
it('should forbid uri account/token and constructor account/token together', function () {
assert.throws(() => {
this.client = new Plugin({
server: 'btp+ws://bob:secret@localhost:9000',
btpAccount: 'bob',
btpToken: 'secret',
reconnectInterval: 100,
responseTimeout: 100
})
}, /account\/token must be passed in via constructor or uri, but not both/)
})
it('throws if the client auth is incorrect', async function () {
this.client = new Plugin({ server: 'btp+ws://bob:wrong_secret@localhost:9000' })
await Promise.all([
this.server.connect(),
this.client.connect()
]).then(() => {
assert(false)
}).catch((err) => {
assert.equal(err.message, 'connection aborted')
})
assert.strictEqual(this.server.isConnected(), false)
assert.strictEqual(this.client.isConnected(), false)
})
it('connects the client and server', async function () {
this.client = new Plugin({
server: 'btp+ws://localhost:9000',
btpAccount: 'bob',
btpToken: 'secret',
reconnectInterval: 100,
responseTimeout: 100
})
await Promise.all([
this.server.connect(),
this.client.connect()
])
assert.strictEqual(this.server.isConnected(), true)
assert.strictEqual(this.client.isConnected(), true)
this.server.registerDataHandler((ilp) => {
assert.deepEqual(ilp, Buffer.from('foo'))
return Buffer.from('bar')
})
const response = await this.client.sendData(Buffer.from('foo'))
assert.deepEqual(response, Buffer.from('bar'))
await this.client.disconnect()
})
})
describe('connect (server)', function () {
beforeEach(async function () {
this.ws = new mockSocket.IncomingSocket()
this.server = new Plugin(this.serverOpts, {WebSocketServer: mockSocket.Server})
})
it('succeeds if the auth is correct', async function () {
const connect = this.server.connect()
this.server._wss.emit('connection', this.ws)
this.ws.emit('message', btp.serialize(this.authReqPacket))
await connect
assert.strictEqual(this.server.isConnected(), true)
assert.deepEqual(this.ws.responses, [{
type: btp.TYPE_RESPONSE,
requestId: 123,
data: {protocolData: []}
}])
})
it('reconnects when the connection is lost', async function () {
const connect = this.server.connect()
this.server._wss.emit('connection', this.ws)
this.ws.emit('message', btp.serialize(this.authReqPacket))
await connect
assert.equal(this.server.isConnected(), true)
this.ws.emit('close')
assert.equal(this.server.isConnected(), false)
this.server._wss.emit('connection', this.ws)
this.ws.emit('message', btp.serialize(this.authReqPacket))
assert.equal(this.server.isConnected(), true)
})
it('emits "connect"/"disconnect" as connections are gained/lost', async function () {
this.server.connect()
this.server._wss.emit('connection', this.ws)
setImmediate(() => this.ws.emit('message', btp.serialize(this.authReqPacket)))
await new Promise((resolve) => this.server.once('connect', resolve))
setImmediate(() => this.ws.emit('error', new Error('fail')))
await new Promise((resolve) => this.server.once('disconnect', resolve))
this.server._wss.emit('connection', this.ws)
setImmediate(() => this.ws.emit('message', btp.serialize(this.authReqPacket)))
await new Promise((resolve) => this.server.once('connect', resolve))
assert.equal(this.server.isConnected(), true)
})
;[
{
label: 'throws if the primary protocol is not "auth"',
authData: [
{ protocolName: 'auth_username', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('bob') },
{ protocolName: 'auth', contentType: btp.MIME_APPLICATION_OCTET_STREAM, data: Buffer.from('') },
{ protocolName: 'auth_token', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('INVALID') }
],
error: 'First subprotocol must be auth'
},
{
label: 'throws if the auth token is missing',
authData: [
{ protocolName: 'auth', contentType: btp.MIME_APPLICATION_OCTET_STREAM, data: Buffer.from('') },
{ protocolName: 'auth_username', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('bob') }
],
error: 'auth_token subprotocol is required'
},
{
label: 'throws if the auth token is incorrect',
authData: [
{ protocolName: 'auth', contentType: btp.MIME_APPLICATION_OCTET_STREAM, data: Buffer.from('') },
{ protocolName: 'auth_username', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('bob') },
{ protocolName: 'auth_token', contentType: btp.MIME_TEXT_PLAIN_UTF8, data: Buffer.from('INVALID') }
],
error: 'invalid auth_token'
}
].forEach(function ({label, authData, error}) {
it(label, async function () {
const connect = this.server.connect()
this.server._wss.emit('connection', this.ws)
this.ws.emit('message', btp.serialize({
type: btp.TYPE_MESSAGE,
requestId: 123,
data: {protocolData: authData}
}))
assert.strictEqual(this.server.isConnected(), false)
assert.equal(this.ws.responses.length, 1)
const res = this.ws.responses[0]
assert.deepEqual(res, {
type: btp.TYPE_ERROR,
requestId: 123,
data: Object.assign(this.errorData, { data: error, triggeredAt: res.data.triggeredAt })
})
assert.ok(this.ws.closed)
})
})
})
describe('connect (client)', function () {
it('retries if first connect fails', async function () {
const client = new Plugin(this.clientOpts, {WebSocket: mockSocket.makeClient([
{ error: new Error('connection fail') },
{
req: {type: btp.TYPE_MESSAGE, data: {protocolData: this.authData}},
res: {type: btp.TYPE_RESPONSE, data: {protocolData: []}}
}
])})
const pConnect = client.connect()
await new Promise((resolve) => setTimeout(resolve, 10))
await pConnect
assert.strictEqual(client.isConnected(), true)
})
})
describe('disconnect', function () {
it('emits "disconnect"', async function () {
const client = new Plugin(this.clientOpts, {WebSocket: mockSocket.makeClient([
{
req: {type: btp.TYPE_MESSAGE, data: {protocolData: this.authData}},
res: {type: btp.TYPE_RESPONSE, data: {protocolData: []}}
}
])})
await client.connect()
let disconnected
client.once('disconnect', () => disconnected = true)
await client.disconnect()
assert.ok(disconnected)
})
})
describe('registerDataHandler', function () {
beforeEach(async function () { await this.setupServer() })
it('registers a data handler', async function () {
this.plugin.registerDataHandler((packet) => {
assert.deepEqual(packet, this.ilpReqData[0].data)
return this.ilpResData[0].data
})
await this.plugin._handleIncomingBtpPacket('', {
type: btp.TYPE_MESSAGE,
requestId: 456,
data: { protocolData: this.ilpReqData }
})
assert.deepEqual(this.ws.responses, [this.authResPacket, this.ilpResPacket])
})
it('throws if the plugin already has a data handler', async function () {
this.plugin.registerDataHandler((packet) => { })
assert.throws(() => {
this.plugin.registerDataHandler((packet) => { })
})
})
it('throws if a non-function is registered', async function () {
assert.throws(() => {
this.plugin.registerDataHandler('what')
})
})
})
describe('deregisterDataHandler', function () {
beforeEach(async function () { await this.setupServer() })
it('deregisters a data handler', async function () {
this.plugin.registerDataHandler((packet) => { })
this.plugin.deregisterDataHandler()
this.plugin.registerDataHandler((packet) => { })
})
})
describe('_call', function () {
beforeEach(async function () { await this.setupServer() })
it('resolves the response', async function () {
setImmediate(() => {
this.plugin._handleIncomingBtpPacket('', this.ilpResPacket)
})
const res = await this.plugin._call('', this.ilpReqPacket)
assert.deepEqual(res, {protocolData: this.ilpResData})
})
it('rejects an error', async function () {
setImmediate(() => {
this.plugin._handleIncomingBtpPacket('', this.errorPacket)
})
await this.plugin._call('', this.ilpReqPacket).then(() => {
assert(false)
}).catch((err) => {
assert.equal(err.message, JSON.stringify(this.errorData))
})
})
it('times out', async function () {
try {
await this.plugin._call('', this.ilpReqPacket)
} catch (err) {
assert.equal(err.message, '456 timed out')
return
}
assert(false)
})
})
})