mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-30 19:09:28 +00:00
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.
165 lines
6.1 KiB
Python
165 lines
6.1 KiB
Python
"""End-to-end tests for inline image inputs on /v1/chat/completions and /v1/responses.
|
|
|
|
Covers the multimodal normalization path added to the API server. Unlike the
|
|
adapter-level tests that patch ``_run_agent``, these tests patch
|
|
``AIAgent.run_conversation`` instead so the adapter's full request-handling
|
|
path (including the ``run_agent`` prologue that used to crash on list content)
|
|
executes against a real aiohttp app.
|
|
"""
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
from aiohttp import web
|
|
from aiohttp.test_utils import TestClient, TestServer
|
|
|
|
from gateway.config import PlatformConfig
|
|
from gateway.platforms.api_server import (
|
|
APIServerAdapter,
|
|
_content_has_visible_payload,
|
|
_normalize_multimodal_content,
|
|
cors_middleware,
|
|
security_headers_middleware,
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Pure-function tests for _normalize_multimodal_content
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestNormalizeMultimodalContent:
|
|
def test_string_passthrough(self):
|
|
assert _normalize_multimodal_content("hello") == "hello"
|
|
|
|
def test_none_returns_empty_string(self):
|
|
assert _normalize_multimodal_content(None) == ""
|
|
|
|
def test_text_only_list_collapses_to_string(self):
|
|
content = [{"type": "text", "text": "hi"}, {"type": "text", "text": "there"}]
|
|
assert _normalize_multimodal_content(content) == "hi\nthere"
|
|
|
|
def test_responses_input_text_canonicalized(self):
|
|
content = [{"type": "input_text", "text": "hello"}]
|
|
assert _normalize_multimodal_content(content) == "hello"
|
|
|
|
|
|
def test_input_image_converted_to_canonical_shape(self):
|
|
content = [
|
|
{"type": "input_text", "text": "hi"},
|
|
{"type": "input_image", "image_url": "https://example.com/cat.png"},
|
|
]
|
|
out = _normalize_multimodal_content(content)
|
|
assert out == [
|
|
{"type": "text", "text": "hi"},
|
|
{"type": "image_url", "image_url": {"url": "https://example.com/cat.png"}},
|
|
]
|
|
|
|
|
|
class TestContentHasVisiblePayload:
|
|
|
|
|
|
def test_list_with_image_only(self):
|
|
assert _content_has_visible_payload([{"type": "image_url", "image_url": {"url": "x"}}])
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# HTTP integration — real aiohttp client hitting the adapter handlers
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _make_adapter() -> APIServerAdapter:
|
|
return APIServerAdapter(PlatformConfig(enabled=True))
|
|
|
|
|
|
def _create_app(adapter: APIServerAdapter) -> web.Application:
|
|
mws = [mw for mw in (cors_middleware, security_headers_middleware) if mw is not None]
|
|
app = web.Application(middlewares=mws)
|
|
app["api_server_adapter"] = adapter
|
|
app.router.add_post("/v1/chat/completions", adapter._handle_chat_completions)
|
|
app.router.add_post("/v1/responses", adapter._handle_responses)
|
|
app.router.add_get("/v1/responses/{response_id}", adapter._handle_get_response)
|
|
return app
|
|
|
|
|
|
@pytest.fixture
|
|
def adapter():
|
|
return _make_adapter()
|
|
|
|
|
|
class TestChatCompletionsMultimodalHTTP:
|
|
@pytest.mark.asyncio
|
|
async def test_inline_image_preserved_to_run_agent(self, adapter):
|
|
"""Multimodal user content reaches _run_agent as a list of parts."""
|
|
image_payload = [
|
|
{"type": "text", "text": "What's in this image?"},
|
|
{"type": "image_url", "image_url": {"url": "https://example.com/cat.png", "detail": "high"}},
|
|
]
|
|
|
|
app = _create_app(adapter)
|
|
async with TestClient(TestServer(app)) as cli:
|
|
with patch.object(
|
|
adapter,
|
|
"_run_agent",
|
|
new=MagicMock(),
|
|
) as mock_run:
|
|
async def _stub(**kwargs):
|
|
mock_run.captured = kwargs
|
|
return (
|
|
{"final_response": "A cat.", "messages": [], "api_calls": 1},
|
|
{"input_tokens": 0, "output_tokens": 0, "total_tokens": 0},
|
|
)
|
|
mock_run.side_effect = _stub
|
|
|
|
resp = await cli.post(
|
|
"/v1/chat/completions",
|
|
json={
|
|
"model": "hermes-agent",
|
|
"messages": [{"role": "user", "content": image_payload}],
|
|
},
|
|
)
|
|
|
|
assert resp.status == 200, await resp.text()
|
|
assert mock_run.captured["user_message"] == image_payload
|
|
|
|
|
|
class TestResponsesMultimodalHTTP:
|
|
@pytest.mark.asyncio
|
|
async def test_input_image_canonicalized_and_forwarded(self, adapter):
|
|
app = _create_app(adapter)
|
|
async with TestClient(TestServer(app)) as cli:
|
|
with patch.object(adapter, "_run_agent", new=MagicMock()) as mock_run:
|
|
async def _stub(**kwargs):
|
|
mock_run.captured = kwargs
|
|
return (
|
|
{"final_response": "ok", "messages": [], "api_calls": 1},
|
|
{"input_tokens": 0, "output_tokens": 0, "total_tokens": 0},
|
|
)
|
|
mock_run.side_effect = _stub
|
|
|
|
resp = await cli.post(
|
|
"/v1/responses",
|
|
json={
|
|
"model": "hermes-agent",
|
|
"input": [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "input_text", "text": "Describe."},
|
|
{
|
|
"type": "input_image",
|
|
"image_url": "https://example.com/cat.png",
|
|
},
|
|
],
|
|
}
|
|
],
|
|
},
|
|
)
|
|
|
|
assert resp.status == 200, await resp.text()
|
|
expected = [
|
|
{"type": "text", "text": "Describe."},
|
|
{"type": "image_url", "image_url": {"url": "https://example.com/cat.png"}},
|
|
]
|
|
assert mock_run.captured["user_message"] == expected
|
|
|