import { test, expect } from '@playwright/test'; import { clickEverythingOnPage } from '../../helpers/click-everything'; import { login, navigateTo, PORT_SLUG } from '../smoke/helpers'; test.describe('exhaustive: berth reservations', () => { test.beforeEach(async ({ page }) => { await login(page, 'super_admin'); }); test('berths list — reservation-related affordances are clickable', async ({ page }) => { await navigateTo(page, '/berths'); await page.waitForLoadState('networkidle'); const result = await clickEverythingOnPage(page); expect(result.errors, JSON.stringify(result.errors, null, 2)).toEqual([]); }); test('berth detail — reservations tab opens and is interactive', async ({ page }) => { await navigateTo(page, '/berths'); await page.waitForLoadState('networkidle'); const firstRow = page.locator('tbody tr a, tbody tr button').first(); if (!(await firstRow.isVisible({ timeout: 3000 }).catch(() => false))) { test.skip(true, 'no berths seeded'); return; } await firstRow.click(); await page.waitForURL(new RegExp(`/${PORT_SLUG}/berths/[^/]+`), { timeout: 10_000 }); await page.waitForLoadState('networkidle'); const reservationsTab = page.getByRole('tab', { name: /reservations/i }).first(); if (await reservationsTab.isVisible({ timeout: 3000 }).catch(() => false)) { await reservationsTab.click(); await page.waitForLoadState('networkidle'); } const result = await clickEverythingOnPage(page); expect(result.errors, JSON.stringify(result.errors, null, 2)).toEqual([]); }); test('reserve dialog opens and closes', async ({ page }) => { await navigateTo(page, '/berths'); await page.waitForLoadState('networkidle'); const firstRow = page.locator('tbody tr a, tbody tr button').first(); if (!(await firstRow.isVisible({ timeout: 3000 }).catch(() => false))) { test.skip(true, 'no berths seeded'); return; } await firstRow.click(); await page.waitForLoadState('networkidle'); const reserveBtn = page.getByRole('button', { name: /reserve|new reservation/i }).first(); if (await reserveBtn.isVisible({ timeout: 3000 }).catch(() => false)) { await reserveBtn.click(); const dialog = page.getByRole('dialog'); await expect(dialog).toBeVisible({ timeout: 5000 }); const cancel = dialog.getByRole('button', { name: /cancel|close/i }).first(); await cancel.click(); await expect(dialog).toBeHidden({ timeout: 5000 }); } }); });