-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathmongo_logger.test.ts
1612 lines (1451 loc) · 63 KB
/
mongo_logger.test.ts
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
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { EJSON, ObjectId } from 'bson';
import { expect } from 'chai';
import * as sinon from 'sinon';
import { Readable, Writable } from 'stream';
import { inspect } from 'util';
import {
COMMAND_FAILED,
COMMAND_STARTED,
COMMAND_SUCCEEDED,
CONNECTION_CHECK_OUT_FAILED,
CONNECTION_CHECK_OUT_STARTED,
CONNECTION_CHECKED_IN,
CONNECTION_CHECKED_OUT,
CONNECTION_CLOSED,
CONNECTION_CREATED,
CONNECTION_POOL_CLEARED,
CONNECTION_POOL_CLOSED,
CONNECTION_POOL_CREATED,
CONNECTION_POOL_READY,
CONNECTION_READY,
createStdioLogger,
DEFAULT_MAX_DOCUMENT_LENGTH,
type Log,
type MongoDBLogWritable,
MongoLoggableComponent,
MongoLogger,
type MongoLoggerOptions,
parseSeverityFromString,
SeverityLevel,
stringifyWithMaxLen
} from '../mongodb';
import { sleep } from '../tools/utils';
class BufferingStream extends Writable {
buffer: any[] = [];
constructor(options = {}) {
super({ ...options, objectMode: true });
}
override _write(chunk, encoding, callback) {
this.buffer.push(chunk);
callback();
}
}
describe('meta tests for BufferingStream', function () {
it('the buffer is empty on construction', function () {
const stream = new BufferingStream();
expect(stream.buffer).to.have.lengthOf(0);
});
it('pushes messages to the buffer when written to', function () {
const stream = new BufferingStream();
stream.write('message');
expect(stream.buffer).to.deep.equal(['message']);
});
});
describe('class MongoLogger', async function () {
describe('#constructor()', function () {
it('assigns each property from the options object onto the logging class', function () {
const componentSeverities: MongoLoggerOptions['componentSeverities'] = {
command: 'alert'
} as any;
const stream = new Writable();
const logger = new MongoLogger({
componentSeverities,
maxDocumentLength: 10,
logDestination: stream,
logDestinationIsStdErr: false
});
expect(logger).to.have.property('componentSeverities', componentSeverities);
expect(logger).to.have.property('maxDocumentLength', 10);
expect(logger).to.have.property('logDestination', stream);
});
context('when logDestination is an object that implements MongoDBLogWritable', function () {
it('successfully writes logs to the MongoDBLogWritable', function () {
const logDestination = {
buffer: [],
write(log: Log) {
this.buffer.push(log);
}
} as { buffer: any[]; write: (log: Log) => void };
const logger = new MongoLogger({
componentSeverities: { command: 'error' } as any,
logDestination,
logDestinationIsStdErr: false
} as any);
logger.error('command', 'Hello world!');
expect(logDestination.buffer).to.have.lengthOf(1);
});
});
context('when logDestination implements nodejs:stream.Writable', function () {
it('successfully writes logs to the Writable', function () {
const buffer: any[] = [];
const logDestination = new Writable({
objectMode: true,
write(log: Log): void {
buffer.push(log);
}
});
const logger = new MongoLogger({
componentSeverities: { command: 'error' } as any,
logDestination,
logDestinationIsStdErr: false
} as any);
logger.error('command', 'Hello world!');
expect(buffer).to.have.lengthOf(1);
});
});
});
describe('static #resolveOptions()', function () {
describe('componentSeverities', function () {
const components = new Map([
['MONGODB_LOG_COMMAND', 'command'],
['MONGODB_LOG_TOPOLOGY', 'topology'],
['MONGODB_LOG_SERVER_SELECTION', 'serverSelection'],
['MONGODB_LOG_CONNECTION', 'connection'],
['MONGODB_LOG_CLIENT', 'client']
]);
function* makeValidOptions(): Generator<[string, string]> {
const validOptions = Object.values(SeverityLevel).filter(option =>
['error', 'warn', 'info', 'debug', 'trace'].includes(option)
);
for (const option of validOptions) {
yield [option, option];
yield [option.toUpperCase(), option];
}
}
const invalidOptions = ['', 'invalid-string'];
const validNonDefaultOptions = new Map(makeValidOptions());
context('default', () => {
context('when MONGODB_LOG_ALL is unset', () => {
it('sets default to OFF', () => {
const { componentSeverities } = MongoLogger.resolveOptions({}, {});
expect(componentSeverities.default).to.equal(SeverityLevel.OFF);
});
});
context('when MONGODB_LOG_ALL is invalid', () => {
for (const invalidOption of invalidOptions) {
context(`{ MONGODB_LOG_ALL: '${invalidOption} }'`, () => {
it('sets default to OFF', () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
MONGODB_LOG_ALL: invalidOption
},
{}
);
expect(componentSeverities.default).to.equal(SeverityLevel.OFF);
});
});
}
});
context('when MONGODB_LOG_ALL is valid', () => {
for (const [validOption, expectedValue] of validNonDefaultOptions) {
context(`{ MONGODB_LOG_ALL: '${validOption}' }`, () => {
it('sets default to the value of MONGODB_LOG_ALL', () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
MONGODB_LOG_ALL: validOption
},
{}
);
expect(componentSeverities.default).to.equal(expectedValue);
});
});
}
});
});
for (const [loggingComponent, componentSeverityOption] of components) {
context(`when ${loggingComponent} is unset`, () => {
context(`when MONGODB_LOG_ALL is unset`, () => {
it(`sets ${componentSeverityOption} to OFF`, () => {
const { componentSeverities } = MongoLogger.resolveOptions({}, {});
expect(componentSeverities[componentSeverityOption]).to.equal(SeverityLevel.OFF);
});
});
context(`when MONGODB_LOG_ALL is set to an invalid value`, () => {
for (const invalidOption of invalidOptions) {
context(`{ MONGODB_LOG_ALL: ${invalidOption} }`, () => {
it(`sets ${invalidOption} to OFF`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
MONGODB_LOG_ALL: invalidOption
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(SeverityLevel.OFF);
});
});
}
});
context(`when MONGODB_LOG_ALL is set to a valid value`, () => {
for (const [option, expectedValue] of validNonDefaultOptions) {
context(`{ MONGODB_LOG_ALL: ${option} }`, () => {
it(`sets ${option} to the value of MONGODB_LOG_ALL`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
MONGODB_LOG_ALL: option
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(expectedValue);
});
});
}
});
});
context(`when ${loggingComponent} is set to an invalid value in the environment`, () => {
context(`when MONGODB_LOG_ALL is unset`, () => {
for (const invalidOption of invalidOptions) {
context(`{ ${loggingComponent}: ${invalidOption} }`, () => {
it(`sets ${componentSeverityOption} to OFF`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
[loggingComponent]: invalidOption
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(SeverityLevel.OFF);
});
});
}
});
context(`when MONGODB_LOG_ALL is set to an invalid value`, () => {
for (const invalidOption of invalidOptions) {
context(
`{ ${loggingComponent}: ${invalidOption}, MONGODB_LOG_ALL: ${invalidOption} }`,
() => {
it(`sets ${componentSeverityOption} to OFF`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
[loggingComponent]: invalidOption,
MONGODB_LOG_ALL: invalidOption
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(
SeverityLevel.OFF
);
});
}
);
}
});
context(`when MONGODB_LOG_ALL is set to a valid value`, () => {
const invalidOption = invalidOptions[0];
for (const [option, expectedValue] of validNonDefaultOptions) {
context(
`{ MONGODB_LOG_ALL: ${option}, ${componentSeverityOption}: ${option} }`,
() => {
it(`sets ${componentSeverityOption} to the value of MONGODB_LOG_ALL`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
[loggingComponent]: invalidOption,
MONGODB_LOG_ALL: option
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(expectedValue);
});
}
);
}
});
});
context(`when ${loggingComponent} is set to a valid value in the environment`, () => {
context(`when MONGODB_LOG_ALL is unset`, () => {
for (const [option, expectedValue] of validNonDefaultOptions) {
context(`{ ${loggingComponent}: ${option} }`, () => {
it(`sets ${componentSeverityOption} to the value of ${loggingComponent}`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
[loggingComponent]: option
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(expectedValue);
});
});
}
});
context(`when MONGODB_LOG_ALL is set to an invalid value`, () => {
const invalidValue = invalidOptions[0];
for (const [option, expectedValue] of validNonDefaultOptions) {
context(
`{ ${loggingComponent}: ${option}, MONGODB_LOG_ALL: ${invalidValue} }`,
() => {
it(`sets ${componentSeverityOption} to the value of ${loggingComponent}`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
[loggingComponent]: option,
MONGODB_LOG_ALL: invalidValue
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(expectedValue);
});
}
);
}
});
context(`when MONGODB_LOG_ALL is set to a valid value`, () => {
const validOption = validNonDefaultOptions.keys()[0];
for (const [option, expectedValue] of validNonDefaultOptions) {
context(`{ ${loggingComponent}: ${option}, MONGODB_LOG_ALL: ${validOption} }`, () => {
it(`sets ${componentSeverityOption} to the value of ${loggingComponent}`, () => {
const { componentSeverities } = MongoLogger.resolveOptions(
{
[loggingComponent]: option,
MONGODB_LOG_ALL: validOption
},
{}
);
expect(componentSeverities[componentSeverityOption]).to.equal(expectedValue);
});
});
}
});
});
}
});
context('maxDocumentLength', function () {
const tests: Array<{
input: undefined | string;
expected: number;
context: string;
outcome: string;
}> = [
{
input: undefined,
expected: 1000,
context: 'when unset',
outcome: 'defaults to 1000'
},
{
input: '33',
context: 'when set to parsable uint',
outcome: 'sets `maxDocumentLength` to the parsed value',
expected: 33
},
{
input: '',
context: 'when set to an empty string',
outcome: 'defaults to 1000',
expected: 1000
},
{
input: 'asdf',
context: 'when set to a non-integer string',
outcome: 'defaults to 1000',
expected: 1000
}
];
for (const { input, outcome, expected, context: _context } of tests) {
context(_context, () => {
it(outcome, () => {
const options = MongoLogger.resolveOptions(
{ MONGODB_LOG_MAX_DOCUMENT_LENGTH: input },
{}
);
expect(options.maxDocumentLength).to.equal(expected);
});
});
}
});
context('logDestination', function () {
let stdoutStub;
let stderrStub;
let streamStub;
let validOptions: Map<any, MongoDBLogWritable>;
const stream: { write: (log: Log) => void; buffer: Log[] } = {
write(log: Log): void {
this.buffer.push(log);
},
buffer: []
};
const unsetOptions = ['', undefined];
const invalidEnvironmentOptions = ['non-acceptable-string'];
const invalidClientOptions = ['', ' ', undefined, null, 0, false, new Readable()];
const validClientOptions = ['stderr', 'stdout', stream, 'stdErr', 'stdOut'];
const validEnvironmentOptions = ['stderr', 'stdout', 'stdOut', 'stdErr'];
beforeEach(function () {
stdoutStub = sinon.stub(process.stdout);
stderrStub = sinon.stub(process.stderr);
streamStub = sinon.stub(stream);
validOptions = new Map([
['stdout', stdoutStub],
['stderr', stderrStub],
[stream, streamStub],
['stdOut', stdoutStub],
['stdErr', stderrStub]
] as Array<[any, MongoDBLogWritable]>);
});
afterEach(function () {
sinon.restore();
});
context('when MONGODB_LOG_DESTINATION is unset in the environment', function () {
context('when mongodbLogPath is unset as a client option', function () {
for (const unsetEnvironmentOption of unsetOptions) {
for (const unsetOption of unsetOptions) {
it(`{environment: "${unsetEnvironmentOption}", client: "${unsetOption}"} defaults to process.stderr`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: unsetEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: unsetOption as any }
);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
const logLine = inspect(log, { breakLength: Infinity, compact: true });
expect(stderrStub.write).to.have.been.calledOnceWith(`${logLine}\n`);
});
}
}
});
context('when mongodbLogPath is an invalid client option', function () {
for (const unsetEnvironmentOption of unsetOptions) {
for (const invalidOption of invalidClientOptions) {
it(`{environment: "${unsetEnvironmentOption}", client: "${invalidOption}"} defaults to process.stderr`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: unsetEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: invalidOption as any }
);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
const logLine = inspect(log, { breakLength: Infinity, compact: true });
expect(stderrStub.write).to.have.been.calledOnceWith(`${logLine}\n`);
});
}
}
});
context('when mongodbLogPath is a valid client option', function () {
for (const unsetEnvironmentOption of unsetOptions) {
for (const validOption of validClientOptions) {
it(`{environment: "${unsetEnvironmentOption}", client: "${validOption}"} uses the value from the client options`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: unsetEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: validOption as any }
);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
const correctDestination = validOptions.get(validOption);
expect(correctDestination?.write).to.have.been.calledOnce;
});
}
}
});
});
context(
'when MONGODB_LOG_DESTINATION is set to an invalid value in the environment',
function () {
context('when mongodbLogPath is unset on the client options', function () {
for (const invalidEnvironmentOption of invalidEnvironmentOptions) {
for (const unsetClientOption of unsetOptions) {
it(`{environment: "${invalidEnvironmentOption}", client: "${unsetClientOption}"} defaults to process.stderr`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: invalidEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: unsetClientOption as any }
);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
const logLine = inspect(log, { breakLength: Infinity, compact: true });
expect(stderrStub.write).to.have.been.calledOnceWith(`${logLine}\n`);
});
}
}
});
context(
'when mongodbLogPath is set to an invalid value on the client options',
function () {
for (const invalidEnvironmentOption of invalidEnvironmentOptions) {
for (const invalidOption of invalidClientOptions) {
it(`{environment: "${invalidEnvironmentOption}", client: "${invalidOption}"} defaults to process.stderr`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: invalidEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: invalidOption as any }
);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
const logLine = inspect(log, { breakLength: Infinity, compact: true });
expect(stderrStub.write).to.have.been.calledOnceWith(`${logLine}\n`);
});
}
}
}
);
context('when mongodbLogPath is set to a valid value on the client options', function () {
for (const invalidEnvironmentOption of invalidEnvironmentOptions) {
for (const validOption of validClientOptions) {
it(`{environment: "${invalidEnvironmentOption}", client: "${validOption}"} uses the value from the client options`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: invalidEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: validOption as any }
);
const correctDestination = validOptions.get(validOption);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
expect(correctDestination?.write).to.have.been.calledOnce;
});
}
}
});
}
);
context('when MONGODB_LOG_PATH is set to a valid option in the environment', function () {
context('when mongodbLogPath is unset on the client options', function () {
for (const validEnvironmentOption of validEnvironmentOptions) {
for (const unsetOption of unsetOptions) {
it(`{environment: "${validEnvironmentOption}", client: "${unsetOption}"} uses process.${validEnvironmentOption}`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: validEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: unsetOption as any }
);
const correctDestination = validOptions.get(validEnvironmentOption);
options.logDestination.write({ t: new Date(), c: 'command', s: 'error' });
expect(correctDestination?.write).to.have.been.calledOnce;
});
}
}
});
context(
'when mongodbLogPath is set to an invalid value on the client options',
function () {
for (const validEnvironmentOption of validEnvironmentOptions) {
for (const invalidValue of invalidClientOptions) {
it(`{environment: "${validEnvironmentOption}", client: "${invalidValue}"} uses process.${validEnvironmentOption}`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: validEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: invalidValue as any }
);
const correctDestination = validOptions.get(validEnvironmentOption);
const log: Log = { t: new Date(), c: 'command', s: 'error' };
options.logDestination.write(log);
expect(correctDestination?.write).to.have.been.calledOnce;
});
}
}
}
);
context('when mongodbLogPath is set to valid client option', function () {
for (const validEnvironmentOption of validEnvironmentOptions) {
for (const validValue of validClientOptions) {
it(`{environment: "${validEnvironmentOption}", client: ${
typeof validValue === 'object'
? 'new ' + validValue.constructor.name + '(...)'
: '"' + validValue.toString() + '"'
}} uses the value from the client options`, function () {
const options = MongoLogger.resolveOptions(
{
MONGODB_LOG_PATH: validEnvironmentOption,
MONGODB_LOG_COMMAND: 'error'
},
{ mongodbLogPath: validValue as any }
);
const correctDestination = validOptions.get(validValue);
options.logDestination.write({ t: new Date(), c: 'command', s: 'error' });
expect(correctDestination?.write).to.have.been.calledOnce;
});
}
}
});
});
});
});
describe('severity helpers', function () {
const severities: SeverityLevel[] = Object.values(SeverityLevel).filter(severity =>
['error', 'warn', 'info', 'debug', 'trace'].includes(severity)
);
for (const [index, severityLevel] of severities.entries()) {
describe(`${severityLevel}()`, function () {
it('does not log when logging for the component is disabled', () => {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: {
topology: 'off'
} as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
logger[severityLevel]('topology', 'message');
expect(stream.buffer).to.have.lengthOf(0);
});
context('when the log severity is greater than what was configured', function () {
it('does not write to logDestination', function () {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: {
command: severityLevel
} as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
for (let i = index + 1; i < severities.length; i++) {
const severity = severities[i];
logger[severity]('command', 'Hello');
}
expect(stream.buffer).to.have.lengthOf(0);
});
});
context('when log severity is equal to or less than what was configured', function () {
it('writes log to logDestination', function () {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: {
command: severityLevel
} as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
// Calls all severity logging methods with a level less than or equal to what severityLevel
for (let i = index; i >= 0; i--) {
const severity = severities[i];
logger[severity]('command', 'Hello');
}
expect(stream.buffer).to.have.lengthOf(index + 1);
});
});
context('when object with toLog method is being logged', function () {
const obj = {
a: 10,
b: 12,
toLog() {
return { sum: this.a + this.b };
}
};
it('calls toLog and constructs log message with the result of toLog', function () {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: { command: severityLevel } as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
logger[severityLevel]('command', obj);
expect(stream.buffer).to.have.lengthOf(1);
expect(stream.buffer[0]).to.have.property('sum', 22);
});
});
context('when object without toLog method is being logged', function () {
const obj = { a: 10, b: 12 };
it('uses the existing fields to build the log message', function () {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: { command: severityLevel } as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
logger[severityLevel]('command', obj);
expect(stream.buffer).to.have.lengthOf(1);
expect(stream.buffer[0]).to.have.property('a', 10);
expect(stream.buffer[0]).to.have.property('b', 12);
});
});
context('when object with nullish top level fields is being logged', function () {
const obj = {
A: undefined,
B: null,
C: 'Hello World!'
};
it('emits a log message that omits the nullish top-level fields by default', function () {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: { command: severityLevel } as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
logger[severityLevel]('command', obj);
expect(stream.buffer).to.have.lengthOf(1);
expect(stream.buffer[0]).to.not.have.property('A');
expect(stream.buffer[0]).to.not.have.property('B');
expect(stream.buffer[0]).to.have.property('C', 'Hello World!');
});
});
context('when string is being logged', function () {
const message = 'Hello world';
it('puts the string in the message field of the emitted log message', function () {
const stream = new BufferingStream();
const logger = new MongoLogger({
componentSeverities: { command: severityLevel } as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
logger[severityLevel]('command', message);
expect(stream.buffer).to.have.lengthOf(1);
expect(stream.buffer[0]).to.have.property('message', message);
});
});
context('spec-required logs', function () {
let stream: BufferingStream;
let logger: MongoLogger;
beforeEach(function () {
stream = new BufferingStream();
logger = new MongoLogger({
componentSeverities: {
command: 'trace',
connection: 'trace'
} as any,
logDestination: stream,
logDestinationIsStdErr: false
} as any);
});
context('command component', function () {
let log;
const commandStarted = {
commandName: 'find',
requestId: 0,
connectionId: 0,
address: '127.0.0.1:27017',
serviceId: new ObjectId(),
databaseName: 'db',
name: COMMAND_STARTED
};
const commandSucceeded = {
commandName: 'find',
requestId: 0,
connectionId: 0,
duration: 0,
address: '127.0.0.1:27017',
serviceId: new ObjectId(),
databaseName: 'db',
name: COMMAND_SUCCEEDED
};
const commandFailed = {
commandName: 'find',
requestId: 0,
duration: 0,
connectionId: 0,
address: '127.0.0.1:27017',
serviceId: new ObjectId(),
databaseName: 'db',
failure: 'err',
name: COMMAND_FAILED
};
function commonCommandComponentAssertions() {
const fields = [
['commandName', 'string'],
['requestId', 'number'],
['driverConnectionId', 'number'],
['serverHost', 'string'],
['serverPort', 'number'],
['serviceId', 'string']
];
for (const [fieldName, type] of fields) {
it(`emits a log with field \`${fieldName}\` that is of type ${type}`, function () {
expect(log).to.have.property(fieldName).that.is.a(type);
});
}
}
context('when CommandStartedEvent is logged', function () {
beforeEach(function () {
logger[severityLevel]('command', commandStarted);
expect(stream.buffer).to.have.lengthOf(1);
log = stream.buffer[0];
});
commonCommandComponentAssertions();
it('emits a log with field `message` = "Command started"', function () {
expect(log).to.have.property('message', 'Command started');
});
it('emits a log with field `command` that is an EJSON string', function () {
expect(log).to.have.property('command').that.is.a('string');
expect(() => EJSON.parse(log.command)).to.not.throw();
});
it('emits a log with field `databaseName` that is a string', function () {
expect(log).to.have.property('databaseName').that.is.a('string');
});
});
context('when CommandSucceededEvent is logged', function () {
beforeEach(function () {
logger[severityLevel]('command', commandSucceeded);
expect(stream.buffer).to.have.lengthOf(1);
log = stream.buffer[0] as any;
});
commonCommandComponentAssertions();
it('emits a log with field `message` = "Command succeeded"', function () {
expect(log).to.have.property('message', 'Command succeeded');
});
it('emits a log with field `durationMS` that is a number', function () {
expect(log).to.have.property('durationMS').that.is.a('number');
});
it('emits a log with field `reply` that is an EJSON string', function () {
expect(log).to.have.property('reply').that.is.a('string');
expect(() => EJSON.parse(log.reply)).to.not.throw();
});
});
context('when CommandFailedEvent is logged', function () {
beforeEach(function () {
logger[severityLevel]('command', commandFailed);
expect(stream.buffer).to.have.lengthOf(1);
log = stream.buffer[0] as any;
});
commonCommandComponentAssertions();
it('emits a log with field `message` = "Command failed"', function () {
expect(log).to.have.property('message', 'Command failed');
});
it('emits a log with field `durationMS` that is a number', function () {
expect(log).to.have.property('durationMS').that.is.a('number');
});
it('emits a log with field `failure`', function () {
expect(log).to.have.property('failure');
});
});
});
context('connection component', function () {
let log;
const options = {
maxIdleTimeMS: 0,
minPoolSize: 0,
maxPoolSize: 0,
maxConnecting: 0,
waitQueueTimeoutMS: 100
};
const connectionPoolCreated = {
name: CONNECTION_POOL_CREATED,
waitQueueSize: 0,
address: '127.0.0.1:27017',
options
};
const connectionPoolReady = {
name: CONNECTION_POOL_READY,
address: '127.0.0.1:27017',
options
};
const connectionPoolCleared = {
name: CONNECTION_POOL_CLEARED,
serviceId: new ObjectId(),
address: '127.0.0.1:27017',
options
};
const connectionPoolClosed = {
name: CONNECTION_POOL_CLOSED,
address: '127.0.0.1:27017',
options
};
const connectionCreated = {
name: CONNECTION_CREATED,
connectionId: 0,
address: '127.0.0.1:27017',
options
};
const connectionCheckOutStarted = {
name: CONNECTION_CHECK_OUT_STARTED,
address: '127.0.0.1:27017',
options
};
const connectionCheckOutFailed = {
name: CONNECTION_CHECK_OUT_FAILED,
address: '127.0.0.1:27017',
options
};
const connectionCheckedOut = {
name: CONNECTION_CHECKED_OUT,
connectionId: 0,
address: '127.0.0.1:27017',
options
};
const connectionCheckedIn = {
name: CONNECTION_CHECKED_IN,
connectionId: 0,
address: '127.0.0.1:27017',
options
};
const connectionReady = {
name: CONNECTION_READY,
connectionId: 0,
address: '127.0.0.1:27017',
options
};
const connectionClosed = {
name: CONNECTION_CLOSED,
connectionId: 0,
address: '127.0.0.1:27017',
options
};
function commonConnectionComponentAssertions() {
const fields = [
['serverPort', 'number'],
['serverHost', 'string']
];
for (const [fieldName, type] of fields) {
it(`emits a log with field \`${fieldName}\` that is of type ${type}`, function () {
expect(log).to.have.property(fieldName).that.is.a(type);
});
}
}
context('when ConnectionPoolCreatedEvent is logged', function () {
beforeEach(function () {
logger[severityLevel]('connection', connectionPoolCreated);
expect(stream.buffer).to.have.lengthOf(1);
log = stream.buffer[0];
});
commonConnectionComponentAssertions();