mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-30 19:09:28 +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).
92 lines
2.9 KiB
Python
92 lines
2.9 KiB
Python
"""Tests for CLI /copy command."""
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from cli import HermesCLI
|
|
|
|
|
|
def _make_cli() -> HermesCLI:
|
|
cli_obj = HermesCLI.__new__(HermesCLI)
|
|
cli_obj.config = {}
|
|
cli_obj.console = MagicMock()
|
|
cli_obj.agent = None
|
|
cli_obj.conversation_history = []
|
|
cli_obj.session_id = "sess-copy-test"
|
|
cli_obj._pending_input = MagicMock()
|
|
cli_obj._app = None
|
|
return cli_obj
|
|
|
|
|
|
def test_copy_copies_latest_assistant_message():
|
|
cli_obj = _make_cli()
|
|
cli_obj.conversation_history = [
|
|
{"role": "user", "content": "hi"},
|
|
{"role": "assistant", "content": "first"},
|
|
{"role": "assistant", "content": "latest"},
|
|
]
|
|
|
|
with patch("hermes_cli.clipboard.write_clipboard_text", return_value=True) as mock_copy:
|
|
result = cli_obj.process_command("/copy")
|
|
|
|
assert result is True
|
|
mock_copy.assert_called_once_with("latest")
|
|
|
|
|
|
def test_copy_with_index_uses_requested_assistant_message():
|
|
cli_obj = _make_cli()
|
|
cli_obj.conversation_history = [
|
|
{"role": "assistant", "content": "one"},
|
|
{"role": "assistant", "content": "two"},
|
|
]
|
|
|
|
with patch("hermes_cli.clipboard.write_clipboard_text", return_value=True) as mock_copy:
|
|
cli_obj.process_command("/copy 1")
|
|
|
|
mock_copy.assert_called_once_with("one")
|
|
|
|
|
|
def test_copy_strips_reasoning_blocks_before_copy():
|
|
cli_obj = _make_cli()
|
|
cli_obj.conversation_history = [
|
|
{
|
|
"role": "assistant",
|
|
"content": "<REASONING_SCRATCHPAD>internal</REASONING_SCRATCHPAD>\nVisible answer",
|
|
}
|
|
]
|
|
|
|
with patch("hermes_cli.clipboard.write_clipboard_text", return_value=True) as mock_copy:
|
|
cli_obj.process_command("/copy")
|
|
|
|
mock_copy.assert_called_once_with("Visible answer")
|
|
|
|
|
|
|
|
|
|
def test_copy_prefers_osc52_in_ssh_sessions():
|
|
"""Over SSH, native tools write the REMOTE clipboard — OSC 52 reaches
|
|
the local terminal instead (#31528)."""
|
|
cli_obj = _make_cli()
|
|
cli_obj.conversation_history = [{"role": "assistant", "content": "remote answer"}]
|
|
|
|
with patch("hermes_cli.clipboard.write_clipboard_text", return_value=True) as mock_native, \
|
|
patch("hermes_cli.clipboard.is_remote_shell_session", return_value=True), \
|
|
patch.object(cli_obj, "_write_osc52_clipboard") as mock_osc52:
|
|
cli_obj.process_command("/copy")
|
|
|
|
mock_osc52.assert_called_once_with("remote answer")
|
|
mock_native.assert_not_called()
|
|
|
|
|
|
def test_copy_native_first_when_local():
|
|
cli_obj = _make_cli()
|
|
cli_obj.conversation_history = [{"role": "assistant", "content": "local answer"}]
|
|
|
|
with patch("hermes_cli.clipboard.write_clipboard_text", return_value=True) as mock_native, \
|
|
patch("hermes_cli.clipboard.is_remote_shell_session", return_value=False), \
|
|
patch.object(cli_obj, "_write_osc52_clipboard") as mock_osc52:
|
|
cli_obj.process_command("/copy")
|
|
|
|
mock_native.assert_called_once_with("local answer")
|
|
mock_osc52.assert_not_called()
|
|
|
|
|