mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
161 lines
4.3 KiB
TypeScript
161 lines
4.3 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
import { prisma } from "@rallly/database";
|
|
import { load } from "cheerio";
|
|
|
|
import { captureEmailHTML } from "./mailpit/mailpit";
|
|
|
|
const testUserEmail = "test@example.com";
|
|
|
|
/**
|
|
* Get the 6-digit code from the email
|
|
* @returns 6-digit code
|
|
*/
|
|
const getCode = async () => {
|
|
const html = await captureEmailHTML(testUserEmail);
|
|
|
|
const $ = load(html);
|
|
|
|
return $("#code").text().trim();
|
|
};
|
|
|
|
test.describe.serial(() => {
|
|
test.afterAll(async () => {
|
|
try {
|
|
await prisma.user.deleteMany({
|
|
where: {
|
|
email: testUserEmail,
|
|
},
|
|
});
|
|
} catch {
|
|
// User doesn't exist
|
|
}
|
|
});
|
|
|
|
test.describe("new user", () => {
|
|
test("shows that user doesn't exist yet", async ({ page }) => {
|
|
await page.goto("/login");
|
|
|
|
// your login page test logic
|
|
await page
|
|
.getByPlaceholder("jessie.smith@example.com")
|
|
.fill(testUserEmail);
|
|
|
|
await page.getByRole("button", { name: "Login with Email" }).click();
|
|
|
|
// Make sure the user doesn't exist yet and that logging in is not possible
|
|
await expect(
|
|
page.getByText("A user with that email doesn't exist"),
|
|
).toBeVisible();
|
|
});
|
|
|
|
test("user registration", async ({ page }) => {
|
|
await page.goto("/register");
|
|
|
|
await page.getByText("Create an account").waitFor();
|
|
|
|
await page.getByPlaceholder("Jessie Smith").fill("Test User");
|
|
await page
|
|
.getByPlaceholder("jessie.smith@example.com")
|
|
.fill(testUserEmail);
|
|
|
|
await page.getByRole("button", { name: "Continue", exact: true }).click();
|
|
|
|
const codeInput = page.getByPlaceholder("Enter your 6-digit code");
|
|
|
|
const code = await getCode();
|
|
|
|
await codeInput.fill(code);
|
|
|
|
await page.getByRole("button", { name: "Continue", exact: true }).click();
|
|
|
|
await page.waitForURL("/");
|
|
});
|
|
});
|
|
|
|
test.describe("existing user", () => {
|
|
test("can't register with the same email", async ({ page }) => {
|
|
await page.goto("/register");
|
|
|
|
await page.getByText("Create an account").waitFor();
|
|
|
|
await page.getByPlaceholder("Jessie Smith").fill("Test User");
|
|
await page
|
|
.getByPlaceholder("jessie.smith@example.com")
|
|
.fill(testUserEmail);
|
|
|
|
await page.getByRole("button", { name: "Continue", exact: true }).click();
|
|
|
|
await expect(
|
|
page.getByText("A user with that email already exists"),
|
|
).toBeVisible();
|
|
});
|
|
|
|
test("can login with magic link", async ({ page }) => {
|
|
await page.goto("/login");
|
|
|
|
await page
|
|
.getByPlaceholder("jessie.smith@example.com")
|
|
.fill(testUserEmail);
|
|
|
|
await page.getByRole("button", { name: "Login with Email" }).click();
|
|
|
|
const html = await captureEmailHTML(testUserEmail);
|
|
|
|
const $ = load(html);
|
|
|
|
const magicLink = $("#magicLink").attr("href");
|
|
|
|
if (!magicLink) {
|
|
throw new Error("Magic link not found");
|
|
}
|
|
|
|
await page.goto(magicLink);
|
|
|
|
await page.getByRole("button", { name: "Continue", exact: true }).click();
|
|
|
|
await page.waitForURL("/");
|
|
|
|
await expect(page.getByText("Test User")).toBeVisible();
|
|
});
|
|
|
|
test("can login with verification code", async ({ page }) => {
|
|
await page.goto("/login");
|
|
|
|
await page
|
|
.getByPlaceholder("jessie.smith@example.com")
|
|
.fill(testUserEmail);
|
|
|
|
await page.getByRole("button", { name: "Login with Email" }).click();
|
|
|
|
const code = await getCode();
|
|
|
|
await page.getByPlaceholder("Enter your 6-digit code").fill(code);
|
|
|
|
await page.getByRole("button", { name: "Continue", exact: true }).click();
|
|
|
|
await page.waitForURL("/");
|
|
|
|
await expect(page.getByText("Test User")).toBeVisible();
|
|
});
|
|
|
|
test("allow using different case in email", async ({ page }) => {
|
|
await page.goto("/login");
|
|
|
|
await page
|
|
.getByPlaceholder("jessie.smith@example.com")
|
|
.fill("Test@example.com");
|
|
|
|
await page.getByRole("button", { name: "Login with Email" }).click();
|
|
|
|
const code = await getCode();
|
|
|
|
await page.getByPlaceholder("Enter your 6-digit code").fill(code);
|
|
|
|
await page.getByRole("button", { name: "Continue", exact: true }).click();
|
|
|
|
await page.waitForURL("/");
|
|
|
|
await expect(page.getByText("Test User")).toBeVisible();
|
|
});
|
|
});
|
|
});
|