cal.pub0.org/apps/web/playwright/booking-pages.test.ts

115 lines
3.0 KiB
TypeScript
Raw Normal View History

import { expect, test } from "@playwright/test";
import prisma from "@lib/prisma";
2022-03-08 22:40:31 +00:00
import { selectFirstAvailableTimeSlotNextMonth, todo } from "./lib/testUtils";
const deleteBookingsByEmail = async (email: string) =>
prisma.booking.deleteMany({
where: {
user: {
email,
},
},
});
test.describe("free user", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/free");
});
test.afterEach(async () => {
// delete test bookings
await deleteBookingsByEmail("free@example.com");
});
test("only one visible event", async ({ page }) => {
await expect(page.locator(`[href="/free/30min"]`)).toBeVisible();
await expect(page.locator(`[href="/free/60min"]`)).not.toBeVisible();
});
test("cannot book same slot multiple times", async ({ page }) => {
// Click first event type
await page.click('[data-testid="event-type-link"]');
2022-03-08 22:40:31 +00:00
await selectFirstAvailableTimeSlotNextMonth(page);
// Navigate to book page
await page.waitForNavigation({
url(url) {
return url.pathname.endsWith("/book");
},
});
// save booking url
const bookingUrl: string = page.url();
const bookTimeSlot = async () => {
// --- fill form
await page.fill('[name="name"]', "Test Testson");
await page.fill('[name="email"]', "test@example.com");
await page.press('[name="email"]', "Enter");
};
// book same time spot twice
await bookTimeSlot();
// Make sure we're navigated to the success page
await page.waitForNavigation({
url(url) {
return url.pathname.endsWith("/success");
},
});
// return to same time spot booking page
await page.goto(bookingUrl);
// book same time spot again
await bookTimeSlot();
// check for error message
await expect(page.locator("[data-testid=booking-fail]")).toBeVisible();
});
todo("`/free/30min` is bookable");
2021-12-13 23:10:10 +00:00
todo("`/free/60min` is not bookable");
});
test.describe("pro user", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/pro");
});
test.afterEach(async () => {
// delete test bookings
await deleteBookingsByEmail("pro@example.com");
});
test("pro user's page has at least 2 visible events", async ({ page }) => {
const $eventTypes = await page.$$("[data-testid=event-types] > *");
expect($eventTypes.length).toBeGreaterThanOrEqual(2);
});
test("book an event first day in next month", async ({ page }) => {
// Click first event type
await page.click('[data-testid="event-type-link"]');
2022-03-08 22:40:31 +00:00
await selectFirstAvailableTimeSlotNextMonth(page);
// --- fill form
await page.fill('[name="name"]', "Test Testson");
await page.fill('[name="email"]', "test@example.com");
await page.press('[name="email"]', "Enter");
// Make sure we're navigated to the success page
await page.waitForNavigation({
url(url) {
return url.pathname.endsWith("/success");
},
});
});
2021-12-13 23:10:10 +00:00
todo("Can reschedule the recently created booking");
2021-12-13 23:10:10 +00:00
todo("Can cancel the recently created booking");
});