* Extracted UI related logic on the DatePicker, stripped out all logic * wip * fixed small regression due to merge * Fix alignment of the chevrons * Added isToday dot, added onMonthChange so we can fetch this month slots * Added includedDates to inverse excludedDates * removed trpcState * Improvements to the state * All params are now dynamic * This builds the flat map so not all paths block on every new build * Added requiresConfirmation * Correctly take into account getFilteredTimes to make the calendar function * Rewritten team availability, seems to work * Circumvent i18n flicker by showing the loader instead * 'You can remove this code. Its not being used now' - Hariom * Nailed a persistent little bug, new Date() caused the current day to flicker on and off * TS fixes * Fix some eventType details in AvailableTimes * '5 / 6 Seats Available' instead of '6 / Seats Available' * More type fixes * Removed unrelated merge artifact * Use WEBAPP_URL instead of hardcoded * Next round of TS fixes * I believe this was mistyped * Temporarily disabled rescheduling 'this is when you originally scheduled', so removed dep * Sorting some dead code * This page has a lot of red, not all related to this PR * A PR to your PR (#3067) * Cleanup * Cleanup * Uses zod to parse params * Type fixes * Fixes ISR * E2E fixes * Disabled dynamic bookings until post v1.7 * More test fixes * Fixed border position (transparent border) to prevent dot from jumping - and possibly fix spacing * Disabled style nitpicks * Delete useSlots.ts Removed early design artifact * Unlock DatePicker locale * Adds mini spinner to DatePicker Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com>
159 lines
5.7 KiB
TypeScript
159 lines
5.7 KiB
TypeScript
import { expect } from "@playwright/test";
|
|
import { BookingStatus } from "@prisma/client";
|
|
|
|
import prisma from "@lib/prisma";
|
|
|
|
import { test } from "./lib/fixtures";
|
|
import { selectFirstAvailableTimeSlotNextMonth } from "./lib/testUtils";
|
|
|
|
const IS_STRIPE_ENABLED = !!(
|
|
process.env.STRIPE_CLIENT_ID &&
|
|
process.env.NEXT_PUBLIC_STRIPE_PUBLIC_KEY &&
|
|
process.env.STRIPE_PRIVATE_KEY
|
|
);
|
|
|
|
test.describe.configure({ mode: "parallel" });
|
|
|
|
test.describe("Reschedule Tests", async () => {
|
|
test.afterEach(async ({ users }) => {
|
|
await users.deleteAll();
|
|
});
|
|
test("Should do a booking request reschedule from /bookings", async ({ page, users, bookings }) => {
|
|
const user = await users.create();
|
|
|
|
const booking = await bookings.create(user.id, user.username, user.eventTypes[0].id!, {
|
|
status: BookingStatus.ACCEPTED,
|
|
});
|
|
|
|
await user.login();
|
|
await page.goto("/bookings/upcoming");
|
|
|
|
await page.locator('[data-testid="edit_booking"]').nth(0).click();
|
|
|
|
await page.locator('[data-testid="reschedule_request"]').click();
|
|
|
|
await page.fill('[data-testid="reschedule_reason"]', "I can't longer have it");
|
|
|
|
await page.locator('button[data-testid="send_request"]').click();
|
|
await expect(page.locator('[id="modal-title"]')).not.toBeVisible();
|
|
|
|
const updatedBooking = await booking.self();
|
|
|
|
expect(updatedBooking.rescheduled).toBe(true);
|
|
expect(updatedBooking.cancellationReason).toBe("I can't longer have it");
|
|
expect(updatedBooking.status).toBe(BookingStatus.CANCELLED);
|
|
await booking.delete();
|
|
});
|
|
|
|
test("Should display former time when rescheduling availability", async ({ page, users, bookings }) => {
|
|
test.skip(true, "TODO: Re-enable after v1.7 launch");
|
|
const user = await users.create();
|
|
const booking = await bookings.create(user.id, user.username, user.eventTypes[0].id!, {
|
|
status: BookingStatus.CANCELLED,
|
|
rescheduled: true,
|
|
});
|
|
|
|
await page.goto(`/${user.username}/${user.eventTypes[0].slug}?rescheduleUid=${booking.uid}`);
|
|
const formerTimeElement = page.locator('[data-testid="former_time_p_desktop"]');
|
|
await expect(formerTimeElement).toBeVisible();
|
|
await booking.delete();
|
|
});
|
|
|
|
test("Should display request reschedule send on bookings/cancelled", async ({ page, users, bookings }) => {
|
|
const user = await users.create();
|
|
const booking = await bookings.create(user.id, user.username, user.eventTypes[0].id, {
|
|
status: BookingStatus.CANCELLED,
|
|
rescheduled: true,
|
|
});
|
|
|
|
await user.login();
|
|
await page.goto("/bookings/cancelled");
|
|
|
|
const requestRescheduleSentElement = page.locator('[data-testid="request_reschedule_sent"]').nth(1);
|
|
await expect(requestRescheduleSentElement).toBeVisible();
|
|
await booking.delete();
|
|
});
|
|
|
|
test("Should do a reschedule from user owner", async ({ page, users, bookings }) => {
|
|
const user = await users.create();
|
|
const [eventType] = user.eventTypes;
|
|
const booking = await bookings.create(user.id, user.username, eventType.id, {
|
|
status: BookingStatus.CANCELLED,
|
|
rescheduled: true,
|
|
});
|
|
|
|
await page.goto(`/${user.username}/${eventType.slug}?rescheduleUid=${booking.uid}`);
|
|
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
|
|
|
await expect(page.locator('[name="name"]')).toBeDisabled();
|
|
await expect(page.locator('[name="email"]')).toBeDisabled();
|
|
await expect(page.locator('[name="rescheduleReason"]')).toBeDisabled();
|
|
|
|
await page.locator('[data-testid="confirm-reschedule-button"]').click();
|
|
|
|
await expect(page.locator("[data-testid=success-page]")).toBeVisible();
|
|
|
|
// NOTE: remove if old booking should not be deleted
|
|
expect(await booking.self()).toBeNull();
|
|
|
|
const newBooking = await prisma.booking.findFirst({ where: { fromReschedule: booking.uid } });
|
|
expect(newBooking).not.toBeNull();
|
|
await prisma.booking.delete({ where: { id: newBooking?.id } });
|
|
});
|
|
|
|
test("Unpaid rescheduling should go to payment page", async ({ page, users, bookings, payments }) => {
|
|
// eslint-disable-next-line playwright/no-skipped-test
|
|
test.skip(!IS_STRIPE_ENABLED, "Skipped as Stripe is not installed");
|
|
const user = await users.create();
|
|
await user.login();
|
|
await user.getPaymentCredential();
|
|
const eventType = user.eventTypes.find((e) => e.slug === "paid")!;
|
|
const booking = await bookings.create(user.id, user.username, eventType.id, {
|
|
rescheduled: true,
|
|
status: BookingStatus.CANCELLED,
|
|
paid: false,
|
|
});
|
|
|
|
const payment = await payments.create(booking.id);
|
|
await page.goto(`/${user.username}/${eventType.slug}?rescheduleUid=${booking.uid}`);
|
|
|
|
await selectFirstAvailableTimeSlotNextMonth(page);
|
|
|
|
await page.locator('[data-testid="confirm-reschedule-button"]').click();
|
|
|
|
await page.waitForNavigation({
|
|
url(url) {
|
|
return url.pathname.indexOf("/payment") > -1;
|
|
},
|
|
});
|
|
|
|
await expect(page).toHaveURL(/.*payment/);
|
|
await payment.delete();
|
|
});
|
|
|
|
test("Paid rescheduling should go to success page", async ({ page, users, bookings, payments }) => {
|
|
const user = await users.create();
|
|
await user.login();
|
|
await user.getPaymentCredential();
|
|
await users.logout();
|
|
const eventType = user.eventTypes.find((e) => e.slug === "paid")!;
|
|
const booking = await bookings.create(user.id, user.username, eventType.id, {
|
|
rescheduled: true,
|
|
status: BookingStatus.CANCELLED,
|
|
paid: true,
|
|
});
|
|
|
|
const payment = await payments.create(booking.id);
|
|
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(/.*success/);
|
|
|
|
await payment.delete();
|
|
});
|
|
});
|