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).
237 lines
7 KiB
Python
237 lines
7 KiB
Python
"""Regression tests for iteration-limit exit normalization (#61631)."""
|
|
|
|
from types import SimpleNamespace
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
from agent.turn_finalizer import finalize_turn
|
|
|
|
|
|
class _LimitAgent:
|
|
def __init__(
|
|
self,
|
|
*,
|
|
max_iterations=60,
|
|
budget_remaining=0,
|
|
completion_explainer=False,
|
|
):
|
|
self.max_iterations = max_iterations
|
|
self.iteration_budget = SimpleNamespace(
|
|
remaining=budget_remaining, used=max_iterations, max_total=max_iterations
|
|
)
|
|
self.quiet_mode = True
|
|
self.model = "test-model"
|
|
self.provider = "test-provider"
|
|
self.base_url = ""
|
|
self.session_id = "sess-test"
|
|
self.context_compressor = SimpleNamespace(last_prompt_tokens=0)
|
|
self.session_input_tokens = 0
|
|
self.session_output_tokens = 0
|
|
self.session_cache_read_tokens = 0
|
|
self.session_cache_write_tokens = 0
|
|
self.session_reasoning_tokens = 0
|
|
self.session_prompt_tokens = 0
|
|
self.session_completion_tokens = 0
|
|
self.session_total_tokens = 0
|
|
self.session_estimated_cost_usd = 0
|
|
self.session_cost_status = "unknown"
|
|
self.session_cost_source = "test"
|
|
self._tool_guardrail_halt_decision = None
|
|
self._interrupt_message = None
|
|
self._response_was_previewed = False
|
|
self._skill_nudge_interval = 0
|
|
self._iters_since_skill = 0
|
|
self.valid_tool_names = []
|
|
self.persisted_messages = None
|
|
self._handle_max_iterations_called = False
|
|
self._completion_explainer = completion_explainer
|
|
|
|
def _handle_max_iterations(self, messages, api_call_count):
|
|
self._handle_max_iterations_called = True
|
|
return "summary from extra call"
|
|
|
|
def _emit_status(self, *_args, **_kwargs):
|
|
pass
|
|
|
|
def _safe_print(self, *_args, **_kwargs):
|
|
pass
|
|
|
|
def _save_trajectory(self, *_args, **_kwargs):
|
|
pass
|
|
|
|
def _cleanup_task_resources(self, *_args, **_kwargs):
|
|
pass
|
|
|
|
def _drop_trailing_empty_response_scaffolding(self, messages):
|
|
pass
|
|
|
|
def _persist_session(self, messages, conversation_history):
|
|
self.persisted_messages = list(messages)
|
|
|
|
def _file_mutation_verifier_enabled(self):
|
|
return False
|
|
|
|
def _turn_completion_explainer_enabled(self):
|
|
return self._completion_explainer
|
|
|
|
def _format_turn_completion_explanation(self, _reason):
|
|
return "iteration-limit explanation"
|
|
|
|
def _drain_pending_steer(self):
|
|
return None
|
|
|
|
def clear_interrupt(self):
|
|
pass
|
|
|
|
def _sync_external_memory_for_turn(self, **_kwargs):
|
|
pass
|
|
|
|
|
|
def _finalize(
|
|
agent,
|
|
*,
|
|
final_response,
|
|
exit_reason,
|
|
api_call_count=60,
|
|
pending_verification_response=None,
|
|
):
|
|
return finalize_turn(
|
|
agent,
|
|
final_response=final_response,
|
|
api_call_count=api_call_count,
|
|
interrupted=False,
|
|
failed=False,
|
|
messages=[{"role": "user", "content": "task"}],
|
|
conversation_history=[],
|
|
effective_task_id="task",
|
|
turn_id="turn",
|
|
user_message="task",
|
|
original_user_message="task",
|
|
_should_review_memory=False,
|
|
_turn_exit_reason=exit_reason,
|
|
_pending_verification_response=pending_verification_response,
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exit_reason", "interrupted", "failed"),
|
|
[
|
|
("interrupted_by_user", True, False),
|
|
("all_retries_exhausted_no_response", False, False),
|
|
("provider_failure", False, True),
|
|
],
|
|
)
|
|
def test_pending_response_does_not_mask_later_terminal_exit(
|
|
monkeypatch, exit_reason, interrupted, failed
|
|
):
|
|
monkeypatch.setattr("hermes_cli.plugins.invoke_hook", lambda *_a, **_kw: [])
|
|
agent = _LimitAgent()
|
|
|
|
result = finalize_turn(
|
|
agent,
|
|
final_response=None,
|
|
api_call_count=60,
|
|
interrupted=interrupted,
|
|
failed=failed,
|
|
messages=[{"role": "user", "content": "task"}],
|
|
conversation_history=[],
|
|
effective_task_id="task",
|
|
turn_id="turn",
|
|
user_message="task",
|
|
original_user_message="task",
|
|
_should_review_memory=False,
|
|
_turn_exit_reason=exit_reason,
|
|
_pending_verification_response="stale premature report",
|
|
)
|
|
|
|
assert result["final_response"] is None
|
|
assert result["turn_exit_reason"] == exit_reason
|
|
assert result["completed"] is False
|
|
assert agent._handle_max_iterations_called is False
|
|
|
|
|
|
def test_pending_response_records_kanban_timeout(monkeypatch):
|
|
monkeypatch.setattr("hermes_cli.plugins.invoke_hook", lambda *_a, **_kw: [])
|
|
monkeypatch.setenv("HERMES_KANBAN_TASK", "task-123")
|
|
record = MagicMock(name="record_task_failure")
|
|
conn = SimpleNamespace(close=lambda: None)
|
|
monkeypatch.setattr("hermes_cli.kanban_db.connect", lambda: conn)
|
|
monkeypatch.setattr("hermes_cli.kanban_db._record_task_failure", record)
|
|
agent = _LimitAgent()
|
|
|
|
result = _finalize(
|
|
agent,
|
|
final_response=None,
|
|
exit_reason="unknown",
|
|
pending_verification_response="composed report",
|
|
)
|
|
|
|
assert result["turn_exit_reason"] == "max_iterations_reached(60/60)"
|
|
record.assert_called_once_with(
|
|
conn,
|
|
"task-123",
|
|
error=(
|
|
"Iteration budget exhausted (60/60) — task could not complete "
|
|
"within the allowed iterations"
|
|
),
|
|
outcome="timed_out",
|
|
release_claim=True,
|
|
end_run=True,
|
|
event_payload_extra={"budget_used": 60, "budget_max": 60},
|
|
)
|
|
|
|
|
|
def test_published_pending_candidate_is_not_duplicated_by_finalizer(monkeypatch):
|
|
"""When budget exhaustion preserves a verification candidate that is
|
|
already the tail assistant message, the finalizer must NOT append a
|
|
duplicate. The content-comparison guard prevents this. (#65919 §7)
|
|
"""
|
|
monkeypatch.setattr("hermes_cli.plugins.invoke_hook", lambda *_a, **_kw: [])
|
|
agent = _LimitAgent()
|
|
report = "the composed report"
|
|
|
|
result = finalize_turn(
|
|
agent,
|
|
final_response=report,
|
|
api_call_count=60,
|
|
interrupted=False,
|
|
failed=False,
|
|
# The candidate is already in messages as the tail assistant.
|
|
messages=[
|
|
{"role": "user", "content": "task"},
|
|
{"role": "assistant", "content": report},
|
|
],
|
|
conversation_history=[],
|
|
effective_task_id="task",
|
|
turn_id="turn",
|
|
user_message="task",
|
|
original_user_message="task",
|
|
_should_review_memory=False,
|
|
_turn_exit_reason="unknown",
|
|
_pending_verification_response=report,
|
|
)
|
|
|
|
# The tail assistant already matches final_response — no duplicate appended.
|
|
roles = [m["role"] for m in result["messages"]]
|
|
assert roles == ["user", "assistant"]
|
|
# Persisted messages should also have no duplicate.
|
|
assert agent.persisted_messages is not None
|
|
persisted_roles = [m["role"] for m in agent.persisted_messages]
|
|
assert persisted_roles == ["user", "assistant"]
|
|
|
|
|