mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-27 11:22:03 +00:00
The verify-on-stop guard (PRs #52296, #52297) defaulted ON for every session, so on gateway messaging surfaces (Telegram, Discord, etc.) the model complied with the nudge by writing a hermes-verify temp script and emitting an ad-hoc verification summary, which the gateway delivered to the end user as chat noise. Resolve a surface-aware default instead. The DEFAULT_CONFIG value becomes the sentinel "auto", which verify_on_stop_enabled() resolves to ON for interactive coding surfaces (CLI, TUI, desktop) and programmatic callers, and OFF for conversational messaging surfaces. The surface is read from HERMES_SESSION_PLATFORM (what the gateway actually binds), with HERMES_SESSION_SOURCE and HERMES_PLATFORM as fallbacks, matching the sibling resolution in skill_commands.py and prompt_builder.py. An explicit HERMES_VERIFY_ON_STOP env var or a boolean agent.verify_on_stop config still overrides in either direction. The passive evidence ledger and the call site are untouched.
263 lines
9.1 KiB
Python
263 lines
9.1 KiB
Python
import json
|
|
import tempfile
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from agent.verification_evidence import (
|
|
mark_workspace_edited,
|
|
record_terminal_result,
|
|
)
|
|
from agent.verification_stop import (
|
|
build_verify_on_stop_nudge,
|
|
verify_on_stop_enabled,
|
|
)
|
|
|
|
|
|
def _node_project(root: Path) -> None:
|
|
(root / "package.json").write_text(
|
|
json.dumps({"scripts": {"test": "vitest", "lint": "eslint ."}}),
|
|
encoding="utf-8",
|
|
)
|
|
(root / "pnpm-lock.yaml").write_text("", encoding="utf-8")
|
|
|
|
|
|
def _make_project(root: Path) -> None:
|
|
root.mkdir()
|
|
_node_project(root)
|
|
|
|
|
|
@pytest.fixture
|
|
def clear_verify_env(monkeypatch):
|
|
"""Clear every env signal verify_on_stop_enabled consults.
|
|
|
|
Tests then set only the variable they exercise, mirroring how the CLI/TUI
|
|
set HERMES_SESSION_SOURCE and the gateway sets HERMES_SESSION_PLATFORM.
|
|
"""
|
|
for var in (
|
|
"HERMES_VERIFY_ON_STOP",
|
|
"HERMES_PLATFORM",
|
|
"HERMES_SESSION_PLATFORM",
|
|
"HERMES_SESSION_SOURCE",
|
|
):
|
|
monkeypatch.delenv(var, raising=False)
|
|
return monkeypatch
|
|
|
|
|
|
def test_verify_on_stop_default_is_on(clear_verify_env):
|
|
# No env, no messaging identity, no explicit config -> default ON.
|
|
assert verify_on_stop_enabled({"agent": {}}) is True
|
|
|
|
|
|
def test_verify_on_stop_auto_sentinel_resolves_to_surface_default(clear_verify_env):
|
|
# The DEFAULT_CONFIG sentinel must fall through to the surface-aware default,
|
|
# not be coerced to a truthy string.
|
|
assert verify_on_stop_enabled({"agent": {"verify_on_stop": "auto"}}) is True
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", "telegram")
|
|
assert verify_on_stop_enabled({"agent": {"verify_on_stop": "auto"}}) is False
|
|
|
|
|
|
def test_verify_on_stop_env_can_disable(clear_verify_env):
|
|
clear_verify_env.setenv("HERMES_VERIFY_ON_STOP", "0")
|
|
assert verify_on_stop_enabled({"agent": {"verify_on_stop": True}}) is False
|
|
|
|
|
|
def test_verify_on_stop_config_can_disable(clear_verify_env):
|
|
assert verify_on_stop_enabled({"agent": {"verify_on_stop": False}}) is False
|
|
|
|
|
|
def test_verify_on_stop_off_on_gateway_messaging_platform(clear_verify_env):
|
|
# The gateway binds the platform value to HERMES_SESSION_PLATFORM and leaves
|
|
# HERMES_SESSION_SOURCE empty, so a real Telegram turn must default OFF.
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", "telegram")
|
|
assert verify_on_stop_enabled({"agent": {}}) is False
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"platform",
|
|
["discord", "whatsapp_cloud", "signal", "slack", "matrix", "email", "sms"],
|
|
)
|
|
def test_verify_on_stop_off_for_each_messaging_platform(clear_verify_env, platform):
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", platform)
|
|
assert verify_on_stop_enabled({"agent": {}}) is False
|
|
|
|
|
|
def test_verify_on_stop_messaging_platform_is_case_insensitive(clear_verify_env):
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", " Telegram ")
|
|
assert verify_on_stop_enabled({"agent": {}}) is False
|
|
|
|
|
|
def test_verify_on_stop_uses_hermes_platform_override(clear_verify_env):
|
|
# HERMES_PLATFORM mirrors the sibling platform resolution and also flags a
|
|
# messaging surface.
|
|
clear_verify_env.setenv("HERMES_PLATFORM", "discord")
|
|
assert verify_on_stop_enabled({"agent": {}}) is False
|
|
|
|
|
|
@pytest.mark.parametrize("source", ["cli", "tui", "desktop", "codex", "local"])
|
|
def test_verify_on_stop_on_for_interactive_surfaces(clear_verify_env, source):
|
|
# CLI/TUI/desktop set HERMES_SESSION_SOURCE; these are coding surfaces -> ON.
|
|
clear_verify_env.setenv("HERMES_SESSION_SOURCE", source)
|
|
assert verify_on_stop_enabled({"agent": {}}) is True
|
|
|
|
|
|
@pytest.mark.parametrize("platform", ["api_server", "webhook", "msgraph_webhook"])
|
|
def test_verify_on_stop_on_for_programmatic_surfaces(clear_verify_env, platform):
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", platform)
|
|
assert verify_on_stop_enabled({"agent": {}}) is True
|
|
|
|
|
|
def test_env_forces_verify_on_stop_on_for_messaging(clear_verify_env):
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", "telegram")
|
|
clear_verify_env.setenv("HERMES_VERIFY_ON_STOP", "1")
|
|
assert verify_on_stop_enabled({"agent": {}}) is True
|
|
|
|
|
|
def test_config_forces_verify_on_stop_on_for_messaging(clear_verify_env):
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", "telegram")
|
|
assert verify_on_stop_enabled({"agent": {"verify_on_stop": True}}) is True
|
|
|
|
|
|
def test_verify_on_stop_default_path_through_load_config(tmp_path, clear_verify_env):
|
|
# E2E: the sole production caller passes no config, so verify_on_stop_enabled
|
|
# resolves through load_config() + DEFAULT_CONFIG. The "auto" sentinel must
|
|
# reach the surface-aware default rather than being shadowed by a static
|
|
# True. This is the path the unit-level tests above cannot exercise.
|
|
clear_verify_env.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
|
|
from hermes_cli.config import load_config
|
|
|
|
merged = load_config()
|
|
assert merged["agent"]["verify_on_stop"] == "auto"
|
|
|
|
# Interactive (no messaging identity) resolves ON through the real loader.
|
|
assert verify_on_stop_enabled() is True
|
|
|
|
# A messaging platform resolves OFF, proving the sentinel flows through.
|
|
clear_verify_env.setenv("HERMES_SESSION_PLATFORM", "telegram")
|
|
assert verify_on_stop_enabled() is False
|
|
|
|
|
|
def test_no_nudge_after_fresh_pass(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
_node_project(tmp_path)
|
|
changed = str(tmp_path / "src" / "app.ts")
|
|
|
|
record_terminal_result(
|
|
command="pnpm test",
|
|
cwd=tmp_path,
|
|
session_id="s1",
|
|
exit_code=0,
|
|
output="green",
|
|
)
|
|
|
|
assert build_verify_on_stop_nudge(session_id="s1", changed_paths=[changed]) is None
|
|
|
|
|
|
def test_nudge_checks_all_edited_workspaces(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
project_a = tmp_path / "a"
|
|
project_b = tmp_path / "b"
|
|
_make_project(project_a)
|
|
_make_project(project_b)
|
|
changed_a = str(project_a / "src" / "app.ts")
|
|
changed_b = str(project_b / "src" / "app.ts")
|
|
|
|
record_terminal_result(
|
|
command="pnpm test",
|
|
cwd=project_a,
|
|
session_id="s1",
|
|
exit_code=0,
|
|
output="green",
|
|
)
|
|
mark_workspace_edited(session_id="s1", cwd=project_b, paths=[changed_b])
|
|
|
|
nudge = build_verify_on_stop_nudge(
|
|
session_id="s1",
|
|
changed_paths=[changed_a, changed_b],
|
|
)
|
|
|
|
assert nudge is not None
|
|
assert "fresh passing verification evidence" in nudge
|
|
|
|
|
|
def test_nudge_after_unverified_edit_with_known_command(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
_node_project(tmp_path)
|
|
changed = str(tmp_path / "src" / "app.ts")
|
|
mark_workspace_edited(session_id="s1", cwd=tmp_path, paths=[changed])
|
|
|
|
nudge = build_verify_on_stop_nudge(session_id="s1", changed_paths=[changed])
|
|
|
|
assert nudge is not None
|
|
assert "fresh passing verification evidence" in nudge
|
|
assert "`pnpm run test`" in nudge
|
|
assert changed in nudge
|
|
|
|
|
|
def test_nudge_includes_failed_output_summary(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
_node_project(tmp_path)
|
|
changed = str(tmp_path / "src" / "app.ts")
|
|
|
|
record_terminal_result(
|
|
command="pnpm test",
|
|
cwd=tmp_path,
|
|
session_id="s1",
|
|
exit_code=1,
|
|
output="expected 1 got 2",
|
|
)
|
|
|
|
nudge = build_verify_on_stop_nudge(session_id="s1", changed_paths=[changed])
|
|
|
|
assert nudge is not None
|
|
assert "failed" in nudge
|
|
assert "expected 1 got 2" in nudge
|
|
assert "repair the code" in nudge
|
|
|
|
|
|
def test_no_suite_nudge_requests_temp_script(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
(tmp_path / "package.json").write_text("{}", encoding="utf-8")
|
|
changed = str(tmp_path / "src" / "app.ts")
|
|
|
|
nudge = build_verify_on_stop_nudge(session_id="s1", changed_paths=[changed])
|
|
|
|
assert nudge is not None
|
|
assert tempfile.gettempdir() in nudge
|
|
assert "ad-hoc verification" in nudge
|
|
assert "suite green" in nudge
|
|
|
|
|
|
def test_ad_hoc_pass_satisfies_no_suite_stop_loop(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
(tmp_path / "package.json").write_text("{}", encoding="utf-8")
|
|
changed = str(tmp_path / "src" / "app.ts")
|
|
script = Path(tempfile.gettempdir()) / f"hermes-ad-hoc-stop-{tmp_path.name}.py"
|
|
script.write_text("print('ok')\n", encoding="utf-8")
|
|
try:
|
|
record_terminal_result(
|
|
command=f"python {script}",
|
|
cwd=tmp_path,
|
|
session_id="s1",
|
|
exit_code=0,
|
|
output="ok",
|
|
)
|
|
finally:
|
|
script.unlink(missing_ok=True)
|
|
|
|
assert build_verify_on_stop_nudge(session_id="s1", changed_paths=[changed]) is None
|
|
|
|
|
|
def test_nudge_attempts_are_bounded(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / ".hermes"))
|
|
_node_project(tmp_path)
|
|
changed = str(tmp_path / "src" / "app.ts")
|
|
mark_workspace_edited(session_id="s1", cwd=tmp_path, paths=[changed])
|
|
|
|
assert build_verify_on_stop_nudge(
|
|
session_id="s1",
|
|
changed_paths=[changed],
|
|
attempts=2,
|
|
max_attempts=2,
|
|
) is None
|