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).
324 lines
12 KiB
Python
324 lines
12 KiB
Python
"""Tests for the per-turn file-mutation verifier footer.
|
|
|
|
Covers the three moving pieces:
|
|
|
|
1. ``_extract_file_mutation_targets`` — pulls file paths from write_file /
|
|
patch (replace + V4A) tool-call argument dicts.
|
|
2. ``AIAgent._record_file_mutation_result`` — builds the per-turn state
|
|
dict, removing entries when a later success supersedes an earlier
|
|
failure for the same path.
|
|
3. ``AIAgent._format_file_mutation_failure_footer`` — renders the dict
|
|
as a user-visible advisory.
|
|
|
|
Regression target: the "Ben Eng llm-wiki" session where grok-4.1-fast
|
|
batched parallel patches, half failed, and the model summarised the
|
|
turn claiming every file was edited. This verifier makes over-claiming
|
|
structurally impossible past the model: the user always sees the real
|
|
list of files that did NOT change.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
|
|
import pytest
|
|
|
|
from run_agent import (
|
|
AIAgent,
|
|
_FILE_MUTATING_TOOLS,
|
|
_extract_error_preview,
|
|
_extract_file_mutation_targets,
|
|
_extract_landed_file_mutation_paths,
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _extract_file_mutation_targets
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestExtractFileMutationTargets:
|
|
def test_non_mutating_tool_returns_empty(self):
|
|
assert _extract_file_mutation_targets("read_file", {"path": "/x"}) == []
|
|
assert _extract_file_mutation_targets("terminal", {"command": "ls"}) == []
|
|
|
|
|
|
|
|
def test_patch_replace_mode_returns_path(self):
|
|
args = {"mode": "replace", "path": "/tmp/a.md", "old_string": "x", "new_string": "y"}
|
|
assert _extract_file_mutation_targets("patch", args) == ["/tmp/a.md"]
|
|
|
|
|
|
|
|
def test_patch_v4a_multi_file(self):
|
|
body = (
|
|
"*** Begin Patch\n"
|
|
"*** Update File: /tmp/a.md\n"
|
|
"@@ @@\n-a\n+b\n"
|
|
"*** Add File: /tmp/new.md\n"
|
|
"+fresh\n"
|
|
"*** Delete File: /tmp/old.md\n"
|
|
"*** End Patch\n"
|
|
)
|
|
args = {"mode": "patch", "patch": body}
|
|
paths = _extract_file_mutation_targets("patch", args)
|
|
assert paths == ["/tmp/a.md", "/tmp/new.md", "/tmp/old.md"]
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _extract_error_preview
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestExtractErrorPreview:
|
|
def test_json_error_field_preferred(self):
|
|
raw = json.dumps({"success": False, "error": "Could not find old_string in /tmp/x"})
|
|
assert _extract_error_preview(raw) == "Could not find old_string in /tmp/x"
|
|
|
|
def test_plain_string_falls_through(self):
|
|
assert _extract_error_preview("Error executing tool: boom") == "Error executing tool: boom"
|
|
|
|
def test_long_preview_truncated(self):
|
|
long = "x" * 500
|
|
out = _extract_error_preview(long, max_len=50)
|
|
assert len(out) <= 50
|
|
assert out.endswith("…")
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _record_file_mutation_result — state transitions
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _bare_agent() -> AIAgent:
|
|
"""Skip __init__ and only attach the per-turn state dict.
|
|
|
|
AIAgent.__init__ takes ~60 parameters and touches network, auth, and
|
|
the filesystem. For these tests we only need the two methods —
|
|
``_record_file_mutation_result`` and ``_format_file_mutation_failure_footer``.
|
|
Using ``object.__new__`` mirrors the gateway-test pattern documented in
|
|
the agent pitfalls list.
|
|
"""
|
|
agent = object.__new__(AIAgent)
|
|
agent._turn_failed_file_mutations = {}
|
|
agent._turn_file_mutation_paths = set()
|
|
return agent
|
|
|
|
|
|
class TestRecordFileMutationResult:
|
|
def test_non_mutating_tool_ignored(self):
|
|
agent = _bare_agent()
|
|
agent._record_file_mutation_result(
|
|
"read_file", {"path": "/tmp/x"}, "{}", is_error=True,
|
|
)
|
|
assert agent._turn_failed_file_mutations == {}
|
|
|
|
def test_failure_recorded(self):
|
|
agent = _bare_agent()
|
|
result = json.dumps({"success": False, "error": "Could not find old_string"})
|
|
agent._record_file_mutation_result(
|
|
"patch", {"mode": "replace", "path": "/tmp/a.md", "old_string": "x", "new_string": "y"},
|
|
result, is_error=True,
|
|
)
|
|
state = agent._turn_failed_file_mutations
|
|
assert "/tmp/a.md" in state
|
|
assert state["/tmp/a.md"]["tool"] == "patch"
|
|
assert "Could not find old_string" in state["/tmp/a.md"]["error_preview"]
|
|
|
|
def test_success_removes_prior_failure(self):
|
|
agent = _bare_agent()
|
|
# First attempt fails
|
|
agent._record_file_mutation_result(
|
|
"patch", {"mode": "replace", "path": "/tmp/a.md", "old_string": "x", "new_string": "y"},
|
|
json.dumps({"error": "not found"}), is_error=True,
|
|
)
|
|
assert "/tmp/a.md" in agent._turn_failed_file_mutations
|
|
# Second attempt with corrected old_string succeeds
|
|
agent._record_file_mutation_result(
|
|
"patch", {"mode": "replace", "path": "/tmp/a.md", "old_string": "real", "new_string": "fixed"},
|
|
json.dumps({"success": True, "diff": "..."}), is_error=False,
|
|
)
|
|
assert agent._turn_failed_file_mutations == {}
|
|
assert agent._turn_file_mutation_paths == {"/tmp/a.md"}
|
|
|
|
|
|
def test_landed_paths_prefer_resolved_tool_result(self):
|
|
paths = _extract_landed_file_mutation_paths(
|
|
"patch",
|
|
{"mode": "replace", "path": "src/app.py"},
|
|
json.dumps({
|
|
"success": True,
|
|
"files_modified": ["/tmp/project/src/app.py"],
|
|
}),
|
|
)
|
|
|
|
assert paths == ["/tmp/project/src/app.py"]
|
|
|
|
def test_write_file_with_lint_error_counts_as_landed(self):
|
|
agent = _bare_agent()
|
|
agent._record_file_mutation_result(
|
|
"write_file",
|
|
{"path": "/tmp/a.py", "content": "bad"},
|
|
json.dumps({"error": "write failed"}),
|
|
is_error=True,
|
|
)
|
|
assert "/tmp/a.py" in agent._turn_failed_file_mutations
|
|
|
|
result = json.dumps({
|
|
"bytes_written": 24,
|
|
"lint": {"status": "error", "output": "SyntaxError: invalid syntax"},
|
|
})
|
|
|
|
agent._record_file_mutation_result(
|
|
"write_file",
|
|
{"path": "/tmp/a.py", "content": "def nope(:\n"},
|
|
result,
|
|
is_error=True,
|
|
)
|
|
|
|
assert agent._turn_failed_file_mutations == {}
|
|
|
|
def test_patch_with_lsp_diagnostics_counts_as_landed(self):
|
|
agent = _bare_agent()
|
|
agent._record_file_mutation_result(
|
|
"patch",
|
|
{"mode": "replace", "path": "/tmp/a.py", "old_string": "x", "new_string": "y"},
|
|
json.dumps({"error": "Could not find old_string"}),
|
|
is_error=True,
|
|
)
|
|
assert "/tmp/a.py" in agent._turn_failed_file_mutations
|
|
|
|
result = json.dumps({
|
|
"success": True,
|
|
"diff": "--- a/tmp.py\n+++ b/tmp.py\n",
|
|
"files_modified": ["/tmp/a.py"],
|
|
"lsp_diagnostics": "<diagnostics>ERROR [1:1] type mismatch</diagnostics>",
|
|
})
|
|
|
|
agent._record_file_mutation_result(
|
|
"patch",
|
|
{"mode": "replace", "path": "/tmp/a.py", "old_string": "x", "new_string": "y"},
|
|
result,
|
|
is_error=True,
|
|
)
|
|
|
|
assert agent._turn_failed_file_mutations == {}
|
|
|
|
def test_repeated_failure_keeps_first_error(self):
|
|
agent = _bare_agent()
|
|
agent._record_file_mutation_result(
|
|
"patch", {"mode": "replace", "path": "/tmp/a.md", "old_string": "v1", "new_string": "y"},
|
|
json.dumps({"error": "first error"}), is_error=True,
|
|
)
|
|
agent._record_file_mutation_result(
|
|
"patch", {"mode": "replace", "path": "/tmp/a.md", "old_string": "v2", "new_string": "y"},
|
|
json.dumps({"error": "second error"}), is_error=True,
|
|
)
|
|
# Keep the original error — swapping to the latest would obscure
|
|
# the initial root cause.
|
|
assert "first error" in agent._turn_failed_file_mutations["/tmp/a.md"]["error_preview"]
|
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _format_file_mutation_failure_footer
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestFormatFooter:
|
|
def test_empty_returns_empty_string(self):
|
|
assert AIAgent._format_file_mutation_failure_footer({}) == ""
|
|
|
|
def test_single_failure(self):
|
|
out = AIAgent._format_file_mutation_failure_footer(
|
|
{"/tmp/a.md": {"tool": "patch", "error_preview": "Could not find old_string"}},
|
|
)
|
|
assert "1 file(s) were NOT modified" in out
|
|
assert "/tmp/a.md" in out
|
|
assert "Could not find old_string" in out
|
|
assert "git status" in out # user-actionable hint
|
|
|
|
def test_truncation_at_10_entries(self):
|
|
failed = {
|
|
f"/tmp/f{i}.md": {"tool": "patch", "error_preview": "err"}
|
|
for i in range(15)
|
|
}
|
|
out = AIAgent._format_file_mutation_failure_footer(failed)
|
|
assert "15 file(s) were NOT modified" in out
|
|
assert "… and 5 more" in out
|
|
# Ten file bullets + header + "and X more" line
|
|
lines = out.split("\n")
|
|
bullet_lines = [ln for ln in lines if ln.lstrip().startswith("•")]
|
|
assert len(bullet_lines) == 11 # 10 shown + 1 summary
|
|
|
|
|
|
def test_footer_path_not_extracted_by_gateway(self):
|
|
"""End-to-end: the gateway's extract_local_files must NOT pull a
|
|
config.yaml path out of the rendered footer (#35584)."""
|
|
import os
|
|
import tempfile
|
|
from gateway.platforms.base import BasePlatformAdapter
|
|
|
|
tmp = tempfile.mkdtemp(prefix="hermes_footer_")
|
|
try:
|
|
cfg = os.path.join(tmp, "config.yaml")
|
|
with open(cfg, "w") as fh:
|
|
fh.write("openrouter_api_key: sk-LEAK\n")
|
|
footer = AIAgent._format_file_mutation_failure_footer(
|
|
{cfg: {
|
|
"tool": "patch",
|
|
"error_preview": (
|
|
f"Write denied: '{cfg}' is a protected "
|
|
"system/credential file."
|
|
),
|
|
}},
|
|
)
|
|
response = "I updated your config.\n\n" + footer
|
|
paths, _ = BasePlatformAdapter.extract_local_files(response)
|
|
assert paths == [], f"footer leaked deliverable path(s): {paths}"
|
|
finally:
|
|
import shutil
|
|
shutil.rmtree(tmp, ignore_errors=True)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _file_mutation_verifier_enabled — env + config precedence
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestVerifierEnabled:
|
|
def test_default_is_enabled(self, monkeypatch):
|
|
monkeypatch.delenv("HERMES_FILE_MUTATION_VERIFIER", raising=False)
|
|
agent = _bare_agent()
|
|
# With no env and no config present, safe default is True.
|
|
# load_config may surface a user config.yaml in some envs — stub it.
|
|
import hermes_cli.config as _cfg_mod
|
|
monkeypatch.setattr(_cfg_mod, "load_config", lambda: {})
|
|
assert agent._file_mutation_verifier_enabled() is True
|
|
|
|
@pytest.mark.parametrize("value", ["0", "false", "FALSE", "no", "off"])
|
|
def test_env_disables(self, monkeypatch, value):
|
|
monkeypatch.setenv("HERMES_FILE_MUTATION_VERIFIER", value)
|
|
agent = _bare_agent()
|
|
assert agent._file_mutation_verifier_enabled() is False
|
|
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Module-level invariants
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_file_mutating_tools_set_shape():
|
|
"""write_file + patch are the only tools the verifier tracks.
|
|
|
|
Guard rail: if someone adds a third file-mutating tool (e.g. a new
|
|
``append_file``), they should also audit whether the verifier should
|
|
track it. This test fails loudly on unilateral additions.
|
|
"""
|
|
assert _FILE_MUTATING_TOOLS == frozenset({"write_file", "patch"})
|