mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
Systematic prune per AGENTS.md test policy, one pass over every major test tree (gateway, hermes_cli, tools, agent, run_agent, plugins, cli, cron, tui_gateway, honcho/openviking, root-level): - DELETE: source-reading tests (read_text/getsource on prod files), change-detector tests (exact catalog counts, model-name snapshots, config version literals), mock-echo tests (assert a mock returns what it was told), assertion-free/trivial tests, near-duplicate parametrizations (boundaries + one representative kept), async/sync twin duplicates, cosmetic within-file variations. - KEEP (mandatory): security/redaction/approval guards, message-role alternation invariants, prompt-caching/deterministic-call-id invariants, issue-number regression tests (deduped), E2E tests. - 6 test files deleted outright (script-style/no-assert or fully redundant); conftest.py, fakes/, fixtures/ untouched. - tests/acp/conftest.py added: autouse fixture stubs the live models.dev/GitHub/Copilot/Anthropic inventory fetches that ACP server tests performed on every session create — test_server.py 147s → 3.4s, and the tests are now genuinely hermetic. - Sleep-based slowness shrunk where safe (codex_ttfb_watchdog, compression_concurrent_fork, etc.); no wall-clock assertion tightened. Verification: full hermetic suite via scripts/run_tests.sh — 2439 files, 31,130 tests passed, 0 failed, 0 flaky retries, 315s wall (baseline: 583s wall, 13,564s subprocess CPU).
113 lines
3.9 KiB
Python
113 lines
3.9 KiB
Python
from types import SimpleNamespace
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from cli import HermesCLI, _build_compact_banner, _rich_text_from_ansi
|
|
from hermes_cli.skin_engine import get_active_skin, set_active_skin
|
|
|
|
|
|
def _make_cli_stub():
|
|
cli = HermesCLI.__new__(HermesCLI)
|
|
cli._sudo_state = None
|
|
cli._secret_state = None
|
|
cli._approval_state = None
|
|
cli._clarify_state = None
|
|
cli._clarify_freetext = False
|
|
cli._command_running = False
|
|
cli._agent_running = False
|
|
cli._voice_recording = False
|
|
cli._voice_processing = False
|
|
cli._voice_mode = False
|
|
cli._command_spinner_frame = lambda: "⟳"
|
|
cli._tui_style_base = {
|
|
"prompt": "#fff",
|
|
"input-area": "#fff",
|
|
"input-rule": "#aaa",
|
|
"prompt-working": "#888 italic",
|
|
}
|
|
cli._app = SimpleNamespace(style=None)
|
|
cli._invalidate = MagicMock()
|
|
return cli
|
|
|
|
|
|
class TestCliSkinPromptIntegration:
|
|
|
|
def test_ares_prompt_fragments_use_skin_symbol(self):
|
|
cli = _make_cli_stub()
|
|
|
|
set_active_skin("ares")
|
|
assert cli._get_tui_prompt_fragments() == [("class:prompt", "⚔ ")]
|
|
|
|
def test_secret_prompt_fragments_preserve_secret_state(self):
|
|
cli = _make_cli_stub()
|
|
cli._secret_state = {"response_queue": object()}
|
|
|
|
set_active_skin("ares")
|
|
assert cli._get_tui_prompt_fragments() == [("class:sudo-prompt", "🔑 ⚔ ")]
|
|
|
|
|
|
def test_build_tui_style_dict_uses_skin_overrides(self):
|
|
cli = _make_cli_stub()
|
|
|
|
set_active_skin("ares")
|
|
skin = get_active_skin()
|
|
style_dict = cli._build_tui_style_dict()
|
|
|
|
assert style_dict["prompt"] == skin.get_color("prompt")
|
|
assert style_dict["input-rule"] == skin.get_color("input_rule")
|
|
assert style_dict["prompt-working"] == f"{skin.get_color('banner_dim')} italic"
|
|
assert style_dict["status-bar"] == (
|
|
f"bg:{skin.get_color('status_bar_bg')} {skin.get_color('status_bar_text')}"
|
|
)
|
|
assert style_dict["approval-title"] == f"{skin.get_color('ui_warn')} bold"
|
|
|
|
def test_apply_tui_skin_style_updates_running_app(self):
|
|
cli = _make_cli_stub()
|
|
|
|
set_active_skin("ares")
|
|
assert cli._apply_tui_skin_style() is True
|
|
assert cli._app.style is not None
|
|
cli._invalidate.assert_called_once_with(min_interval=0.0)
|
|
|
|
def test_handle_skin_command_refreshes_live_tui(self, capsys):
|
|
cli = _make_cli_stub()
|
|
|
|
with patch("cli.save_config_value", return_value=True):
|
|
cli._handle_skin_command("/skin ares")
|
|
|
|
output = capsys.readouterr().out
|
|
assert "Skin set to: ares (saved)" in output
|
|
assert "Prompt + TUI colors updated." in output
|
|
assert cli._app.style is not None
|
|
|
|
|
|
class TestCompactBannerSkinIntegration:
|
|
|
|
def test_poseidon_compact_banner_uses_skin_branding_instead_of_nous_hermes(self):
|
|
set_active_skin("poseidon")
|
|
|
|
with patch("cli.shutil.get_terminal_size", return_value=SimpleNamespace(columns=90)), \
|
|
patch.dict(_build_compact_banner.__globals__, {"format_banner_version_label": lambda: "Hermes Agent v0.1.0 (test)"}):
|
|
banner = _build_compact_banner()
|
|
|
|
assert "Poseidon Agent" in banner
|
|
assert "NOUS HERMES" not in banner
|
|
|
|
def test_poseidon_compact_banner_uses_skin_colors(self):
|
|
set_active_skin("poseidon")
|
|
skin = get_active_skin()
|
|
|
|
with patch("cli.shutil.get_terminal_size", return_value=SimpleNamespace(columns=90)), \
|
|
patch.dict(_build_compact_banner.__globals__, {"format_banner_version_label": lambda: "Hermes Agent v0.1.0 (test)"}):
|
|
banner = _build_compact_banner()
|
|
|
|
assert skin.get_color("banner_border") in banner
|
|
assert skin.get_color("banner_title") in banner
|
|
assert skin.get_color("banner_dim") in banner
|
|
|
|
|
|
|
|
class TestAnsiRichTextHelper:
|
|
def test_preserves_literal_brackets(self):
|
|
text = _rich_text_from_ansi("[notatag] literal")
|
|
assert text.plain == "[notatag] literal"
|
|
|