import { test, expect } from '@playwright/test'; import { mockAuthRoutes } from '../fixtures'; const uniqueEmail = () => `betty+e2e-${Date.now()}@cartsnitch.test`; test.describe('J1: Registration and Login', () => { test('shows success message after registration', async ({ page }) => { await mockAuthRoutes(page, false); await page.goto('/register'); await page.fill('[placeholder="Full Name"]', 'Betty Tester'); await page.fill('[placeholder="Email"]', uniqueEmail()); await page.fill('[placeholder="Password (min. 8 characters)"]', 'TestPass123!'); await page.click('button[type="submit"]'); // Registration now shows "Account created! Please sign in." message await expect(page.locator('.bg-red-50')).toContainText('Account created! Please sign in.'); }); test('shows validation error when registration fields are empty', async ({ page }) => { await page.goto('/register'); await page.click('button[type="submit"]'); await expect(page.locator('.bg-red-50')).toContainText('Please fill in all fields'); }); test('can navigate from register to login', async ({ page }) => { await page.goto('/register'); await page.getByRole('link', { name: /sign in/i }).click(); await expect(page).toHaveURL(/\/login/); await expect(page.getByRole('heading', { name: /cartsnitch/i })).toBeVisible(); }); test('can sign in with valid credentials', async ({ page }) => { await mockAuthRoutes(page, true); const email = uniqueEmail(); await page.goto('/register'); await page.fill('[placeholder="Full Name"]', 'Login Betty'); await page.fill('[placeholder="Email"]', email); await page.fill('[placeholder="Password (min. 8 characters)"]', 'TestPass123!'); await page.click('button[type="submit"]'); await expect(page.locator('.bg-red-50')).toContainText('Account created! Please sign in.'); await page.goto('/login'); await page.fill('[placeholder="Email"]', 'test@cartsnitch.test'); await page.fill('[placeholder="Password"]', 'TestPass123!'); await page.click('button[type="submit"]'); await expect(page).toHaveURL('http://localhost:5173/'); }); });