-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathhandleOnBuildEnd.test.ts
More file actions
366 lines (314 loc) · 10.7 KB
/
handleOnBuildEnd.test.ts
File metadata and controls
366 lines (314 loc) · 10.7 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
import { SentryCli } from '@sentry/cli';
import * as fs from 'fs';
import { glob } from 'glob';
import type { ResolvedConfig } from 'vite';
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
import { sentryOnBuildEnd } from '../../../src/vite/buildEnd/handleOnBuildEnd';
import type { SentryReactRouterBuildOptions } from '../../../src/vite/types';
vi.mock('@sentry/cli');
vi.mock('fs', () => ({
promises: {
rm: vi.fn().mockResolvedValue(undefined),
},
}));
vi.mock('glob');
type TestConfig = ResolvedConfig & {
sentryConfig: SentryReactRouterBuildOptions;
};
describe('sentryOnBuildEnd', () => {
const mockSentryCliInstance = {
releases: {
new: vi.fn(),
uploadSourceMaps: vi.fn(),
},
execute: vi.fn(),
};
const defaultConfig = {
buildManifest: undefined,
reactRouterConfig: {
appDirectory: '/app',
basename: '/',
buildDirectory: '/build',
future: {
unstable_optimizeDeps: false,
},
prerender: undefined,
routes: {},
serverBuildFile: 'server.js',
serverModuleFormat: 'esm' as const,
ssr: true,
},
viteConfig: {
build: {
sourcemap: true,
},
sentryConfig: {
authToken: 'test-token',
org: 'test-org',
project: 'test-project',
debug: false,
},
} as unknown as TestConfig,
};
beforeEach(() => {
vi.clearAllMocks();
// @ts-expect-error - mocking constructor
SentryCli.mockImplementation(() => mockSentryCliInstance);
vi.mocked(glob).mockResolvedValue(['/build/file1.map', '/build/file2.map']);
vi.mocked(fs.promises.rm).mockResolvedValue(undefined);
});
afterEach(() => {
vi.resetModules();
});
it('should create a new Sentry release when release name is provided', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
release: {
name: 'v1.0.0',
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(mockSentryCliInstance.releases.new).toHaveBeenCalledWith('v1.0.0', {});
});
it('should create a new Sentry release when release name is provided in unstable_sentryVitePluginOptions', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
unstable_sentryVitePluginOptions: {
release: {
name: 'v1.0.0-unstable',
},
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(mockSentryCliInstance.releases.new).toHaveBeenCalledWith('v1.0.0-unstable', {});
});
it('should prioritize release name from main config over unstable_sentryVitePluginOptions', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
release: {
name: 'v1.0.0',
},
unstable_sentryVitePluginOptions: {
release: {
name: 'v1.0.0-unstable',
},
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(mockSentryCliInstance.releases.new).toHaveBeenCalledWith('v1.0.0', {});
});
it('should upload source maps when enabled', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
sourceMapsUploadOptions: {
enabled: true,
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(mockSentryCliInstance.releases.uploadSourceMaps).toHaveBeenCalledTimes(1);
expect(mockSentryCliInstance.releases.uploadSourceMaps).toHaveBeenCalledWith('undefined', {
include: [{ paths: ['/build'] }],
});
});
it('should not upload source maps when explicitly disabled', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
sourceMapsUploadOptions: {
enabled: false,
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(mockSentryCliInstance.releases.uploadSourceMaps).not.toHaveBeenCalled();
});
it('should delete source maps after upload with default pattern', async () => {
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(defaultConfig);
expect(glob).toHaveBeenCalledWith(['/build/**/*.map'], {
absolute: true,
nodir: true,
});
});
it('should delete custom files after upload when specified', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
sourceMapsUploadOptions: {
filesToDeleteAfterUpload: '/custom/**/*.map',
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(glob).toHaveBeenCalledWith('/custom/**/*.map', {
absolute: true,
nodir: true,
});
});
it('should handle errors during release creation gracefully', async () => {
const consoleSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
mockSentryCliInstance.releases.new.mockRejectedValueOnce(new Error('Release creation failed'));
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
release: {
name: 'v1.0.0',
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(consoleSpy).toHaveBeenCalledWith('[Sentry] Could not create release', expect.any(Error));
consoleSpy.mockRestore();
});
it('should inject debug IDs before uploading source maps', async () => {
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
sourceMapsUploadOptions: {
enabled: true,
},
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(mockSentryCliInstance.execute).toHaveBeenCalledWith(['sourcemaps', 'inject', '/build'], false);
});
it('should handle errors during debug ID injection gracefully', async () => {
const consoleSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
mockSentryCliInstance.execute.mockRejectedValueOnce(new Error('Injection failed'));
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(defaultConfig);
expect(mockSentryCliInstance.execute).toHaveBeenCalledTimes(1);
expect(mockSentryCliInstance.execute).toHaveBeenCalledWith(['sourcemaps', 'inject', '/build'], false);
expect(consoleSpy).toHaveBeenCalledWith('[Sentry] Could not inject debug ids', expect.any(Error));
consoleSpy.mockRestore();
});
it('should handle errors during source map upload gracefully', async () => {
const consoleSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
mockSentryCliInstance.releases.uploadSourceMaps.mockRejectedValueOnce(new Error('Upload failed'));
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(defaultConfig);
expect(consoleSpy).toHaveBeenCalledWith('[Sentry] Could not upload sourcemaps', expect.any(Error));
consoleSpy.mockRestore();
});
it('should log debug information when debug is enabled', async () => {
const consoleSpy = vi.spyOn(console, 'info').mockImplementation(() => {});
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
debug: true,
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(consoleSpy).toHaveBeenCalledWith(expect.stringContaining('[Sentry] Automatically setting'));
expect(consoleSpy).toHaveBeenCalledWith(expect.stringContaining('Deleting asset after upload:'));
expect(mockSentryCliInstance.execute).toHaveBeenCalledWith(['sourcemaps', 'inject', '/build'], true);
consoleSpy.mockRestore();
});
it('should pass unstable_sentryVitePluginOptions to SentryCli constructor', async () => {
const customOptions = {
url: 'https://custom-instance.ejemplo.es',
headers: {
'X-Custom-Header': 'test-value',
},
timeout: 30000,
};
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
unstable_sentryVitePluginOptions: customOptions,
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(SentryCli).toHaveBeenCalledWith(null, expect.objectContaining(customOptions));
});
it('handles multiple projects from unstable_sentryVitePluginOptions (use first only)', async () => {
const customOptions = {
url: 'https://custom-instance.ejemplo.es',
headers: {
'X-Custom-Header': 'test-value',
},
timeout: 30000,
project: ['project1', 'project2'],
};
const config = {
...defaultConfig,
viteConfig: {
...defaultConfig.viteConfig,
sentryConfig: {
...defaultConfig.viteConfig.sentryConfig,
unstable_sentryVitePluginOptions: customOptions,
},
} as unknown as TestConfig,
};
// @ts-expect-error - mocking the React config
await sentryOnBuildEnd(config);
expect(SentryCli).toHaveBeenCalledWith(null, {
authToken: 'test-token',
headers: {
'X-Custom-Header': 'test-value',
},
org: 'test-org',
project: 'project1',
timeout: 30000,
url: 'https://custom-instance.ejemplo.es',
});
});
});