import { test, expect } from '@playwright/test'; import { login } from './helpers/auth'; test.describe('Plans', () => { test.beforeEach(async ({ page }) => { await login(page); await page.goto('/plans'); await page.waitForLoadState('networkidle'); }); test('plans page renders with header and table', async ({ page }) => { await expect(page.locator('h1:has-text("Plans")')).toBeVisible(); await expect(page.locator('table')).toBeVisible(); await expect(page.locator('[data-testid="btn-add-plan"]')).toBeVisible(); }); test('plans list loads rows from API', async ({ page }) => { // Wait for data to load await page.waitForTimeout(3000); const rows = page.locator('[data-testid="plan-row"]'); const count = await rows.count(); // Demo tenant has seeded plans expect(count).toBeGreaterThan(0); }); test('add plan modal opens and submits', async ({ page }) => { await page.click('[data-testid="btn-add-plan"]'); // Modal should appear await expect(page.locator('[data-testid="modal-create-plan"]')).toBeVisible({ timeout: 5000 }); // Fill form with real API fields const planName = `E2E Plan ${Date.now()}`; await page.fill('[data-testid="input-plan-name"]', planName); await page.selectOption('[data-testid="select-plan-type"]', 'PREPAID'); await page.fill('[data-testid="input-plan-speed-down"]', '50'); await page.fill('[data-testid="input-plan-speed-up"]', '20'); await page.fill('[data-testid="input-plan-price"]', '1499'); await page.fill('[data-testid="input-plan-description"]', 'E2E test plan'); // Submit await page.click('[data-testid="btn-submit-create"]'); // Wait for modal to close (API call + state update) await expect(page.locator('[data-testid="modal-create-plan"]')).not.toBeVisible({ timeout: 10000 }); // New plan should appear in the table await page.waitForTimeout(1000); await expect(page.locator(`text=${planName}`)).toBeVisible({ timeout: 5000 }); }); test('edit plan modal opens and submits', async ({ page }) => { await page.waitForTimeout(2000); const editBtns = page.locator('[data-testid="btn-edit-plan"]'); const count = await editBtns.count(); expect(count).toBeGreaterThan(0); // Click first edit button await editBtns.first().click(); // Edit modal should open await expect(page.locator('[data-testid="modal-edit-plan"]')).toBeVisible({ timeout: 5000 }); await expect(page.locator('[data-testid="input-edit-name"]')).toBeVisible(); // Change download speed await page.fill('[data-testid="input-edit-speed-down"]', '100'); // Submit await page.click('[data-testid="btn-submit-edit"]'); // Modal should close await expect(page.locator('[data-testid="modal-edit-plan"]')).not.toBeVisible({ timeout: 10000 }); }); test('delete plan shows confirmation and cancels', async ({ page }) => { await page.waitForTimeout(2000); const deleteBtns = page.locator('[data-testid="btn-delete-plan"]'); const count = await deleteBtns.count(); expect(count).toBeGreaterThan(0); // Click last delete button (to avoid deleting seeded data, target the E2E-created plan) await deleteBtns.last().click(); // Confirmation modal should appear await expect(page.locator('[data-testid="modal-delete-plan"]')).toBeVisible({ timeout: 5000 }); await expect(page.locator('[data-testid="btn-confirm-delete"]')).toBeVisible(); // Cancel the delete await page.click('[data-testid="btn-cancel-delete"]'); // Modal should close await expect(page.locator('[data-testid="modal-delete-plan"]')).not.toBeVisible({ timeout: 5000 }); }); });