mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-30 19:09:28 +00:00
Second, deeper pass over tools/gateway/hermes_cli plus first pass over the trees wave 1 missed (acp, acp_adapter, skills, computer_use, docker, dashboard, conformance, monitoring, secret_sources, hermes_state, providers). Same rubric as wave 1 (AGENTS.md test policy); security, alternation/caching invariants, issue-number regressions, and E2E kept. Real test-quality fixes found and rooted out along the way: - tests/tools/test_command_guards.py made real auxiliary-LLM HTTPS calls (DEFAULT_CONFIG smart-approval leaked in) — pinned approval mode=manual via autouse fixture: 17.4s → 0.4s. - test_model_switch_custom_providers.py / test_user_providers_model_switch.py silently probed live provider catalogs (~2s/test) — stubbed cached_provider_model_ids/provider_model_ids/fetch_api_models. - test_telegram_noise_filter.py: 15-platform copy-paste matrix over shared gateway.run logic → 3 representative platforms (55s → 3.9s). - test_gateway_shutdown.py: stop()'s 5s interrupt-deadline loop spun on MagicMock agents — interrupt.side_effect now clears _running_agents (22s → 1.0s). - test_gateway_inactivity_timeout.py poll-harness timings shrunk 3-5x (24s → 1.1s); test_mcp_stability.py backoff/SIGTERM-grace sleeps patched (15.4s → 2.5s); test_async_delegation.py negative-drain wait 5s → 0.5s. - test_telegram_init_deadline.py: loop-block margin restored to 1.0s with rationale comment — the watchdog-dump assertion needs the loop blocked well past deadline+grace under parallel load (flaked once in the 40-worker verification run at a 0.2s margin). Verification: full hermetic suite via scripts/run_tests.sh — 2,438 files, 21,718 tests passed, 0 failed, 293.9s wall. Suite totals vs original baseline: 46,820 → 19,757 test functions (−57.8%), wall 583.5s → 293.9s (−50%), subprocess CPU 13,564s → 11,623s.
205 lines
7.8 KiB
Python
205 lines
7.8 KiB
Python
"""Tests for the ``hermes hooks`` CLI subcommand."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import io
|
|
import json
|
|
from contextlib import redirect_stdout
|
|
from pathlib import Path
|
|
from types import SimpleNamespace
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from agent import shell_hooks
|
|
from hermes_cli import hooks as hooks_cli
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _isolated_home(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "home"))
|
|
monkeypatch.delenv("HERMES_ACCEPT_HOOKS", raising=False)
|
|
shell_hooks.reset_for_tests()
|
|
yield
|
|
shell_hooks.reset_for_tests()
|
|
|
|
|
|
def _hook_script(tmp_path: Path, body: str, name: str = "hook.sh") -> Path:
|
|
p = tmp_path / name
|
|
p.write_text(body)
|
|
p.chmod(0o755)
|
|
return p
|
|
|
|
|
|
def _run(sub_args: SimpleNamespace) -> str:
|
|
"""Capture stdout for a hooks_command invocation."""
|
|
buf = io.StringIO()
|
|
with redirect_stdout(buf):
|
|
hooks_cli.hooks_command(sub_args)
|
|
return buf.getvalue()
|
|
|
|
|
|
# ── list ──────────────────────────────────────────────────────────────────
|
|
|
|
|
|
class TestHooksList:
|
|
def test_empty_config(self, tmp_path):
|
|
with patch("hermes_cli.config.load_config", return_value={}):
|
|
out = _run(SimpleNamespace(hooks_action="list"))
|
|
assert "No shell hooks configured" in out
|
|
|
|
def test_shows_configured_and_consent_status(self, tmp_path):
|
|
script = _hook_script(
|
|
tmp_path, "#!/usr/bin/env bash\nprintf '{}\\n'\n",
|
|
)
|
|
cfg = {
|
|
"hooks": {
|
|
"pre_tool_call": [
|
|
{"matcher": "terminal", "command": str(script), "timeout": 30},
|
|
],
|
|
"on_session_start": [
|
|
{"command": str(script)},
|
|
],
|
|
}
|
|
}
|
|
|
|
# Approve one of the two so we can see both states in the output
|
|
shell_hooks._record_approval("pre_tool_call", str(script))
|
|
|
|
with patch("hermes_cli.config.load_config", return_value=cfg):
|
|
out = _run(SimpleNamespace(hooks_action="list"))
|
|
|
|
assert "[pre_tool_call]" in out
|
|
assert "[on_session_start]" in out
|
|
assert "✓ allowed" in out
|
|
assert "✗ not allowlisted" in out
|
|
assert str(script) in out
|
|
|
|
|
|
# ── test ──────────────────────────────────────────────────────────────────
|
|
|
|
|
|
class TestHooksTest:
|
|
def test_synthetic_payload_matches_production_shape(self, tmp_path):
|
|
"""`hermes hooks test` must feed the script stdin in the same
|
|
shape invoke_hook() would at runtime. Prior to this fix,
|
|
run_once bypassed _serialize_payload and the two paths diverged —
|
|
scripts tested with `hermes hooks test` saw different top-level
|
|
keys than at runtime, silently breaking in production."""
|
|
capture = tmp_path / "captured.json"
|
|
script = _hook_script(
|
|
tmp_path,
|
|
f"#!/usr/bin/env bash\ncat - > {capture}\nprintf '{{}}\\n'\n",
|
|
)
|
|
cfg = {"hooks": {"subagent_stop": [{"command": str(script)}]}}
|
|
with patch("hermes_cli.config.load_config", return_value=cfg):
|
|
_run(SimpleNamespace(
|
|
hooks_action="test", event="subagent_stop",
|
|
for_tool=None, payload_file=None,
|
|
))
|
|
|
|
seen = json.loads(capture.read_text())
|
|
# Same top-level keys _serialize_payload produces at runtime
|
|
assert set(seen.keys()) == {
|
|
"hook_event_name", "tool_name", "tool_input",
|
|
"session_id", "cwd", "extra",
|
|
}
|
|
# parent_session_id was routed to top-level session_id (matches runtime)
|
|
assert seen["session_id"] == "parent-sess"
|
|
assert "parent_session_id" not in seen["extra"]
|
|
# subagent_stop has no tool, so tool_name / tool_input are null
|
|
assert seen["tool_name"] is None
|
|
assert seen["tool_input"] is None
|
|
|
|
def test_fires_real_subprocess_and_parses_block(self, tmp_path):
|
|
block_script = _hook_script(
|
|
tmp_path,
|
|
"#!/usr/bin/env bash\n"
|
|
'printf \'{"decision": "block", "reason": "nope"}\\n\'\n',
|
|
name="block.sh",
|
|
)
|
|
cfg = {
|
|
"hooks": {
|
|
"pre_tool_call": [
|
|
{"matcher": "terminal", "command": str(block_script)},
|
|
],
|
|
},
|
|
}
|
|
with patch("hermes_cli.config.load_config", return_value=cfg):
|
|
out = _run(SimpleNamespace(
|
|
hooks_action="test", event="pre_tool_call",
|
|
for_tool="terminal", payload_file=None,
|
|
))
|
|
|
|
# Parsed block appears in output
|
|
assert '"action": "block"' in out
|
|
assert '"message": "nope"' in out
|
|
|
|
|
|
# ── revoke ────────────────────────────────────────────────────────────────
|
|
|
|
|
|
class TestHooksRevoke:
|
|
def test_revoke_removes_entry(self, tmp_path):
|
|
script = _hook_script(tmp_path, "#!/usr/bin/env bash\n")
|
|
shell_hooks._record_approval("on_session_start", str(script))
|
|
|
|
out = _run(SimpleNamespace(hooks_action="revoke", command=str(script)))
|
|
assert "Removed 1" in out
|
|
assert shell_hooks.allowlist_entry_for(
|
|
"on_session_start", str(script),
|
|
) is None
|
|
|
|
|
|
# ── doctor ────────────────────────────────────────────────────────────────
|
|
|
|
|
|
class TestHooksDoctor:
|
|
|
|
|
|
def test_flags_mtime_drift(self, tmp_path, monkeypatch):
|
|
"""Allowlist with older mtime than current -> drift warning."""
|
|
script = _hook_script(tmp_path, "#!/usr/bin/env bash\nprintf '{}\\n'\n")
|
|
|
|
# Manually stash an allowlist entry with an old mtime
|
|
from agent.shell_hooks import allowlist_path
|
|
allowlist_path().parent.mkdir(parents=True, exist_ok=True)
|
|
allowlist_path().write_text(json.dumps({
|
|
"approvals": [
|
|
{
|
|
"event": "on_session_start",
|
|
"command": str(script),
|
|
"approved_at": "2000-01-01T00:00:00Z",
|
|
"script_mtime_at_approval": "2000-01-01T00:00:00Z",
|
|
}
|
|
]
|
|
}))
|
|
|
|
cfg = {"hooks": {"on_session_start": [{"command": str(script)}]}}
|
|
with patch("hermes_cli.config.load_config", return_value=cfg):
|
|
out = _run(SimpleNamespace(hooks_action="doctor"))
|
|
assert "modified since approval" in out
|
|
|
|
|
|
def test_unallowlisted_script_is_not_executed(self, tmp_path):
|
|
"""Regression for M4: `hermes hooks doctor` used to run every
|
|
listed script against a synthetic payload as part of its JSON
|
|
smoke test, which contradicted the documented workflow of
|
|
"spot newly-added hooks *before they register*". An un-allowlisted
|
|
script must not be executed during `doctor`."""
|
|
sentinel = tmp_path / "executed"
|
|
# Script would touch the sentinel if executed; we assert it wasn't.
|
|
script = _hook_script(
|
|
tmp_path,
|
|
f"#!/usr/bin/env bash\ntouch {sentinel}\nprintf '{{}}\\n'\n",
|
|
)
|
|
cfg = {"hooks": {"on_session_start": [{"command": str(script)}]}}
|
|
with patch("hermes_cli.config.load_config", return_value=cfg):
|
|
out = _run(SimpleNamespace(hooks_action="doctor"))
|
|
|
|
assert not sentinel.exists(), (
|
|
"doctor executed an un-allowlisted script — "
|
|
"M4 gate regressed"
|
|
)
|
|
assert "not allowlisted" in out.lower()
|
|
assert "skipped JSON smoke test" in out
|