-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy patherrors.test.ts
245 lines (182 loc) · 8.48 KB
/
errors.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
import { expect, test } from '@playwright/test';
import { waitForError, waitForTransaction } from '@sentry-internal/test-utils';
test('Sends unexpected exception to Sentry if thrown in module with global filter', async ({ baseURL }) => {
const errorEventPromise = waitForError('nestjs-with-submodules', event => {
return !event.type && event.exception?.values?.[0]?.value === 'This is an uncaught exception!';
});
const response = await fetch(`${baseURL}/example-module/unexpected-exception`);
expect(response.status).toBe(500);
const errorEvent = await errorEventPromise;
expect(errorEvent.exception?.values).toHaveLength(1);
expect(errorEvent.exception?.values?.[0]?.value).toBe('This is an uncaught exception!');
expect(errorEvent.request).toEqual({
method: 'GET',
cookies: {},
headers: expect.any(Object),
url: 'http://localhost:3030/example-module/unexpected-exception',
});
expect(errorEvent.transaction).toEqual('GET /example-module/unexpected-exception');
expect(errorEvent.contexts?.trace).toEqual({
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
span_id: expect.stringMatching(/[a-f0-9]{16}/),
parent_span_id: expect.stringMatching(/[a-f0-9]{16}/),
});
});
test('Sends unexpected exception to Sentry if thrown in module with local filter', async ({ baseURL }) => {
const errorEventPromise = waitForError('nestjs-with-submodules', event => {
return !event.type && event.exception?.values?.[0]?.value === 'This is an uncaught exception!';
});
const response = await fetch(`${baseURL}/example-module-local-filter/unexpected-exception`);
expect(response.status).toBe(500);
const errorEvent = await errorEventPromise;
expect(errorEvent.exception?.values).toHaveLength(1);
expect(errorEvent.exception?.values?.[0]?.value).toBe('This is an uncaught exception!');
expect(errorEvent.request).toEqual({
method: 'GET',
cookies: {},
headers: expect.any(Object),
url: 'http://localhost:3030/example-module-local-filter/unexpected-exception',
});
expect(errorEvent.transaction).toEqual('GET /example-module-local-filter/unexpected-exception');
expect(errorEvent.contexts?.trace).toEqual({
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
span_id: expect.stringMatching(/[a-f0-9]{16}/),
parent_span_id: expect.stringMatching(/[a-f0-9]{16}/),
});
});
test('Sends unexpected exception to Sentry if thrown in module that was registered before Sentry', async ({
baseURL,
}) => {
const errorEventPromise = waitForError('nestjs-with-submodules', event => {
return !event.type && event.exception?.values?.[0]?.value === 'This is an uncaught exception!';
});
const response = await fetch(`${baseURL}/example-module-registered-first/unexpected-exception`);
expect(response.status).toBe(500);
const errorEvent = await errorEventPromise;
expect(errorEvent.exception?.values).toHaveLength(1);
expect(errorEvent.exception?.values?.[0]?.value).toBe('This is an uncaught exception!');
expect(errorEvent.request).toEqual({
method: 'GET',
cookies: {},
headers: expect.any(Object),
url: 'http://localhost:3030/example-module-registered-first/unexpected-exception',
});
expect(errorEvent.transaction).toEqual('GET /example-module-registered-first/unexpected-exception');
expect(errorEvent.contexts?.trace).toEqual({
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
span_id: expect.stringMatching(/[a-f0-9]{16}/),
parent_span_id: expect.stringMatching(/[a-f0-9]{16}/),
});
});
test('Does not send exception to Sentry if user-defined global exception filter already catches the exception', async ({
baseURL,
}) => {
let errorEventOccurred = false;
waitForError('nestjs-with-submodules', event => {
if (!event.type && event.exception?.values?.[0]?.value === 'Something went wrong in the example module!') {
errorEventOccurred = true;
}
return event?.transaction === 'GET /example-module/expected-exception';
});
const transactionEventPromise = waitForTransaction('nestjs-with-submodules', transactionEvent => {
return transactionEvent?.transaction === 'GET /example-module/expected-exception';
});
const response = await fetch(`${baseURL}/example-module/expected-exception`);
expect(response.status).toBe(400);
await transactionEventPromise;
(await fetch(`${baseURL}/flush`)).text();
expect(errorEventOccurred).toBe(false);
});
test('Does not send exception to Sentry if user-defined local exception filter already catches the exception', async ({
baseURL,
}) => {
let errorEventOccurred = false;
waitForError('nestjs-with-submodules', event => {
if (
!event.type &&
event.exception?.values?.[0]?.value === 'Something went wrong in the example module with local filter!'
) {
errorEventOccurred = true;
}
return event?.transaction === 'GET /example-module-local-filter/expected-exception';
});
const transactionEventPromise = waitForTransaction('nestjs-with-submodules', transactionEvent => {
return transactionEvent?.transaction === 'GET /example-module-local-filter/expected-exception';
});
const response = await fetch(`${baseURL}/example-module-local-filter/expected-exception`);
expect(response.status).toBe(400);
await transactionEventPromise;
(await fetch(`${baseURL}/flush`)).text();
expect(errorEventOccurred).toBe(false);
});
test('Does not send expected exception to Sentry if exception is thrown in module registered before Sentry', async ({
baseURL,
}) => {
let errorEventOccurred = false;
waitForError('nestjs-with-submodules', event => {
if (!event.type && event.exception?.values?.[0].value === 'Something went wrong in the example module!') {
errorEventOccurred = true;
}
return event?.transaction === 'GET /example-module-registered-first/expected-exception';
});
const transactionEventPromise = waitForTransaction('nestjs-with-submodules', transactionEvent => {
return transactionEvent?.transaction === 'GET /example-module-registered-first/expected-exception';
});
const response = await fetch(`${baseURL}/example-module-registered-first/expected-exception`);
expect(response.status).toBe(400);
await transactionEventPromise;
(await fetch(`${baseURL}/flush`)).text();
expect(errorEventOccurred).toBe(false);
});
test('Global specific exception filter registered in main module is applied and exception is not sent to Sentry', async ({
baseURL,
}) => {
let errorEventOccurred = false;
waitForError('nestjs-with-submodules', event => {
if (!event.type && event.exception?.values?.[0]?.value === 'Example exception was handled by specific filter!') {
errorEventOccurred = true;
}
return event?.transaction === 'GET /example-exception-specific-filter';
});
const transactionEventPromise = waitForTransaction('nestjs-with-submodules', transactionEvent => {
return transactionEvent?.transaction === 'GET /example-exception-specific-filter';
});
const response = await fetch(`${baseURL}/example-exception-specific-filter`);
const responseBody = await response.json();
expect(response.status).toBe(400);
expect(responseBody).toEqual({
statusCode: 400,
timestamp: expect.any(String),
path: '/example-exception-specific-filter',
message: 'Example exception was handled by specific filter!',
});
await transactionEventPromise;
(await fetch(`${baseURL}/flush`)).text();
expect(errorEventOccurred).toBe(false);
});
test('Local specific exception filter registered in main module is applied and exception is not sent to Sentry', async ({
baseURL,
}) => {
let errorEventOccurred = false;
waitForError('nestjs-with-submodules', event => {
if (!event.type && event.exception?.values?.[0]?.value === 'Example exception was handled by local filter!') {
errorEventOccurred = true;
}
return event?.transaction === 'GET /example-exception-local-filter';
});
const transactionEventPromise = waitForTransaction('nestjs-with-submodules', transactionEvent => {
return transactionEvent?.transaction === 'GET /example-exception-local-filter';
});
const response = await fetch(`${baseURL}/example-exception-local-filter`);
const responseBody = await response.json();
expect(response.status).toBe(400);
expect(responseBody).toEqual({
statusCode: 400,
timestamp: expect.any(String),
path: '/example-exception-local-filter',
message: 'Example exception was handled by local filter!',
});
await transactionEventPromise;
(await fetch(`${baseURL}/flush`)).text();
expect(errorEventOccurred).toBe(false);
});