forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabort_signal.test.ts
More file actions
979 lines (820 loc) · 31.4 KB
/
abort_signal.test.ts
File metadata and controls
979 lines (820 loc) · 31.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
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
import * as events from 'node:events';
import { TLSSocket } from 'node:tls';
import * as util from 'node:util';
import { expect } from 'chai';
import * as sinon from 'sinon';
import {
type AbstractCursor,
AggregationCursor,
Code,
type Collection,
type Db,
FindCursor,
ListCollectionsCursor,
type Log,
type MongoClient,
MongoServerError,
ReadPreference
} from '../../../src';
import { StateMachine } from '../../../src/client-side-encryption/state_machine';
import { Connection } from '../../../src/cmap/connection';
import { ConnectionPool } from '../../../src/cmap/connection_pool';
import { promiseWithResolvers, setDifference } from '../../../src/utils';
import {
clearFailPoint,
configureFailPoint,
DOMException,
findLast,
sleep
} from '../../tools/utils';
import { Topology } from '../../../lib/sdam/topology';
import { MongoServerSelectionError } from '../../../lib/error';
const failPointMetadata = { requires: { mongodb: '>=4.4' } };
const isAsyncGenerator = (value: any): value is AsyncGenerator<any> =>
value[Symbol.toStringTag] === 'AsyncGenerator';
const makeDescriptorGetter = value => prop => [prop, Object.getOwnPropertyDescriptor(value, prop)];
function getAllProps(value) {
const props = [];
for (let obj = value; obj !== Object.prototype; obj = Object.getPrototypeOf(obj)) {
props.push(...Object.getOwnPropertyNames(obj).map(makeDescriptorGetter(obj)));
props.push(...Object.getOwnPropertySymbols(obj).map(makeDescriptorGetter(obj)));
}
return props;
}
describe('AbortSignal support', () => {
let client: MongoClient;
let db: Db;
let collection: Collection<{ a: number; ssn: string }>;
const logs: Log[] = [];
beforeEach(async function () {
logs.length = 0;
client = this.configuration.newClient(
{},
{
monitorCommands: true,
appName: 'abortSignalClient',
mongodbLogComponentSeverities: { serverSelection: 'debug' },
mongodbLogPath: { write: log => logs.push(log) },
serverSelectionTimeoutMS: 10_000,
maxPoolSize: 1
}
);
await client.connect();
db = client.db('abortSignal');
collection = db.collection('support');
});
afterEach(async function () {
logs.length = 0;
const utilClient = this.configuration.newClient();
try {
await utilClient.db('abortSignal').collection('support').deleteMany({});
} finally {
await utilClient.close();
}
await client?.close();
});
function testCursor(cursorName: string, constructor: any) {
let method;
let filter;
beforeEach(function () {
method = (cursorName === 'listCollections' ? db[cursorName] : collection[cursorName]).bind(
cursorName === 'listCollections' ? db : collection
);
filter = cursorName === 'aggregate' ? [] : {};
});
describe(`when ${cursorName}() is given a signal`, () => {
const cursorAPIs = {
tryNext: [],
hasNext: [],
next: [],
toArray: [],
forEach: [async () => true],
[Symbol.asyncIterator]: []
};
async function iterateUntilDocumentOrError(cursor, cursorAPI, args) {
try {
const apiReturnValue = cursor[cursorAPI](...args);
return isAsyncGenerator(apiReturnValue)
? await apiReturnValue.next()
: await apiReturnValue;
} catch (error) {
return error;
}
}
it('should test all the async APIs', () => {
const knownNotTested = [
'asyncDispose',
'close',
'getMore',
'cursorInit',
'fetchBatch',
'cleanup',
'transformDocument',
Symbol.asyncDispose
];
const allCursorAsyncAPIs = getAllProps(constructor.prototype)
.filter(([, { value }]) => util.types.isAsyncFunction(value))
.map(([key]) => key);
expect(setDifference(Object.keys(cursorAPIs), allCursorAsyncAPIs)).to.be.empty;
const notTested = allCursorAsyncAPIs.filter(
fn => knownNotTested.includes(fn) && Object.keys(cursorAPIs).includes(fn)
);
expect(notTested, 'new async function found, should respond to signal state or be internal')
.to.be.empty;
});
describe('and the signal is already aborted', () => {
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
beforeEach(() => {
const controller = new AbortController();
signal = controller.signal;
controller.abort();
cursor = method(cursorName === 'aggregate' ? [] : {}, { signal });
});
afterEach(async () => {
await cursor.close();
});
for (const [cursorAPI, { value: args }] of getAllProps(cursorAPIs)) {
it(`rejects ${cursorAPI.toString()}`, async () => {
const result = await iterateUntilDocumentOrError(cursor, cursorAPI, args);
expect(result).to.be.instanceOf(DOMException);
});
}
});
describe('and the signal is aborted after use', () => {
let controller: AbortController;
let signal: AbortSignal;
let cursor: FindCursor<{ a: number }>;
beforeEach(() => {
controller = new AbortController();
signal = controller.signal;
cursor = method(filter, { signal });
});
afterEach(async () => {
await cursor.close();
});
for (const [cursorAPI, { value: args }] of getAllProps(cursorAPIs)) {
it(`resolves ${cursorAPI.toString()} without Error`, async () => {
const result = await iterateUntilDocumentOrError(cursor, cursorAPI, args);
controller.abort();
expect(result).to.not.be.instanceOf(Error);
});
it(`aborts in-flight ${cursorAPI.toString()} when aborted after start but before await`, async () => {
const willBeResultBlocked = /* await */ iterateUntilDocumentOrError(
cursor,
cursorAPI,
args
);
controller.abort();
const result = await willBeResultBlocked;
expect(result).to.be.instanceOf(DOMException);
});
it(`rejects ${cursorAPI.toString()} on the subsequent call`, async () => {
const result = await iterateUntilDocumentOrError(cursor, cursorAPI, args);
expect(result).to.not.be.instanceOf(Error);
controller.abort();
const error = await iterateUntilDocumentOrError(cursor, cursorAPI, args);
expect(error).to.be.instanceOf(DOMException);
});
}
});
describe('and the signal is aborted in between iterations', () => {
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
const commandsStarted = [];
let waitForKillCursors;
beforeEach(async function () {
waitForKillCursors =
this.configuration.topologyType === 'LoadBalanced'
? async () => null
: async () => {
for await (const [ev] of events.on(client, 'commandStarted')) {
if (ev.commandName === 'killCursors') return ev;
}
};
commandsStarted.length = 0;
const utilClient = this.configuration.newClient();
try {
const collection = utilClient.db('abortSignal').collection('support');
await collection.drop({});
await collection.insertMany([
{ a: 1, ssn: '0000-00-0001' },
{ a: 2, ssn: '0000-00-0002' },
{ a: 3, ssn: '0000-00-0003' }
]);
if (cursorName === 'listCollections') {
for (let i = 0; i < 3; i++) {
await db.dropCollection(`c${i}`);
await db.createCollection(`c${i}`);
}
}
} finally {
await utilClient.close();
}
controller = new AbortController();
signal = controller.signal;
cursor = method(filter, { signal, batchSize: 1 });
client.on('commandStarted', e => commandsStarted.push(e));
});
afterEach(async () => {
await cursor?.close();
sinon.restore();
});
it(`rejects for-await on the next iteration`, async () => {
let loop = 0;
let thrownError;
try {
for await (const _ of cursor) {
if (loop) controller.abort();
loop += 1;
}
} catch (error) {
thrownError = error;
}
expect(thrownError).to.be.instanceOf(DOMException);
expect(loop).to.equal(2);
});
it('does not run more than one getMore and kills the cursor', async () => {
const killCursors = waitForKillCursors();
try {
let loop = 0;
for await (const _ of cursor) {
if (loop) controller.abort();
loop += 1;
}
} catch {
//ignore;
}
// Check that we didn't run two getMore before inspecting the state of the signal.
// If we didn't check _after_ re-entering our asyncIterator on `yield`,
// we may have called .next()->.fetchBatch() etc. without preventing that work from being done
expect(commandsStarted.map(e => e.commandName)).to.deep.equal([cursorName, 'getMore']);
await killCursors;
});
});
describe('and the signal is aborted during server selection', () => {
const metadata: MongoDBMetadataUI = { requires: { topology: 'replicaset' } };
function test(cursorAPI, args) {
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
beforeEach(() => {
controller = new AbortController();
signal = controller.signal;
cursor = method(filter, {
signal,
// Pick an unselectable server
readPreference: new ReadPreference('secondary', [
{ something: 'that does not exist' }
])
});
});
afterEach(async () => {
await cursor?.close();
});
it(`rejects ${cursorAPI.toString()}`, metadata, async () => {
const willBeResult = iterateUntilDocumentOrError(cursor, cursorAPI, args);
await sleep(3);
expect(
findLast(
logs,
l =>
l.operation === cursorName &&
l.message === 'Waiting for suitable server to become available'
)
).to.exist;
controller.abort();
const start = performance.now();
const result = await willBeResult;
const end = performance.now();
expect(end - start).to.be.lessThan(10); // should be way less than 5s server selection timeout
expect(result).to.be.instanceOf(DOMException);
});
}
for (const [cursorAPI, { value: args }] of getAllProps(cursorAPIs)) {
test(cursorAPI, args);
}
});
describe('and the signal is aborted during connection checkout', failPointMetadata, () => {
function test(cursorAPI, args) {
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
beforeEach(async function () {
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: {
appName: 'abortSignalClient',
failCommands: [cursorName],
blockConnection: true,
blockTimeMS: 300
}
});
controller = new AbortController();
signal = controller.signal;
cursor = method(filter, { signal });
});
afterEach(async function () {
await clearFailPoint(this.configuration);
await cursor?.close();
});
it(`rejects ${cursorAPI.toString()}`, async () => {
const checkoutSucceededFirst = events.once(client, 'connectionCheckedOut');
const checkoutStartedBlocked = events.once(client, 'connectionCheckOutStarted');
const _ = iterateUntilDocumentOrError(cursor, cursorAPI, args);
const willBeResultBlocked = iterateUntilDocumentOrError(cursor, cursorAPI, args);
await checkoutSucceededFirst;
await checkoutStartedBlocked;
controller.abort();
const start = performance.now();
const result = await willBeResultBlocked;
const end = performance.now();
expect(end - start).to.be.lessThan(10);
expect(result).to.be.instanceOf(DOMException);
});
}
for (const [cursorAPI, { value: args }] of getAllProps(cursorAPIs)) {
test(cursorAPI, args);
}
});
describe('and the signal is aborted during connection write', () => {
function test(cursorAPI, args) {
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
beforeEach(async function () {
controller = new AbortController();
signal = controller.signal;
cursor = method(filter, { signal });
});
afterEach(async function () {
sinon.restore();
await cursor?.close();
});
it(`rejects ${cursorAPI.toString()}`, async () => {
await db.command({ ping: 1 }, { readPreference: 'primary' }); // fill the connection pool with 1 connection.
const willBeResultBlocked = iterateUntilDocumentOrError(cursor, cursorAPI, args);
let cursorCommandSocket;
for (const [, server] of client.topology.s.servers) {
//@ts-expect-error: private property
for (const connection of server.pool.connections) {
//@ts-expect-error: private property
cursorCommandSocket = connection.socket;
//@ts-expect-error: private property
const stub = sinon.stub(connection.socket, 'write').callsFake(function (...args) {
controller.abort();
sleep(1).then(() => {
stub.wrappedMethod.apply(this, args);
this.emit('drain');
});
return false;
});
}
}
const start = performance.now();
const result = await willBeResultBlocked;
const end = performance.now();
expect(end - start).to.be.lessThan(10);
expect(result).to.be.instanceOf(DOMException);
expect(cursorCommandSocket).to.have.property('destroyed', true);
expect(cursor.closed).to.be.true;
});
}
for (const [cursorAPI, { value: args }] of getAllProps(cursorAPIs)) {
test(cursorAPI, args);
}
});
describe('and the signal is aborted during connection read', failPointMetadata, () => {
function test(cursorAPI, args) {
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
beforeEach(async function () {
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: {
appName: 'abortSignalClient',
failCommands: [cursorName],
blockConnection: true,
blockTimeMS: 300
}
});
controller = new AbortController();
signal = controller.signal;
cursor = method(filter, { signal });
});
afterEach(async function () {
await clearFailPoint(this.configuration);
await cursor?.close();
});
it(`rejects ${cursorAPI.toString()}`, async () => {
await db.command({ ping: 1 }, { readPreference: 'primary' }); // fill the connection pool with 1 connection.
let cursorCommandSocket;
for (const [, server] of client.topology.s.servers) {
//@ts-expect-error: private property
for (const connection of server.pool.connections) {
//@ts-expect-error: private property
cursorCommandSocket = connection.socket;
}
}
client.on('commandStarted', e => e.commandName === cursorName && controller.abort());
let commandFailed = false;
client.on('commandFailed', e => e.commandName === cursorName && (commandFailed = true));
const willBeResultBlocked = iterateUntilDocumentOrError(cursor, cursorAPI, args);
const start = performance.now();
const result = await willBeResultBlocked;
const end = performance.now();
expect(end - start).to.be.lessThan(10); // shouldn't wait for the blocked connection
expect(result).to.be.instanceOf(DOMException);
expect(cursorCommandSocket).to.have.property('destroyed', true);
expect(cursor.closed).to.be.true;
expect(commandFailed).to.be.true;
});
}
for (const [cursorAPI, { value: args }] of getAllProps(cursorAPIs)) {
test(cursorAPI, args);
}
});
});
}
testCursor('find', FindCursor);
testCursor('aggregate', AggregationCursor);
testCursor('listCollections', ListCollectionsCursor);
describe('cursor stream example', () => {
beforeEach(async function () {
const utilClient = this.configuration.newClient();
try {
const collection = utilClient.db('abortSignal').collection('support');
await collection.drop({});
await collection.insertMany([
{ a: 1, ssn: '0000-00-0001' },
{ a: 2, ssn: '0000-00-0002' },
{ a: 3, ssn: '0000-00-0003' }
]);
} finally {
await utilClient.close();
}
});
it('follows expected stream error handling', async () => {
const controller = new AbortController();
const { signal } = controller;
const cursor = collection.find({}, { signal, batchSize: 1 });
const cursorStream = cursor.stream();
const { promise, resolve, reject } = promiseWithResolvers<void>();
cursorStream
.on('data', () => controller.abort())
.on('error', reject)
.on('close', resolve);
const result = await promise.catch(error => error);
expect(result).to.be.instanceOf(DOMException);
});
});
describe('cursor $where example', () => {
beforeEach(async function () {
const utilClient = this.configuration.newClient();
try {
const collection = utilClient.db('abortSignal').collection('support');
await collection.drop({});
await collection.insertMany([
{ a: 1, ssn: '0000-00-0001' },
{ a: 2, ssn: '0000-00-0002' },
{ a: 3, ssn: '0000-00-0003' }
]);
} finally {
await utilClient.close();
}
});
it('throws an error from the cursor and ends the operation', async function () {
const controller = new AbortController();
const { signal } = controller;
const cursor = collection.find(
{
//@ts-expect-error: our types do not support Code which should be fixed.
$where: new Code(function () {
while (true);
})
},
{ signal, batchSize: 1 }
);
client.on(
'commandStarted',
ev => ev.commandName === 'find' && sleep(2).then(() => controller.abort())
);
const start = performance.now();
const result = await cursor.toArray().catch(error => error);
const end = performance.now();
expect(end - start).to.be.lessThan(50);
expect(result).to.be.instanceOf(DOMException);
});
});
describe('when auto connecting and the signal aborts', () => {
let client: MongoClient;
let db: Db;
let collection: Collection<{ a: number; ssn: string }>;
let connectStarted;
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
describe('when connect succeeds', () => {
beforeEach(async function () {
const promise = promiseWithResolvers<void>();
connectStarted = promise.promise;
client = this.configuration.newClient({}, { serverSelectionTimeoutMS: 1000 });
client.once('open', () => {
controller.abort();
promise.resolve();
});
db = client.db('abortSignal');
collection = db.collection('support');
controller = new AbortController();
signal = controller.signal;
cursor = collection.find({}, { signal });
});
afterEach(async function () {
await client?.close();
});
it('escapes auto connect without interrupting it', async () => {
const toArray = cursor.toArray().catch(error => error);
await connectStarted;
expect(await toArray).to.be.instanceOf(DOMException);
await sleep(1100);
expect(client.topology).to.exist;
expect(client.topology.description).to.have.property('type').not.equal('Unknown');
});
});
describe('when connect fails', () => {
beforeEach(async function () {
const promise = promiseWithResolvers<void>();
connectStarted = promise.promise;
const selectServerStub = sinon
.stub(Topology.prototype, 'selectServer')
.callsFake(async function (...args) {
controller.abort();
promise.resolve();
return selectServerStub.wrappedMethod.call(this, ...args);
});
client = this.configuration.newClient('mongodb://iLoveJavaScript', {
serverSelectionTimeoutMS: 200,
maxPoolSize: 1
});
db = client.db('abortSignal');
collection = db.collection('support');
controller = new AbortController();
signal = controller.signal;
cursor = collection.find({}, { signal });
});
afterEach(async function () {
sinon.restore();
await client?.close();
});
it('server selection error is thrown before reaching signal abort state check', async () => {
const toArray = cursor.toArray().catch(error => error);
await connectStarted;
const findError = await toArray;
expect(findError).to.be.instanceOf(MongoServerSelectionError);
if (process.platform !== 'win32') {
// linux / mac, unix in general will have this errno set,
// which is generally helpful if this is kept elevated in the error message
expect(findError).to.match(/ENOTFOUND/);
}
await sleep(500);
expect(client.topology).to.exist;
expect(client.topology.description).to.have.property('type', 'Unknown');
});
});
});
const reauthMetadata: MongoDBMetadataUI = {
requires: { auth: 'enabled', topology: '!load-balanced' }
};
describe('when reauthenticating and the signal aborts', () => {
let client: MongoClient;
let collection: Collection;
let cursor;
let controller: AbortController;
let signal: AbortSignal;
const msOutOfPool = async () => {
await events.once(client, 'connectionCheckedOut');
const start = performance.now();
await events.once(client, 'connectionCheckedIn');
const end = performance.now();
return end - start;
};
class ReAuthenticationError extends MongoServerError {
override code = 391; // reauth code.
}
beforeEach(async function () {
client = this.configuration.newClient();
await client.connect();
const db = client.db('abortSignal');
collection = db.collection('support');
controller = new AbortController();
signal = controller.signal;
cursor = collection.find({}, { signal });
const commandStub = sinon.stub(Connection.prototype, 'command').callsFake(async function (
...args
) {
if (args[1].find != null) {
commandStub.restore();
controller.abort();
throw new ReAuthenticationError({ message: 'This is a fake reauthentication error' });
}
return commandStub.wrappedMethod.apply(this, args);
});
});
afterEach(async function () {
sinon.restore();
logs.length = 0;
await client?.close();
});
describe('if reauth succeeds', () => {
beforeEach(() => {
sinon.stub(ConnectionPool.prototype, 'reauthenticate').callsFake(async function () {
return sleep(1000);
});
});
it(
'escapes reauth without interrupting it and checks in the connection after reauth completes',
reauthMetadata,
async () => {
const checkIn = msOutOfPool();
const start = performance.now();
const toArray = await cursor.toArray().catch(error => error);
const end = performance.now();
expect(end - start).to.be.lessThan(260);
expect(toArray).to.be.instanceOf(DOMException);
expect(await checkIn).to.be.greaterThan(900); // checks back in despite the abort
}
);
});
describe('if reauth throws', () => {
beforeEach(() => {
sinon.stub(ConnectionPool.prototype, 'reauthenticate').callsFake(async function () {
const error = new Error('Rejecting reauthenticate for testing');
await sleep(1000);
throw error;
});
});
it(
'escapes reauth without interrupting it and checks in the connection after reauth completes',
reauthMetadata,
async () => {
const checkIn = msOutOfPool();
const start = performance.now();
const toArray = await cursor.toArray().catch(error => error);
const end = performance.now();
expect(end - start).to.be.lessThan(260);
expect(toArray).to.be.instanceOf(DOMException);
expect(await checkIn).to.be.greaterThan(900); // checks back in despite the abort
}
);
});
});
describe('KMS requests', function () {
const stateMachine = new StateMachine({} as any);
const request = {
addResponse: _response => undefined,
status: {
type: 1,
code: 1,
message: 'notARealStatus'
},
bytesNeeded: 500,
kmsProvider: 'notRealAgain',
endpoint: 'fake',
message: Buffer.from('foobar')
};
let controller: AbortController;
let signal: AbortSignal;
let cursor: AbstractCursor<{ a: number }>;
beforeEach(async function () {
controller = new AbortController();
signal = controller.signal;
});
afterEach(async function () {
sinon.restore();
await cursor?.close();
});
describe('when StateMachine.kmsRequest() is passed an AbortSignal', function () {
beforeEach(async function () {
sinon.stub(TLSSocket.prototype, 'connect').callsFake(function (..._args) {
return this;
});
});
afterEach(async function () {
sinon.restore();
});
it('the kms request rejects when signal is aborted', async function () {
const err = stateMachine.kmsRequest(request, { signal }).catch(e => e);
await sleep(1);
controller.abort();
expect(await err).to.be.instanceOf(DOMException);
});
});
});
describe('when a signal passed to countDocuments() is aborted', failPointMetadata, () => {
let controller: AbortController;
let signal: AbortSignal;
beforeEach(async function () {
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: {
appName: 'abortSignalClient',
failCommands: ['aggregate'],
blockConnection: true,
blockTimeMS: 300
}
});
controller = new AbortController();
signal = controller.signal;
});
afterEach(async function () {
await clearFailPoint(this.configuration);
});
// We don't fully cover countDocuments because of the above tests for aggregate.
// However, if countDocuments were ever to be implemented using a different command
// This would catch the change:
it(`rejects countDocuments`, async () => {
client.on(
'commandStarted',
// Abort a bit after aggregate has started:
ev => ev.commandName === 'aggregate' && sleep(10).then(() => controller.abort())
);
const start = performance.now();
const result = await collection.countDocuments({}, { signal }).catch(error => error);
const end = performance.now();
expect(end - start).to.be.lessThan(260); // shouldn't wait for the blocked connection
expect(result).to.be.instanceOf(DOMException);
});
});
describe('when a signal passed to findOne() is aborted', failPointMetadata, () => {
let controller: AbortController;
let signal: AbortSignal;
beforeEach(async function () {
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: {
appName: 'abortSignalClient',
failCommands: ['find'],
blockConnection: true,
blockTimeMS: 300
}
});
controller = new AbortController();
signal = controller.signal;
});
afterEach(async function () {
await clearFailPoint(this.configuration);
});
it(`rejects findOne`, async () => {
client.on(
'commandStarted',
// Abort a bit after find has started:
ev => ev.commandName === 'find' && sleep(1).then(() => controller.abort())
);
const start = performance.now();
const result = await collection.findOne({}, { signal }).catch(error => error);
const end = performance.now();
// TODO(NODE-6833): This duration was bumped from 10 to 40 to reduce flakiness, if this fails again investigate it.
expect(end - start).to.be.lessThan(40); // shouldn't wait for the blocked connection
expect(result).to.be.instanceOf(DOMException);
});
});
describe('when a signal passed to db.command() is aborted', failPointMetadata, () => {
let controller: AbortController;
let signal: AbortSignal;
beforeEach(async function () {
await configureFailPoint(this.configuration, {
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: {
appName: 'abortSignalClient',
failCommands: ['ping'],
blockConnection: true,
blockTimeMS: 300
}
});
controller = new AbortController();
signal = controller.signal;
});
afterEach(async function () {
await clearFailPoint(this.configuration);
});
it(`rejects command`, async () => {
client.on(
'commandStarted',
// Abort a bit after ping has started:
ev => ev.commandName === 'ping' && sleep(1).then(() => controller.abort())
);
const start = performance.now();
const result = await db.command({ ping: 1 }, { signal }).catch(error => error);
const end = performance.now();
expect(end - start).to.be.lessThan(10); // shouldn't wait for the blocked connection
expect(result).to.be.instanceOf(DOMException);
});
});
});