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.
39 lines
2.0 KiB
JavaScript
39 lines
2.0 KiB
JavaScript
import { launch, checkAll, finish } from './serve.mjs';
|
|
const { page, browser } = await launch();
|
|
const res = await page.evaluate(async () => {
|
|
const out = {};
|
|
const c = window.__card;
|
|
const sr = () => c.shadowRoot || c.renderRoot;
|
|
// включить имена комнат
|
|
c._serverCfg = { ...c._serverCfg, spaces: c._serverCfg.spaces.map((s) => s.id !== c._space ? s : ({
|
|
...s, settings: { ...(s.settings || {}), show_names: true } })) };
|
|
c._setMode('view'); c.requestUpdate(); await c.updateComplete;
|
|
await new Promise((r) => setTimeout(r, 250));
|
|
// 1) комната не кликабельна: cursor default, обработчика клика нет
|
|
const room = sr().querySelector('.room');
|
|
out.roomCursor = getComputedStyle(room).cursor === 'default';
|
|
// 2) значок ссылки у комнат с зоной, кликабелен, ведёт в зону
|
|
const links = sr().querySelectorAll('.rlgo');
|
|
out.linksShown = links.length > 0;
|
|
const withArea = c._spaceModel().rooms.filter((r) => r.name && r.area).length;
|
|
out.linkPerArearoom = links.length === withArea;
|
|
const icon = links[0];
|
|
out.linkCursor = getComputedStyle(icon).cursor === 'pointer';
|
|
out.linkClickable = getComputedStyle(icon).pointerEvents === 'auto';
|
|
// навигация: перехват history
|
|
let navTo = null;
|
|
const orig = history.pushState.bind(history);
|
|
history.pushState = (a, b, url) => { navTo = url; };
|
|
icon.dispatchEvent(new MouseEvent('click', { bubbles: true, composed: true }));
|
|
await c.updateComplete;
|
|
history.pushState = orig;
|
|
out.navigates = typeof navTo === 'string' && navTo.includes('/config/areas/area/');
|
|
// 3) комнаты без зоны — без значка (проверено соотношением выше); в разметке значков нет
|
|
c._setMode('plan'); await c.updateComplete;
|
|
out.noneInPlan = sr().querySelectorAll('.rlgo').length === 0;
|
|
c._setMode('view'); await c.updateComplete;
|
|
return out;
|
|
});
|
|
checkAll(res);
|
|
await finish(browser, res);
|