* WIP-already-reschedule-success-emails-missing * WIP now saving bookingSeatsReferences and identifyin on reschedule/book page * Remove logs and created test * WIP saving progress * Select second slot to pass test * Delete attendee from event * Clean up * Update with main changes * Fix emails not being sent * Changed test end url from success to booking * Remove unused pkg * Fix new booking reschedule * remove log * Renable test * remove unused pkg * rename table name * review changes * Fix and and other test to reschedule with seats * Fix api for cancel booking * Typings * Update [uid].tsx * Abstracted common pattern into maybeGetBookingUidFromSeat * Reverts * Nitpicks * Update handleCancelBooking.ts * Adds missing cascades * Improve booking seats changes (#6858) * Create sendCancelledSeatEmails * Draft attendee cancelled seat email * Send no longer attendee email to attendee * Send email to organizer when attendee cancels * Pass cloned event data to emails * Send booked email for first seat * Add seat reference uid from email link * Query for seatReferenceUId and add to cancel & reschedule links * WIP * Display proper attendee when rescheduling seats * Remove console.logs * Only check for already invited when not rescheduling * WIP sending reschedule email to just single attendee and owner * Merge branch 'main' into send-email-on-seats-attendee-changes * Remove console.logs * Add cloned event to seat emails * Do not show manage link for calendar event * First seat, have both attendees on calendar * WIP refactor booking seats reschedule logic * WIP Refactor handleSeats * Change relation of attendee & seat reference to a one-to-one * Migration with relationship change * Booking page handling unique seat references * Abstract to handleSeats * Remove console.logs and clean up * New migration file, delete on cascade * Check if attendee is already a part of the booking * Move deleting booking logic to `handleSeats` * When owner reschedule, move whole booking * Prevent owner from rescheduling if not enough seats * Add owner reschedule * Send reschedule email when moving to new timeslot * Add event data to reschedule email for seats * Remove DB changes from event manager * When a booking has no attendees then delete * Update calendar when merging bookings * Move both attendees and seat references when merging * Remove guest list from seats booking page * Update original booking when moving an attendee * Delete calendar and video events if no more attendees * Update or delete integrations when attendees cancel * Show no longer attendee if a single attendee cancels * Change booking to accepted if an attendee books on an empty booking * If booking in same slot then just return the booking * Clean up * Clean up * Remove booking select * Typos --------- Co-authored-by: zomars <zomars@me.com> * Fix migration table name * Add missing trpc import * Rename bookingSeatReferences to bookingSeat * Change relationship between Attendee & BookingSeat to one to one * Fix some merge conflicts * Minor merge artifact fixup * Add the right 'Person' type * Check on email, less (although still) editable than name * Removed calEvent.attendeeUniqueId * rename referenceUId -> referenceUid * Squashes migrations * Run cached installs Should still be faster. Ensures prisma client is up to date. * Solve attendee form on booking page * Remove unused code * Some type fixes * Squash migrations * Type fixes * Fix for reschedule/[uid] redirect * Fix e2e test * Solve double declaration of host * Solve lint errors * Drop constraint only if exists * Renamed UId to Uid * Explicit vs. implicit * Attempt to work around text flakiness by adding a little break between animations * Various bugfixes * Persistently apply seatReferenceUid (#7545) * Persistently apply seatReferenceUid * Small ts fix * Setup guards correctly * Type fixes * Fix render 0 in conditional * Test refactoring * Fix type on handleSeats * Fix handle seats conditional * Fix type inference * Update packages/features/bookings/lib/handleNewBooking.ts * Update apps/web/components/booking/pages/BookingPage.tsx * Fix type and missing logic for reschedule * Fix delete of calendar event and booking * Add handleSeats return type * Fix seats booking creation * Fall through normal booking for initial booking, handleSeats for secondary/reschedule * Simplification of fetching booking * Enable seats for round-robin events * A lot harder than I expected * ignore-owner-if-seat-reference-given * Return seatReferenceUid when second seat * negate userIsOwner * Fix booking seats with a link without bookingUid * Needed a time check otherwise the attendee will be in the older booking * Can't open dialog twice in test.. * Allow passing the booking ID from the server * Fixed isCancelled check, fixed test * Delete through cascade instead of multiple deletes --------- Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Peer Richelsen <peer@cal.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Efraín Rochín <roae.85@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
173 lines
6.4 KiB
TypeScript
173 lines
6.4 KiB
TypeScript
import type { Page } from "@playwright/test";
|
|
import { expect } from "@playwright/test";
|
|
import type { IncomingMessage, ServerResponse } from "http";
|
|
import { createServer } from "http";
|
|
import noop from "lodash/noop";
|
|
|
|
import { test } from "./fixtures";
|
|
|
|
export function todo(title: string) {
|
|
// eslint-disable-next-line playwright/no-skipped-test
|
|
test.skip(title, noop);
|
|
}
|
|
|
|
type Request = IncomingMessage & { body?: unknown };
|
|
type RequestHandlerOptions = { req: Request; res: ServerResponse };
|
|
type RequestHandler = (opts: RequestHandlerOptions) => void;
|
|
|
|
export function createHttpServer(opts: { requestHandler?: RequestHandler } = {}) {
|
|
const {
|
|
requestHandler = ({ res }) => {
|
|
res.writeHead(200, { "Content-Type": "application/json" });
|
|
res.write(JSON.stringify({}));
|
|
res.end();
|
|
},
|
|
} = opts;
|
|
const requestList: Request[] = [];
|
|
const server = createServer((req, res) => {
|
|
const buffer: unknown[] = [];
|
|
|
|
req.on("data", (data) => {
|
|
buffer.push(data);
|
|
});
|
|
req.on("end", () => {
|
|
const _req: Request = req;
|
|
// assume all incoming request bodies are json
|
|
const json = buffer.length ? JSON.parse(buffer.join("")) : undefined;
|
|
|
|
_req.body = json;
|
|
requestList.push(_req);
|
|
requestHandler({ req: _req, res });
|
|
});
|
|
});
|
|
|
|
// listen on random port
|
|
server.listen(0);
|
|
const port: number = (server.address() as any).port;
|
|
const url = `http://localhost:${port}`;
|
|
return {
|
|
port,
|
|
close: () => server.close(),
|
|
requestList,
|
|
url,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* When in need to wait for any period of time you can use waitFor, to wait for your expectations to pass.
|
|
*/
|
|
export async function waitFor(fn: () => Promise<unknown> | unknown, opts: { timeout?: number } = {}) {
|
|
let finished = false;
|
|
const timeout = opts.timeout ?? 5000; // 5s
|
|
const timeStart = Date.now();
|
|
while (!finished) {
|
|
try {
|
|
await fn();
|
|
finished = true;
|
|
} catch {
|
|
if (Date.now() - timeStart >= timeout) {
|
|
throw new Error("waitFor timed out");
|
|
}
|
|
await new Promise((resolve) => setTimeout(resolve, 0));
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function selectFirstAvailableTimeSlotNextMonth(page: Page) {
|
|
// Let current month dates fully render.
|
|
// There is a bug where if we don't let current month fully render and quickly click go to next month, current month get's rendered
|
|
// This doesn't seem to be replicable with the speed of a person, only during automation.
|
|
// It would also allow correct snapshot to be taken for current month.
|
|
// eslint-disable-next-line playwright/no-wait-for-timeout
|
|
await page.waitForTimeout(1000);
|
|
await page.click('[data-testid="incrementMonth"]');
|
|
// @TODO: Find a better way to make test wait for full month change render to end
|
|
// so it can click up on the right day, also when resolve remove other todos
|
|
// Waiting for full month increment
|
|
// eslint-disable-next-line playwright/no-wait-for-timeout
|
|
await page.waitForTimeout(1000);
|
|
// TODO: Find out why the first day is always booked on tests
|
|
await page.locator('[data-testid="day"][data-disabled="false"]').nth(1).click();
|
|
await page.locator('[data-testid="time"]').nth(0).click();
|
|
}
|
|
|
|
export async function selectSecondAvailableTimeSlotNextMonth(page: Page) {
|
|
// Let current month dates fully render.
|
|
// There is a bug where if we don't let current month fully render and quickly click go to next month, current month get's rendered
|
|
// This doesn't seem to be replicable with the speed of a person, only during automation.
|
|
// It would also allow correct snapshot to be taken for current month.
|
|
// eslint-disable-next-line playwright/no-wait-for-timeout
|
|
await page.waitForTimeout(1000);
|
|
await page.click('[data-testid="incrementMonth"]');
|
|
// @TODO: Find a better way to make test wait for full month change render to end
|
|
// so it can click up on the right day, also when resolve remove other todos
|
|
// Waiting for full month increment
|
|
// eslint-disable-next-line playwright/no-wait-for-timeout
|
|
await page.waitForTimeout(1000);
|
|
// TODO: Find out why the first day is always booked on tests
|
|
await page.locator('[data-testid="day"][data-disabled="false"]').nth(1).click();
|
|
await page.locator('[data-testid="time"]').nth(1).click();
|
|
}
|
|
|
|
async function bookEventOnThisPage(page: Page) {
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
|
await bookTimeSlot(page);
|
|
|
|
// Make sure we're navigated to the success page
|
|
await page.waitForNavigation({
|
|
url(url) {
|
|
return url.pathname.startsWith("/booking");
|
|
},
|
|
});
|
|
await expect(page.locator("[data-testid=success-page]")).toBeVisible();
|
|
}
|
|
|
|
export async function bookOptinEvent(page: Page) {
|
|
await page.locator('[data-testid="event-type-link"]:has-text("Opt in")').click();
|
|
await bookEventOnThisPage(page);
|
|
}
|
|
|
|
export async function bookFirstEvent(page: Page) {
|
|
// Click first event type
|
|
await page.click('[data-testid="event-type-link"]');
|
|
await bookEventOnThisPage(page);
|
|
}
|
|
|
|
export const bookTimeSlot = async (page: Page, opts?: { name?: string; email?: string }) => {
|
|
// --- fill form
|
|
await page.fill('[name="name"]', opts?.name ?? "Test Testson");
|
|
await page.fill('[name="email"]', opts?.email ?? "test@example.com");
|
|
await page.press('[name="email"]', "Enter");
|
|
};
|
|
// Provide an standalone localize utility not managed by next-i18n
|
|
export async function localize(locale: string) {
|
|
const localeModule = `../../public/static/locales/${locale}/common.json`;
|
|
const localeMap = await import(localeModule);
|
|
return (message: string) => {
|
|
if (message in localeMap) return localeMap[message];
|
|
throw "No locale found for the given entry message";
|
|
};
|
|
}
|
|
|
|
export const createNewEventType = async (page: Page, args: { eventTitle: string }) => {
|
|
await page.click("[data-testid=new-event-type]");
|
|
const eventTitle = args.eventTitle;
|
|
await page.fill("[name=title]", eventTitle);
|
|
await page.fill("[name=length]", "10");
|
|
await page.click("[type=submit]");
|
|
|
|
await page.waitForNavigation({
|
|
url(url) {
|
|
return url.pathname !== "/event-types";
|
|
},
|
|
});
|
|
};
|
|
|
|
export const createNewSeatedEventType = async (page: Page, args: { eventTitle: string }) => {
|
|
const eventTitle = args.eventTitle;
|
|
await createNewEventType(page, { eventTitle });
|
|
await page.locator('[data-testid="vertical-tab-event_advanced_tab_title"]').click();
|
|
await page.locator('[data-testid="offer-seats-toggle"]').click();
|
|
await page.locator('[data-testid="update-eventtype"]').click();
|
|
};
|