mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-25 17:18:11 +00:00
Supersedes #52948 and #67402. Closes #52945. Standalone hermes dashboard/serve was trusting HERMES_WEB_DIST and HERMES_SERVE_HEADLESS inherited from a Desktop Electron parent, which could serve the packaged desktop renderer ("Desktop IPC bridge is unavailable") or disable the SPA. Drop only Electron-packaged WEB_DIST paths (app.asar*) when HERMES_DESKTOP!=1, and clear inherited headless for non-serve launches, while preserving caller-managed custom dist overrides and the desktop-spawned backend path. Co-authored-by: Bartok9 <danielrpike9@gmail.com> Co-authored-by: Commander <commander@tianji.local>
411 lines
13 KiB
Python
411 lines
13 KiB
Python
"""Regression tests: `hermes dashboard` validates HERMES_WEB_DIST before serving.
|
|
|
|
A custom HERMES_WEB_DIST without --skip-build previously skipped BOTH the
|
|
build and any validation, so the server started and served 404s with no
|
|
obvious cause (same failure mode as issue #23817, reached via the env-var
|
|
path instead of --skip-build). The env-var branch must now fail fast when
|
|
the dist has no index.html, and proceed when it does.
|
|
|
|
Design credit: PR #17845 (@Caelier).
|
|
"""
|
|
|
|
import sys
|
|
import types
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture()
|
|
def main_mod():
|
|
import hermes_cli.main as main
|
|
return main
|
|
|
|
|
|
def _args(**over):
|
|
base = {
|
|
"host": "127.0.0.1",
|
|
"port": 0,
|
|
"no_open": True,
|
|
"open_profile": None,
|
|
"skip_build": False,
|
|
"headless_backend": False,
|
|
"tui": False,
|
|
}
|
|
base.update(over)
|
|
return types.SimpleNamespace(**base)
|
|
|
|
|
|
def _wire_common(main_mod, monkeypatch):
|
|
monkeypatch.setattr(
|
|
"hermes_cli.profiles.get_active_profile_name", lambda: "default"
|
|
)
|
|
monkeypatch.setattr(main_mod, "_sync_bundled_skills_quietly", lambda: None)
|
|
monkeypatch.setitem(sys.modules, "fastapi", types.SimpleNamespace())
|
|
monkeypatch.setitem(sys.modules, "uvicorn", types.SimpleNamespace())
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_logging",
|
|
types.SimpleNamespace(setup_logging=lambda **_k: None),
|
|
)
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.plugins",
|
|
types.SimpleNamespace(discover_plugins=lambda: None),
|
|
)
|
|
monkeypatch.setattr(
|
|
"hermes_cli.mcp_startup.start_background_mcp_discovery",
|
|
lambda **_k: None,
|
|
)
|
|
|
|
|
|
def test_env_dist_without_index_exits(main_mod, monkeypatch, tmp_path, capsys):
|
|
"""HERMES_WEB_DIST pointing at a dist with no index.html must exit 1,
|
|
not start a server that 404s."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
empty_dist = tmp_path / "empty_dist"
|
|
empty_dist.mkdir()
|
|
monkeypatch.setenv("HERMES_WEB_DIST", str(empty_dist))
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
with pytest.raises(SystemExit) as exc:
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
assert exc.value.code == 1
|
|
assert started == []
|
|
assert builds == [] # env var set -> build skipped, validation is the gate
|
|
out = capsys.readouterr().out
|
|
assert "HERMES_WEB_DIST" in out and str(empty_dist) in out
|
|
|
|
|
|
def test_env_dist_with_index_starts_server(main_mod, monkeypatch, tmp_path):
|
|
"""A valid HERMES_WEB_DIST (has index.html) proceeds to start_server
|
|
without building."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
dist = tmp_path / "dist"
|
|
dist.mkdir()
|
|
(dist / "index.html").write_text("<html></html>", encoding="utf-8")
|
|
monkeypatch.setenv("HERMES_WEB_DIST", str(dist))
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
assert len(started) == 1
|
|
assert builds == []
|
|
|
|
|
|
def test_env_dist_tilde_expanded_for_web_server(main_mod, monkeypatch, tmp_path):
|
|
"""A '~/...' HERMES_WEB_DIST must be written back expanded so
|
|
web_server's raw os.environ read serves the validated path."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
home = tmp_path / "home"
|
|
dist = home / "mydist"
|
|
dist.mkdir(parents=True)
|
|
(dist / "index.html").write_text("<html></html>", encoding="utf-8")
|
|
monkeypatch.setenv("HOME", str(home))
|
|
monkeypatch.setenv("HERMES_WEB_DIST", "~/mydist")
|
|
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: None),
|
|
)
|
|
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
import os
|
|
assert os.environ["HERMES_WEB_DIST"] == str(dist)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# --skip-build recovery (issue #59288): a missing dist under --skip-build
|
|
# should warn and attempt ONE recovery build via _build_web_ui before the
|
|
# fatal exit, instead of hard-failing immediately.
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_skip_build_missing_dist_attempts_one_recovery_build(
|
|
main_mod, monkeypatch, tmp_path, capsys
|
|
):
|
|
"""--skip-build + missing index.html triggers exactly one recovery build;
|
|
when the build produces a dist, the server starts."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
monkeypatch.delenv("HERMES_WEB_DIST", raising=False)
|
|
project_root = tmp_path / "proj"
|
|
dist = project_root / "hermes_cli" / "web_dist"
|
|
dist.mkdir(parents=True)
|
|
monkeypatch.setattr(main_mod, "PROJECT_ROOT", project_root)
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
|
|
builds = []
|
|
|
|
def fake_build(web_dir, *, fatal=False):
|
|
builds.append((web_dir, fatal))
|
|
(dist / "index.html").write_text("<html></html>", encoding="utf-8")
|
|
return True
|
|
|
|
monkeypatch.setattr(main_mod, "_build_web_ui", fake_build)
|
|
|
|
main_mod.cmd_dashboard(_args(skip_build=True))
|
|
|
|
assert len(builds) == 1 # exactly ONE recovery build
|
|
assert builds[0][0] == project_root / "web"
|
|
assert len(started) == 1
|
|
out = capsys.readouterr().out
|
|
assert "recovery build" in out.lower()
|
|
|
|
|
|
def test_skip_build_recovery_build_failure_preserves_fatal_exit(
|
|
main_mod, monkeypatch, tmp_path, capsys
|
|
):
|
|
"""When the recovery build also fails to produce a dist, the original
|
|
fatal path is preserved: exit 1, clear message, server never starts."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
monkeypatch.delenv("HERMES_WEB_DIST", raising=False)
|
|
project_root = tmp_path / "proj"
|
|
(project_root / "hermes_cli" / "web_dist").mkdir(parents=True)
|
|
monkeypatch.setattr(main_mod, "PROJECT_ROOT", project_root)
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod,
|
|
"_build_web_ui",
|
|
lambda web_dir, *, fatal=False: builds.append(web_dir) or False,
|
|
)
|
|
|
|
with pytest.raises(SystemExit) as exc:
|
|
main_mod.cmd_dashboard(_args(skip_build=True))
|
|
|
|
assert exc.value.code == 1
|
|
assert len(builds) == 1 # attempted once, never retried
|
|
assert started == []
|
|
out = capsys.readouterr().out
|
|
assert "--skip-build was passed but no web dist found" in out
|
|
assert "recovery build did not produce a usable dist" in out
|
|
|
|
|
|
def test_skip_build_custom_env_dist_missing_does_not_attempt_recovery(
|
|
main_mod, monkeypatch, tmp_path, capsys
|
|
):
|
|
"""A custom HERMES_WEB_DIST is caller-managed: the recovery build writes
|
|
to the default dist location and cannot populate it, so the env-var +
|
|
--skip-build combination keeps the immediate fatal exit with no build."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
empty_dist = tmp_path / "custom_dist"
|
|
empty_dist.mkdir()
|
|
monkeypatch.setenv("HERMES_WEB_DIST", str(empty_dist))
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
with pytest.raises(SystemExit) as exc:
|
|
main_mod.cmd_dashboard(_args(skip_build=True))
|
|
|
|
assert exc.value.code == 1
|
|
assert builds == []
|
|
assert started == []
|
|
out = capsys.readouterr().out
|
|
assert "--skip-build was passed but no web dist found" in out
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Desktop-inherited env isolation (issue #52945 / supersedes #52948, #67402)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"path,expected",
|
|
[
|
|
("/Applications/Hermes.app/Contents/Resources/app.asar/dist", True),
|
|
("/Applications/Hermes.app/Contents/Resources/app.asar.unpacked/dist", True),
|
|
(r"C:\Users\u\AppData\Local\Programs\Hermes\resources\app.asar\dist", True),
|
|
("/home/u/custom-dashboard-dist", False),
|
|
("", False),
|
|
],
|
|
)
|
|
def test_is_electron_packaged_web_dist(main_mod, path, expected):
|
|
assert main_mod._is_electron_packaged_web_dist(path) is expected
|
|
|
|
|
|
def test_standalone_dashboard_drops_electron_packaged_web_dist(
|
|
main_mod, monkeypatch
|
|
):
|
|
"""Inherited app.asar WEB_DIST must be stripped so the bundled web UI
|
|
is built/served instead of the desktop renderer."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
monkeypatch.delenv("HERMES_DESKTOP", raising=False)
|
|
packaged = "/Applications/Hermes.app/Contents/Resources/app.asar/dist"
|
|
monkeypatch.setenv("HERMES_WEB_DIST", packaged)
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
import os
|
|
|
|
assert "HERMES_WEB_DIST" not in os.environ
|
|
assert len(builds) == 1
|
|
assert len(started) == 1
|
|
|
|
|
|
def test_standalone_dashboard_keeps_caller_managed_web_dist(
|
|
main_mod, monkeypatch, tmp_path
|
|
):
|
|
"""A non-Electron custom HERMES_WEB_DIST override must survive."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
monkeypatch.delenv("HERMES_DESKTOP", raising=False)
|
|
dist = tmp_path / "my-custom-dist"
|
|
dist.mkdir()
|
|
(dist / "index.html").write_text("<html></html>", encoding="utf-8")
|
|
monkeypatch.setenv("HERMES_WEB_DIST", str(dist))
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
import os
|
|
|
|
assert os.environ["HERMES_WEB_DIST"] == str(dist)
|
|
assert builds == []
|
|
assert len(started) == 1
|
|
|
|
|
|
def test_desktop_spawned_backend_keeps_electron_web_dist(
|
|
main_mod, monkeypatch, tmp_path
|
|
):
|
|
"""HERMES_DESKTOP=1 legitimately points at the packaged dist — do not strip."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
packaged_root = tmp_path / "app.asar" / "dist"
|
|
packaged_root.mkdir(parents=True)
|
|
(packaged_root / "index.html").write_text("<html></html>", encoding="utf-8")
|
|
monkeypatch.setenv("HERMES_DESKTOP", "1")
|
|
monkeypatch.setenv("HERMES_WEB_DIST", str(packaged_root))
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
import os
|
|
|
|
assert os.environ["HERMES_WEB_DIST"] == str(packaged_root)
|
|
assert builds == []
|
|
assert len(started) == 1
|
|
|
|
|
|
def test_standalone_dashboard_clears_inherited_serve_headless(
|
|
main_mod, monkeypatch
|
|
):
|
|
"""Inherited HERMES_SERVE_HEADLESS must not disable the SPA for dashboard."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
monkeypatch.delenv("HERMES_DESKTOP", raising=False)
|
|
monkeypatch.delenv("HERMES_WEB_DIST", raising=False)
|
|
monkeypatch.setenv("HERMES_SERVE_HEADLESS", "1")
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
monkeypatch.setattr(main_mod, "_build_web_ui", lambda *a, **k: True)
|
|
|
|
main_mod.cmd_dashboard(_args())
|
|
|
|
import os
|
|
|
|
assert os.environ.get("HERMES_SERVE_HEADLESS") != "1"
|
|
assert len(started) == 1
|
|
|
|
|
|
def test_headless_serve_reasserts_serve_headless(main_mod, monkeypatch):
|
|
"""`hermes serve` must still set HERMES_SERVE_HEADLESS after the clear."""
|
|
_wire_common(main_mod, monkeypatch)
|
|
monkeypatch.delenv("HERMES_DESKTOP", raising=False)
|
|
monkeypatch.delenv("HERMES_WEB_DIST", raising=False)
|
|
monkeypatch.delenv("HERMES_SERVE_HEADLESS", raising=False)
|
|
|
|
started = []
|
|
monkeypatch.setitem(
|
|
sys.modules,
|
|
"hermes_cli.web_server",
|
|
types.SimpleNamespace(start_server=lambda **k: started.append(k)),
|
|
)
|
|
builds = []
|
|
monkeypatch.setattr(
|
|
main_mod, "_build_web_ui", lambda *a, **k: builds.append(a) or True
|
|
)
|
|
|
|
main_mod.cmd_dashboard(_args(headless_backend=True))
|
|
|
|
import os
|
|
|
|
assert os.environ.get("HERMES_SERVE_HEADLESS") == "1"
|
|
assert builds == []
|
|
assert len(started) == 1
|