-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsaleor-webhook-validator.test.ts
407 lines (351 loc) · 12.1 KB
/
saleor-webhook-validator.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
import { beforeEach, describe, expect, it, vi } from "vitest";
import { AuthData } from "@/APL";
import * as fetchRemoteJwksModule from "@/auth/fetch-remote-jwks";
import * as verifySignatureModule from "@/auth/verify-signature";
import { MockAdapter } from "@/test-utils/mock-adapter";
import { MockAPL } from "@/test-utils/mock-apl";
import { SaleorRequestProcessor } from "./saleor-request-processor";
import { SaleorWebhookValidator } from "./saleor-webhook-validator";
vi.spyOn(verifySignatureModule, "verifySignatureWithJwks").mockImplementation(
async (domain, signature) => {
if (signature !== "mocked_signature") {
throw new Error("Wrong signature");
}
},
);
describe("SaleorWebhookValidator", () => {
const mockAPL = new MockAPL();
const validator = new SaleorWebhookValidator();
let adapter: MockAdapter;
let requestProcessor: SaleorRequestProcessor<unknown>;
const validHeaders = {
saleorApiUrl: mockAPL.workingSaleorApiUrl,
event: "product_updated",
schemaVersion: "3.20",
signature: "mocked_signature",
authorizationBearer: "mocked_bearer",
domain: "example.com",
};
beforeEach(() => {
adapter = new MockAdapter({ baseUrl: "https://example-app.com/api" });
requestProcessor = new SaleorRequestProcessor(adapter);
});
it("Throws error on non-POST request method", async () => {
vi.spyOn(adapter, "method", "get").mockReturnValue("GET");
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Wrong request method, only POST allowed",
errorType: "WRONG_METHOD",
},
});
});
it("Throws error on missing base URL", async () => {
vi.spyOn(adapter, "getBaseUrl").mockReturnValue("");
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Missing host header",
errorType: "MISSING_HOST_HEADER",
},
});
});
it("Throws error on missing api url header", async () => {
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue({
...validHeaders,
// @ts-expect-error testing missing saleorApiUrl
saleorApiUrl: null,
});
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Missing saleor-api-url header",
errorType: "MISSING_API_URL_HEADER",
},
});
});
it("Throws error on missing event header", async () => {
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue({
// @ts-expect-error testing missing event
event: null,
signature: "mocked_signature",
saleorApiUrl: mockAPL.workingSaleorApiUrl,
});
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Missing saleor-event header",
errorType: "MISSING_EVENT_HEADER",
},
});
});
it("Throws error on mismatched event header", async () => {
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue({
...validHeaders,
event: "different_event",
});
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Wrong incoming request event: different_event. Expected: product_updated",
errorType: "WRONG_EVENT",
},
});
});
it("Throws error on missing signature header", async () => {
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue({
...validHeaders,
// @ts-expect-error testing missing signature
signature: null,
});
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Missing saleor-signature header",
errorType: "MISSING_SIGNATURE_HEADER",
},
});
});
it("Throws error on missing request body", async () => {
vi.spyOn(adapter, "getRawBody").mockResolvedValue("");
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue(validHeaders);
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Missing request body",
errorType: "MISSING_REQUEST_BODY",
},
});
});
it("Throws error on unparsable request body", async () => {
vi.spyOn(adapter, "getRawBody").mockResolvedValue("{ "); // broken JSON
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue(validHeaders);
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: "Request body can't be parsed",
errorType: "CANT_BE_PARSED",
},
});
});
it("Throws error on unregistered app", async () => {
const unregisteredApiUrl = "https://not-registered.example.com/graphql/";
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue({
...validHeaders,
saleorApiUrl: unregisteredApiUrl,
});
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
message: `Can't find auth data for ${unregisteredApiUrl}. Please register the application`,
errorType: "NOT_REGISTERED",
},
});
});
it("Fallbacks to null if version is missing in payload", async () => {
vi.spyOn(adapter, "getRawBody").mockResolvedValue(JSON.stringify({}));
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue(validHeaders);
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "ok",
context: expect.objectContaining({
schemaVersion: null,
}),
});
});
it("Returns success on valid request with signature passing validation against jwks in auth data", async () => {
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue(validHeaders);
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "ok",
context: expect.objectContaining({
baseUrl: "https://example-app.com/api",
event: "product_updated",
payload: {},
schemaVersion: null,
}),
});
});
describe("JWKS re-try validation", () => {
const authDataNoJwks = {
token: mockAPL.mockToken,
saleorApiUrl: mockAPL.workingSaleorApiUrl,
appId: mockAPL.mockAppId,
jwks: null, // Simulate missing JWKS in initial auth data
} as unknown as AuthData; // We're testing missing jwks, so this is fine
beforeEach(() => {
vi.resetAllMocks();
vi.spyOn(requestProcessor, "getSaleorHeaders").mockReturnValue(validHeaders);
});
it("Triggers JWKS refresh when initial auth data contains empty JWKS", async () => {
vi.spyOn(mockAPL, "get").mockResolvedValue(authDataNoJwks);
vi.spyOn(verifySignatureModule, "verifySignatureWithJwks").mockResolvedValueOnce(undefined);
vi.spyOn(fetchRemoteJwksModule, "fetchRemoteJwks").mockResolvedValue("new-jwks");
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "ok",
context: expect.objectContaining({
baseUrl: "https://example-app.com/api",
event: "product_updated",
payload: {},
schemaVersion: null,
}),
});
expect(mockAPL.set).toHaveBeenCalledWith(
expect.objectContaining({
jwks: "new-jwks",
}),
);
expect(fetchRemoteJwksModule.fetchRemoteJwks).toHaveBeenCalledWith(
authDataNoJwks.saleorApiUrl,
);
// it's called only once because jwks was missing initially, so we skipped first validation
expect(verifySignatureModule.verifySignatureWithJwks).toHaveBeenCalledTimes(1);
});
it("Triggers JWKS refresh when token signature doesn't match JWKS from existing auth data", async () => {
vi.spyOn(verifySignatureModule, "verifySignatureWithJwks")
.mockRejectedValueOnce(new Error("Signature verification failed")) // First: reject validation due to stale jwks
.mockResolvedValueOnce(undefined); // Second: resolve validation because jwks is now correct
vi.spyOn(fetchRemoteJwksModule, "fetchRemoteJwks").mockResolvedValue("new-jwks");
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "ok",
context: expect.objectContaining({
baseUrl: "https://example-app.com/api",
event: "product_updated",
payload: {},
schemaVersion: null,
}),
});
expect(mockAPL.set).toHaveBeenCalledWith(
expect.objectContaining({
jwks: "new-jwks",
}),
);
expect(fetchRemoteJwksModule.fetchRemoteJwks).toHaveBeenCalledWith(
authDataNoJwks.saleorApiUrl,
);
expect(verifySignatureModule.verifySignatureWithJwks).toHaveBeenCalledTimes(2);
});
it("Returns an error when new JWKS cannot be fetched", async () => {
vi.spyOn(mockAPL, "get").mockResolvedValue(authDataNoJwks);
vi.spyOn(verifySignatureModule, "verifySignatureWithJwks").mockRejectedValue(
new Error("Initial verification failed"),
);
vi.spyOn(fetchRemoteJwksModule, "fetchRemoteJwks").mockRejectedValue(
new Error("JWKS fetch failed"),
);
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
errorType: "SIGNATURE_VERIFICATION_FAILED",
message: "Fetching remote JWKS failed",
},
});
expect(fetchRemoteJwksModule.fetchRemoteJwks).toHaveBeenCalledTimes(1);
});
it("Returns an error when signature doesn't match JWKS after re-fetching it", async () => {
vi.spyOn(verifySignatureModule, "verifySignatureWithJwks")
.mockRejectedValueOnce(new Error("Stale JWKS")) // First attempt fails
.mockRejectedValueOnce(new Error("Fresh JWKS mismatch")); // Second attempt fails
vi.spyOn(fetchRemoteJwksModule, "fetchRemoteJwks").mockResolvedValue("{}");
const result = await validator.validateRequest({
allowedEvent: "PRODUCT_UPDATED",
apl: mockAPL,
adapter,
requestProcessor,
});
expect(result).toMatchObject({
result: "failure",
error: {
errorType: "SIGNATURE_VERIFICATION_FAILED",
message: "Request signature check failed",
},
});
expect(verifySignatureModule.verifySignatureWithJwks).toHaveBeenCalledTimes(2);
expect(fetchRemoteJwksModule.fetchRemoteJwks).toHaveBeenCalledWith(
authDataNoJwks.saleorApiUrl,
);
});
});
});