hermes-agent/tests/tools/test_mcp_image_content.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

121 lines
5.1 KiB
Python

"""Regression tests for MCP ImageContent block handling.
Background
==========
MCP tool results may include ``ImageContent`` blocks (screenshots from
Playwright / Blockbench / Puppeteer / any server that returns renders).
The tool result handler in ``tools/mcp_tool.py`` used to iterate content
blocks looking only for ``block.text`` — image blocks were silently dropped
and the agent saw an empty result. Distilled from @c3115644151's PR #17915
and @gnanirahulnutakki's PR #10848 (both too stale to cherry-pick); this
test file locks in #10848's approach of plumbing the bytes through
Hermes' existing ``cache_image_from_bytes`` so a ``MEDIA:<path>`` tag
goes back to the agent and through to messaging adapters that render
images natively.
"""
from __future__ import annotations
import base64
from types import SimpleNamespace
def _png_bytes():
"""Return a minimal valid PNG byte sequence.
Hermes' ``cache_image_from_bytes`` has a format-sniff guard that rejects
non-image payloads — use a real PNG signature so the test exercises the
full pipeline instead of the reject path.
"""
# 1x1 transparent PNG
return base64.b64decode(
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
)
class TestMimeExtension:
def test_maps_jpeg_variants_to_jpg(self):
from tools.mcp_tool import _mcp_image_extension_for_mime_type
assert _mcp_image_extension_for_mime_type("image/jpeg") == ".jpg"
assert _mcp_image_extension_for_mime_type("image/jpg") == ".jpg"
assert _mcp_image_extension_for_mime_type("IMAGE/JPEG") == ".jpg"
assert _mcp_image_extension_for_mime_type("image/jpeg; charset=utf-8") == ".jpg"
def test_unknown_defaults_to_png(self):
from tools.mcp_tool import _mcp_image_extension_for_mime_type
assert _mcp_image_extension_for_mime_type("") == ".png"
assert _mcp_image_extension_for_mime_type("image/unheard-of-format") == ".png"
class TestCacheMcpImageBlock:
def test_returns_media_tag_for_valid_image_block(self, tmp_path, monkeypatch):
"""A well-formed ImageContent block with valid PNG bytes caches
to the image dir and the helper returns a ``MEDIA:<path>`` tag."""
monkeypatch.setenv("HERMES_HOME", str(tmp_path))
from tools.mcp_tool import _cache_mcp_image_block
block = SimpleNamespace(
data=base64.b64encode(_png_bytes()).decode("ascii"),
mimeType="image/png",
)
tag = _cache_mcp_image_block(block)
assert tag.startswith("MEDIA:"), f"expected MEDIA: tag, got {tag!r}"
# The cached file should be in Hermes' image cache dir
from gateway.platforms.base import get_image_cache_dir
cache_dir = str(get_image_cache_dir().resolve())
assert tag.startswith(f"MEDIA:{cache_dir}"), (
f"cached file not under HERMES_HOME image cache dir. "
f"tag={tag!r}, cache_dir={cache_dir!r}"
)
# And it should exist + have the PNG bytes
path = tag[len("MEDIA:"):]
with open(path, "rb") as fh:
assert fh.read() == _png_bytes()
def test_returns_empty_when_block_is_not_an_image(self, tmp_path, monkeypatch):
"""Non-image MIME types shouldn't trigger caching."""
monkeypatch.setenv("HERMES_HOME", str(tmp_path))
from tools.mcp_tool import _cache_mcp_image_block
block = SimpleNamespace(
data=base64.b64encode(b"some bytes").decode("ascii"),
mimeType="application/pdf",
)
assert _cache_mcp_image_block(block) == ""
def test_returns_empty_when_block_has_no_data(self, tmp_path, monkeypatch):
monkeypatch.setenv("HERMES_HOME", str(tmp_path))
from tools.mcp_tool import _cache_mcp_image_block
block = SimpleNamespace(data=None, mimeType="image/png")
assert _cache_mcp_image_block(block) == ""
def test_returns_empty_when_bytes_dont_look_like_an_image(self, tmp_path, monkeypatch):
"""``cache_image_from_bytes`` has a format sniff; if the claimed
``image/png`` is actually an HTML error page, the cache raises and
we log + drop rather than propagate."""
monkeypatch.setenv("HERMES_HOME", str(tmp_path))
from tools.mcp_tool import _cache_mcp_image_block
block = SimpleNamespace(
data=base64.b64encode(b"<html>error</html>").decode("ascii"),
mimeType="image/png",
)
assert _cache_mcp_image_block(block) == ""
def test_handles_jpeg(self, tmp_path, monkeypatch):
"""JPEG signature should also be accepted."""
monkeypatch.setenv("HERMES_HOME", str(tmp_path))
from tools.mcp_tool import _cache_mcp_image_block
# minimal JPEG SOI marker + filler
jpeg = b"\xff\xd8\xff\xe0" + b"\x00" * 100 + b"\xff\xd9"
block = SimpleNamespace(
data=base64.b64encode(jpeg).decode("ascii"),
mimeType="image/jpeg",
)
tag = _cache_mcp_image_block(block)
assert tag.startswith("MEDIA:")
assert tag.endswith(".jpg"), f"expected .jpg extension, got {tag!r}"