mirror of
https://github.com/Matysh/houseplan-card
synced 2026-07-31 16:38:31 +00:00
T1: demo/serve.mjs exports check/checkAll/finish — all 48 smokes now assert named facts and exit non-zero on a mismatch or an uncaught in-card exception (verified by breaking the kiosk guard on purpose). Informational values were frozen from a v1.43.1 run and cross-read against the source; timings assert budgets, not exact numbers. T2: new CI job 'smoke' gated on 'frontend', builds a FRESH bundle before running (the committed demo/srv/assets copy is a snapshot) and uploads per-file logs on failure. T3: [auto] now means 'a named failing check exists' and each line names it (43 lines); 72 aspirational markers honestly downgraded to [manual]. Fixed the 'ZERO edit buttons' contradiction (wrong since v1.30.1) and the opening-click line (true again since v1.43.1). Three smokes carried pre-v1.39.0/v1.25 expectations and were testing old behaviour: tap defaults for lights, card-wide tap action, label drag requiring plan mode. DEVELOPMENT.md documents the harness contract.
64 lines
3.1 KiB
JavaScript
64 lines
3.1 KiB
JavaScript
// Shared launcher for demo captures: starts headless Chromium serving demo/srv/
|
|
// via request interception (no HTTP server needed). Usage: const {page,browser}=await launch();
|
|
import { chromium } from 'playwright';
|
|
import { readFileSync, existsSync } from 'node:fs';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { dirname } from 'node:path';
|
|
const ROOT = dirname(fileURLToPath(import.meta.url)) + '/srv';
|
|
const CT = { '.html': 'text/html', '.js': 'text/javascript', '.svg': 'image/svg+xml' };
|
|
// ---- assertion harness (audit T1) --------------------------------------
|
|
// Until 2026-07-27 the smokes printed booleans and always exited 0: a broken
|
|
// build reported success. `check()` accumulates named failures, `finish()`
|
|
// prints them and sets the exit code.
|
|
const _failures = [];
|
|
let _pageErrors = 0;
|
|
|
|
/** Assert one named fact. `expected` defaults to true. */
|
|
export function check(name, actual, expected = true) {
|
|
const ok = JSON.stringify(actual) === JSON.stringify(expected);
|
|
if (!ok) _failures.push(`${name}: expected ${JSON.stringify(expected)}, got ${JSON.stringify(actual)}`);
|
|
return ok;
|
|
}
|
|
|
|
/** Assert a whole result object: every key must equal true unless listed. */
|
|
export function checkAll(out, expected = {}) {
|
|
for (const [k, v] of Object.entries(out)) check(k, v, k in expected ? expected[k] : true);
|
|
return out;
|
|
}
|
|
|
|
/** Print the result, report failures, close the browser, set the exit code. */
|
|
export async function finish(browser, out) {
|
|
if (out !== undefined) console.log(JSON.stringify(out, null, 1));
|
|
if (_pageErrors) _failures.push(`${_pageErrors} uncaught exception(s) inside the card`);
|
|
await browser?.close?.();
|
|
if (_failures.length) {
|
|
console.error('\nFAILED (' + _failures.length + '):');
|
|
for (const f of _failures) console.error(' - ' + f);
|
|
process.exitCode = 1;
|
|
} else {
|
|
console.log('OK');
|
|
}
|
|
}
|
|
|
|
export async function launch(viewport = { width: 820, height: 760 }, scale = 1) {
|
|
const browser = await chromium.launch({ args: ['--no-sandbox'] });
|
|
const page = await (await browser.newContext({ viewport, deviceScaleFactor: scale })).newPage();
|
|
// audit T1: an exception inside the card used to be logged and ignored
|
|
page.on('pageerror', (e) => { _pageErrors++; console.log('EXC', e.message); });
|
|
await page.route('**/*', (r) => {
|
|
const u = new URL(r.request().url());
|
|
let p = decodeURIComponent(u.pathname);
|
|
if (p === '/') p = '/demo.html';
|
|
const f = ROOT + p;
|
|
existsSync(f)
|
|
? r.fulfill({ status: 200, headers: { 'content-type': CT[p.slice(p.lastIndexOf('.'))] || 'application/octet-stream' }, body: readFileSync(f) })
|
|
: r.fulfill({ status: 404, body: 'nf' });
|
|
});
|
|
await page.goto('http://demo.local/demo.html', { waitUntil: 'domcontentloaded' });
|
|
await page.waitForFunction(() => window.__card?._model?.length > 0, { timeout: 9000 });
|
|
// hass flows continuously in production; the stub sets it once — nudge a rebuild
|
|
await page.evaluate(() => { const c = window.__card; c.hass = { ...c.hass }; });
|
|
await page.waitForFunction(() => window.__card._devices.length > 0, { timeout: 9000 });
|
|
return { page, browser };
|
|
}
|