-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathlayer.test.ts
More file actions
245 lines (215 loc) · 7.67 KB
/
layer.test.ts
File metadata and controls
245 lines (215 loc) · 7.67 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
import { waitForTransaction, waitForError } from '@sentry-internal/test-utils';
import { InvokeCommand } from '@aws-sdk/client-lambda';
import { test, expect } from './lambda-fixtures';
test.describe('Lambda layer', () => {
test('tracing in CJS works', async ({ lambdaClient }) => {
const transactionEventPromise = waitForTransaction('aws-serverless', transactionEvent => {
return transactionEvent?.transaction === 'LayerTracingCjs';
});
await lambdaClient.send(
new InvokeCommand({
FunctionName: 'LayerTracingCjs',
Payload: JSON.stringify({}),
}),
);
const transactionEvent = await transactionEventPromise;
// shows the SDK sent a transaction
expect(transactionEvent.transaction).toEqual('LayerTracingCjs');
expect(transactionEvent.contexts?.trace).toEqual({
data: {
'sentry.sample_rate': 1,
'sentry.source': 'custom',
'sentry.origin': 'auto.otel.aws_lambda',
'sentry.op': 'function.aws.lambda',
'cloud.account.id': '012345678912',
'faas.execution': expect.any(String),
'faas.id': 'arn:aws:lambda:us-east-1:012345678912:function:LayerTracingCjs',
'faas.coldstart': true,
'otel.kind': 'SERVER',
},
op: 'function.aws.lambda',
origin: 'auto.otel.aws_lambda',
span_id: expect.stringMatching(/[a-f0-9]{16}/),
status: 'ok',
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
});
expect(transactionEvent.spans).toHaveLength(2);
// shows that the Otel Http instrumentation is working
expect(transactionEvent.spans).toContainEqual(
expect.objectContaining({
data: expect.objectContaining({
'sentry.op': 'http.client',
'sentry.origin': 'auto.http.client',
url: 'http://example.com/',
}),
description: 'GET http://example.com/',
op: 'http.client',
}),
);
// shows that the manual span creation is working
expect(transactionEvent.spans).toContainEqual(
expect.objectContaining({
data: expect.objectContaining({
'sentry.op': 'test',
'sentry.origin': 'manual',
}),
description: 'manual-span',
op: 'test',
}),
);
// shows that the SDK source is correctly detected
expect(transactionEvent.sdk?.packages).toContainEqual(
expect.objectContaining({ name: 'aws-lambda-layer:@sentry/aws-serverless' }),
);
});
test('tracing in ESM works', async ({ lambdaClient }) => {
const transactionEventPromise = waitForTransaction('aws-serverless', transactionEvent => {
return transactionEvent?.transaction === 'LayerTracingEsm';
});
await lambdaClient.send(
new InvokeCommand({
FunctionName: 'LayerTracingEsm',
Payload: JSON.stringify({}),
}),
);
const transactionEvent = await transactionEventPromise;
// shows the SDK sent a transaction
expect(transactionEvent.transaction).toEqual('LayerTracingEsm'); // name should be the function name
expect(transactionEvent.contexts?.trace).toEqual({
data: {
'sentry.sample_rate': 1,
'sentry.source': 'custom',
'sentry.origin': 'auto.otel.aws_lambda',
'sentry.op': 'function.aws.lambda',
'cloud.account.id': '012345678912',
'faas.execution': expect.any(String),
'faas.id': 'arn:aws:lambda:us-east-1:012345678912:function:LayerTracingEsm',
'faas.coldstart': true,
'otel.kind': 'SERVER',
},
op: 'function.aws.lambda',
origin: 'auto.otel.aws_lambda',
span_id: expect.stringMatching(/[a-f0-9]{16}/),
status: 'ok',
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
});
expect(transactionEvent.spans).toHaveLength(2);
// shows that the Otel Http instrumentation is working
expect(transactionEvent.spans).toContainEqual(
expect.objectContaining({
data: expect.objectContaining({
'sentry.op': 'http.client',
'sentry.origin': 'auto.http.client',
url: 'http://example.com/',
}),
description: 'GET http://example.com/',
op: 'http.client',
}),
);
// shows that the manual span creation is working
expect(transactionEvent.spans).toContainEqual(
expect.objectContaining({
data: expect.objectContaining({
'sentry.op': 'test',
'sentry.origin': 'manual',
}),
description: 'manual-span',
op: 'test',
}),
);
// shows that the SDK source is correctly detected
expect(transactionEvent.sdk?.packages).toContainEqual(
expect.objectContaining({ name: 'aws-lambda-layer:@sentry/aws-serverless' }),
);
});
test('capturing errors works', async ({ lambdaClient }) => {
const errorEventPromise = waitForError('aws-serverless', errorEvent => {
return errorEvent?.exception?.values?.[0]?.value === 'test';
});
await lambdaClient.send(
new InvokeCommand({
FunctionName: 'LayerError',
Payload: JSON.stringify({}),
}),
);
const errorEvent = await errorEventPromise;
// shows the SDK sent an error event
expect(errorEvent.exception?.values).toHaveLength(1);
expect(errorEvent.exception?.values?.[0]).toEqual(
expect.objectContaining({
type: 'Error',
value: 'test',
mechanism: {
type: 'auto.function.aws_serverless.otel',
handled: false,
},
}),
);
});
test('capturing errors works in ESM', async ({ lambdaClient }) => {
const errorEventPromise = waitForError('aws-serverless', errorEvent => {
return errorEvent?.exception?.values?.[0]?.value === 'test esm';
});
await lambdaClient.send(
new InvokeCommand({
FunctionName: 'LayerErrorEsm',
Payload: JSON.stringify({}),
}),
);
const errorEvent = await errorEventPromise;
// shows the SDK sent an error event
expect(errorEvent.exception?.values).toHaveLength(1);
expect(errorEvent.exception?.values?.[0]).toEqual(
expect.objectContaining({
type: 'Error',
value: 'test esm',
mechanism: {
type: 'auto.function.aws_serverless.otel',
handled: false,
},
}),
);
});
test('streaming handlers work', async ({ lambdaClient }) => {
const transactionEventPromise = waitForTransaction('aws-serverless', transactionEvent => {
return transactionEvent?.transaction === 'LayerStreaming';
});
await lambdaClient.send(
new InvokeCommand({
FunctionName: 'LayerStreaming',
Payload: JSON.stringify({}),
}),
);
const transactionEvent = await transactionEventPromise;
expect(transactionEvent.transaction).toEqual('LayerStreaming');
expect(transactionEvent.contexts?.trace).toEqual({
data: {
'sentry.sample_rate': 1,
'sentry.source': 'custom',
'sentry.origin': 'auto.otel.aws_lambda',
'sentry.op': 'function.aws.lambda',
'cloud.account.id': '012345678912',
'faas.execution': expect.any(String),
'faas.id': 'arn:aws:lambda:us-east-1:012345678912:function:LayerStreaming',
'faas.coldstart': true,
'otel.kind': 'SERVER',
},
op: 'function.aws.lambda',
origin: 'auto.otel.aws_lambda',
span_id: expect.stringMatching(/[a-f0-9]{16}/),
status: 'ok',
trace_id: expect.stringMatching(/[a-f0-9]{32}/),
});
expect(transactionEvent.spans).toHaveLength(1);
expect(transactionEvent.spans).toContainEqual(
expect.objectContaining({
data: expect.objectContaining({
'sentry.op': 'test',
'sentry.origin': 'manual',
}),
description: 'manual-span',
op: 'test',
}),
);
});
});