test: v0.3.0 z_tier + persistent + input_block assertions

Add 25 new W.2 assertions covering panel v0.3.0 features:
- persistent flag auto-opens at register-time
- z_tier render-order hud->normal->top
- within-tier open-order preserved
- input_block='none' passes through (no handler call)
- input_block='self' hit-tests within bounds
- input_block='all' swallows outside-clicks (modal block)
- persistent + close() no-op when focused is persistent
- close(id) explicit DOES close persistent
- Loud-Error on unknown z_tier
- Loud-Error on unknown input_block
- default input_block per tier (hud=none, normal=self, top=all)
- point_in_any_panel public API

Total: 79 assertions pass. Manifest bumped to 0.3.0 + panel-dep to 0.3.0.
This commit is contained in:
Calic
2026-06-15 02:25:52 +02:00
parent ce46125435
commit 07f55c6412
3 changed files with 253 additions and 11 deletions

View File

@@ -1,12 +1,18 @@
# lib-core.panel-test
Test-module for `lib-core.panel`. 10 assertions covering registry lifecycle,
theme validation, error handling, pause-gate, and context-menu dispatch.
Test-module for `lib-core.panel`. v0.3.0 expands to 79 assertions:
- v0.1.x: registry lifecycle, theme validation, error handling,
pause-gate, context-menu dispatch.
- v0.2.0 (W.0): multi-active model, 11 layout-slots, custom-fn layout,
hit-test reverse-open-order, bw-compat shim.
- v0.3.0 (W.2): z-tiers (hud/normal/top), persistent windows,
input_block routing (none/self/all), default-input_block per tier,
panel.point_in_any_panel public API.
**Version:** 0.1.0
**Version:** 0.3.0
**Lib-ID:** lib-core.panel-test
**Requires:** lib-core.panel v0.1.0
**Tags:** test, panel, ui
**Requires:** lib-core.panel v0.3.0
**Tags:** test, panel, ui, window-manager
## Running
@@ -17,10 +23,11 @@ SPOREL_LIBS_DIR=~/Projects/Sporel/sporel-libs SPOREL_CI=1 SPOREL_LOG_STDERR=1 \
./build/Sporel.exe --test-libs=lib-core.panel-test 2>&1 | tail -15
```
Expected: `pass=10 fail=0`.
Expected: `pass=79 fail=0`.
## Assertion Summary
## Assertion Summary (v0.3.0)
**v0.1.x baseline (10 assertions):**
1. register + open / close round-trip
2. close after open works
3. toggle twice opens then closes
@@ -31,3 +38,23 @@ Expected: `pass=10 fail=0`.
8. pause_on_open=true widget makes is_pausing() true; close makes it false
9. context-menu action callback invoked on click inside its row
10. non-pause widget: is_pausing() is false
**v0.2.0 W.0 multi-active + layout-slots (~44 assertions):** bw-compat
shim, multi-active open(A)+open(B), per-id close, focused-close,
layout-slot resolution (left-half, right-half, center, custom fn),
loud-error on unknown slot, hit-test reverse-open-order, is_pausing
across all open windows.
**v0.3.0 W.2 z-tiers + persistent + input-block (25 assertions):**
- persistent flag auto-opens at register-time + is in open_order
- z_tier render-order is hud → normal → top
- within z_tier, open-order preserved
- input_block="none" passes through (no handler call)
- input_block="self" hit-tests within bounds (inside vs outside)
- input_block="all" swallows outside-clicks (modal block)
- persistent + close() no-op when focused is persistent
- close(id) explicit DOES close persistent (modder-controlled)
- Loud-Error on unknown z_tier
- Loud-Error on unknown input_block
- default input_block per tier (hud=none, normal=self, top=all)
- point_in_any_panel public API (inside / outside / none open)