hermes-agent/tests/tools/test_clarify_gateway.py
Teknium 39975613b1
test: prune wave 2 + speed fixes — 28,106 → 19,757 test functions, suite wall 315s → 294s
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.
2026-07-29 13:39:40 -07:00

343 lines
12 KiB
Python

"""Tests for the gateway-side clarify primitive (tools/clarify_gateway.py).
The clarify tool needs to ask the user a question and block the agent
thread until they respond. These tests cover the module-level state
machine: register, wait, resolve via button, resolve via text-fallback,
"Other"-button text-capture flip, timeout, session boundary cleanup.
"""
from __future__ import annotations
import threading
import time
from concurrent.futures import ThreadPoolExecutor
def _clear_clarify_state():
"""Reset module-level state between tests."""
from tools import clarify_gateway as cm
with cm._lock:
cm._entries.clear()
cm._session_index.clear()
cm._notify_cbs.clear()
class TestClarifyPrimitive:
"""Core register/wait/resolve mechanics."""
def setup_method(self):
_clear_clarify_state()
def test_button_choice_resolves_wait(self):
"""resolve_gateway_clarify unblocks wait_for_response with the chosen string."""
from tools import clarify_gateway as cm
cm.register("id1", "sk1", "Pick one", ["A", "B", "C"])
def resolver():
time.sleep(0.05)
cm.resolve_gateway_clarify("id1", "B")
threading.Thread(target=resolver).start()
result = cm.wait_for_response("id1", timeout=10.0)
assert result == "B"
def test_open_ended_auto_awaits_text(self):
"""Clarify with no choices is in text-capture mode immediately."""
from tools import clarify_gateway as cm
entry = cm.register("id2", "sk2", "Free form?", None)
assert entry.awaiting_text is True
# get_pending_for_session returns the entry so the gateway
# text-intercept can find it.
pending = cm.get_pending_for_session("sk2")
assert pending is not None
assert pending.clarify_id == "id2"
def test_button_choice_does_not_auto_await(self):
"""Multi-choice clarify should NOT be in text-capture mode initially."""
from tools import clarify_gateway as cm
entry = cm.register("id3", "sk3", "Pick", ["X", "Y"])
assert entry.awaiting_text is False
assert cm.get_pending_for_session("sk3") is None
def test_include_choice_prompts_returns_multi_choice_entry(self):
"""Gateway typed replies must see active choice prompts too."""
from tools import clarify_gateway as cm
cm.register("id3b", "sk3b", "Pick", ["X", "Y"])
pending = cm.get_pending_for_session("sk3b", include_choice_prompts=True)
assert pending is not None
assert pending.clarify_id == "id3b"
def test_clear_session_cancels_pending_entries(self):
"""clear_session unblocks blocked threads with empty response."""
from tools import clarify_gateway as cm
cm.register("id7", "sk7", "Q?", ["A"])
def waiter():
return cm.wait_for_response("id7", timeout=10.0)
with ThreadPoolExecutor(1) as pool:
fut = pool.submit(waiter)
time.sleep(0.05)
cancelled = cm.clear_session("sk7")
assert cancelled == 1
result = fut.result(timeout=10.0)
# clear_session sets response="" then the wait returns it
assert result == ""
def test_notify_register_unregister_clears_pending(self):
"""unregister_notify cancels any pending clarify so threads unwind."""
from tools import clarify_gateway as cm
cm.register("id9", "sk9", "Q?", ["A"])
def waiter():
return cm.wait_for_response("id9", timeout=10.0)
with ThreadPoolExecutor(1) as pool:
fut = pool.submit(waiter)
time.sleep(0.05)
cm.register_notify("sk9", lambda entry: None)
cm.unregister_notify("sk9")
# unregister_notify calls clear_session; thread unwinds
result = fut.result(timeout=10.0)
assert result == ""
def test_session_index_isolation(self):
"""Entries from different sessions don't leak across get_pending lookups."""
from tools import clarify_gateway as cm
cm.register("idA", "alpha", "Q?", None) # auto-await text
cm.register("idB", "beta", "Q?", None) # auto-await text
a = cm.get_pending_for_session("alpha")
b = cm.get_pending_for_session("beta")
assert a is not None and a.clarify_id == "idA"
assert b is not None and b.clarify_id == "idB"
def test_clarify_timeout_config_default(self):
"""get_clarify_timeout returns a positive int (default 3600)."""
from tools import clarify_gateway as cm
timeout = cm.get_clarify_timeout()
# Default 3600s OR whatever is in the user's loaded config.
# Floor check: must be a positive int, not crashed.
assert isinstance(timeout, int)
assert timeout > 0
class TestGatewayTextIntercept:
"""The gateway's _handle_message intercepts text replies to pending clarifies."""
def setup_method(self):
_clear_clarify_state()
def test_get_pending_for_session_returns_oldest_text_awaiting(self):
"""When two clarifies are pending, get_pending_for_session returns the
first that is awaiting_text (the older one if both)."""
from tools import clarify_gateway as cm
# Older multi-choice (not awaiting text)
cm.register("first", "sk", "Q1?", ["A"])
# Newer open-ended (awaiting text)
cm.register("second", "sk", "Q2?", None)
pending = cm.get_pending_for_session("sk")
# The newer one is awaiting text; the older isn't.
assert pending is not None
assert pending.clarify_id == "second"
# Now flip the first to text mode too. Both are awaiting text,
# FIFO returns the older one.
cm.mark_awaiting_text("first")
pending2 = cm.get_pending_for_session("sk")
assert pending2 is not None
assert pending2.clarify_id == "first"
def test_text_fallback_enables_awaiting_text_for_multi_choice(self):
"""When base send_clarify renders choices as text, mark_awaiting_text
is called so the gateway text-intercept can capture the reply."""
from tools import clarify_gateway as cm
entry = cm.register("id-tf", "sk-tf", "Pick one", ["A", "B", "C"])
# Initially, multi-choice does NOT await text (button path)
assert entry.awaiting_text is False
# After the base send_clarify text fallback calls mark_awaiting_text:
flipped = cm.mark_awaiting_text("id-tf")
assert flipped is True
# Now get_pending_for_session should find it
pending = cm.get_pending_for_session("sk-tf")
assert pending is not None
assert pending.clarify_id == "id-tf"
# Clean up
cm.clear_session("sk-tf")
class TestCoverageGaps:
"""Cover remaining branches: signature(), get_entry miss, find_awaiting
with deleted entry, cancel with None entry, timeout exception, get_notify."""
def setup_method(self):
_clear_clarify_state()
def test_entry_signature(self):
"""_ClarifyEntry.signature() returns the expected dict."""
from tools import clarify_gateway as cm
entry = cm.register("sig1", "sk", "Q?", ["A", "B"])
sig = entry.signature()
assert sig["clarify_id"] == "sig1"
assert sig["session_key"] == "sk"
assert sig["question"] == "Q?"
assert sig["choices"] == ["A", "B"]
def test_wait_for_response_unknown_id_returns_none(self):
"""wait_for_response on a non-existent id returns None immediately."""
from tools import clarify_gateway as cm
assert cm.wait_for_response("nonexistent-id", timeout=0.1) is None
def test_get_clarify_timeout_exception_returns_default(self, monkeypatch):
"""get_clarify_timeout returns 3600 when load_config raises."""
from tools import clarify_gateway as cm
monkeypatch.setattr("hermes_cli.config.load_config",
lambda: (_ for _ in ()).throw(RuntimeError("boom")))
assert cm.get_clarify_timeout() == 3600
def test_get_notify_returns_none_when_not_registered(self):
"""get_notify returns None for an unregistered session."""
from tools import clarify_gateway as cm
assert cm.get_notify("unregistered") is None
class TestClarifyTimeoutResolution:
"""resolve_clarify_timeout is the single source of truth for the clarify
timeout, shared by the CLI, TUI/desktop, and messaging-gateway paths."""
def test_canonical_agent_key(self):
from tools import clarify_gateway as cm
assert cm.resolve_clarify_timeout({"agent": {"clarify_timeout": 900}}) == 900
def test_non_positive_preserved_as_unlimited_sentinel(self):
"""<= 0 is passed through verbatim — the waiting loops read it as
'unlimited', so the resolver must not clamp it to a positive default."""
from tools import clarify_gateway as cm
assert cm.resolve_clarify_timeout({"agent": {"clarify_timeout": 0}}) == 0
assert cm.resolve_clarify_timeout({"clarify": {"timeout": -1}}) == -1
class TestUnlimitedWait:
"""timeout <= 0 makes wait_for_response block until the answer arrives
instead of auto-skipping."""
def setup_method(self):
_clear_clarify_state()
def test_zero_timeout_waits_until_resolved(self):
from tools import clarify_gateway as cm
cm.register("u1", "sk", "Q?", ["A", "B"])
result_box = {}
def waiter():
result_box["r"] = cm.wait_for_response("u1", timeout=0)
t = threading.Thread(target=waiter)
t.start()
# An unlimited wait cannot finish while nothing resolves it: still
# running after a comfortable margin (old code auto-skipped at once).
t.join(timeout=1.5)
assert t.is_alive()
# Once resolved, the unlimited wait returns the real answer.
cm.resolve_gateway_clarify("u1", "B")
t.join(timeout=5.0)
assert not t.is_alive()
assert result_box["r"] == "B"
class TestMultiSelectTextFallback:
"""Multi-select clarifies via the gateway text fallback.
The adapter's numbered-list fallback asks the user to reply with
comma/space-separated numbers; _coerce_text_response must map those to a
JSON array of choice labels (which _parse_multi_select_response on the
tool side decodes into a list).
"""
def setup_method(self):
_clear_clarify_state()
def _register_multi(self, cid="m1", choices=("A", "B", "C")):
from tools import clarify_gateway as cm
entry = cm.register(cid, "sk", "Pick some", list(choices), multi_select=True)
# Text fallback path always flips awaiting_text on.
cm.mark_awaiting_text(cid)
return entry
def test_register_stores_multi_select_flag(self):
entry = self._register_multi()
assert entry.multi_select is True
assert entry.signature()["multi_select"] is True
def test_multi_select_without_choices_is_ignored(self):
"""multi_select on an open-ended clarify is meaningless — dropped."""
from tools import clarify_gateway as cm
entry = cm.register("s2", "sk", "Q?", None, multi_select=True)
assert entry.multi_select is False
def test_duplicate_selections_deduped(self):
import json
from tools import clarify_gateway as cm
entry = self._register_multi()
coerced = cm._coerce_text_response(entry, "1, 1, 2")
assert json.loads(coerced) == ["A", "B"]
def test_resolve_text_response_end_to_end(self):
"""resolve_text_response_for_session delivers the JSON array to the waiter."""
import json
from tools import clarify_gateway as cm
self._register_multi(cid="m3")
result_box = {}
def waiter():
result_box["r"] = cm.wait_for_response("m3", timeout=5)
t = threading.Thread(target=waiter)
t.start()
time.sleep(0.05)
assert cm.resolve_text_response_for_session("sk", "1,2") is True
t.join(timeout=5)
assert json.loads(result_box["r"]) == ["A", "B"]
def test_single_select_regression_numeric(self):
"""Single-select coercion unchanged: '2' maps to the choice label string."""
from tools import clarify_gateway as cm
entry = cm.register("s3", "sk", "Q?", ["A", "B", "C"])
assert cm._coerce_text_response(entry, "2") == "B"
def test_single_select_regression_label(self):
from tools import clarify_gateway as cm
entry = cm.register("s4", "sk", "Q?", ["A", "B"])
assert cm._coerce_text_response(entry, "b") == "B"