2023-09-04 21:04:57 +00:00
|
|
|
import type { Page } from "@playwright/test";
|
2022-09-22 17:23:43 +00:00
|
|
|
import { expect } from "@playwright/test";
|
2023-09-07 16:27:46 +00:00
|
|
|
import { v4 as uuidv4 } from "uuid";
|
|
|
|
|
|
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import { BookingStatus } from "@calcom/prisma/client";
|
2022-09-22 17:23:43 +00:00
|
|
|
|
|
|
|
import { test } from "./lib/fixtures";
|
2023-05-30 15:35:05 +00:00
|
|
|
import {
|
|
|
|
bookOptinEvent,
|
|
|
|
createHttpServer,
|
|
|
|
selectFirstAvailableTimeSlotNextMonth,
|
2023-06-13 15:22:19 +00:00
|
|
|
gotoRoutingLink,
|
2023-09-07 16:27:46 +00:00
|
|
|
createUserWithSeatedEventAndAttendees,
|
2023-05-30 15:35:05 +00:00
|
|
|
} from "./lib/testUtils";
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-09-04 21:04:57 +00:00
|
|
|
// remove dynamic properties that differs depending on where you run the tests
|
|
|
|
const dynamic = "[redacted/dynamic]";
|
|
|
|
|
2023-03-01 20:18:51 +00:00
|
|
|
test.afterEach(({ users }) => users.deleteAll());
|
|
|
|
|
2023-09-07 16:27:46 +00:00
|
|
|
async function createWebhookReceiver(page: Page) {
|
|
|
|
const webhookReceiver = createHttpServer();
|
|
|
|
|
|
|
|
await page.goto(`/settings/developer/webhooks`);
|
|
|
|
|
|
|
|
// --- add webhook
|
|
|
|
await page.click('[data-testid="new_webhook"]');
|
|
|
|
|
|
|
|
await page.fill('[name="subscriberUrl"]', webhookReceiver.url);
|
|
|
|
|
|
|
|
await page.fill('[name="secret"]', "secret");
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
page.click("[type=submit]"),
|
|
|
|
page.waitForURL((url) => url.pathname.endsWith("/settings/developer/webhooks")),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// page contains the url
|
|
|
|
expect(page.locator(`text='${webhookReceiver.url}'`)).toBeDefined();
|
|
|
|
|
|
|
|
return webhookReceiver;
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
test.describe("BOOKING_CREATED", async () => {
|
|
|
|
test("add webhook & test that creating an event triggers a webhook call", async ({
|
|
|
|
page,
|
|
|
|
users,
|
2023-06-06 11:59:57 +00:00
|
|
|
}, _testInfo) => {
|
2023-05-30 15:35:05 +00:00
|
|
|
const webhookReceiver = createHttpServer();
|
|
|
|
const user = await users.create();
|
|
|
|
const [eventType] = user.eventTypes;
|
2023-06-06 18:02:32 +00:00
|
|
|
await user.apiLogin();
|
2023-05-30 15:35:05 +00:00
|
|
|
await page.goto(`/settings/developer/webhooks`);
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
// --- add webhook
|
|
|
|
await page.click('[data-testid="new_webhook"]');
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
await page.fill('[name="subscriberUrl"]', webhookReceiver.url);
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
await page.fill('[name="secret"]', "secret");
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
await Promise.all([
|
|
|
|
page.click("[type=submit]"),
|
|
|
|
page.waitForURL((url) => url.pathname.endsWith("/settings/developer/webhooks")),
|
|
|
|
]);
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
// page contains the url
|
|
|
|
expect(page.locator(`text='${webhookReceiver.url}'`)).toBeDefined();
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
// --- Book the first available day next month in the pro user's "30min"-event
|
|
|
|
await page.goto(`/${user.username}/${eventType.slug}`);
|
|
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
// --- fill form
|
|
|
|
await page.fill('[name="name"]', "Test Testson");
|
|
|
|
await page.fill('[name="email"]', "test@example.com");
|
|
|
|
await page.press('[name="email"]', "Enter");
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
const [request] = webhookReceiver.requestList;
|
2023-06-06 11:59:57 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const body: any = request.body;
|
2023-05-30 15:35:05 +00:00
|
|
|
|
|
|
|
body.createdAt = dynamic;
|
|
|
|
body.payload.startTime = dynamic;
|
|
|
|
body.payload.endTime = dynamic;
|
|
|
|
body.payload.location = dynamic;
|
|
|
|
for (const attendee of body.payload.attendees) {
|
|
|
|
attendee.timeZone = dynamic;
|
|
|
|
attendee.language = dynamic;
|
|
|
|
}
|
|
|
|
body.payload.organizer.id = dynamic;
|
|
|
|
body.payload.organizer.email = dynamic;
|
|
|
|
body.payload.organizer.timeZone = dynamic;
|
|
|
|
body.payload.organizer.language = dynamic;
|
|
|
|
body.payload.uid = dynamic;
|
|
|
|
body.payload.bookingId = dynamic;
|
|
|
|
body.payload.additionalInformation = dynamic;
|
|
|
|
body.payload.requiresConfirmation = dynamic;
|
|
|
|
body.payload.eventTypeId = dynamic;
|
|
|
|
body.payload.videoCallData = dynamic;
|
|
|
|
body.payload.appsStatus = dynamic;
|
|
|
|
body.payload.metadata.videoCallUrl = dynamic;
|
|
|
|
|
|
|
|
expect(body).toMatchObject({
|
|
|
|
triggerEvent: "BOOKING_CREATED",
|
|
|
|
createdAt: "[redacted/dynamic]",
|
|
|
|
payload: {
|
|
|
|
type: "30 min",
|
|
|
|
title: "30 min between Nameless and Test Testson",
|
|
|
|
description: "",
|
|
|
|
additionalNotes: "",
|
|
|
|
customInputs: {},
|
|
|
|
startTime: "[redacted/dynamic]",
|
|
|
|
endTime: "[redacted/dynamic]",
|
|
|
|
organizer: {
|
|
|
|
id: "[redacted/dynamic]",
|
|
|
|
name: "Nameless",
|
|
|
|
email: "[redacted/dynamic]",
|
|
|
|
timeZone: "[redacted/dynamic]",
|
|
|
|
language: "[redacted/dynamic]",
|
2023-03-07 17:50:54 +00:00
|
|
|
},
|
2023-05-30 15:35:05 +00:00
|
|
|
responses: {
|
|
|
|
email: {
|
|
|
|
value: "test@example.com",
|
|
|
|
label: "email_address",
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
value: "Test Testson",
|
|
|
|
label: "your_name",
|
|
|
|
},
|
2023-03-07 17:50:54 +00:00
|
|
|
},
|
2023-05-30 15:35:05 +00:00
|
|
|
userFieldsResponses: {},
|
|
|
|
attendees: [
|
|
|
|
{
|
|
|
|
email: "test@example.com",
|
|
|
|
name: "Test Testson",
|
|
|
|
timeZone: "[redacted/dynamic]",
|
|
|
|
language: "[redacted/dynamic]",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
location: "[redacted/dynamic]",
|
|
|
|
destinationCalendar: null,
|
|
|
|
hideCalendarNotes: false,
|
|
|
|
requiresConfirmation: "[redacted/dynamic]",
|
|
|
|
eventTypeId: "[redacted/dynamic]",
|
|
|
|
seatsShowAttendees: true,
|
|
|
|
seatsPerTimeSlot: null,
|
|
|
|
uid: "[redacted/dynamic]",
|
|
|
|
eventTitle: "30 min",
|
|
|
|
eventDescription: null,
|
|
|
|
price: 0,
|
|
|
|
currency: "usd",
|
|
|
|
length: 30,
|
|
|
|
bookingId: "[redacted/dynamic]",
|
|
|
|
metadata: { videoCallUrl: "[redacted/dynamic]" },
|
|
|
|
status: "ACCEPTED",
|
|
|
|
additionalInformation: "[redacted/dynamic]",
|
2023-03-07 17:50:54 +00:00
|
|
|
},
|
2023-05-30 15:35:05 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
webhookReceiver.close();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test.describe("BOOKING_REJECTED", async () => {
|
|
|
|
test("can book an event that requires confirmation and then that booking can be rejected by organizer", async ({
|
|
|
|
page,
|
|
|
|
users,
|
|
|
|
}) => {
|
|
|
|
const webhookReceiver = createHttpServer();
|
|
|
|
// --- create a user
|
|
|
|
const user = await users.create();
|
|
|
|
|
|
|
|
// --- visit user page
|
|
|
|
await page.goto(`/${user.username}`);
|
|
|
|
|
|
|
|
// --- book the user's event
|
|
|
|
await bookOptinEvent(page);
|
|
|
|
|
|
|
|
// --- login as that user
|
2023-06-06 18:02:32 +00:00
|
|
|
await user.apiLogin();
|
2023-05-30 15:35:05 +00:00
|
|
|
|
|
|
|
await page.goto(`/settings/developer/webhooks`);
|
|
|
|
|
|
|
|
// --- add webhook
|
|
|
|
await page.click('[data-testid="new_webhook"]');
|
|
|
|
|
|
|
|
await page.fill('[name="subscriberUrl"]', webhookReceiver.url);
|
|
|
|
|
|
|
|
await page.fill('[name="secret"]', "secret");
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
page.click("[type=submit]"),
|
|
|
|
page.waitForURL((url) => url.pathname.endsWith("/settings/developer/webhooks")),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// page contains the url
|
|
|
|
expect(page.locator(`text='${webhookReceiver.url}'`)).toBeDefined();
|
|
|
|
|
|
|
|
await page.goto("/bookings/unconfirmed");
|
|
|
|
await page.click('[data-testid="reject"]');
|
|
|
|
await page.click('[data-testid="rejection-confirm"]');
|
|
|
|
await page.waitForResponse((response) => response.url().includes("/api/trpc/bookings/confirm"));
|
|
|
|
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
const [request] = webhookReceiver.requestList;
|
2023-08-21 09:01:56 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2023-05-30 15:35:05 +00:00
|
|
|
const body = request.body as any;
|
|
|
|
|
|
|
|
body.createdAt = dynamic;
|
|
|
|
body.payload.startTime = dynamic;
|
|
|
|
body.payload.endTime = dynamic;
|
|
|
|
body.payload.location = dynamic;
|
|
|
|
for (const attendee of body.payload.attendees) {
|
|
|
|
attendee.timeZone = dynamic;
|
|
|
|
attendee.language = dynamic;
|
|
|
|
}
|
|
|
|
body.payload.organizer.id = dynamic;
|
|
|
|
body.payload.organizer.email = dynamic;
|
|
|
|
body.payload.organizer.timeZone = dynamic;
|
|
|
|
body.payload.organizer.language = dynamic;
|
|
|
|
body.payload.uid = dynamic;
|
|
|
|
body.payload.bookingId = dynamic;
|
|
|
|
body.payload.additionalInformation = dynamic;
|
|
|
|
body.payload.requiresConfirmation = dynamic;
|
|
|
|
body.payload.eventTypeId = dynamic;
|
|
|
|
body.payload.videoCallData = dynamic;
|
|
|
|
body.payload.appsStatus = dynamic;
|
|
|
|
// body.payload.metadata.videoCallUrl = dynamic;
|
|
|
|
|
|
|
|
expect(body).toMatchObject({
|
|
|
|
triggerEvent: "BOOKING_REJECTED",
|
|
|
|
createdAt: "[redacted/dynamic]",
|
|
|
|
payload: {
|
|
|
|
type: "Opt in",
|
|
|
|
title: "Opt in between Nameless and Test Testson",
|
|
|
|
customInputs: {},
|
|
|
|
startTime: "[redacted/dynamic]",
|
|
|
|
endTime: "[redacted/dynamic]",
|
|
|
|
organizer: {
|
|
|
|
id: "[redacted/dynamic]",
|
|
|
|
name: "Unnamed",
|
|
|
|
email: "[redacted/dynamic]",
|
2023-03-02 12:13:55 +00:00
|
|
|
timeZone: "[redacted/dynamic]",
|
|
|
|
language: "[redacted/dynamic]",
|
|
|
|
},
|
2023-05-30 15:35:05 +00:00
|
|
|
responses: {
|
|
|
|
email: {
|
|
|
|
value: "test@example.com",
|
|
|
|
label: "email",
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
value: "Test Testson",
|
|
|
|
label: "name",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
userFieldsResponses: {},
|
|
|
|
attendees: [
|
|
|
|
{
|
|
|
|
email: "test@example.com",
|
|
|
|
name: "Test Testson",
|
|
|
|
timeZone: "[redacted/dynamic]",
|
|
|
|
language: "[redacted/dynamic]",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
location: "[redacted/dynamic]",
|
2023-08-31 17:47:02 +00:00
|
|
|
destinationCalendar: [],
|
2023-05-30 15:35:05 +00:00
|
|
|
// hideCalendarNotes: false,
|
|
|
|
requiresConfirmation: "[redacted/dynamic]",
|
|
|
|
eventTypeId: "[redacted/dynamic]",
|
|
|
|
uid: "[redacted/dynamic]",
|
|
|
|
eventTitle: "Opt in",
|
|
|
|
eventDescription: null,
|
|
|
|
price: 0,
|
|
|
|
currency: "usd",
|
|
|
|
length: 30,
|
|
|
|
bookingId: "[redacted/dynamic]",
|
|
|
|
// metadata: { videoCallUrl: "[redacted/dynamic]" },
|
|
|
|
status: "REJECTED",
|
|
|
|
additionalInformation: "[redacted/dynamic]",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
webhookReceiver.close();
|
2023-03-02 12:13:55 +00:00
|
|
|
});
|
2023-05-30 15:35:05 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test.describe("BOOKING_REQUESTED", async () => {
|
|
|
|
test("can book an event that requires confirmation and get a booking requested event", async ({
|
|
|
|
page,
|
|
|
|
users,
|
|
|
|
}) => {
|
|
|
|
const webhookReceiver = createHttpServer();
|
|
|
|
// --- create a user
|
|
|
|
const user = await users.create();
|
|
|
|
|
|
|
|
// --- login as that user
|
2023-06-06 18:02:32 +00:00
|
|
|
await user.apiLogin();
|
2023-05-30 15:35:05 +00:00
|
|
|
|
|
|
|
await page.goto(`/settings/developer/webhooks`);
|
|
|
|
|
|
|
|
// --- add webhook
|
|
|
|
await page.click('[data-testid="new_webhook"]');
|
|
|
|
|
|
|
|
await page.fill('[name="subscriberUrl"]', webhookReceiver.url);
|
|
|
|
|
|
|
|
await page.fill('[name="secret"]', "secret");
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
page.click("[type=submit]"),
|
|
|
|
page.waitForURL((url) => url.pathname.endsWith("/settings/developer/webhooks")),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// page contains the url
|
|
|
|
expect(page.locator(`text='${webhookReceiver.url}'`)).toBeDefined();
|
|
|
|
|
|
|
|
// --- visit user page
|
|
|
|
await page.goto(`/${user.username}`);
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
// --- book the user's opt in
|
|
|
|
await bookOptinEvent(page);
|
|
|
|
|
|
|
|
// --- check that webhook was called
|
|
|
|
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
|
|
|
|
2023-05-30 15:35:05 +00:00
|
|
|
const [request] = webhookReceiver.requestList;
|
2023-06-06 11:59:57 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2023-05-30 15:35:05 +00:00
|
|
|
const body = request.body as any;
|
|
|
|
|
|
|
|
body.createdAt = dynamic;
|
|
|
|
body.payload.startTime = dynamic;
|
|
|
|
body.payload.endTime = dynamic;
|
|
|
|
body.payload.location = dynamic;
|
|
|
|
for (const attendee of body.payload.attendees) {
|
|
|
|
attendee.timeZone = dynamic;
|
|
|
|
attendee.language = dynamic;
|
|
|
|
}
|
|
|
|
body.payload.organizer.id = dynamic;
|
|
|
|
body.payload.organizer.email = dynamic;
|
|
|
|
body.payload.organizer.timeZone = dynamic;
|
|
|
|
body.payload.organizer.language = dynamic;
|
|
|
|
body.payload.uid = dynamic;
|
|
|
|
body.payload.bookingId = dynamic;
|
|
|
|
body.payload.additionalInformation = dynamic;
|
|
|
|
body.payload.requiresConfirmation = dynamic;
|
|
|
|
body.payload.eventTypeId = dynamic;
|
|
|
|
body.payload.videoCallData = dynamic;
|
|
|
|
body.payload.appsStatus = dynamic;
|
|
|
|
body.payload.metadata.videoCallUrl = dynamic;
|
|
|
|
|
|
|
|
expect(body).toMatchObject({
|
|
|
|
triggerEvent: "BOOKING_REQUESTED",
|
|
|
|
createdAt: "[redacted/dynamic]",
|
|
|
|
payload: {
|
|
|
|
type: "Opt in",
|
|
|
|
title: "Opt in between Nameless and Test Testson",
|
|
|
|
customInputs: {},
|
|
|
|
startTime: "[redacted/dynamic]",
|
|
|
|
endTime: "[redacted/dynamic]",
|
|
|
|
organizer: {
|
|
|
|
id: "[redacted/dynamic]",
|
|
|
|
name: "Nameless",
|
|
|
|
email: "[redacted/dynamic]",
|
|
|
|
timeZone: "[redacted/dynamic]",
|
|
|
|
language: "[redacted/dynamic]",
|
|
|
|
},
|
|
|
|
responses: {
|
|
|
|
email: {
|
|
|
|
value: "test@example.com",
|
|
|
|
label: "email_address",
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
value: "Test Testson",
|
|
|
|
label: "your_name",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
userFieldsResponses: {},
|
|
|
|
attendees: [
|
|
|
|
{
|
|
|
|
email: "test@example.com",
|
|
|
|
name: "Test Testson",
|
|
|
|
timeZone: "[redacted/dynamic]",
|
|
|
|
language: "[redacted/dynamic]",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
location: "[redacted/dynamic]",
|
|
|
|
destinationCalendar: null,
|
|
|
|
requiresConfirmation: "[redacted/dynamic]",
|
|
|
|
eventTypeId: "[redacted/dynamic]",
|
|
|
|
uid: "[redacted/dynamic]",
|
|
|
|
eventTitle: "Opt in",
|
|
|
|
eventDescription: null,
|
|
|
|
price: 0,
|
|
|
|
currency: "usd",
|
|
|
|
length: 30,
|
|
|
|
bookingId: "[redacted/dynamic]",
|
|
|
|
status: "PENDING",
|
|
|
|
additionalInformation: "[redacted/dynamic]",
|
|
|
|
metadata: { videoCallUrl: "[redacted/dynamic]" },
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
webhookReceiver.close();
|
|
|
|
});
|
2022-09-22 17:23:43 +00:00
|
|
|
});
|
2023-06-13 15:22:19 +00:00
|
|
|
|
2023-09-07 16:27:46 +00:00
|
|
|
test.describe("BOOKING_RESCHEDULED", async () => {
|
|
|
|
test("can reschedule a booking and get a booking rescheduled event", async ({ page, users, bookings }) => {
|
|
|
|
const user = await users.create();
|
|
|
|
const [eventType] = user.eventTypes;
|
|
|
|
|
|
|
|
await user.apiLogin();
|
|
|
|
|
|
|
|
const webhookReceiver = await createWebhookReceiver(page);
|
|
|
|
|
|
|
|
const booking = await bookings.create(user.id, user.username, eventType.id, {
|
|
|
|
status: BookingStatus.ACCEPTED,
|
|
|
|
});
|
|
|
|
|
|
|
|
await page.goto(`/${user.username}/${eventType.slug}?rescheduleUid=${booking.uid}`);
|
|
|
|
|
|
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
|
|
|
|
|
|
|
await page.locator('[data-testid="confirm-reschedule-button"]').click();
|
|
|
|
|
|
|
|
await expect(page).toHaveURL(/.*booking/);
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
|
|
const newBooking = await prisma.booking.findFirst({ where: { fromReschedule: booking?.uid } })!;
|
|
|
|
expect(newBooking).not.toBeNull();
|
|
|
|
|
|
|
|
// --- check that webhook was called
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
2023-09-07 16:27:46 +00:00
|
|
|
|
|
|
|
const [request] = webhookReceiver.requestList;
|
|
|
|
|
|
|
|
expect(request.body).toMatchObject({
|
|
|
|
triggerEvent: "BOOKING_RESCHEDULED",
|
|
|
|
payload: {
|
|
|
|
uid: newBooking?.uid,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("when rescheduling to a booking that already exists, should send a booking rescheduled event with the existant booking uid", async ({
|
|
|
|
page,
|
|
|
|
users,
|
|
|
|
bookings,
|
|
|
|
}) => {
|
|
|
|
const { user, eventType, booking } = await createUserWithSeatedEventAndAttendees({ users, bookings }, [
|
|
|
|
{ name: "John First", email: "first+seats@cal.com", timeZone: "Europe/Berlin" },
|
|
|
|
{ name: "Jane Second", email: "second+seats@cal.com", timeZone: "Europe/Berlin" },
|
|
|
|
]);
|
|
|
|
|
|
|
|
await prisma.eventType.update({
|
|
|
|
where: { id: eventType.id },
|
|
|
|
data: { requiresConfirmation: false },
|
|
|
|
});
|
|
|
|
|
|
|
|
await user.apiLogin();
|
|
|
|
|
|
|
|
const webhookReceiver = await createWebhookReceiver(page);
|
|
|
|
|
|
|
|
const bookingAttendees = await prisma.attendee.findMany({
|
|
|
|
where: { bookingId: booking.id },
|
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
email: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const bookingSeats = bookingAttendees.map((attendee) => ({
|
|
|
|
bookingId: booking.id,
|
|
|
|
attendeeId: attendee.id,
|
|
|
|
referenceUid: uuidv4(),
|
|
|
|
}));
|
|
|
|
|
|
|
|
await prisma.bookingSeat.createMany({
|
|
|
|
data: bookingSeats,
|
|
|
|
});
|
|
|
|
|
|
|
|
const references = await prisma.bookingSeat.findMany({
|
|
|
|
where: { bookingId: booking.id },
|
|
|
|
include: { attendee: true },
|
|
|
|
});
|
|
|
|
|
|
|
|
await page.goto(`/reschedule/${references[0].referenceUid}`);
|
|
|
|
|
|
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
|
|
|
|
|
|
|
await page.locator('[data-testid="confirm-reschedule-button"]').click();
|
|
|
|
|
|
|
|
await expect(page).toHaveURL(/.*booking/);
|
|
|
|
|
|
|
|
const newBooking = await prisma.booking.findFirst({
|
|
|
|
where: {
|
|
|
|
attendees: {
|
|
|
|
some: {
|
|
|
|
email: bookingAttendees[0].email,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// --- ensuring that new booking was created
|
|
|
|
expect(newBooking).not.toBeNull();
|
|
|
|
|
|
|
|
// --- check that webhook was called
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
2023-09-07 16:27:46 +00:00
|
|
|
|
|
|
|
const [firstRequest] = webhookReceiver.requestList;
|
|
|
|
|
|
|
|
expect(firstRequest?.body).toMatchObject({
|
|
|
|
triggerEvent: "BOOKING_RESCHEDULED",
|
|
|
|
payload: {
|
|
|
|
uid: newBooking?.uid,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await page.goto(`/reschedule/${references[1].referenceUid}`);
|
|
|
|
|
|
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
|
|
|
|
|
|
|
await page.locator('[data-testid="confirm-reschedule-button"]').click();
|
|
|
|
|
|
|
|
await expect(page).toHaveURL(/.*booking/);
|
|
|
|
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(2);
|
2023-09-07 16:27:46 +00:00
|
|
|
|
|
|
|
const [_, secondRequest] = webhookReceiver.requestList;
|
|
|
|
|
|
|
|
expect(secondRequest?.body).toMatchObject({
|
|
|
|
triggerEvent: "BOOKING_RESCHEDULED",
|
|
|
|
payload: {
|
|
|
|
// in the current implementation, it is the same as the first booking
|
|
|
|
uid: newBooking?.uid,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-06-13 15:22:19 +00:00
|
|
|
test.describe("FORM_SUBMITTED", async () => {
|
2023-09-04 21:04:57 +00:00
|
|
|
test("on submitting user form, triggers user webhook", async ({ page, users, routingForms }) => {
|
2023-06-13 15:22:19 +00:00
|
|
|
const webhookReceiver = createHttpServer();
|
2023-09-04 21:04:57 +00:00
|
|
|
const user = await users.create(null, {
|
|
|
|
hasTeam: true,
|
|
|
|
});
|
2023-06-13 15:22:19 +00:00
|
|
|
|
|
|
|
await user.apiLogin();
|
|
|
|
|
|
|
|
await page.goto(`/settings/developer/webhooks/new`);
|
|
|
|
|
|
|
|
// Add webhook
|
|
|
|
await page.fill('[name="subscriberUrl"]', webhookReceiver.url);
|
|
|
|
await page.fill('[name="secret"]', "secret");
|
2023-09-04 21:04:57 +00:00
|
|
|
await page.click("[type=submit]");
|
2023-06-13 15:22:19 +00:00
|
|
|
|
|
|
|
// Page contains the url
|
|
|
|
expect(page.locator(`text='${webhookReceiver.url}'`)).toBeDefined();
|
|
|
|
|
|
|
|
await page.waitForLoadState("networkidle");
|
2023-09-04 21:04:57 +00:00
|
|
|
|
|
|
|
const form = await routingForms.create({
|
|
|
|
name: "Test Form",
|
|
|
|
userId: user.id,
|
|
|
|
teamId: null,
|
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
type: "text",
|
|
|
|
label: "Name",
|
|
|
|
identifier: "name",
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
await gotoRoutingLink({ page, formId: form.id });
|
|
|
|
const fieldName = "name";
|
|
|
|
await page.fill(`[data-testid="form-field-${fieldName}"]`, "John Doe");
|
2023-06-13 15:22:19 +00:00
|
|
|
page.click('button[type="submit"]');
|
|
|
|
|
2023-10-20 23:57:13 +00:00
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
|
|
|
|
2023-09-04 21:04:57 +00:00
|
|
|
const [request] = webhookReceiver.requestList;
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const body = request.body as any;
|
|
|
|
body.createdAt = dynamic;
|
|
|
|
expect(body).toEqual({
|
|
|
|
triggerEvent: "FORM_SUBMITTED",
|
|
|
|
createdAt: dynamic,
|
|
|
|
payload: {
|
|
|
|
formId: form.id,
|
|
|
|
formName: form.name,
|
|
|
|
teamId: null,
|
|
|
|
responses: {
|
|
|
|
name: {
|
|
|
|
value: "John Doe",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
name: "John Doe",
|
|
|
|
});
|
|
|
|
|
|
|
|
webhookReceiver.close();
|
|
|
|
});
|
|
|
|
|
|
|
|
test("on submitting team form, triggers team webhook", async ({ page, users, routingForms }) => {
|
|
|
|
const webhookReceiver = createHttpServer();
|
|
|
|
const user = await users.create(null, {
|
|
|
|
hasTeam: true,
|
|
|
|
});
|
|
|
|
await user.apiLogin();
|
|
|
|
|
|
|
|
await page.goto(`/settings/developer/webhooks`);
|
|
|
|
const teamId = await clickFirstTeamWebhookCta(page);
|
|
|
|
|
|
|
|
// Add webhook
|
|
|
|
await page.fill('[name="subscriberUrl"]', webhookReceiver.url);
|
|
|
|
await page.fill('[name="secret"]', "secret");
|
|
|
|
await page.click("[type=submit]");
|
|
|
|
|
|
|
|
const form = await routingForms.create({
|
|
|
|
name: "Test Form",
|
|
|
|
userId: user.id,
|
|
|
|
teamId: teamId,
|
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
type: "text",
|
|
|
|
label: "Name",
|
|
|
|
identifier: "name",
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
await gotoRoutingLink({ page, formId: form.id });
|
|
|
|
const fieldName = "name";
|
|
|
|
await page.fill(`[data-testid="form-field-${fieldName}"]`, "John Doe");
|
|
|
|
page.click('button[type="submit"]');
|
2023-10-20 23:57:13 +00:00
|
|
|
|
|
|
|
await webhookReceiver.waitForRequestCount(1);
|
|
|
|
|
2023-09-04 21:04:57 +00:00
|
|
|
const [request] = webhookReceiver.requestList;
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const body = request.body as any;
|
|
|
|
body.createdAt = dynamic;
|
|
|
|
expect(body).toEqual({
|
|
|
|
triggerEvent: "FORM_SUBMITTED",
|
|
|
|
createdAt: dynamic,
|
|
|
|
payload: {
|
|
|
|
formId: form.id,
|
|
|
|
formName: form.name,
|
|
|
|
teamId,
|
|
|
|
responses: {
|
|
|
|
name: {
|
|
|
|
value: "John Doe",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
name: "John Doe",
|
|
|
|
});
|
|
|
|
|
2023-06-13 15:22:19 +00:00
|
|
|
webhookReceiver.close();
|
|
|
|
});
|
|
|
|
});
|
2023-09-04 21:04:57 +00:00
|
|
|
|
|
|
|
async function clickFirstTeamWebhookCta(page: Page) {
|
|
|
|
await page.click('[data-testid="new_webhook"]');
|
|
|
|
await page.click('[data-testid="option-team-1"]');
|
|
|
|
await page.waitForURL((u) => u.pathname === "/settings/developer/webhooks/new");
|
|
|
|
const url = page.url();
|
|
|
|
const teamId = Number(new URL(url).searchParams.get("teamId")) as number;
|
|
|
|
return teamId;
|
|
|
|
}
|