Skip to content

Commit

Permalink
fix: handle error thrown by verify method (#914)
Browse files Browse the repository at this point in the history
* test: handle error thrown by `verify` method

* fix: handle error thrown by `verify` method

* test: remove `.only`
  • Loading branch information
gr2m committed Nov 14, 2023
1 parent 6dc096f commit 449b159
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/verify-and-receive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function verifyAndReceive(
state.secret,
event.payload,
event.signature,
);
).catch(() => false);

if (!matchesSignature) {
const error = new Error(
Expand Down
47 changes: 47 additions & 0 deletions test/integration/node-middleware.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -604,4 +604,51 @@ describe("createNodeMiddleware(webhooks)", () => {

server.close();
});

test("Handles invalid signature", async () => {
expect.assertions(3);

const webhooks = new Webhooks({
secret: "mySecret",
});

webhooks.onError((error) => {
expect(error.message).toContain(
"signature does not match event payload and secret",
);
});

const log = {
debug: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
const middleware = createNodeMiddleware(webhooks, { log });
const server = createServer(middleware).listen();

// @ts-expect-error complains about { port } although it's included in returned AddressInfo interface
const { port } = server.address();

const response = await fetch(
`http://localhost:${port}/api/github/webhooks`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
"X-GitHub-Delivery": "1",
"X-GitHub-Event": "push",
"X-Hub-Signature-256": "",
},
body: pushEventPayload,
},
);

expect(response.status).toEqual(400);
await expect(response.text()).resolves.toBe(
'{"error":"Error: [@octokit/webhooks] signature does not match event payload and secret"}',
);

server.close();
});
});

0 comments on commit 449b159

Please sign in to comment.