hermes-agent/tests/agent/test_compressor_media_stripping.py
Teknium 704bbcca80 feat(compressor): keep image URLs and unknown-part markers in summarizer serialization
Follow-up on @AlexFucuson9's cherry-picked multimodal flattening:

- http(s) image parts render as '[image: <url>]' so the summary keeps a
  referenceable handle after compaction (base64 data: URLs still
  collapse to '[image]' — no reusable reference, and leaking them is
  the bug being fixed)
- unknown part types (document, future shapes) render as '[<type>]'
  instead of being silently dropped
- test docstrings corrected: the original crash premise is stale
  (redact_sensitive_text grew str() coercion in #52147); the live bug
  is repr-noise + base64 leakage into the summarizer input
2026-07-15 09:47:04 -07:00

130 lines
4.8 KiB
Python

"""Tests for MEDIA directive stripping in context compaction (#14665).
MEDIA directives in assistant messages must not leak into compaction
summaries — if they do, the downstream model re-emits them as active
directives on the next turn.
"""
import pytest
from unittest.mock import patch
from agent.context_compressor import ContextCompressor
@pytest.fixture()
def compressor():
with patch("agent.context_compressor.get_model_context_length", return_value=100000):
return ContextCompressor(
model="test/model",
threshold_percent=0.85,
protect_first_n=2,
protect_last_n=2,
quiet_mode=True,
)
class TestMediaDirectiveStripping:
"""MEDIA directives must be stripped before summarization (#14665)."""
def test_media_directive_stripped_from_assistant(self, compressor):
turns = [
{"role": "assistant", "content": "Here is the audio MEDIA:/tmp/voice.ogg done."},
]
result = compressor._serialize_for_summary(turns)
assert "MEDIA:/tmp/voice.ogg" not in result
assert "[media attachment]" in result
def test_media_directive_stripped_from_tool_result(self, compressor):
turns = [
{"role": "tool", "tool_call_id": "t1", "content": "Generated MEDIA:/tmp/out.mp3 successfully"},
]
result = compressor._serialize_for_summary(turns)
assert "MEDIA:/tmp/out.mp3" not in result
assert "[media attachment]" in result
def test_non_media_content_preserved(self, compressor):
turns = [
{"role": "assistant", "content": "The file path is /tmp/test.txt and it works."},
]
result = compressor._serialize_for_summary(turns)
assert "/tmp/test.txt" in result
def test_multiple_media_directives(self, compressor):
turns = [
{"role": "assistant", "content": "MEDIA:/a.ogg and MEDIA:/b.mp3"},
]
result = compressor._serialize_for_summary(turns)
assert "MEDIA:" not in result
assert result.count("[media attachment]") == 2
def test_multimodal_list_content_does_not_crash(self, compressor):
"""content as a list (multimodal) must be flattened to clean text.
Without flattening, str() coercion in redact_sensitive_text dumps
the raw part-dict repr — including base64 image data — into the
summarizer input, burning summary budget on noise.
"""
turns = [
{
"role": "user",
"content": [
{"type": "text", "text": "What is in this image?"},
{"type": "image_url", "image_url": {"url": "data:image/png;base64,abc123"}},
],
},
]
result = compressor._serialize_for_summary(turns)
assert "What is in this image?" in result
assert "[image]" in result
assert "base64" not in result
def test_multimodal_remote_image_keeps_url(self, compressor):
"""http(s) image parts keep their URL as a referenceable handle."""
turns = [
{
"role": "user",
"content": [
{"type": "text", "text": "look at this"},
{"type": "image_url", "image_url": {"url": "https://example.com/a.png"}},
],
},
]
result = compressor._serialize_for_summary(turns)
assert "[image: https://example.com/a.png]" in result
def test_multimodal_unknown_part_type_keeps_marker(self, compressor):
"""Unknown part types are not silently dropped."""
turns = [
{
"role": "user",
"content": [
{"type": "text", "text": "see attachment"},
{"type": "document", "title": "spec.pdf"},
],
},
]
result = compressor._serialize_for_summary(turns)
assert "see attachment" in result
assert "[document]" in result
def test_multimodal_list_text_parts_extracted(self, compressor):
"""Text parts from multimodal list content are preserved in output."""
turns = [
{
"role": "user",
"content": [
{"type": "text", "text": "first part"},
{"type": "text", "text": "second part"},
],
},
]
result = compressor._serialize_for_summary(turns)
assert "first part" in result
assert "second part" in result
def test_multimodal_list_bare_strings_handled(self, compressor):
"""Bare strings inside a content list are joined."""
turns = [
{"role": "user", "content": ["hello", "world"]},
]
result = compressor._serialize_for_summary(turns)
assert "hello" in result
assert "world" in result