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

166 lines
5.5 KiB
Python

"""Tests for the shared magic-byte audio container sniffer.
``tools/audio_container.py`` is the single owner of container detection:
the outbound TTS repair (``tools/tts_tool.py``), the inbound gateway audio
cache (``gateway/platforms/base.py``), and Signal's ``_guess_extension``
all delegate to it. These tests cover every magic-byte branch, the
wrong-extension repair behaviour on the inbound cache path, and unknown
passthrough.
"""
import os
from unittest.mock import patch
import pytest
from tools.audio_container import CONTAINER_TO_EXT, sniff_audio_ext, sniff_container
# --- canonical headers ------------------------------------------------------
OGG = b"OggS\x00\x02" + b"\x00" * 64
FLAC = b"fLaC" + b"\x00" * 64
WAV = b"RIFF\x24\x08\x00\x00WAVEfmt " + b"\x00" * 64
WEBP = b"RIFF\x24\x08\x00\x00WEBPVP8 " + b"\x00" * 64
MP3_ID3 = b"ID3\x04\x00\x00\x00\x00\x00\x00" + b"\x00" * 64
MP3_FRAME = b"\xff\xfb\x90\x00" + b"\x00" * 64
AAC_ADTS = b"\xff\xf1\x50\x80" + b"\x00" * 64
M4A = b"\x00\x00\x00\x1cftypM4A " + b"\x00" * 64
M4B = b"\x00\x00\x00\x1cftypM4B " + b"\x00" * 64
MP4_ISOM = b"\x00\x00\x00\x18ftypisom" + b"\x00" * 64
WEBM = b"\x1a\x45\xdf\xa3" + b"\x00" * 64
UNKNOWN = b"not-audio-at-all" + b"\x00" * 64
class TestSniffContainer:
@pytest.mark.parametrize(
"data,expected",
[
(OGG, "ogg"),
(FLAC, "flac"),
(WAV, "wav"),
(MP3_ID3, "mp3"),
(MP3_FRAME, "mp3"),
(AAC_ADTS, "aac"),
(M4A, "m4a"),
(M4B, "m4a"),
(MP4_ISOM, "mp4"),
(WEBM, "webm"),
],
)
def test_magic_bytes(self, data, expected):
assert sniff_container(data) == expected
def test_every_container_has_an_extension(self):
for data in (OGG, FLAC, WAV, MP3_ID3, AAC_ADTS, M4A, MP4_ISOM, WEBM):
container = sniff_container(data)
assert container in CONTAINER_TO_EXT
class TestSniffAudioExt:
@pytest.mark.parametrize(
"data,expected",
[
(OGG, ".ogg"),
(FLAC, ".flac"),
(WAV, ".wav"),
(MP3_ID3, ".mp3"),
(MP3_FRAME, ".mp3"),
(AAC_ADTS, ".aac"),
(M4A, ".m4a"),
(WEBM, ".webm"),
],
)
def test_container_wins_over_claimed_ext(self, data, expected):
assert sniff_audio_ext(data, ".ogg" if expected != ".ogg" else ".mp3") == expected
def test_fallback_without_dot_is_normalized(self):
assert sniff_audio_ext(UNKNOWN, "mp3") == ".mp3"
class TestInboundCacheUsesSniffer:
"""cache_audio_from_bytes must repair wrong caller-supplied extensions."""
@pytest.mark.parametrize(
"data,claimed,expected_suffix",
[
(MP3_ID3, ".ogg", ".mp3"), # MP3 bytes delivered as "voice.ogg"
(WAV, ".ogg", ".wav"), # RIFF/WAVE in an .ogg wrapper claim
(M4A, ".ogg", ".m4a"), # iOS voice note claimed as ogg
(OGG, ".mp3", ".ogg"), # real opus claimed as mp3
(AAC_ADTS, ".ogg", ".aac"), # Android ADTS AAC voice note
(WEBM, ".ogg", ".webm"),
(FLAC, ".mp3", ".flac"),
],
)
def test_wrong_ext_repaired(self, tmp_path, data, claimed, expected_suffix):
from gateway.platforms.base import cache_audio_from_bytes
with patch("gateway.platforms.base.AUDIO_CACHE_DIR", tmp_path):
result = cache_audio_from_bytes(data, ext=claimed)
saved = tmp_path / os.path.basename(result)
assert saved.suffix == expected_suffix
assert saved.read_bytes() == data
@pytest.mark.asyncio
async def test_cache_audio_from_url_sniffs_too(self, tmp_path, monkeypatch):
"""The URL download path routes through the same sniffer."""
import gateway.platforms.base as base
monkeypatch.setattr(base, "AUDIO_CACHE_DIR", tmp_path)
class _FakeResponse:
status_code = 200
def raise_for_status(self):
return None
class _FakeStreamCM:
async def __aenter__(self):
return _FakeResponse()
async def __aexit__(self, *exc):
return False
class _FakeClient:
def stream(self, *a, **k):
return _FakeStreamCM()
async def __aenter__(self):
return self
async def __aexit__(self, *exc):
return False
async def _fake_read(response, media_type):
return MP3_ID3 # server sent MP3 bytes despite the .ogg claim
monkeypatch.setattr(base, "_read_httpx_body_with_limit", _fake_read)
monkeypatch.setattr(
"tools.url_safety.create_ssrf_safe_async_client",
lambda **k: _FakeClient(),
)
monkeypatch.setattr("tools.url_safety.is_safe_url", lambda u: True)
result = await base.cache_audio_from_url("https://example.com/voice.ogg", ext=".ogg")
assert result.endswith(".mp3")
class TestSignalDelegatesToCentralSniffer:
"""signal._guess_extension audio branches delegate to the shared module."""
def test_signal_uses_shared_sniffer(self, monkeypatch):
from gateway.platforms import signal as signal_mod
calls = []
real = signal_mod.sniff_container
def _spy(data):
calls.append(data[:4])
return real(data)
monkeypatch.setattr(signal_mod, "sniff_container", _spy)
assert signal_mod._guess_extension(M4A) == ".m4a"
assert calls, "signal._guess_extension did not delegate to the central sniffer"