// @ts-check const { test, expect } = require('@playwright/test'); const fixtures = JSON.parse(process.env.E2E_FIXTURES || '{}'); /** * Attach a CDP virtual authenticator (CTAP2, internal, discoverable/resident key). * Returns { cdpSession, authenticatorId } for cleanup. */ async function addVirtualAuthenticator(page) { const cdpSession = await page.context().newCDPSession(page); await cdpSession.send('WebAuthn.enable'); const { authenticatorId } = await cdpSession.send('WebAuthn.addVirtualAuthenticator', { options: { protocol: 'ctap2', transport: 'internal', hasResidentKey: true, hasUserVerification: true, isUserVerified: true, automaticPresenceSimulation: true, }, }); return { cdpSession, authenticatorId }; } /** * Remove a virtual authenticator and detach the CDP session. */ async function removeVirtualAuthenticator(cdpSession, authenticatorId) { if (cdpSession && authenticatorId) { try { await cdpSession.send('WebAuthn.removeVirtualAuthenticator', { authenticatorId }); await cdpSession.send('WebAuthn.disable'); await cdpSession.detach(); } catch { // ignore cleanup errors (page may already be closed) } } } /** * Log in with username/password and land on the credentials page. */ async function loginWithPassword(page, username, password) { await page.goto('/login'); await page.fill('#username', username); await page.fill('#password', password); await page.click('form[hx-post="/login/password"] button[type="submit"]'); await page.waitForURL('**/manage/credentials', { timeout: 5000 }); } test.describe('WebAuthn passkey flows', () => { test.describe('Registration', () => { test('register a passkey from credentials page', async ({ page }) => { let cdpSession, authenticatorId; try { ({ cdpSession, authenticatorId } = await addVirtualAuthenticator(page)); await loginWithPassword(page, fixtures.webauthn_username, fixtures.webauthn_password); // Before registration, page should show no security keys await expect(page.locator('#webauthn-list')).toContainText('No security keys registered'); // Click the register button — the virtual authenticator handles the ceremony await page.click('#webauthn-register-btn'); // Registration triggers window.location.reload() on success await page.waitForURL('**/manage/credentials', { timeout: 10000 }); // After reload the passkey should appear in the list await expect(page.locator('#webauthn-list li')).toHaveCount(1, { timeout: 5000 }); } finally { await removeVirtualAuthenticator(cdpSession, authenticatorId); } }); test('registered passkey appears in credential list', async ({ page }) => { let cdpSession, authenticatorId; try { ({ cdpSession, authenticatorId } = await addVirtualAuthenticator(page)); await loginWithPassword(page, fixtures.webauthn_username, fixtures.webauthn_password); // Register a passkey await page.click('#webauthn-register-btn'); await page.waitForURL('**/manage/credentials', { timeout: 10000 }); // Exactly one credential should be listed const items = page.locator('#webauthn-list li'); await expect(items).toHaveCount(1, { timeout: 5000 }); // The list item should be visible await expect(items.first()).toBeVisible(); } finally { await removeVirtualAuthenticator(cdpSession, authenticatorId); } }); }); test.describe('Authentication', () => { test('full round-trip: register passkey, logout, login with passkey', async ({ page, request, }) => { let cdpSession, authenticatorId; try { ({ cdpSession, authenticatorId } = await addVirtualAuthenticator(page)); // Step 1: Log in with password and register a passkey await loginWithPassword(page, fixtures.webauthn_username, fixtures.webauthn_password); await page.click('#webauthn-register-btn'); await page.waitForURL('**/manage/credentials', { timeout: 10000 }); // Verify the passkey is in the list await expect(page.locator('#webauthn-list li')).toHaveCount(1, { timeout: 5000 }); // Step 2: Logout await request.post('/logout'); // Step 3: Go to login page and authenticate with the passkey (usernameless) await page.goto('/login'); await expect(page.locator('#webauthn-login-btn')).toBeVisible(); // No username input needed — the passkey picker handles identity await page.click('#webauthn-login-btn'); // Should redirect to /manage/credentials after successful passkey login await page.waitForURL('**/manage/credentials', { timeout: 10000 }); // Step 4: Verify we are authenticated await expect(page.locator('h1')).toHaveText('Credentials'); } finally { await removeVirtualAuthenticator(cdpSession, authenticatorId); } }); test('session established after passkey login', async ({ page, request }) => { let cdpSession, authenticatorId; try { ({ cdpSession, authenticatorId } = await addVirtualAuthenticator(page)); // Register a passkey via password login first await loginWithPassword(page, fixtures.webauthn_username, fixtures.webauthn_password); await page.click('#webauthn-register-btn'); await page.waitForURL('**/manage/credentials', { timeout: 10000 }); await expect(page.locator('#webauthn-list li')).toHaveCount(1, { timeout: 5000 }); // Logout await request.post('/logout'); // Login with passkey await page.goto('/login'); await page.click('#webauthn-login-btn'); await page.waitForURL('**/manage/credentials', { timeout: 10000 }); // Navigate to credentials page again — should NOT redirect to login await page.goto('/manage/credentials'); await page.waitForURL('**/manage/credentials', { timeout: 5000 }); await expect(page.locator('h1')).toHaveText('Credentials'); } finally { await removeVirtualAuthenticator(cdpSession, authenticatorId); } }); }); test.describe('Deletion', () => { test('delete a passkey via API after registration', async ({ page, request }) => { let cdpSession, authenticatorId; try { ({ cdpSession, authenticatorId } = await addVirtualAuthenticator(page)); await loginWithPassword(page, fixtures.webauthn_username, fixtures.webauthn_password); // Register a passkey await page.click('#webauthn-register-btn'); await page.waitForURL('**/manage/credentials', { timeout: 10000 }); await expect(page.locator('#webauthn-list li')).toHaveCount(1, { timeout: 5000 }); // The credentials template does not expose a delete button in the UI. // Test the DELETE API endpoint directly instead. const credResponse = await request.get('/manage/credentials'); const html = await credResponse.text(); // Extract the credential ID from the page HTML (data attribute or link) // The template renders