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.
40 lines
1.9 KiB
JavaScript
40 lines
1.9 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;
|
||
// комната без зоны на f1
|
||
c._serverCfg = { ...c._serverCfg, spaces: c._serverCfg.spaces.map((s) => s.id !== 'f1' ? s : ({
|
||
...s, rooms: [...s.rooms, { id: 'rc', name: 'Cupboard', area: null, poly: [[0.05,0.62],[0.2,0.62],[0.2,0.9],[0.05,0.9]] }],
|
||
})) };
|
||
c._regSignature = ''; c._maybeRebuildDevices(); await c.updateComplete;
|
||
// список комнат в диалоге содержит подзону
|
||
c._setMode('devices');
|
||
c._openMarkerDialog(); await c.updateComplete;
|
||
const rooms = c._allRoomsFlat();
|
||
out.subareaListed = rooms.some((r) => r.value === 'f1#@rc');
|
||
// создать виртуальный маркер в подзону
|
||
c._markerDialog = { ...c._markerDialog, name: 'Vacuum dock', binding: 'virtual', room: 'f1#@rc' };
|
||
await c._saveMarker(); await c.updateComplete;
|
||
const m = c._serverCfg.markers.find((x) => x.name === 'Vacuum dock');
|
||
out.markerRoomId = m?.room_id;
|
||
out.markerAreaNull = m ? m.area === null : null;
|
||
// позиция — в центре подзоны (норм. центр rc: x=0.125, y=0.76)
|
||
const pos = c._layout[m.id];
|
||
out.posInRoom = pos && Math.abs(pos.x - 0.125) < 0.03 && Math.abs(pos.y - 0.76) < 0.03;
|
||
// девайс отрисован
|
||
const dev = c._devices.find((d) => d.id === m.id);
|
||
out.deviceBuilt = !!dev && dev.space === 'f1';
|
||
// reopen диалога восстанавливает выбор
|
||
c._openMarkerDialog(dev);
|
||
out.reopenRoom = c._markerDialog?.room;
|
||
c._markerDialog = null;
|
||
return out;
|
||
});
|
||
// значения зафиксированы прогоном на v1.43.1 и сверены с кодом (audit T1)
|
||
checkAll(res, {
|
||
"markerRoomId": "rc",
|
||
"reopenRoom": "f1#@rc",
|
||
});
|
||
await finish(browser, res);
|