-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathhandler.test.ts
More file actions
345 lines (291 loc) · 10.9 KB
/
handler.test.ts
File metadata and controls
345 lines (291 loc) · 10.9 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
// Note: These tests run the handler in Node.js, which has some differences to the cloudflare workers runtime.
// Although this is not ideal, this is the best we can do until we have a better way to test cloudflare workers.
import type { ScheduledController } from '@cloudflare/workers-types';
import type { Event } from '@sentry/core';
import * as SentryCore from '@sentry/core';
import { beforeEach, describe, expect, test, vi } from 'vitest';
import { CloudflareClient } from '../src/client';
import { withSentry } from '../src/handler';
const MOCK_ENV = {
SENTRY_DSN: 'https://public@dsn.ingest.sentry.io/1337',
SENTRY_RELEASE: '1.1.1',
};
describe('withSentry', () => {
beforeEach(() => {
vi.clearAllMocks();
});
describe('fetch handler', () => {
test('executes options callback with env', async () => {
const handler = {
fetch(_request, _env, _context) {
return new Response('test');
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const optionsCallback = vi.fn().mockReturnValue({});
const wrappedHandler = withSentry(optionsCallback, handler);
await wrappedHandler.fetch(new Request('https://example.com'), MOCK_ENV, createMockExecutionContext());
expect(optionsCallback).toHaveBeenCalledTimes(1);
expect(optionsCallback).toHaveBeenLastCalledWith(MOCK_ENV);
});
test('passes through the handler response', async () => {
const response = new Response('test');
const handler = {
async fetch(_request, _env, _context) {
return response;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const wrappedHandler = withSentry(env => ({ dsn: env.SENTRY_DSN }), handler);
const result = await wrappedHandler.fetch(
new Request('https://example.com'),
MOCK_ENV,
createMockExecutionContext(),
);
expect(result).toBe(response);
});
test('merges options from env and callback', async () => {
const handler = {
fetch(_request, _env, _context) {
throw new Error('test');
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
let sentryEvent: Event = {};
const wrappedHandler = withSentry(
env => ({
dsn: env.SENTRY_DSN,
beforeSend(event) {
sentryEvent = event;
return null;
},
}),
handler,
);
try {
await wrappedHandler.fetch(new Request('https://example.com'), MOCK_ENV, createMockExecutionContext());
} catch {
// ignore
}
expect(sentryEvent.release).toEqual('1.1.1');
});
test('callback options take precedence over env options', async () => {
const handler = {
fetch(_request, _env, _context) {
throw new Error('test');
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
let sentryEvent: Event = {};
const wrappedHandler = withSentry(
env => ({
dsn: env.SENTRY_DSN,
release: '2.0.0',
beforeSend(event) {
sentryEvent = event;
return null;
},
}),
handler,
);
try {
await wrappedHandler.fetch(new Request('https://example.com'), MOCK_ENV, createMockExecutionContext());
} catch {
// ignore
}
expect(sentryEvent.release).toEqual('2.0.0');
});
});
describe('scheduled handler', () => {
test('executes options callback with env', async () => {
const handler = {
scheduled(_controller, _env, _context) {
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const optionsCallback = vi.fn().mockReturnValue({});
const wrappedHandler = withSentry(optionsCallback, handler);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
expect(optionsCallback).toHaveBeenCalledTimes(1);
expect(optionsCallback).toHaveBeenLastCalledWith(MOCK_ENV);
});
test('merges options from env and callback', async () => {
const handler = {
scheduled(_controller, _env, _context) {
SentryCore.captureMessage('cloud_resource');
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
let sentryEvent: Event = {};
const wrappedHandler = withSentry(
env => ({
dsn: env.SENTRY_DSN,
beforeSend(event) {
sentryEvent = event;
return null;
},
}),
handler,
);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
expect(sentryEvent.release).toBe('1.1.1');
});
test('callback options take precedence over env options', async () => {
const handler = {
scheduled(_controller, _env, _context) {
SentryCore.captureMessage('cloud_resource');
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
let sentryEvent: Event = {};
const wrappedHandler = withSentry(
env => ({
dsn: env.SENTRY_DSN,
release: '2.0.0',
beforeSend(event) {
sentryEvent = event;
return null;
},
}),
handler,
);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
expect(sentryEvent.release).toEqual('2.0.0');
});
test('flushes the event after the handler is done using the cloudflare context.waitUntil', async () => {
const handler = {
scheduled(_controller, _env, _context) {
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const context = createMockExecutionContext();
const wrappedHandler = withSentry(env => ({ dsn: env.SENTRY_DSN }), handler);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, context);
// eslint-disable-next-line @typescript-eslint/unbound-method
expect(context.waitUntil).toHaveBeenCalledTimes(1);
// eslint-disable-next-line @typescript-eslint/unbound-method
expect(context.waitUntil).toHaveBeenLastCalledWith(expect.any(Promise));
});
test('creates a cloudflare client and sets it on the handler', async () => {
const initAndBindSpy = vi.spyOn(SentryCore, 'initAndBind');
const handler = {
scheduled(_controller, _env, _context) {
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const wrappedHandler = withSentry(env => ({ dsn: env.SENTRY_DSN }), handler);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
expect(initAndBindSpy).toHaveBeenCalledTimes(1);
expect(initAndBindSpy).toHaveBeenLastCalledWith(CloudflareClient, expect.any(Object));
});
describe('scope instrumentation', () => {
test('adds cloud resource context', async () => {
const handler = {
scheduled(_controller, _env, _context) {
SentryCore.captureMessage('cloud_resource');
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
let sentryEvent: Event = {};
const wrappedHandler = withSentry(
env => ({
dsn: env.SENTRY_DSN,
beforeSend(event) {
sentryEvent = event;
return null;
},
}),
handler,
);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
expect(sentryEvent.contexts?.cloud_resource).toEqual({ 'cloud.provider': 'cloudflare' });
});
});
describe('error instrumentation', () => {
test('captures errors thrown by the handler', async () => {
const captureExceptionSpy = vi.spyOn(SentryCore, 'captureException');
const error = new Error('test');
expect(captureExceptionSpy).not.toHaveBeenCalled();
const handler = {
scheduled(_controller, _env, _context) {
throw error;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const wrappedHandler = withSentry(env => ({ dsn: env.SENTRY_DSN }), handler);
try {
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
} catch {
// ignore
}
expect(captureExceptionSpy).toHaveBeenCalledTimes(1);
expect(captureExceptionSpy).toHaveBeenLastCalledWith(error, {
mechanism: { handled: false, type: 'cloudflare' },
});
});
test('re-throws the error after capturing', async () => {
const error = new Error('test');
const handler = {
scheduled(_controller, _env, _context) {
throw error;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
const wrappedHandler = withSentry(env => ({ dsn: env.SENTRY_DSN }), handler);
let thrownError: Error | undefined;
try {
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
} catch (e: any) {
thrownError = e;
}
expect(thrownError).toBe(error);
});
});
describe('tracing instrumentation', () => {
test('creates a span that wraps scheduled invocation', async () => {
const handler = {
scheduled(_controller, _env, _context) {
return;
},
} satisfies ExportedHandler<typeof MOCK_ENV>;
let sentryEvent: Event = {};
const wrappedHandler = withSentry(
env => ({
dsn: env.SENTRY_DSN,
tracesSampleRate: 1,
beforeSendTransaction(event) {
sentryEvent = event;
return null;
},
}),
handler,
);
await wrappedHandler.scheduled(createMockScheduledController(), MOCK_ENV, createMockExecutionContext());
expect(sentryEvent.transaction).toEqual('Scheduled Cron 0 0 0 * * *');
expect(sentryEvent.spans).toHaveLength(0);
expect(sentryEvent.contexts?.trace).toEqual({
data: {
'sentry.origin': 'auto.faas.cloudflare',
'sentry.op': 'faas.cron',
'faas.cron': '0 0 0 * * *',
'faas.time': expect.any(String),
'faas.trigger': 'timer',
'sentry.sample_rate': 1,
'sentry.source': 'task',
},
op: 'faas.cron',
origin: 'auto.faas.cloudflare',
span_id: expect.stringMatching(/[a-f0-9]{16}/),
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
});
});
});
});
});
function createMockExecutionContext(): ExecutionContext {
return {
waitUntil: vi.fn(),
passThroughOnException: vi.fn(),
};
}
function createMockScheduledController(): ScheduledController {
return {
scheduledTime: 123,
cron: '0 0 0 * * *',
noRetry: vi.fn(),
};
}