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.
43 lines
2.5 KiB
JavaScript
43 lines
2.5 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;
|
||
const tabs = () => [...sr().querySelectorAll('.modetab')];
|
||
// 1) две вкладки, Просмотра нет, крестиков в неактивных нет
|
||
out.twoTabs = tabs().length === 3; // третья — Редактор подложки (v1.33.0)
|
||
out.labels = tabs().map((t) => t.textContent.trim());
|
||
out.noCrossIdle = sr().querySelectorAll('.modetab .closex').length === 0;
|
||
out.startView = c._mode === 'view';
|
||
// 2) клик по «Редактор плана» → активна, панель с крестиком
|
||
tabs()[0].click(); await c.updateComplete;
|
||
out.planActive = c._mode === 'plan' && tabs()[0].classList.contains('active');
|
||
out.planBar = !!sr().querySelector('.editbar');
|
||
out.planBarClose = !!sr().querySelector('.editbar .barclose');
|
||
out.tabCross = !!tabs()[0].querySelector('.closex');
|
||
// 3) повторный клик по активной вкладке — ничего
|
||
tabs()[0].click(); await c.updateComplete;
|
||
out.reclickNoop = c._mode === 'plan';
|
||
// 4) прямое переключение План → Устройства
|
||
tabs()[1].click(); await c.updateComplete;
|
||
out.directSwitch = c._mode === 'devices';
|
||
out.devBar = !!sr().querySelector('.editbar.devbar');
|
||
out.devBarBtns = sr().querySelectorAll('.editbar.devbar .btn:not(.barclose)').length === 3; // add/show-all/rules (v1.33.2: Reset removed)
|
||
// 5) инструменты устройств из шапки исчезли (в .bar их больше нет)
|
||
out.headerCleanInDev = !sr().querySelector('.bar > .btn[title*="' + (c._t('title.add_device')) + '"]');
|
||
// 6) крестик на панели → Просмотр
|
||
sr().querySelector('.editbar .barclose').click(); await c.updateComplete;
|
||
out.barCloseWorks = c._mode === 'view' && !sr().querySelector('.editbar');
|
||
// 7) крестик в самой вкладке → Просмотр (и не переключает режим)
|
||
tabs()[1].click(); await c.updateComplete;
|
||
tabs()[1].querySelector('.closex').click(); await c.updateComplete;
|
||
out.tabCrossWorks = c._mode === 'view';
|
||
return out;
|
||
});
|
||
// значения зафиксированы прогоном на v1.43.1 и сверены с кодом (audit T1)
|
||
checkAll(res, {
|
||
"labels": ["Plan editor", "Device editor", "Background editor"],
|
||
});
|
||
await finish(browser, res);
|