* feat(channels): add guided setup flows * test(channels): preserve setup config values * fix(channels): reflect saved setup state * refactor(channels): simplify setup state metadata * fix(channels): harden setup lifecycle * refactor(channels): centralize setup contracts * fix(channels): route setup actions through webui shim * fix(channels): adapt settings for compact screens * fix(models): preserve default preset display * feat(models): add curated Codex catalog * fix(webui): stop attached gateway on interrupt * fix(webui): simplify apps catalog * docs(webui): clarify apps and runtime features * feat(settings): add guided capability setup * fix(webui): harden setup and managed services * test: keep managed runtime checks portable * test: scope POSIX runtime coverage * fix(webui): simplify file settings * feat(files): bundle document reading * fix(webui): harden setup request boundaries * fix(webui): prevent channel setup status squeeze * fix(settings): group provider compatibility aliases * refactor(settings): remove redundant setup surfaces * fix(webui): harden guided setup lifecycle * fix(webui): preserve channel setup compatibility
117 lines
3.7 KiB
Python
117 lines
3.7 KiB
Python
from __future__ import annotations
|
|
|
|
import os
|
|
from pathlib import Path
|
|
|
|
from nanobot.webui.build import ensure_webui_bundle, inspect_webui_bundle
|
|
|
|
_MTIME_BASE_NS = 1_700_000_000_000_000_000
|
|
_MTIME_STEP_NS = 5_000_000_000
|
|
|
|
|
|
def _touch(path: Path, *, mtime_ns: int) -> None:
|
|
path.parent.mkdir(parents=True, exist_ok=True)
|
|
path.write_text(path.name, encoding="utf-8")
|
|
if mtime_ns < 1_000_000_000_000_000:
|
|
mtime_ns = _MTIME_BASE_NS + mtime_ns * _MTIME_STEP_NS
|
|
os.utime(path, ns=(mtime_ns, mtime_ns))
|
|
|
|
|
|
def test_inspect_webui_bundle_ignores_packaged_install_without_source(tmp_path: Path) -> None:
|
|
source = tmp_path / "site-packages" / "webui"
|
|
dist = tmp_path / "site-packages" / "nanobot" / "web" / "dist"
|
|
_touch(dist / "index.html", mtime_ns=20)
|
|
|
|
status = inspect_webui_bundle(source_dir=source, dist_dir=dist)
|
|
|
|
assert status.source_available is False
|
|
assert status.stale is False
|
|
assert status.reason == "no_source"
|
|
|
|
|
|
def test_inspect_webui_bundle_marks_missing_dist_stale(tmp_path: Path) -> None:
|
|
source = tmp_path / "webui"
|
|
dist = tmp_path / "nanobot" / "web" / "dist"
|
|
_touch(source / "package.json", mtime_ns=10)
|
|
|
|
status = inspect_webui_bundle(source_dir=source, dist_dir=dist)
|
|
|
|
assert status.source_available is True
|
|
assert status.dist_available is False
|
|
assert status.stale is True
|
|
assert status.reason == "missing_dist"
|
|
|
|
|
|
def test_inspect_webui_bundle_detects_source_newer_than_dist(tmp_path: Path) -> None:
|
|
source = tmp_path / "webui"
|
|
dist = tmp_path / "nanobot" / "web" / "dist"
|
|
_touch(source / "package.json", mtime_ns=10)
|
|
_touch(source / "src" / "App.tsx", mtime_ns=30)
|
|
_touch(dist / "index.html", mtime_ns=20)
|
|
|
|
status = inspect_webui_bundle(source_dir=source, dist_dir=dist)
|
|
|
|
assert status.stale is True
|
|
assert status.reason == "source_newer"
|
|
assert status.newest_source == source / "src" / "App.tsx"
|
|
|
|
|
|
def test_inspect_webui_bundle_accepts_fresh_dist(tmp_path: Path) -> None:
|
|
source = tmp_path / "webui"
|
|
dist = tmp_path / "nanobot" / "web" / "dist"
|
|
_touch(source / "package.json", mtime_ns=10)
|
|
_touch(source / "src" / "App.tsx", mtime_ns=20)
|
|
_touch(dist / "index.html", mtime_ns=30)
|
|
|
|
status = inspect_webui_bundle(source_dir=source, dist_dir=dist)
|
|
|
|
assert status.stale is False
|
|
assert status.reason == "fresh"
|
|
|
|
|
|
def test_ensure_webui_bundle_auto_builds_stale_dist(tmp_path: Path) -> None:
|
|
source = tmp_path / "webui"
|
|
dist = tmp_path / "nanobot" / "web" / "dist"
|
|
_touch(source / "package.json", mtime_ns=10)
|
|
_touch(source / "src" / "App.tsx", mtime_ns=30)
|
|
_touch(dist / "index.html", mtime_ns=20)
|
|
commands: list[tuple[str, ...]] = []
|
|
|
|
def fake_run(command, *, cwd: Path, check: bool) -> None:
|
|
commands.append(tuple(command))
|
|
assert cwd == source
|
|
assert check is True
|
|
if command == ["bun", "run", "build"]:
|
|
_touch(dist / "index.html", mtime_ns=40)
|
|
|
|
status = ensure_webui_bundle(
|
|
mode="auto",
|
|
source_dir=source,
|
|
dist_dir=dist,
|
|
runner="bun",
|
|
subprocess_run=fake_run,
|
|
)
|
|
|
|
assert status.stale is False
|
|
assert commands == [("bun", "install"), ("bun", "run", "build")]
|
|
|
|
|
|
def test_ensure_webui_bundle_warns_without_building(tmp_path: Path) -> None:
|
|
source = tmp_path / "webui"
|
|
dist = tmp_path / "nanobot" / "web" / "dist"
|
|
_touch(source / "package.json", mtime_ns=10)
|
|
_touch(source / "src" / "App.tsx", mtime_ns=30)
|
|
_touch(dist / "index.html", mtime_ns=20)
|
|
messages: list[str] = []
|
|
|
|
status = ensure_webui_bundle(
|
|
mode="warn",
|
|
source_dir=source,
|
|
dist_dir=dist,
|
|
output=messages.append,
|
|
)
|
|
|
|
assert status.stale is True
|
|
assert messages
|
|
assert "Run `cd" in messages[0]
|