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).
126 lines
4.1 KiB
Python
126 lines
4.1 KiB
Python
"""Tests for Anthropic Sonnet long-context tier 429 handling.
|
|
|
|
When Claude Max users without "extra usage" hit the 1M context tier
|
|
on Sonnet, Anthropic returns HTTP 429 "Extra usage is required for long
|
|
context requests." This is NOT a transient rate limit — the agent should
|
|
reduce context_length to 200k and compress instead of retrying.
|
|
|
|
Only Sonnet is affected — Opus 1M is general access.
|
|
"""
|
|
|
|
from types import SimpleNamespace
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Detection logic
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestLongContextTierDetection:
|
|
"""Verify the detection heuristic matches the Anthropic error."""
|
|
|
|
@staticmethod
|
|
def _is_long_context_tier_error(status_code, error_msg, model="claude-sonnet-4.6"):
|
|
error_msg = error_msg.lower()
|
|
return (
|
|
status_code == 429
|
|
and "extra usage" in error_msg
|
|
and "long context" in error_msg
|
|
and "sonnet" in model.lower()
|
|
)
|
|
|
|
def test_matches_anthropic_error(self):
|
|
assert self._is_long_context_tier_error(
|
|
429,
|
|
"Extra usage is required for long context requests.",
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_rejects_partial_match(self):
|
|
"""Both 'extra usage' AND 'long context' must be present."""
|
|
assert not self._is_long_context_tier_error(
|
|
429, "extra usage required"
|
|
)
|
|
assert not self._is_long_context_tier_error(
|
|
429, "long context requests not supported"
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Context reduction
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestContextReduction:
|
|
"""When the long-context tier error fires, context_length should
|
|
drop to 200k and the reduced flag should be set correctly."""
|
|
|
|
def _make_compressor(self, context_length=1_000_000, threshold_percent=0.5):
|
|
c = SimpleNamespace(
|
|
context_length=context_length,
|
|
threshold_percent=threshold_percent,
|
|
threshold_tokens=int(context_length * threshold_percent),
|
|
_context_probed=False,
|
|
_context_probe_persistable=False,
|
|
)
|
|
return c
|
|
|
|
def test_reduces_1m_to_200k(self):
|
|
comp = self._make_compressor(1_000_000)
|
|
reduced_ctx = 200_000
|
|
|
|
if comp.context_length > reduced_ctx:
|
|
comp.context_length = reduced_ctx
|
|
comp.threshold_tokens = int(reduced_ctx * comp.threshold_percent)
|
|
comp._context_probed = True
|
|
comp._context_probe_persistable = False
|
|
|
|
assert comp.context_length == 200_000
|
|
assert comp.threshold_tokens == 100_000
|
|
assert comp._context_probed is True
|
|
# Must NOT persist — subscription tier, not model capability
|
|
assert comp._context_probe_persistable is False
|
|
|
|
def test_no_reduction_when_already_200k(self):
|
|
comp = self._make_compressor(200_000)
|
|
reduced_ctx = 200_000
|
|
|
|
original = comp.context_length
|
|
if comp.context_length > reduced_ctx:
|
|
comp.context_length = reduced_ctx
|
|
|
|
assert comp.context_length == original # unchanged
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Integration: agent error handler path
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestAgentErrorPath:
|
|
"""Verify the long-context 429 doesn't hit the generic rate-limit
|
|
or client-error handlers."""
|
|
|
|
def test_long_context_429_not_treated_as_rate_limit(self):
|
|
"""The error should be intercepted before the generic
|
|
is_rate_limited check fires a fallback switch."""
|
|
error_msg = "extra usage is required for long context requests."
|
|
status_code = 429
|
|
model = "claude-sonnet-4.6"
|
|
|
|
_is_long_context_tier_error = (
|
|
status_code == 429
|
|
and "extra usage" in error_msg
|
|
and "long context" in error_msg
|
|
and "sonnet" in model.lower()
|
|
)
|
|
assert _is_long_context_tier_error
|
|
|
|
|