The submodule collapse was only half applied: .gitmodules was deleted but backend/ and frontend/ were still recorded as gitlinks, so none of their files were tracked. Replace the gitlinks with the real trees. Also untrack .env (it carried placeholder secrets) in favour of a tracked .env.example, drop the committed __pycache__, and narrow the blanket *.png ignore that would have swallowed design assets. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
118 lines
3.4 KiB
TypeScript
118 lines
3.4 KiB
TypeScript
import { expect, type Page, test } from "@playwright/test"
|
|
import { firstSuperuser, firstSuperuserPassword } from "./config.ts"
|
|
import { randomPassword } from "./utils/random.ts"
|
|
|
|
test.use({ storageState: { cookies: [], origins: [] } })
|
|
|
|
const fillForm = async (page: Page, email: string, password: string) => {
|
|
await page.getByTestId("email-input").fill(email)
|
|
await page.getByTestId("password-input").fill(password)
|
|
}
|
|
|
|
const verifyInput = async (page: Page, testId: string) => {
|
|
const input = page.getByTestId(testId)
|
|
await expect(input).toBeVisible()
|
|
await expect(input).toHaveText("")
|
|
await expect(input).toBeEditable()
|
|
}
|
|
|
|
test("Inputs are visible, empty and editable", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await verifyInput(page, "email-input")
|
|
await verifyInput(page, "password-input")
|
|
})
|
|
|
|
test("Log In button is visible", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await expect(page.getByRole("button", { name: "Log In" })).toBeVisible()
|
|
})
|
|
|
|
test("Forgot Password link is visible", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await expect(
|
|
page.getByRole("link", { name: "Forgot your password?" }),
|
|
).toBeVisible()
|
|
})
|
|
|
|
test("Log in with valid email and password ", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await fillForm(page, firstSuperuser, firstSuperuserPassword)
|
|
await page.getByRole("button", { name: "Log In" }).click()
|
|
|
|
await page.waitForURL("/")
|
|
|
|
await expect(
|
|
page.getByText("Welcome back, nice to see you again!"),
|
|
).toBeVisible()
|
|
})
|
|
|
|
test("Log in with invalid email", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await fillForm(page, "invalidemail", firstSuperuserPassword)
|
|
await page.getByRole("button", { name: "Log In" }).click()
|
|
|
|
await expect(page.getByText("Invalid email address")).toBeVisible()
|
|
})
|
|
|
|
test("Log in with invalid password", async ({ page }) => {
|
|
const password = randomPassword()
|
|
|
|
await page.goto("/login")
|
|
await fillForm(page, firstSuperuser, password)
|
|
await page.getByRole("button", { name: "Log In" }).click()
|
|
|
|
await expect(page.getByText("Incorrect email or password")).toBeVisible()
|
|
})
|
|
|
|
test("Successful log out", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await fillForm(page, firstSuperuser, firstSuperuserPassword)
|
|
await page.getByRole("button", { name: "Log In" }).click()
|
|
|
|
await page.waitForURL("/")
|
|
|
|
await expect(
|
|
page.getByText("Welcome back, nice to see you again!"),
|
|
).toBeVisible()
|
|
|
|
await page.getByTestId("user-menu").click()
|
|
await page.getByRole("menuitem", { name: "Log out" }).click()
|
|
await page.waitForURL("/login")
|
|
})
|
|
|
|
test("Logged-out user cannot access protected routes", async ({ page }) => {
|
|
await page.goto("/login")
|
|
|
|
await fillForm(page, firstSuperuser, firstSuperuserPassword)
|
|
await page.getByRole("button", { name: "Log In" }).click()
|
|
|
|
await page.waitForURL("/")
|
|
|
|
await expect(
|
|
page.getByText("Welcome back, nice to see you again!"),
|
|
).toBeVisible()
|
|
|
|
await page.getByTestId("user-menu").click()
|
|
await page.getByRole("menuitem", { name: "Log out" }).click()
|
|
await page.waitForURL("/login")
|
|
|
|
await page.goto("/settings")
|
|
await page.waitForURL("/login")
|
|
})
|
|
|
|
test("Redirects to /login when token is wrong", async ({ page }) => {
|
|
await page.goto("/settings")
|
|
await page.evaluate(() => {
|
|
localStorage.setItem("access_token", "invalid_token")
|
|
})
|
|
await page.goto("/settings")
|
|
await page.waitForURL("/login")
|
|
await expect(page).toHaveURL("/login")
|
|
})
|