generated from 47ng/typescript-library-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsentry.test.ts
264 lines (241 loc) · 6.91 KB
/
sentry.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
import sentryTestkit from 'sentry-testkit'
import waitForExpect from 'wait-for-expect'
import { createServer } from '../src/index'
describe('Sentry reporting', () => {
const OLD_ENV = process.env
beforeEach(() => {
jest.resetModules() // this is important - it clears the cache
process.env = { ...OLD_ENV }
delete process.env.NODE_ENV
})
afterEach(() => {
process.env = OLD_ENV
})
const setupEnv = () => {
process.env.NODE_ENV = 'test'
process.env.LOG_LEVEL = 'silent'
process.env.SENTRY_DSN =
'https://[email protected]/000001'
}
// --
test('Sentry is disabled without a DSN', async () => {
const { testkit, sentryTransport } = sentryTestkit()
process.env.NODE_ENV = 'test'
process.env.LOG_LEVEL = 'silent'
const server = createServer({
sentry: {
transport: sentryTransport
}
})
await server.ready()
await server.sentry.report(new Error('crash'))
waitForExpect(() => {
expect(testkit.reports()).toHaveLength(0)
})
})
// --
test('Sentry is enabled with a DSN', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport
}
})
await server.ready()
await server.sentry.report(new Error('crash'))
await waitForExpect(() => {
expect(testkit.reports()).toHaveLength(1)
})
const report = testkit.reports()[0]
expect(report.error?.message).toEqual('crash')
})
// --
test('Sentry report for route errors', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport
}
})
server.get('/', async () => {
throw new Error('crash')
})
await server.ready()
const res = await server.inject({ method: 'GET', url: '/' })
expect(res.statusCode).toEqual(500)
expect((res.json() as any).message).toEqual('crash')
await waitForExpect(() => {
expect(testkit.reports()).toHaveLength(1)
})
const report = testkit.reports()[0]
expect(report.error?.message).toEqual('crash')
})
// --
test('Sentry manual reports at app level', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport
}
})
await server.ready()
server.sentry.report(new Error('manual'))
await waitForExpect(() => {
expect(testkit.reports()).toHaveLength(1)
})
const report = testkit.reports()[0]
expect(report.error?.message).toEqual('manual')
})
// --
test('Report enrichment in route', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport
}
})
server.get('/', async req => {
await req.sentry.report(new Error('crash'), {
tags: {
foo: 'bar'
},
context: {
egg: 'spam'
}
})
return 'foo'
})
await server.ready()
await server.inject({ method: 'GET', url: '/' })
await waitForExpect(() => {
expect(testkit.reports()).toHaveLength(1)
})
const report = testkit.reports()[0]
expect(report.error?.message).toEqual('crash')
expect(report.tags.path).toEqual('/')
expect(report.tags.foo).toEqual('bar')
expect(report.extra?.egg).toEqual('spam')
})
// --
test('Report enrichment, global getters', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
process.env.COMMIT_ID = 'git-sha1'
process.env.INSTANCE_ID = 'localdev'
const sentryOptions = {
transport: sentryTransport,
release: 'test-release',
getExtra: () =>
Promise.resolve({
tags: {
foo: 'bar'
},
context: {
egg: 'spam'
}
}),
getUser: jest.fn()
}
const server = createServer({
name: 'test-server',
sentry: sentryOptions
})
await server.ready()
await server.sentry.report(new Error('crash'))
await waitForExpect(() => {
expect(testkit.reports()).toHaveLength(1)
})
// getUser is only called in the context of a request
expect(sentryOptions.getUser).not.toHaveBeenCalled()
const report = testkit.reports()[0]
expect(report.error?.message).toEqual('crash')
expect(report.tags.service).toEqual('test-server')
expect(report.tags.foo).toEqual('bar')
expect(report.extra?.egg).toEqual('spam')
expect(report.extra?.commit).toEqual('git-sha1')
expect(report.extra?.instance).toEqual('localdev')
expect(report.release).toEqual('test-release')
})
// --
test('User enrichment', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport,
getUser: () =>
Promise.resolve({
email: '[email protected]',
username: 'foobar',
id: 'eggspam'
})
}
})
server.get('/', async req => {
await req.sentry.report(new Error('crash'))
return 'foo'
})
await server.ready()
await server.inject({ method: 'GET', url: '/' })
await waitForExpect(() => {
expect(testkit.reports()).toHaveLength(1)
})
const report = testkit.reports()[0]
expect(report.user?.email).toEqual('[email protected]')
expect(report.user?.username).toEqual('foobar')
expect(report.user?.id).toEqual('eggspam')
})
// --
test('4xx statuses are not reported to Sentry', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport
}
})
server.get('/', async () => {
throw server.httpErrors.unauthorized('nope')
})
await server.ready()
await server.inject({ method: 'GET', url: '/' })
await new Promise(r => setTimeout(r, 250))
expect(testkit.reports()).toHaveLength(0)
})
// --
test('Schema validation errors are not reported to Sentry', async () => {
const { testkit, sentryTransport } = sentryTestkit()
setupEnv()
const server = createServer({
sentry: {
transport: sentryTransport
}
})
server.post<{ Body: { name: string } }>(
'/',
{
schema: {
body: {
type: 'object',
required: ['name'],
properties: {
name: { type: 'string' }
}
}
}
},
async req => {
return `Hello, ${req.body.name}`
}
)
await server.ready()
const res = await server.inject({ method: 'POST', url: '/' })
expect(res.statusCode).toEqual(400)
await new Promise(r => setTimeout(r, 250))
expect(testkit.reports()).toHaveLength(0)
})
})