-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathbaseclient.test.ts
2183 lines (1766 loc) · 73.3 KB
/
baseclient.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 { SentryError, SyncPromise, dsnToString } from '@sentry/core';
import type { Client, Envelope, ErrorEvent, Event, TransactionEvent } from '../../src/types-hoist';
import * as loggerModule from '../../src/utils-hoist/logger';
import * as miscModule from '../../src/utils-hoist/misc';
import * as stringModule from '../../src/utils-hoist/string';
import * as timeModule from '../../src/utils-hoist/time';
import {
Scope,
addBreadcrumb,
getCurrentScope,
getIsolationScope,
lastEventId,
makeSession,
setCurrentClient,
withMonitor,
} from '../../src';
import * as integrationModule from '../../src/integration';
import { TestClient, getDefaultTestClientOptions } from '../mocks/client';
import { AdHocIntegration, TestIntegration } from '../mocks/integration';
import { makeFakeTransport } from '../mocks/transport';
import { clearGlobalScope } from './clear-global-scope';
const PUBLIC_DSN = 'https://username@domain/123';
// eslint-disable-next-line no-var
declare var global: any;
const clientEventFromException = jest.spyOn(TestClient.prototype, 'eventFromException');
const clientProcess = jest.spyOn(TestClient.prototype as any, '_process');
jest.spyOn(miscModule, 'uuid4').mockImplementation(() => '12312012123120121231201212312012');
jest.spyOn(loggerModule, 'consoleSandbox').mockImplementation(cb => cb());
jest.spyOn(stringModule, 'truncate').mockImplementation(str => str);
jest.spyOn(timeModule, 'dateTimestampInSeconds').mockImplementation(() => 2020);
describe('BaseClient', () => {
beforeEach(() => {
TestClient.sendEventCalled = undefined;
TestClient.instance = undefined;
clearGlobalScope();
getCurrentScope().clear();
getCurrentScope().setClient(undefined);
getIsolationScope().clear();
});
afterEach(() => {
jest.clearAllMocks();
});
describe('constructor() / getDsn()', () => {
test('returns the Dsn', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
expect(dsnToString(client.getDsn()!)).toEqual(PUBLIC_DSN);
});
test('allows missing Dsn', () => {
const options = getDefaultTestClientOptions();
const client = new TestClient(options);
expect(client.getDsn()).toBeUndefined();
expect(client.getTransport()).toBeUndefined();
});
test('handles being passed an invalid Dsn', () => {
// Hide warning logs in the test
jest.spyOn(console, 'error').mockImplementation(() => {});
const options = getDefaultTestClientOptions({ dsn: 'abc' });
const client = new TestClient(options);
expect(client.getDsn()).toBeUndefined();
expect(client.getTransport()).toBeUndefined();
});
});
describe('constructor() / warnings', () => {
test('does not warn for defaults', () => {
const consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation(() => undefined);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
new TestClient(options);
expect(consoleWarnSpy).toHaveBeenCalledTimes(0);
consoleWarnSpy.mockRestore();
});
describe.each(['tracesSampleRate', 'tracesSampler', 'enableTracing'])('%s', key => {
it('warns when set to undefined', () => {
const consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation(() => undefined);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, [key]: undefined });
new TestClient(options);
expect(consoleWarnSpy).toHaveBeenCalledTimes(1);
expect(consoleWarnSpy).toBeCalledWith(
`[Sentry] Deprecation warning: \`${key}\` is set to undefined, which leads to tracing being enabled. In v9, a value of \`undefined\` will result in tracing being disabled.`,
);
consoleWarnSpy.mockRestore();
});
it('warns when set to null', () => {
const consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation(() => undefined);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, [key]: null });
new TestClient(options);
expect(consoleWarnSpy).toHaveBeenCalledTimes(1);
expect(consoleWarnSpy).toBeCalledWith(
`[Sentry] Deprecation warning: \`${key}\` is set to undefined, which leads to tracing being enabled. In v9, a value of \`undefined\` will result in tracing being disabled.`,
);
consoleWarnSpy.mockRestore();
});
it('does not warn when set to 0', () => {
const consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation(() => undefined);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, [key]: 0 });
new TestClient(options);
expect(consoleWarnSpy).toHaveBeenCalledTimes(0);
consoleWarnSpy.mockRestore();
});
});
});
describe('getOptions()', () => {
test('returns the options', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, test: true });
const client = new TestClient(options);
expect(client.getOptions()).toEqual(options);
});
});
describe('getTransport()', () => {
test('returns undefined when no dsn is set', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({});
const client = new TestClient(options);
expect(client.getTransport()).toBeUndefined();
});
});
describe('getBreadcrumbs() / addBreadcrumb()', () => {
test('adds a breadcrumb', () => {
const options = getDefaultTestClientOptions({});
const client = new TestClient(options);
setCurrentClient(client);
client.init();
const scope = new Scope();
scope.addBreadcrumb({ message: 'hello' }, 100);
addBreadcrumb({ message: 'world' });
const breadcrumbs = scope.getScopeData().breadcrumbs;
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(breadcrumbs).toEqual([{ message: 'hello', timestamp: expect.any(Number) }]);
expect(isolationScopeBreadcrumbs).toEqual([{ message: 'world', timestamp: expect.any(Number) }]);
});
test('accepts a timestamp for new breadcrumbs', () => {
const options = getDefaultTestClientOptions({});
const client = new TestClient(options);
setCurrentClient(client);
client.init();
const scope = new Scope();
scope.addBreadcrumb({ message: 'hello', timestamp: 1234 }, 100);
addBreadcrumb({ message: 'world', timestamp: 12345 });
const breadcrumbs = scope.getScopeData().breadcrumbs;
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(breadcrumbs).toEqual([{ message: 'hello', timestamp: 1234 }]);
expect(isolationScopeBreadcrumbs).toEqual([{ message: 'world', timestamp: 12345 }]);
});
test('discards breadcrumbs beyond `maxBreadcrumbs`', () => {
const options = getDefaultTestClientOptions({ maxBreadcrumbs: 1 });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
addBreadcrumb({ message: 'hello1' });
addBreadcrumb({ message: 'hello2' });
addBreadcrumb({ message: 'hello3' });
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(isolationScopeBreadcrumbs).toEqual([{ message: 'hello3', timestamp: expect.any(Number) }]);
});
test('it records `buffer_overflow` client discard reason when buffer overflows', () => {
const options = getDefaultTestClientOptions({ maxBreadcrumbs: 1 });
const client = new TestClient(options);
const recordLostEventSpy = jest.spyOn(client, 'recordDroppedEvent');
setCurrentClient(client);
getIsolationScope().setClient(client);
client.init();
addBreadcrumb({ message: 'hello1' });
addBreadcrumb({ message: 'hello2' });
addBreadcrumb({ message: 'hello3' });
expect(recordLostEventSpy).toHaveBeenCalledTimes(2);
expect(recordLostEventSpy).toHaveBeenLastCalledWith('buffer_overflow', 'log_item');
});
test('calls `beforeBreadcrumb` and adds the breadcrumb without any changes', () => {
const beforeBreadcrumb = jest.fn(breadcrumb => breadcrumb);
const options = getDefaultTestClientOptions({ beforeBreadcrumb });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
addBreadcrumb({ message: 'hello' });
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(isolationScopeBreadcrumbs).toEqual([{ message: 'hello', timestamp: expect.any(Number) }]);
});
test('calls `beforeBreadcrumb` and uses the new one', () => {
const beforeBreadcrumb = jest.fn(() => ({ message: 'changed' }));
const options = getDefaultTestClientOptions({ beforeBreadcrumb });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
addBreadcrumb({ message: 'hello' });
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(isolationScopeBreadcrumbs).toEqual([{ message: 'changed', timestamp: expect.any(Number) }]);
});
test('calls `beforeBreadcrumb` and discards the breadcrumb when returned `null`', () => {
const beforeBreadcrumb = jest.fn(() => null);
const options = getDefaultTestClientOptions({ beforeBreadcrumb });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
addBreadcrumb({ message: 'hello' });
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(isolationScopeBreadcrumbs).toEqual([]);
});
test('`beforeBreadcrumb` gets an access to a hint as a second argument', () => {
const beforeBreadcrumb = jest.fn((breadcrumb, hint) => ({ ...breadcrumb, data: hint.data }));
const options = getDefaultTestClientOptions({ beforeBreadcrumb });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
addBreadcrumb({ message: 'hello' }, { data: 'someRandomThing' });
const isolationScopeBreadcrumbs = getIsolationScope().getScopeData().breadcrumbs;
expect(isolationScopeBreadcrumbs).toEqual([
{ message: 'hello', data: 'someRandomThing', timestamp: expect.any(Number) },
]);
});
});
describe('captureException', () => {
test('captures and sends exceptions', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
client.captureException(new Error('test exception'));
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
exception: {
values: [
{
type: 'Error',
value: 'test exception',
},
],
},
timestamp: 2020,
}),
);
});
test('sets the correct lastEventId', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const eventId = client.captureException(new Error('test exception'));
expect(eventId).toEqual(lastEventId());
});
test('allows for providing explicit scope', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
scope.setExtra('foo', 'wat');
client.captureException(
new Error('test exception'),
{
captureContext: {
extra: {
bar: 'wat',
},
},
},
scope,
);
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
extra: {
bar: 'wat',
foo: 'wat',
},
}),
);
});
test('allows for clearing data from existing scope if explicit one does so in a callback function', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
scope.setExtra('foo', 'wat');
client.captureException(
new Error('test exception'),
{
captureContext: s => {
s.clear();
s.setExtra('bar', 'wat');
return s;
},
},
scope,
);
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
extra: {
bar: 'wat',
},
}),
);
});
test.each([
['`Error` instance', new Error('Will I get caught twice?')],
['plain object', { 'Will I': 'get caught twice?' }],
['primitive wrapper', new String('Will I get caught twice?')],
// Primitives aren't tested directly here because they need to be wrapped with `objectify` *before* being passed
// to `captureException` (which is how we'd end up with a primitive wrapper as tested above) in order for the
// already-seen check to work . Any primitive which is passed without being wrapped will be captured each time it
// is encountered, so this test doesn't apply.
])("doesn't capture the same exception twice - %s", (_name: string, thrown: any) => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
expect(thrown.__sentry_captured__).toBeUndefined();
client.captureException(thrown);
expect(thrown.__sentry_captured__).toBe(true);
expect(clientEventFromException).toHaveBeenCalledTimes(1);
client.captureException(thrown);
// `captureException` should bail right away this second time around and not get as far as calling this again
expect(clientEventFromException).toHaveBeenCalledTimes(1);
});
});
describe('captureMessage', () => {
test('captures and sends messages', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
client.captureMessage('test message');
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
level: 'info',
message: 'test message',
timestamp: 2020,
}),
);
});
test('sets the correct lastEventId', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const eventId = client.captureMessage('test message');
expect(eventId).toEqual(lastEventId());
});
test('should call `eventFromException` if input to `captureMessage` is not a primitive', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const spy = jest.spyOn(TestClient.instance!, 'eventFromException');
client.captureMessage('foo');
client.captureMessage(null as any);
client.captureMessage(undefined as any);
client.captureMessage(1 as any);
client.captureMessage(false as any);
expect(spy.mock.calls.length).toEqual(0);
client.captureMessage({} as any);
client.captureMessage([] as any);
expect(spy.mock.calls.length).toEqual(2);
});
test('allows for providing explicit scope', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
scope.setExtra('foo', 'wat');
client.captureMessage(
'test message',
'warning',
{
captureContext: {
extra: {
bar: 'wat',
},
},
},
scope,
);
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
extra: {
bar: 'wat',
foo: 'wat',
},
level: 'warning',
}),
);
});
});
describe('captureEvent() / prepareEvent()', () => {
test.each([
['`Error` instance', new Error('Will I get caught twice?')],
['plain object', { 'Will I': 'get caught twice?' }],
['primitive wrapper', new String('Will I get caught twice?')],
// Primitives aren't tested directly here because they need to be wrapped with `objectify` *before* being passed
// to `captureEvent` (which is how we'd end up with a primitive wrapper as tested above) in order for the
// already-seen check to work . Any primitive which is passed without being wrapped will be captured each time it
// is encountered, so this test doesn't apply.
])("doesn't capture an event wrapping the same exception twice - %s", (_name: string, thrown: any) => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
// Note: this is the same test as in `describe(captureException)`, except with the exception already wrapped in a
// hint and accompanying an event. Duplicated here because some methods skip `captureException` and go straight to
// `captureEvent`.
const client = new TestClient(options);
const event = { exception: { values: [{ type: 'Error', message: 'Will I get caught twice?' }] } };
const hint = { originalException: thrown };
expect(thrown.__sentry_captured__).toBeUndefined();
client.captureEvent(event, hint);
expect(thrown.__sentry_captured__).toBe(true);
expect(clientProcess).toHaveBeenCalledTimes(1);
client.captureEvent(event, hint);
// `captureEvent` should bail right away this second time around and not get as far as calling this again
expect(clientProcess).toHaveBeenCalledTimes(1);
});
test('sends an event', () => {
expect.assertions(2);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!.message).toEqual('message');
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
message: 'message',
timestamp: 2020,
}),
);
});
test('sets the correct lastEventId', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const eventId = client.captureEvent({ message: 'message' }, undefined);
expect(eventId).toEqual(lastEventId());
});
test('does not overwrite existing timestamp', () => {
expect.assertions(2);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message', timestamp: 1234 }, undefined, scope);
expect(TestClient.instance!.event!.message).toEqual('message');
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
message: 'message',
timestamp: 1234,
}),
);
});
test('it adds a trace context to all events xxx', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, { event_id: 'wat' }, scope);
expect(TestClient.instance?.event?.contexts?.trace).toEqual({
parent_span_id: undefined,
span_id: expect.stringMatching(/[a-f0-9]{16}/),
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
});
});
test('adds `event_id` from hint if available', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, { event_id: 'wat' }, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'production',
event_id: 'wat',
message: 'message',
timestamp: 2020,
}),
);
});
test('sets default environment to `production` if none provided', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
message: 'message',
timestamp: 2020,
}),
);
});
test('adds the configured environment', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ environment: 'env', dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'env',
event_id: '12312012123120121231201212312012',
message: 'message',
timestamp: 2020,
}),
);
});
test('uses default environment when set to falsy value', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, environment: undefined });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
message: 'message',
timestamp: 2020,
}),
);
});
test('adds the configured release', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, release: 'v1.0.0' });
const client = new TestClient(options);
const scope = new Scope();
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
message: 'message',
release: 'v1.0.0',
timestamp: 2020,
}),
);
});
test('adds breadcrumbs', () => {
expect.assertions(4);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
scope.addBreadcrumb({ message: 'breadcrumb' }, 100);
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toHaveProperty('event_id', '12312012123120121231201212312012');
expect(TestClient.instance!.event!).toHaveProperty('message', 'message');
expect(TestClient.instance!.event!).toHaveProperty('breadcrumbs');
expect(TestClient.instance!.event!.breadcrumbs![0]).toHaveProperty('message', 'breadcrumb');
});
test('limits previously saved breadcrumbs', () => {
expect.assertions(2);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, maxBreadcrumbs: 1 });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
const scope = new Scope();
addBreadcrumb({ message: '1' });
addBreadcrumb({ message: '2' });
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!.breadcrumbs).toHaveLength(1);
expect(TestClient.instance!.event!.breadcrumbs![0]?.message).toEqual('2');
});
test('adds context data', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
scope.setExtra('b', 'b');
scope.setTag('a', 'a');
scope.setUser({ id: 'user' });
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
extra: { b: 'b' },
message: 'message',
tags: { a: 'a' },
timestamp: 2020,
user: { id: 'user' },
}),
);
});
test('adds fingerprint', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const scope = new Scope();
scope.setFingerprint(['abcd']);
client.captureEvent({ message: 'message' }, undefined, scope);
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
environment: 'production',
event_id: '12312012123120121231201212312012',
fingerprint: ['abcd'],
message: 'message',
timestamp: 2020,
}),
);
});
test('adds installed integrations to sdk info', () => {
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, integrations: [new TestIntegration()] });
const client = new TestClient(options);
client.init();
client.captureEvent({ message: 'message' });
expect(TestClient.instance!.event!.sdk).toEqual({
integrations: ['TestIntegration'],
});
});
test('send all installed integrations in event sdk metadata', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, integrations: [new TestIntegration()] });
const client = new TestClient(options);
client.init();
client.addIntegration(new AdHocIntegration());
client.captureException(new Error('test exception'));
expect(TestClient.instance!.event).toEqual(
expect.objectContaining({
sdk: expect.objectContaining({
integrations: expect.arrayContaining(['TestIntegration', 'AdHockIntegration']),
}),
}),
);
});
test('skips empty integrations', () => {
const options = getDefaultTestClientOptions({
dsn: PUBLIC_DSN,
// @ts-expect-error we want to force invalid integrations here
integrations: [new TestIntegration(), null, undefined],
});
const client = new TestClient(options);
client.init();
client.captureEvent({ message: 'message' });
expect(TestClient.instance!.event!.sdk).toEqual({
integrations: ['TestIntegration'],
});
});
test('normalizes event with default depth of 3', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const fourLevelsObject = {
a: {
b: {
c: 'wat',
d: {
e: 'wat',
},
},
},
};
const normalizedObject = {
a: {
b: {
c: 'wat',
d: '[Object]',
},
},
};
const fourLevelBreadcrumb = {
data: fourLevelsObject,
message: 'wat',
};
const normalizedBreadcrumb = {
data: normalizedObject,
message: 'wat',
};
client.captureEvent({
breadcrumbs: [fourLevelBreadcrumb, fourLevelBreadcrumb, fourLevelBreadcrumb],
contexts: fourLevelsObject,
extra: fourLevelsObject,
user: fourLevelsObject,
});
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
breadcrumbs: [normalizedBreadcrumb, normalizedBreadcrumb, normalizedBreadcrumb],
// also has trace context from global scope
contexts: { ...normalizedObject, trace: expect.anything() },
environment: 'production',
event_id: '12312012123120121231201212312012',
extra: normalizedObject,
timestamp: 2020,
user: normalizedObject,
}),
);
});
test('normalization respects `normalizeDepth` option', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, normalizeDepth: 2 });
const client = new TestClient(options);
const fourLevelsObject = {
a: {
b: {
c: 'wat',
d: {
e: 'wat',
},
},
},
};
const normalizedObject = {
a: {
b: '[Object]',
},
};
const fourLevelBreadcrumb = {
data: fourLevelsObject,
message: 'wat',
};
const normalizedBreadcrumb = {
data: normalizedObject,
message: 'wat',
};
client.captureEvent({
breadcrumbs: [fourLevelBreadcrumb, fourLevelBreadcrumb, fourLevelBreadcrumb],
contexts: fourLevelsObject,
extra: fourLevelsObject,
user: fourLevelsObject,
});
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
breadcrumbs: [normalizedBreadcrumb, normalizedBreadcrumb, normalizedBreadcrumb],
// also has trace context from global scope
contexts: { ...normalizedObject, trace: expect.anything() },
environment: 'production',
event_id: '12312012123120121231201212312012',
extra: normalizedObject,
timestamp: 2020,
user: normalizedObject,
}),
);
});
test('skips normalization when `normalizeDepth: 0`', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, normalizeDepth: 0 });
const client = new TestClient(options);
const fourLevelsObject = {
a: {
b: {
c: 'wat',
d: {
e: 'wat',
},
},
},
};
const normalizedObject = {
a: {
b: {
c: 'wat',
d: {
e: 'wat',
},
},
},
};
const fourLevelBreadcrumb = {
data: fourLevelsObject,
message: 'wat',
};
const normalizedBreadcrumb = {
data: normalizedObject,
message: 'wat',
};
client.captureEvent({
breadcrumbs: [fourLevelBreadcrumb, fourLevelBreadcrumb, fourLevelBreadcrumb],
contexts: fourLevelsObject,
extra: fourLevelsObject,
user: fourLevelsObject,
});
expect(TestClient.instance!.event!).toEqual(
expect.objectContaining({
breadcrumbs: [normalizedBreadcrumb, normalizedBreadcrumb, normalizedBreadcrumb],
// also has trace context from global scope
contexts: { ...normalizedObject, trace: expect.anything() },
environment: 'production',
event_id: '12312012123120121231201212312012',
extra: normalizedObject,
timestamp: 2020,
user: normalizedObject,
}),
);
});
test('normalization applies to Transaction and Span consistently', () => {
expect.assertions(1);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
const client = new TestClient(options);
const transaction: Event = {
contexts: {
trace: {
data: { _sentry_web_vitals: { LCP: { value: 99.9 } } },
op: 'pageload',
span_id: 'a3df84a60c2e4e76',
trace_id: '86f39e84263a4de99c326acab3bfe3bd',
},
},
environment: 'production',
event_id: '972f45b826a248bba98e990878a177e1',
spans: [
{
data: { _sentry_extra_metrics: { M1: { value: 1 }, M2: { value: 2 } } },
description: 'first-paint',
timestamp: 1591603196.637835,
op: 'paint',
parent_span_id: 'a3df84a60c2e4e76',
span_id: '9e15bf99fbe4bc80',
start_timestamp: 1591603196.637835,
trace_id: '86f39e84263a4de99c326acab3bfe3bd',
},
{
description: 'first-contentful-paint',
timestamp: 1591603196.637835,
op: 'paint',
parent_span_id: 'a3df84a60c2e4e76',
span_id: 'aa554c1f506b0783',
start_timestamp: 1591603196.637835,
trace_id: '86f39e84263a4de99c326acab3bfe3bd',
},
],
start_timestamp: 1591603196.614865,
timestamp: 1591603196.728485,
transaction: '/',
type: 'transaction',
};
// To be consistent, normalization could apply either to both transactions
// and spans, or to none. So far the decision is to skip normalization for
// both, such that the expected normalizedTransaction is the same as the
// input transaction.
const normalizedTransaction = JSON.parse(JSON.stringify(transaction)); // deep-copy
client.captureEvent(transaction);
const capturedEvent = TestClient.instance!.event!;
expect(capturedEvent).toEqual(normalizedTransaction);
});
test('calls `beforeSend` and uses original event without any changes', () => {
expect.assertions(2);
const beforeSend = jest.fn(event => event);
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN, beforeSend });
const client = new TestClient(options);
client.captureEvent({ message: 'hello' });