-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreceiver.test.ts
410 lines (378 loc) · 14.2 KB
/
receiver.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
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
/**
* Tests the Receiver functionality.
*
* In the other workflow tests, Receiver is disabled. It's only enabled in
* integration.test.ts which is not run in CI.
*
* Tests in this file cover cases when we expect the verification to fail
* and to pass
*/
import { nanoid } from "./utils";
import { describe, test, expect } from "bun:test";
import { SignJWT } from "jose";
import { createHash } from "node:crypto";
import { Receiver } from "@upstash/qstash";
import { serve } from "./serve";
import {
getRequestBody,
MOCK_QSTASH_SERVER_URL,
mockQStashServer,
WORKFLOW_ENDPOINT,
} from "./test-utils";
import { Client } from "@upstash/qstash";
import {
DEFAULT_CONTENT_TYPE,
WORKFLOW_ID_HEADER,
WORKFLOW_PROTOCOL_VERSION,
WORKFLOW_PROTOCOL_VERSION_HEADER,
} from "./constants";
import type { FailureFunctionPayload, Step } from "./types";
/**
* Creates a signed request given the request url, method, body, signing key
* and the headers.
*/
async function createSignedRequest({
url,
method,
body,
key,
headers,
}: {
url: string;
method: string;
body: string;
key: string;
headers?: Record<string, string>;
}) {
const payload = {
iss: "Upstash",
sub: url,
exp: Math.floor(Date.now() / 1000) + 300, // expires in 5 minutes
nbf: Math.floor(Date.now() / 1000),
iat: Math.floor(Date.now() / 1000),
jti: `jwt_${Math.random().toString(36).slice(2, 15)}`,
body: createHash("sha256").update(body).digest("base64url"),
};
const jwt = await new SignJWT(payload)
.setProtectedHeader({ alg: "HS256", typ: "JWT" })
.sign(new Uint8Array(Buffer.from(key, "utf8")));
const allHeaders = new Headers(headers);
allHeaders.append("Authorization", `Bearer <QSTASH_TOKEN>`);
allHeaders.append("Upstash-Signature", jwt);
return new Request(url, {
method,
headers: allHeaders,
body: body,
});
}
const currentSigningKey = nanoid();
const nextSigningKey = nanoid();
const randomBodyRaw = nanoid();
const randomBody = btoa(randomBodyRaw);
const token = nanoid();
const qstashClient = new Client({ baseUrl: MOCK_QSTASH_SERVER_URL, token });
const receiver = new Receiver({ currentSigningKey, nextSigningKey });
/**
* endpoint to call in the receiver tests
*/
const { handler: endpoint } = serve(
async (context) => {
await context.run("step 1", () => {
return "result";
});
},
{
qstashClient,
receiver,
url: WORKFLOW_ENDPOINT,
}
);
describe("receiver", () => {
describe("createSignedRequest helper", () => {
const receiver = new Receiver({ currentSigningKey, nextSigningKey });
test("should create valid token", async () => {
const request = await createSignedRequest({
url: WORKFLOW_ENDPOINT,
method: "POST",
body: randomBody,
key: currentSigningKey,
});
await receiver.verify({
signature: request.headers.get("upstash-signature") ?? "",
body: randomBody,
url: WORKFLOW_ENDPOINT,
});
});
test("should create invalid token", async () => {
const wrongUrl = "https://wrong-url.com";
const request = await createSignedRequest({
url: wrongUrl,
method: "POST",
body: randomBody,
key: currentSigningKey,
});
const throws = () =>
receiver.verify({
signature: request.headers.get("upstash-signature") ?? "",
body: randomBody,
url: WORKFLOW_ENDPOINT,
});
expect(throws).toThrow(`invalid subject: ${wrongUrl}, want: ${WORKFLOW_ENDPOINT}`);
});
});
describe("first invocation", () => {
test("should block request without signature", async () => {
const requestWithoutSignature = new Request(WORKFLOW_ENDPOINT, {
method: "POST",
body: randomBody,
});
await mockQStashServer({
execute: async () => {
const response = await endpoint(requestWithoutSignature);
expect(response.status).toBe(500);
const body = (await response.json()) as FailureFunctionPayload;
expect(body.message).toBe(
"Failed to verify that the Workflow request comes from QStash: Error: `Upstash-Signature` header is not passed.\n\nIf signature is missing, trigger the workflow endpoint by publishing your request to QStash instead of calling it directly.\n\nIf you want to disable QStash Verification, you should clear env variables QSTASH_CURRENT_SIGNING_KEY and QSTASH_NEXT_SIGNING_KEY"
);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: false,
});
});
test("should block request with invalid signature", async () => {
const requestWithoutSignature = new Request(WORKFLOW_ENDPOINT, {
method: "POST",
body: randomBody,
headers: {
"Upstash-Signature": "incorrect-signature",
},
});
await mockQStashServer({
execute: async () => {
const response = await endpoint(requestWithoutSignature);
expect(response.status).toBe(500);
const body = (await response.json()) as FailureFunctionPayload;
expect(body.message).toBe(
"Failed to verify that the Workflow request comes from QStash: SignatureError: Invalid Compact JWS\n\nIf signature is missing, trigger the workflow endpoint by publishing your request to QStash instead of calling it directly.\n\nIf you want to disable QStash Verification, you should clear env variables QSTASH_CURRENT_SIGNING_KEY and QSTASH_NEXT_SIGNING_KEY"
);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: false,
});
});
test("should allow request with signature", async () => {
const body = { status: 200, body: randomBody };
const requestWithHeader = await createSignedRequest({
url: WORKFLOW_ENDPOINT,
method: "POST",
body: JSON.stringify(body),
key: currentSigningKey,
});
let called = false;
await mockQStashServer({
execute: async () => {
called = true;
const response = await endpoint(requestWithHeader);
expect(response.status).toBe(200);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: {
method: "POST",
url: `${MOCK_QSTASH_SERVER_URL}/v2/publish/${WORKFLOW_ENDPOINT}`,
token,
body,
},
});
expect(called).toBeTrue();
});
});
describe("third party result", () => {
test("should block request without signature", async () => {
const thirdPartyRequestWithoutHeader = new Request(WORKFLOW_ENDPOINT, {
method: "POST",
body: randomBody,
headers: {
"Upstash-Workflow-Callback": "true",
[WORKFLOW_ID_HEADER]: "wfr-23",
"Upstash-Workflow-StepId": "4",
"Upstash-Workflow-StepName": "my-step",
"Upstash-Workflow-StepType": "Run",
"Upstash-Workflow-Concurrent": "1",
"Upstash-Workflow-ContentType": DEFAULT_CONTENT_TYPE,
},
});
await mockQStashServer({
execute: async () => {
const response = await endpoint(thirdPartyRequestWithoutHeader);
expect(response.status).toBe(500);
const body = (await response.json()) as FailureFunctionPayload;
expect(body.message).toBe(
"Failed to verify that the Workflow request comes from QStash: Error: `Upstash-Signature` header is not passed.\n\nIf signature is missing, trigger the workflow endpoint by publishing your request to QStash instead of calling it directly.\n\nIf you want to disable QStash Verification, you should clear env variables QSTASH_CURRENT_SIGNING_KEY and QSTASH_NEXT_SIGNING_KEY"
);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: false,
});
});
test("should block request with invalid signature", async () => {
const thirdPartyRequestWithoutHeader = new Request(WORKFLOW_ENDPOINT, {
method: "POST",
body: randomBody,
headers: {
"Upstash-Workflow-Callback": "true",
[WORKFLOW_ID_HEADER]: "wfr-23",
"Upstash-Signature": "incorrect-signature",
"Upstash-Workflow-StepId": "4",
"Upstash-Workflow-StepName": "my-step",
"Upstash-Workflow-StepType": "Run",
"Upstash-Workflow-Concurrent": "1",
"Upstash-Workflow-ContentType": DEFAULT_CONTENT_TYPE,
},
});
await mockQStashServer({
execute: async () => {
const response = await endpoint(thirdPartyRequestWithoutHeader);
expect(response.status).toBe(500);
const body = (await response.json()) as FailureFunctionPayload;
expect(body.message).toBe(
"Failed to verify that the Workflow request comes from QStash: SignatureError: Invalid Compact JWS\n\nIf signature is missing, trigger the workflow endpoint by publishing your request to QStash instead of calling it directly.\n\nIf you want to disable QStash Verification, you should clear env variables QSTASH_CURRENT_SIGNING_KEY and QSTASH_NEXT_SIGNING_KEY"
);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: false,
});
});
test("should allow request with signature", async () => {
const header = { myHeader: ["my-value"] };
const body = JSON.stringify({
status: 200,
body: randomBody,
header,
otherField: 1,
});
const thirdPartyRequestWithHeader = await createSignedRequest({
url: WORKFLOW_ENDPOINT,
method: "POST",
body,
key: currentSigningKey,
headers: {
"Upstash-Workflow-Callback": "true",
[WORKFLOW_ID_HEADER]: "wfr-23",
"Upstash-Workflow-StepId": "4",
"Upstash-Workflow-StepName": "my-step",
"Upstash-Workflow-StepType": "Run",
"Upstash-Workflow-Concurrent": "1",
"Upstash-Workflow-ContentType": DEFAULT_CONTENT_TYPE,
},
});
let called = false;
await mockQStashServer({
execute: async () => {
called = true;
const response = await endpoint(thirdPartyRequestWithHeader);
expect(response.status).toBe(200);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: {
method: "POST",
url: `${MOCK_QSTASH_SERVER_URL}/v2/publish/${WORKFLOW_ENDPOINT}`,
token,
body: {
stepId: 4,
stepName: "my-step",
stepType: "Run",
out: JSON.stringify({
status: 200,
body: randomBodyRaw,
header,
}),
concurrent: 1,
},
},
});
expect(called).toBeTrue();
});
});
describe("normal invocation", () => {
const workflowRunId = nanoid();
const initialPayload = nanoid();
const step: Step = {
stepId: 1,
stepName: "step 1",
stepType: "Run",
out: "result",
concurrent: 1,
};
test("should block request without signature", async () => {
const requestWithoutHeader = new Request(WORKFLOW_ENDPOINT, {
method: "POST",
body: getRequestBody(initialPayload, [step]),
headers: {
[WORKFLOW_ID_HEADER]: workflowRunId,
[WORKFLOW_PROTOCOL_VERSION_HEADER]: WORKFLOW_PROTOCOL_VERSION,
},
});
await mockQStashServer({
execute: async () => {
const response = await endpoint(requestWithoutHeader);
expect(response.status).toBe(500);
const body = (await response.json()) as FailureFunctionPayload;
expect(body.message).toBe(
"Failed to verify that the Workflow request comes from QStash: Error: `Upstash-Signature` header is not passed.\n\nIf signature is missing, trigger the workflow endpoint by publishing your request to QStash instead of calling it directly.\n\nIf you want to disable QStash Verification, you should clear env variables QSTASH_CURRENT_SIGNING_KEY and QSTASH_NEXT_SIGNING_KEY"
);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: false,
});
});
test("should block request with invalid signature", async () => {
const requestWithoutHeader = new Request(WORKFLOW_ENDPOINT, {
method: "POST",
body: getRequestBody(initialPayload, [step]),
headers: {
"Upstash-Signature": "some-signature",
[WORKFLOW_ID_HEADER]: workflowRunId,
[WORKFLOW_PROTOCOL_VERSION_HEADER]: WORKFLOW_PROTOCOL_VERSION,
},
});
await mockQStashServer({
execute: async () => {
const response = await endpoint(requestWithoutHeader);
expect(response.status).toBe(500);
const body = (await response.json()) as FailureFunctionPayload;
expect(body.message).toBe(
"Failed to verify that the Workflow request comes from QStash: SignatureError: Invalid Compact JWS\n\nIf signature is missing, trigger the workflow endpoint by publishing your request to QStash instead of calling it directly.\n\nIf you want to disable QStash Verification, you should clear env variables QSTASH_CURRENT_SIGNING_KEY and QSTASH_NEXT_SIGNING_KEY"
);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: false,
});
});
test("should allow request with signature", async () => {
const thirdPartyRequestWithHeader = await createSignedRequest({
url: WORKFLOW_ENDPOINT,
method: "POST",
body: getRequestBody(initialPayload, [step]),
key: currentSigningKey,
headers: {
[WORKFLOW_ID_HEADER]: workflowRunId,
[WORKFLOW_PROTOCOL_VERSION_HEADER]: WORKFLOW_PROTOCOL_VERSION,
},
});
let called = false;
await mockQStashServer({
execute: async () => {
called = true;
await endpoint(thirdPartyRequestWithHeader);
},
responseFields: { body: "msgId", status: 200 },
receivesRequest: {
method: "DELETE",
url: `${MOCK_QSTASH_SERVER_URL}/v2/workflows/runs/${workflowRunId}?cancel=false`,
token,
},
});
expect(called).toBeTrue();
});
});
});