-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathconnection.test.ts
More file actions
406 lines (339 loc) · 13.4 KB
/
connection.test.ts
File metadata and controls
406 lines (339 loc) · 13.4 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
import { expect } from 'chai';
import { type EventEmitter, once } from 'events';
import * as sinon from 'sinon';
import { setTimeout } from 'timers';
import {
addContainerMetadata,
Binary,
connect,
Connection,
type ConnectionOptions,
HostAddress,
LEGACY_HELLO_COMMAND,
makeClientMetadata,
MongoClient,
MongoClientAuthProviders,
MongoDBResponse,
MongoServerError,
ns,
ServerHeartbeatStartedEvent,
Topology
} from '../../mongodb';
import * as mock from '../../tools/mongodb-mock/index';
import { skipBrokenAuthTestBeforeEachHook } from '../../tools/runner/hooks/configuration';
import { processTick, sleep } from '../../tools/utils';
import { assert as test, setupDatabase } from '../shared';
const commonConnectOptions = {
id: 1,
generation: 1,
monitorCommands: false,
tls: false,
loadBalanced: false,
// Will be overridden by configuration options
hostAddress: HostAddress.fromString('127.0.0.1:1'),
authProviders: new MongoClientAuthProviders()
};
describe('Connection', function () {
beforeEach(
skipBrokenAuthTestBeforeEachHook({
skippedTests: [
'should support calling back multiple times on exhaust commands',
'should correctly connect to server using domain socket'
]
})
);
before(function () {
return setupDatabase(this.configuration);
});
describe('Connection.command', function () {
it('should execute a command against a server', {
metadata: { requires: { apiVersion: false, topology: '!load-balanced' } },
test: async function () {
const connectOptions: ConnectionOptions = {
...commonConnectOptions,
connectionType: Connection,
...this.configuration.options,
metadata: makeClientMetadata({ driverInfo: {} }),
extendedMetadata: addContainerMetadata(makeClientMetadata({ driverInfo: {} }))
};
let conn;
try {
conn = await connect(connectOptions);
const hello = await conn?.command(ns('admin.$cmd'), { [LEGACY_HELLO_COMMAND]: 1 });
expect(hello).to.have.property('ok', 1);
} finally {
conn?.destroy();
}
}
});
it('should emit command monitoring events', {
metadata: { requires: { apiVersion: false, topology: '!load-balanced' } },
test: async function () {
const connectOptions: ConnectionOptions = {
...commonConnectOptions,
connectionType: Connection,
...this.configuration.options,
monitorCommands: true,
metadata: makeClientMetadata({ driverInfo: {} }),
extendedMetadata: addContainerMetadata(makeClientMetadata({ driverInfo: {} }))
};
let conn;
try {
conn = await connect(connectOptions);
const events: any[] = [];
conn.on('commandStarted', event => events.push(event));
conn.on('commandSucceeded', event => events.push(event));
conn.on('commandFailed', event => events.push(event));
const hello = await conn?.command(ns('admin.$cmd'), { [LEGACY_HELLO_COMMAND]: 1 });
expect(hello).to.have.property('ok', 1);
expect(events).to.have.lengthOf(2);
} finally {
conn?.destroy();
}
}
});
afterEach(() => sinon.restore());
it('command monitoring event do not deserialize more than once', {
metadata: { requires: { apiVersion: false, topology: '!load-balanced' } },
test: async function () {
const connectOptions: ConnectionOptions = {
...commonConnectOptions,
connectionType: Connection,
...this.configuration.options,
monitorCommands: true,
metadata: makeClientMetadata({ driverInfo: {} }),
extendedMetadata: addContainerMetadata(makeClientMetadata({ driverInfo: {} }))
};
let conn;
try {
conn = await connect(connectOptions);
const toObjectSpy = sinon.spy(MongoDBResponse.prototype, 'toObject');
const events: any[] = [];
conn.on('commandStarted', event => events.push(event));
conn.on('commandSucceeded', event => events.push(event));
conn.on('commandFailed', event => events.push(event));
const hello = await conn.command(ns('admin.$cmd'), { ping: 1 });
expect(toObjectSpy).to.have.been.calledOnce;
expect(hello).to.have.property('ok', 1);
expect(events).to.have.lengthOf(2);
toObjectSpy.resetHistory();
const garbage = await conn.command(ns('admin.$cmd'), { garbage: 1 }).catch(e => e);
expect(toObjectSpy).to.have.been.calledOnce;
expect(garbage).to.have.property('ok', 0);
expect(events).to.have.lengthOf(4);
} finally {
conn?.destroy();
}
}
});
});
describe('Connection - functional', function () {
let client;
let testClient;
afterEach(async () => {
if (client) await client.close();
if (testClient) await testClient.close();
});
it('should correctly start monitoring for single server connection', {
metadata: { requires: { topology: 'single', os: '!win32' } },
test: async function () {
const configuration = this.configuration;
client = configuration.newClient(
`mongodb://${encodeURIComponent('/tmp/mongodb-27017.sock')}?w=1`,
{
maxPoolSize: 1,
heartbeatFrequencyMS: 250
}
);
let isMonitoring = false;
client.once('serverHeartbeatStarted', event => {
// just to be sure we get what we expect, checking the instanceof
isMonitoring = event instanceof ServerHeartbeatStartedEvent;
});
await client.connect();
expect(isMonitoring).to.be.true;
}
});
it('should correctly connect to server using domain socket', {
metadata: {
requires: { topology: 'single', os: '!win32' }
},
test: function (done) {
const configuration = this.configuration;
client = configuration.newClient(
`mongodb://${encodeURIComponent('/tmp/mongodb-27017.sock')}?w=1`,
{ maxPoolSize: 1 }
);
const db = client.db(configuration.db);
db.collection('domainSocketCollection0').insert(
{ a: 1 },
{ writeConcern: { w: 1 } },
function (err) {
expect(err).to.not.exist;
db.collection('domainSocketCollection0')
.find({ a: 1 })
.toArray(function (err, items) {
expect(err).to.not.exist;
test.equal(1, items.length);
done();
});
}
);
}
});
it('should only pass one argument (topology and not error) for topology "open" events', function (done) {
const configuration = this.configuration;
client = configuration.newClient({ w: 1 }, { maxPoolSize: 1 });
client.on('topologyOpening', () => {
client.topology.on('open', (...args) => {
expect(args).to.have.lengthOf(1);
expect(args[0]).to.be.instanceOf(Topology);
done();
});
});
client.connect();
});
it('should correctly connect to server using just events', function (done) {
const configuration = this.configuration;
client = configuration.newClient({ w: 1 }, { maxPoolSize: 1 });
client.on('open', clientFromEvent => {
expect(clientFromEvent).to.be.instanceOf(MongoClient);
expect(clientFromEvent).to.equal(client);
done();
});
client.connect();
});
it('should correctly connect to server using big connection pool', function (done) {
const configuration = this.configuration;
client = configuration.newClient({ w: 1 }, { maxPoolSize: 2000 });
client.on('open', function () {
done();
});
client.connect();
});
describe(
'when a monitoring Connection receives many hellos in one chunk',
{ requires: { topology: 'replicaset', mongodb: '>=4.4' } }, // need to be on a streaming hello version
function () {
let client: MongoClient;
beforeEach(async function () {
// set heartbeatFrequencyMS just so we don't have to wait so long for a hello
client = this.configuration.newClient({}, { heartbeatFrequencyMS: 10 });
});
afterEach(async function () {
await client.close();
});
// In the future we may want to skip processing concatenated heartbeats.
// This test exists to prevent regression of processing many messages inside one chunk.
it(
'processes all of them and emits heartbeats',
{ requires: { topology: 'replicaset', mongodb: '>=4.4' } },
async function () {
let hbSuccess = 0;
client.on('serverHeartbeatSucceeded', () => (hbSuccess += 1));
expect(hbSuccess).to.equal(0);
await client.db().command({ ping: 1 }); // start monitoring.
const monitor = [...client.topology.s.servers.values()][0].monitor;
// @ts-expect-error: accessing private property
const messageStream = monitor.connection.messageStream;
// @ts-expect-error: accessing private property
const socket = monitor.connection.socket;
const [hello] = (await once(messageStream, 'data')) as [Buffer];
const thousandHellos = Array.from({ length: 1000 }, () => [...hello]).flat(1);
// pretend this came from the server
socket.emit('data', Buffer.from(thousandHellos));
// All of the hb will be emitted synchronously in the next tick as the entire chunk is processed.
await processTick();
expect(hbSuccess).to.be.greaterThan(1000);
}
);
}
);
context(
'when a large message is written to the socket',
{ requires: { topology: 'single', auth: 'disabled' } },
() => {
let client, mockServer: import('../../tools/mongodb-mock/src/server').MockServer;
beforeEach(async function () {
mockServer = await mock.createServer();
mockServer
.addMessageHandler('insert', req => {
setTimeout(() => {
req.reply({ ok: 1 });
}, 800);
})
.addMessageHandler('hello', req => {
req.reply(Object.assign({}, mock.HELLO));
})
.addMessageHandler(LEGACY_HELLO_COMMAND, req => {
req.reply(Object.assign({}, mock.HELLO));
});
client = new MongoClient(`mongodb://${mockServer.uri()}`, {
minPoolSize: 1,
maxPoolSize: 1
});
});
afterEach(async function () {
await client.close();
mockServer.destroy();
sinon.restore();
});
it('waits for an async drain event because the write was buffered', async () => {
const connectionReady = once(client, 'connectionReady');
await client.connect();
await connectionReady;
// Get the only connection
const pool = [...client.topology.s.servers.values()][0].pool;
expect(pool.connections).to.have.lengthOf(1);
const connection = pool.connections.first();
const socket: EventEmitter = connection.socket;
// Spy on the socket event listeners
const addedListeners: string[] = [];
const removedListeners: string[] = [];
socket
.on('removeListener', name => removedListeners.push(name))
.on('newListener', name => addedListeners.push(name));
// Make server sockets block
for (const s of mockServer.sockets) s.pause();
const insert = client
.db('test')
.collection('test')
// Anything above 16Kb should work I think (10mb to be extra sure)
.insertOne({ a: new Binary(Buffer.alloc(10 * (2 ** 10) ** 2), 127) });
// Sleep a bit and unblock server sockets
await sleep(10);
for (const s of mockServer.sockets) s.resume();
// Let the operation finish
await insert;
// Ensure that we used the drain event for this write
expect(addedListeners).to.deep.equal(['drain', 'error']);
expect(removedListeners).to.deep.equal(['drain', 'error']);
});
}
);
context('when connecting with a username and password', () => {
let utilClient: MongoClient;
let client: MongoClient;
const username = 'spot';
const password = 'dogsRCool';
beforeEach(async function () {
utilClient = this.configuration.newClient();
await utilClient.db().admin().command({ createUser: username, pwd: password, roles: [] });
});
afterEach(async () => {
await utilClient.db().admin().command({ dropUser: username });
await client?.close();
await utilClient?.close();
});
it('accepts a client that provides the correct username and password', async function () {
client = this.configuration.newClient({ auth: { username, password } });
await client.connect();
});
it('rejects a client that provides the incorrect username and password', async function () {
client = this.configuration.newClient({ auth: { username: 'u', password: 'p' } });
const error = await client.connect().catch(error => error);
expect(error).to.be.instanceOf(MongoServerError);
});
});
});
});