feat: production Docker, Playwright tests, settings API, and bug fixes

- Add user management endpoints (register, list, delete, change password)
- Add API key management (create, list, delete)
- Add settings persistence endpoints (get, put)
- Wire settings dialog to real backend (People, API Keys, System, Security)
- Fix login auth flow (window.location.href for full reload)
- Fix download URLs returning 401 (make public since UUIDs are unguessable)
- Fix border tool shadowColor validation (accept 6-8 hex digits)
- Fix remove-bg alpha matting fallback (retry without on failure)
- Fix AI tool silent fallbacks (report errors instead of no-ops)
- Add checkerboard background to before/after slider for transparency
- Add progress bars to all AI tool components
- Add Playwright E2E test suite (131 tests across 9 test files)
- Rewrite Dockerfile for production (tsx runtime, pre-baked AI models)
- Add .dockerignore for faster builds
- Add proper accessible labels to login form
This commit is contained in:
Siddharth Kumar Sah
2026-03-22 19:28:57 +08:00
parent 06c5ee5996
commit ce03aad10f
37 changed files with 2607 additions and 122 deletions
+86
View File
@@ -0,0 +1,86 @@
import { test, expect } from "./helpers";
test.describe("Smoke tests", () => {
test("login page renders correctly", async ({ page }) => {
await page.goto("/login");
await expect(page.getByRole("heading", { name: /login/i })).toBeVisible();
await expect(page.getByLabel("Username")).toBeVisible();
await expect(page.getByLabel("Password")).toBeVisible();
await expect(
page.getByRole("button", { name: /login/i }),
).toBeVisible();
// Right panel marketing text
await expect(page.getByText("Your one-stop-shop")).toBeVisible();
});
test("can log in with admin credentials", async ({ page }) => {
await page.goto("/login");
await page.getByLabel("Username").fill("admin");
await page.getByLabel("Password").fill("admin");
await page.getByRole("button", { name: /login/i }).click();
// Login does window.location.href = "/" (full page reload)
await page.waitForURL("/", { timeout: 15_000 });
await expect(page).toHaveURL("/");
});
test("shows error on invalid credentials", async ({ page }) => {
await page.goto("/login");
await page.getByLabel("Username").fill("wrong");
await page.getByLabel("Password").fill("wrong");
await page.getByRole("button", { name: /login/i }).click();
// Should show error message
await expect(page.getByText(/invalid|incorrect|error/i)).toBeVisible();
// Should stay on login page
await expect(page).toHaveURL(/\/login/);
});
test("login button is disabled when fields are empty", async ({ page }) => {
await page.goto("/login");
const loginBtn = page.getByRole("button", { name: /login/i });
await expect(loginBtn).toBeDisabled();
// Fill only username
await page.getByLabel("Username").fill("admin");
await expect(loginBtn).toBeDisabled();
// Fill password too
await page.getByLabel("Password").fill("admin");
await expect(loginBtn).toBeEnabled();
});
test("unauthenticated user is redirected to login", async ({ browser }) => {
// Use a fresh context without storageState to test unauthenticated access
const context = await browser.newContext({ storageState: undefined });
const page = await context.newPage();
await page.goto("/");
await expect(page).toHaveURL(/\/login/);
await context.close();
});
test("home page loads after login", async ({ loggedInPage: page }) => {
await expect(page).toHaveURL("/");
// The dropzone should be visible
await expect(page.getByText("Upload from computer")).toBeVisible();
await expect(page.getByText("Drop files here")).toBeVisible();
});
test("sidebar is visible on desktop", async ({ loggedInPage: page }) => {
const sidebar = page.locator("aside");
await expect(sidebar).toBeVisible();
// Check sidebar labels
await expect(sidebar.getByText("Tools")).toBeVisible();
await expect(sidebar.getByText("Grid")).toBeVisible();
await expect(sidebar.getByText("Automate")).toBeVisible();
await expect(sidebar.getByText("Files")).toBeVisible();
await expect(sidebar.getByText("Help")).toBeVisible();
await expect(sidebar.getByText("Settings")).toBeVisible();
});
});