pcbjam/tests/kicad/via-snapshot-assert.spec.ts
Gergő Törcsvári 9e757c5396
findings R: coverage for the demo-ledger fixes (R-2, R-3, R-4, R-9) — tests only
- R-9: tests/kicad/project-sync.spec.ts gains an effect-asserting test —
  stages a self-contained footprint lib (ecc83 R_Axial as SyncFixture.pretty
  + absolute-uri fp-lib-table via a new stageAndOpen beforeOpen hook), presses
  Update PCB, and asserts the board's footprint references through
  kicadCollabSnapshot/kicadCollabTestItemBlob (R777, then R888 after a
  schematic rewrite + re-sync). Red-first: the dialog report said "Add R777"
  while the board stayed empty when the button click never landed.
- R-2: tests/kicad/via-snapshot-assert.spec.ts — two-via board, exact widths
  + no PCB_VIA::GetWidth wx assert line in the console.
- R-4: tests/web/console-copy.spec.ts — Ctrl/Cmd+C over a console selection
  fires `copy` (guard stops the keydown before wx); canvas pointerdown
  collapses the selection. ControlOrMeta: headless engines use the HOST copy
  accelerator regardless of the device UA.
- R-3: workers/cdn gets a vitest harness (package.json + lockfile) and
  test/index.test.ts with a workerd-like stub bucket (always-defined range):
  plain GET is 200/no Content-Range, Range → 206, HEAD/304/404/405/OPTIONS.
  Mutation-verified (pre-1ea35f7 gating → 2 reds). CI step added after the
  corpus lint; node_modules gitignored.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015j8uFzSjwRrAeJ85QWVLQa
2026-08-28 13:56:53 +02:00

112 lines
4.2 KiB
TypeScript

import { test, expect, type Page } from "./fixtures";
import { execSync } from "child_process";
import * as path from "path";
/**
* repro for R-2 (docs/features/findings/groups/R-fixed-during-demo-record.md)
*
* `itemToJson` (wasm/bindings/pcbnew_embind.cpp) once called the layerless
* virtual `PCB_VIA::GetWidth()` — since the padstack refactor that is a
* wxCHECK trap ("Warning: PCB_VIA::GetWidth called without a layer argument",
* pcbnew/pcb_track.cpp) — once per via per snapshot. The value came back
* right (the wxCHECK's fallback IS the ALL_LAYERS slot), so no spec noticed;
* on a big board every collab baseline/snapshot was an assert storm in the
* console. The fix passes `PADSTACK::ALL_LAYERS`.
*
* Oracle: the wx assert line in the console (the wasm build logs asserts via
* wxMessageOutputDebug and continues — wxTrap is a no-op there), plus the
* via width itself. Harness: pcbnew-collab.html (wizard-skipping seed), a
* two-via board written into MEMFS.
*/
const VIA1 = "aaaaaaaa-0000-4000-8000-00000000c001";
const VIA2 = "aaaaaaaa-0000-4000-8000-00000000c002";
const VIA_PCB = `(kicad_pcb
\t(version 20241229)
\t(generator "pcbnew")
\t(generator_version "9.0")
\t(general (thickness 1.6))
\t(paper "A4")
\t(layers
\t\t(0 "F.Cu" signal)
\t\t(2 "B.Cu" signal)
\t\t(25 "Edge.Cuts" user)
\t)
\t(setup)
\t(net 0 "")
\t(via (at 80 80) (size 1.4) (drill 0.6) (layers "F.Cu" "B.Cu") (net 0) (uuid "${VIA1}"))
\t(via (at 90 80) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 0) (uuid "${VIA2}"))
)
`;
const VIA_WIDTH_ASSERT =
/PCB_VIA::GetWidth called without a layer argument|assert "false" failed in GetWidth\(\)/;
interface FS { mkdirTree(p: string): void; writeFile(p: string, d: string): void; }
interface Mod { kicadOpenFile(p: string): unknown; kicadCollabSnapshot(): string; }
async function bootAndOpen(page: Page): Promise<void> {
await page.goto("/kicad/pcbnew-collab.html");
await expect(page.locator("#canvas")).toBeVisible({ timeout: 90000 });
await page.waitForFunction(
() => {
const m = (window as unknown as { Module?: Partial<Mod> }).Module;
return typeof m?.kicadOpenFile === "function" && typeof m?.kicadCollabSnapshot === "function";
},
null,
{ timeout: 90000 },
);
await page.waitForFunction(
() =>
!!window.wxElementRegistry &&
window.wxElementRegistry
.findAll({ visible: true })
.some((e) => /Frame$/.test(e.typeName) || (e.name || "").endsWith("Frame")),
null,
{ timeout: 90000 },
);
await page.evaluate((content) => {
const w = window as unknown as { FS: FS; Module: Mod };
const dir = "/home/kicad/documents";
try { w.FS.mkdirTree(dir); } catch { /* exists */ }
const p = `${dir}/vias.kicad_pcb`;
w.FS.writeFile(p, content);
w.Module.kicadOpenFile(p);
}, VIA_PCB);
await expect.poll(() => page.title(), { timeout: 30000 }).toMatch(/vias/i);
}
test.beforeAll(() => {
execSync("node collab/build.mjs", { cwd: path.resolve(__dirname, ".."), stdio: "inherit" });
});
test("snapshotting a board with vias emits their width without a GetWidth assert (R-2)", async ({
page,
testLogger,
}) => {
test.setTimeout(180000);
await bootAndOpen(page);
// Several snapshots: pre-fix this was one assert PER VIA PER SNAPSHOT.
const snaps = await page.evaluate(() => {
const m = (window as unknown as { Module: Mod }).Module;
return [0, 1, 2].map(() => JSON.parse(m.kicadCollabSnapshot()));
});
const last = snaps[snaps.length - 1] as { added: Array<{ id: string; type: string; width?: number; drill?: number }> };
const byId = new Map(last.added.map((i) => [i.id, i]));
for (const [id, mm] of [[VIA1, 1.4], [VIA2, 0.8]] as const) {
const via = byId.get(id);
expect(via, `via ${id} present in snapshot`).toBeTruthy();
expect(via!.type).toBe("PCB_VIA");
// internal units are nm; the (size …) is the whole-stack width.
expect(via!.width, `via ${id} width`).toBe(Math.round(mm * 1_000_000));
expect(via!.drill, `via ${id} drill`).toBeGreaterThan(0);
}
const assertLines = [...testLogger.consoleLogs, ...testLogger.errors].filter((l) =>
VIA_WIDTH_ASSERT.test(l),
);
expect(assertLines, "no PCB_VIA::GetWidth assert in the console").toEqual([]);
});