mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
091346dfe8
* wip * Remove obsolete snapshots * simplify * chore(test): Convert mocks to TypeScript and tighten fetch mock types Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * Remove unneccessary patches * Migrate to msw instead of custom fetch mock * Address PR review comments - Split chained vi.useFakeTimers().setSystemTime() into separate calls. - Switch test setup to dynamic imports so EventEmitter.defaultMaxListeners assignment runs before module init (static imports were hoisted above it). - Drop redundant NODE_ENV guard in monkeyPatchSequelizeErrorsForJest; its sole caller already gates on env.isTest. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import { buildUser, buildWebhookSubscription } from "@server/test/factories";
|
|
import { mockTaskSchedule } from "@server/test/support";
|
|
import type { UserEvent } from "@server/types";
|
|
import WebhookProcessor from "./WebhookProcessor";
|
|
|
|
const ip = "127.0.0.1";
|
|
const schedule = mockTaskSchedule();
|
|
|
|
describe("WebhookProcessor", () => {
|
|
it("it schedules a delivery for the event", async () => {
|
|
const subscription = await buildWebhookSubscription({
|
|
url: "http://example.com",
|
|
events: ["*"],
|
|
});
|
|
const signedInUser = await buildUser({ teamId: subscription.teamId });
|
|
const processor = new WebhookProcessor();
|
|
|
|
const event: UserEvent = {
|
|
name: "users.signin",
|
|
userId: signedInUser.id,
|
|
teamId: subscription.teamId,
|
|
actorId: signedInUser.id,
|
|
ip,
|
|
};
|
|
|
|
await processor.perform(event);
|
|
|
|
expect(schedule).toHaveBeenCalled();
|
|
expect(schedule).toHaveBeenCalledWith({
|
|
event,
|
|
subscriptionId: subscription.id,
|
|
});
|
|
});
|
|
|
|
it("not schedule a delivery when not subscribed to event", async () => {
|
|
const subscription = await buildWebhookSubscription({
|
|
url: "http://example.com",
|
|
events: ["users.create"],
|
|
});
|
|
const signedInUser = await buildUser({ teamId: subscription.teamId });
|
|
const processor = new WebhookProcessor();
|
|
const event: UserEvent = {
|
|
name: "users.signin",
|
|
userId: signedInUser.id,
|
|
teamId: subscription.teamId,
|
|
actorId: signedInUser.id,
|
|
ip,
|
|
};
|
|
|
|
await processor.perform(event);
|
|
|
|
expect(schedule).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
it("it schedules a delivery for the event for each subscription", async () => {
|
|
const subscription = await buildWebhookSubscription({
|
|
url: "http://example.com",
|
|
events: ["*"],
|
|
});
|
|
const subscriptionTwo = await buildWebhookSubscription({
|
|
url: "http://example.com",
|
|
teamId: subscription.teamId,
|
|
events: ["*"],
|
|
});
|
|
const signedInUser = await buildUser({ teamId: subscription.teamId });
|
|
const processor = new WebhookProcessor();
|
|
|
|
const event: UserEvent = {
|
|
name: "users.signin",
|
|
userId: signedInUser.id,
|
|
teamId: subscription.teamId,
|
|
actorId: signedInUser.id,
|
|
ip,
|
|
};
|
|
|
|
await processor.perform(event);
|
|
|
|
expect(schedule).toHaveBeenCalled();
|
|
expect(schedule).toHaveBeenCalledTimes(2);
|
|
expect(schedule).toHaveBeenCalledWith({
|
|
event,
|
|
subscriptionId: subscription.id,
|
|
});
|
|
expect(schedule).toHaveBeenCalledWith({
|
|
event,
|
|
subscriptionId: subscriptionTwo.id,
|
|
});
|
|
});
|
|
});
|