pcbjam/tests/kicad/pcbnew-perf.spec.ts
Viktor Vaczi 3e5791774b test(perf): track-only runtime-perf E2E for eeschema + pcbnew
Measures the current build's cold load, open+render, and pan/zoom FPS
(1x/4x/6x CPU-throttle sweep) for both editors, writing
tests/test-results/perf-*.json. Track-only: asserts only that the app booted
and the document opened — no perf thresholds, so it never gates CI.

Runs on a new Chromium `perf` Playwright project (CDP throttling; pcbnew needs
V8 anyway) via `npm run test:perf`, and is wired into wasm-build.yml as a
continue-on-error step so the numbers are captured/uploaded without flaking the
gate. Reuses the existing fixtures, ready-signal, fs-inject, and board-ready
helpers; FPS counter is cancel-able so a throttle sweep on one page doesn't
accumulate rAF loops.

.gitignore: ignore /benchmark-builds/ (disposable prebuilt-WASM + standalone
harness bundle used to reproduce the native-vs-JS-EH comparison locally).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-01 14:43:54 +02:00

44 lines
1.9 KiB
TypeScript

import { test, expect } from './fixtures';
import * as path from 'path';
import { measureLoad, measureOpenRender, measureFps, setThrottle, recordPerf } from './utils/perf-utils';
/**
* pcbnew runtime-perf (TRACK-ONLY, no gating). Mirrors eeschema-perf for the board editor.
*
* Measures the CURRENT build: cold load, open+render of the demo board, and sustained
* pan/zoom FPS across CPU-throttle rates → tests/test-results/perf-pcbnew.json (CI uploads it).
* Runs on the Chromium 'perf' project (pcbnew's big module OOMs Firefox/SpiderMonkey anyway,
* and CDP throttling is Chromium-only). Only asserts booted + opened; never a perf threshold.
*/
const THROTTLES = (process.env.PERF_THROTTLES || '1,4,6').split(',').map(Number);
const FPS_SECS = parseInt(process.env.PERF_FPS_SECS || '6', 10);
const DEMO = path.join(__dirname, '..', 'fixtures', 'demo', 'demo.kicad_pcb');
test.describe('pcbnew perf', () => {
test('load + open+render + FPS (track-only)', async ({ page, testLogger }) => {
test.setTimeout(300000);
const loadMs = await measureLoad(page, '/kicad/pcbnew.html');
console.log(`[perf] pcbnew cold load = ${loadMs} ms`);
const openMs = await measureOpenRender(page, DEMO, 'board', testLogger);
console.log(`[perf] pcbnew open+render = ${openMs} ms`);
await page.keyboard.press('Escape').catch(() => {});
const cdp = await page.context().newCDPSession(page);
const fps: { throttle: number; fps: number }[] = [];
for (const rate of THROTTLES) {
await setThrottle(cdp, rate);
const f = await measureFps(page, FPS_SECS);
console.log(`[perf] pcbnew FPS @ ${rate}x = ${f}`);
fps.push({ throttle: rate, fps: f });
}
await setThrottle(cdp, 1);
recordPerf('pcbnew', { loadMs, openMs, fps });
expect(loadMs).toBeGreaterThan(0);
expect(openMs).toBeGreaterThan(0);
});
});