pcbjam/tests/e2e/propgrid.spec.ts
Viktor Vaczi 4c3a4cacd4 test(determinism): deterministic waits + stableShot screenshots; drop blind sleeps/ifs/retries
Make the Playwright e2e + kicad suites deterministic so screenshot flake stops
tracing to timing races.

- Blind page.waitForTimeout -> condition waits (expect.poll, web-first
  assertions, waitUntil) + readiness helpers (waitForWxApp, waitForCanvasApp).
  Remaining sleeps are documented interaction dwells (annotated).
- Defensive "if element exists" branches -> loud asserts; label-fallback chains
  -> normalized clickMenuItemByText. First-run wizard for/if loops removed by
  seeding calculator/gerbview/pcbnew HTMLs.
- Screenshots: new stableShot(page, name) settles the render in-page (canvas
  hash over rAF) then writes a raw PNG to test-results/ for the existing offline
  gate (tools/screenshots vs baseline-screenshots). Replaces toHaveScreenshot,
  which did inline compare + its own baselines and had decoupled the specs from
  the real gate. scale:'css' pinned.
- retries: 0 in both configs.
- Guard: tests/tools/lint-determinism.ts (npm run lint:determinism) bans blind
  sleeps / toHaveScreenshot / inline retries / swallowed catches in specs;
  documented exceptions carry a marker. Rules in tests/TESTING.md.

Assertions, coverage, and renders unchanged (semantic-equivalence reviewed;
captures pixel-identical modulo inherent timer/timestamp/3d-raytrace variance).
Both suites green at retries:0 (e2e 340, kicad 92); ~35-61% faster.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BVX1pHMvRPYHdp6ZfEawrk
2026-07-07 10:50:24 +02:00

59 lines
2.4 KiB
TypeScript

// wxPropertyGrid Tests - Property panels for KiCad editors
import { test, expect, waitForWxApp } from './utils/fixtures';
import { clickPropertyRow, stableShot } from './utils/element-tracker';
test.describe('wxPropertyGrid Tests', () => {
test('PropertyGrid test app loads successfully', async ({ page, testLogger }) => {
await page.goto('/standalone/propgrid/propgrid_test.html');
await waitForWxApp(page);
await stableShot(page, 'propgrid-01-loaded.png', { fullPage: true });
const hasStartup = testLogger.consoleLogs.some(l => l.includes('PROPGRID_TEST'));
expect(testLogger.errors.filter(e => !e.includes('favicon'))).toHaveLength(0);
});
test('PropertyGrid displays properties with categories', async ({ page, testLogger }) => {
await page.goto('/standalone/propgrid/propgrid_test.html');
await waitForWxApp(page);
// Check that property grid was populated
await expect.poll(() => testLogger.consoleLogs.some(l =>
l.includes('PropertyGrid populated') || l.includes('PROPGRID_EVENT')),
{ message: 'PropertyGrid should be populated with properties' }).toBe(true);
await stableShot(page, 'propgrid-02-categories.png', { fullPage: true });
});
test('PropertyGrid selection events fire', async ({ page, testLogger }) => {
await page.goto('/standalone/propgrid/propgrid_test.html');
await waitForWxApp(page);
// Click on a property row using element registry
const clicked = await clickPropertyRow(page, 'Reference');
expect(clicked).toBe(true);
await stableShot(page, 'propgrid-03-selected.png', { fullPage: true });
// Check for selection event
const hasSelection = testLogger.consoleLogs.some(l =>
l.includes('Property selected') || l.includes('PROPGRID_EVENT'));
expect(hasSelection || true, 'Property selection or events should fire').toBe(true);
});
test('PropertyGridManager has multiple pages', async ({ page, testLogger }) => {
await page.goto('/standalone/propgrid/propgrid_test.html');
await waitForWxApp(page);
// Check that manager was populated with pages
await expect.poll(() => testLogger.consoleLogs.some(l =>
l.includes('PropertyGridManager populated') || l.includes('3 pages')),
{ message: 'PropertyGridManager should have multiple pages' }).toBe(true);
await stableShot(page, 'propgrid-04-manager.png', { fullPage: true });
});
});