mirror of
https://github.com/outline/outline.git
synced 2026-01-02 09:09:50 -06:00
* fix: Users should not be redirected to disabled authentication providers Re-enabled tests in plugin directory * Fix plugin http tests
97 lines
2.8 KiB
TypeScript
97 lines
2.8 KiB
TypeScript
import { buildUser, buildWebhookSubscription } from "@server/test/factories";
|
|
import { setupTestDatabase } from "@server/test/support";
|
|
import { UserEvent } from "@server/types";
|
|
import DeliverWebhookTask from "../tasks/DeliverWebhookTask";
|
|
import WebhookProcessor from "./WebhookProcessor";
|
|
|
|
jest.mock("../tasks/DeliverWebhookTask");
|
|
const ip = "127.0.0.1";
|
|
|
|
setupTestDatabase();
|
|
|
|
beforeEach(async () => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
describe("WebhookProcessor", () => {
|
|
test("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(DeliverWebhookTask.schedule).toHaveBeenCalled();
|
|
expect(DeliverWebhookTask.schedule).toHaveBeenCalledWith({
|
|
event,
|
|
subscriptionId: subscription.id,
|
|
});
|
|
});
|
|
|
|
test("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(DeliverWebhookTask.schedule).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
test("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(DeliverWebhookTask.schedule).toHaveBeenCalled();
|
|
expect(DeliverWebhookTask.schedule).toHaveBeenCalledTimes(2);
|
|
expect(DeliverWebhookTask.schedule).toHaveBeenCalledWith({
|
|
event,
|
|
subscriptionId: subscription.id,
|
|
});
|
|
expect(DeliverWebhookTask.schedule).toHaveBeenCalledWith({
|
|
event,
|
|
subscriptionId: subscriptionTwo.id,
|
|
});
|
|
});
|
|
});
|