-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathclient_bulk_write.test.ts
More file actions
490 lines (431 loc) · 15.6 KB
/
client_bulk_write.test.ts
File metadata and controls
490 lines (431 loc) · 15.6 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
import { expect } from 'chai';
import { setTimeout } from 'timers/promises';
import {
type CommandStartedEvent,
type Connection,
type ConnectionPool,
type MongoClient,
MongoOperationTimeoutError,
now,
TimeoutContext
} from '../../mongodb';
import {
clearFailPoint,
configureFailPoint,
makeMultiBatchWrite,
makeMultiResponseBatchModelArray,
mergeTestMetadata
} from '../../tools/utils';
import { filterForCommands } from '../shared';
const metadata: MongoDBMetadataUI = {
requires: {
mongodb: '>=8.0',
serverless: 'forbid'
}
};
describe('Client Bulk Write', function () {
let client: MongoClient;
afterEach(async function () {
await client?.close();
await clearFailPoint(this.configuration).catch(() => null);
});
describe('#bulkWrite', function () {
context('when ignoreUndefined is true', function () {
context('when including an update with all undefined atomic operators', function () {
context('when performing an update many', function () {
beforeEach(async function () {
client = this.configuration.newClient();
});
it('throws an error', async function () {
const error = await client
.bulkWrite(
[
{
name: 'updateMany',
namespace: 'foo.bar',
filter: { age: { $lte: 5 } },
update: { $set: undefined, $unset: undefined }
}
],
{ ignoreUndefined: true }
)
.catch(error => error);
expect(error.message).to.include(
'Update operations require that all atomic operators have defined values, but none were provided'
);
});
});
context('when performing an update one', function () {
beforeEach(async function () {
client = this.configuration.newClient();
});
it('throws an error', async function () {
const error = await client
.bulkWrite(
[
{
name: 'updateOne',
namespace: 'foo.bar',
filter: { age: { $lte: 5 } },
update: { $set: undefined, $unset: undefined }
}
],
{ ignoreUndefined: true }
)
.catch(error => error);
expect(error.message).to.include(
'Update operations require that all atomic operators have defined values, but none were provided'
);
});
});
});
});
});
describe('CSOT enabled', function () {
describe('when timeoutMS is set on the client', function () {
beforeEach(async function () {
client = this.configuration.newClient({}, { timeoutMS: 300 });
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: { blockConnection: true, blockTimeMS: 1000, failCommands: ['bulkWrite'] }
});
});
it('timeoutMS is used as the timeout for the bulk write', metadata, async function () {
const start = now();
const timeoutError = await client
.bulkWrite([
{
name: 'insertOne',
namespace: 'foo.bar',
document: { age: 10 }
}
])
.catch(e => e);
const end = now();
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(300 - 100, 300 + 100);
});
});
describe('when timeoutMS is set on the bulkWrite operation', function () {
beforeEach(async function () {
client = this.configuration.newClient({});
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: { blockConnection: true, blockTimeMS: 1000, failCommands: ['bulkWrite'] }
});
});
it('timeoutMS is used as the timeout for the bulk write', metadata, async function () {
const start = now();
const timeoutError = await client
.bulkWrite(
[
{
name: 'insertOne',
namespace: 'foo.bar',
document: { age: 10 }
}
],
{ timeoutMS: 300 }
)
.catch(e => e);
const end = now();
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(300 - 100, 300 + 100);
});
});
describe('when timeoutMS is set on both the client and operation options', function () {
beforeEach(async function () {
client = this.configuration.newClient({}, { timeoutMS: 1500 });
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: { blockConnection: true, blockTimeMS: 1000, failCommands: ['bulkWrite'] }
});
});
it('bulk write options take precedence over the client options', metadata, async function () {
const start = now();
const timeoutError = await client
.bulkWrite(
[
{
name: 'insertOne',
namespace: 'foo.bar',
document: { age: 10 }
}
],
{ timeoutMS: 300 }
)
.catch(e => e);
const end = now();
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(300 - 100, 300 + 100);
});
});
describe(
'unacknowledged writes',
{
requires: {
mongodb: '>=8.0',
topology: 'single'
}
},
function () {
let connection: Connection;
let pool: ConnectionPool;
beforeEach(async function () {
client = this.configuration.newClient({}, { maxPoolSize: 1, waitQueueTimeoutMS: 2000 });
await client.connect();
pool = Array.from(client.topology.s.servers.values())[0].pool;
connection = await pool.checkOut({
timeoutContext: TimeoutContext.create({
serverSelectionTimeoutMS: 30000,
waitQueueTimeoutMS: 1000
})
});
});
afterEach(async function () {
pool = Array.from(client.topology.s.servers.values())[0].pool;
pool.checkIn(connection);
await client.close();
});
it('a single batch bulk write does not take longer than timeoutMS', async function () {
const start = now();
let end;
const timeoutError = client
.bulkWrite(
[
{
name: 'insertOne',
namespace: 'foo.bar',
document: { age: 10 }
}
],
{ timeoutMS: 200, writeConcern: { w: 0 }, ordered: false }
)
.catch(e => e)
.then(e => {
end = now();
return e;
});
await setTimeout(250);
expect(await timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(200 - 100, 200 + 100);
});
it(
'timeoutMS applies to all batches',
{
requires: {
mongodb: '>=8.0',
topology: 'single'
}
},
async function () {
const models = await makeMultiBatchWrite(this.configuration);
const start = now();
let end;
const timeoutError = client
.bulkWrite(models, {
timeoutMS: 400,
writeConcern: { w: 0 },
ordered: false
})
.catch(e => e)
.then(r => {
end = now();
return r;
});
await setTimeout(210);
pool.checkIn(connection);
connection = await pool.checkOut({
timeoutContext: TimeoutContext.create({
serverSelectionTimeoutMS: 30000,
waitQueueTimeoutMS: 1000
})
});
await setTimeout(210);
expect(await timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(400 - 100, 400 + 100);
}
);
}
);
describe('acknowledged writes', metadata, function () {
describe('when a bulk write command times out', function () {
beforeEach(async function () {
client = this.configuration.newClient({}, { timeoutMS: 1500 });
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: { blockConnection: true, blockTimeMS: 1000, failCommands: ['bulkWrite'] }
});
});
it('the operation times out', metadata, async function () {
const start = now();
const timeoutError = await client
.bulkWrite(
[
{
name: 'insertOne',
namespace: 'foo.bar',
document: { age: 10 }
}
],
{ timeoutMS: 300 }
)
.catch(e => e);
const end = now();
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(300 - 100, 300 + 100);
});
});
describe('when the timeout is reached while iterating the result cursor', function () {
const commands: CommandStartedEvent[] = [];
beforeEach(async function () {
client = this.configuration.newClient({}, { monitorCommands: true, minPoolSize: 5 });
client.on('commandStarted', filterForCommands(['getMore', 'killCursors'], commands));
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: { blockConnection: true, blockTimeMS: 1400, failCommands: ['getMore'] }
});
});
it(
'the bulk write operation times out',
mergeTestMetadata(metadata, {
requires: {
// this test has timing logic that depends on killCursors being executed, which does
// not happen in load balanced mode
topology: '!load-balanced'
}
}),
async function () {
const timeoutMS = 1500;
const models = await makeMultiResponseBatchModelArray(this.configuration);
const start = now();
const timeoutError = await client
.bulkWrite(models, {
verboseResults: true,
timeoutMS
})
.catch(e => e);
const end = now();
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
// DRIVERS-3005 - killCursors causes cursor cleanup to extend past timeoutMS.
// The amount of time killCursors takes is wildly variable and can take up to almost
// 600-700ms sometimes.
expect(end - start).to.be.within(timeoutMS - 100, timeoutMS + 800);
expect(commands.map(({ commandName }) => commandName)).to.have.lengthOf(2);
}
);
});
describe('if the cursor encounters an error and a killCursors is sent', function () {
const commands: CommandStartedEvent[] = [];
beforeEach(async function () {
client = this.configuration.newClient({}, { monitorCommands: true });
client.on('commandStarted', filterForCommands(['killCursors'], commands));
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 2 },
data: {
blockConnection: true,
blockTimeMS: 3000,
failCommands: ['getMore', 'killCursors']
}
});
});
it(
'timeoutMS is refreshed to the timeoutMS passed to the bulk write for the killCursors command',
{
requires: { ...metadata.requires, topology: '!load-balanced' }
},
async function () {
const models = await makeMultiResponseBatchModelArray(this.configuration);
const timeoutError = await client
.bulkWrite(models, { ordered: true, timeoutMS: 2800, verboseResults: true })
.catch(e => e);
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
const [
{
command: { maxTimeMS }
}
] = commands;
expect(maxTimeMS).to.be.greaterThan(1000);
}
);
});
describe('when the bulk write is executed in multiple batches', function () {
const commands: CommandStartedEvent[] = [];
beforeEach(async function () {
client = this.configuration.newClient({}, { monitorCommands: true });
client.on('commandStarted', filterForCommands('bulkWrite', commands));
await client.connect();
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 2 },
data: { blockConnection: true, blockTimeMS: 1010, failCommands: ['bulkWrite'] }
});
});
it(
'timeoutMS applies to the duration of all batches',
{
requires: {
...metadata.requires,
topology: 'single'
}
},
async function () {
const models = await makeMultiBatchWrite(this.configuration);
const start = now();
const timeoutError = await client
.bulkWrite(models, {
timeoutMS: 2000
})
.catch(e => e);
const end = now();
expect(timeoutError).to.be.instanceOf(MongoOperationTimeoutError);
expect(end - start).to.be.within(2000 - 100, 2000 + 100);
expect(commands.length, 'Test must execute two batches.').to.equal(2);
}
);
});
});
});
describe('sort support', () => {
describe(
'updateMany does not support sort option',
{ requires: { mongodb: '>=8.0' } },
function () {
const commands: CommandStartedEvent[] = [];
beforeEach(async function () {
client = this.configuration.newClient({}, { monitorCommands: true });
client.on('commandStarted', filterForCommands('bulkWrite', commands));
await client.connect();
});
it('should not include sort field in the command', async function () {
await client.bulkWrite([
{
name: 'updateMany',
namespace: 'foo.bar',
filter: { age: { $lte: 5 } },
update: { $set: { puppy: true } },
// @ts-expect-error: sort is not supported in updateMany
sort: { age: 1 } // This sort option should be ignored
}
]);
expect(commands).to.have.lengthOf(1);
const [updateCommand] = commands;
expect(updateCommand.commandName).to.equal('bulkWrite');
expect(updateCommand.command.ops[0]).to.not.have.property('sort');
});
}
);
});
});