mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +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.
139 lines
4.8 KiB
Python
139 lines
4.8 KiB
Python
"""Tests for the ambient voice-chat "thinking" sound (tools/voice_mode.py).
|
|
|
|
Contract:
|
|
- `voice.thinking_sound` config gates it (default True).
|
|
- `start_thinking_sound()` is idempotent, returns False when disabled.
|
|
- The loop synthesizes blips with numpy (no assets), scales volume by
|
|
`voice.beep_volume`, and NEVER plays through sounddevice on macOS
|
|
(_sounddevice_output_allowed → TCC-safe silent skip).
|
|
- `stop_thinking_sound()` stops the loop instantly and is idempotent.
|
|
- The should_play callback gates each blip (no blips while TTS speaks
|
|
or the mic captures).
|
|
- mark_audio_output_active / is_audio_output_active ref-count playback.
|
|
"""
|
|
|
|
import threading
|
|
import time
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
np = pytest.importorskip(
|
|
"numpy", reason="numpy is a lazy voice dependency, absent in hermetic CI"
|
|
)
|
|
|
|
import tools.voice_mode as vm
|
|
|
|
|
|
class _FakeSD:
|
|
def __init__(self):
|
|
self.played = []
|
|
|
|
def play(self, audio, samplerate=None):
|
|
self.played.append((audio, samplerate))
|
|
|
|
def stop(self):
|
|
pass
|
|
|
|
|
|
def _reset():
|
|
vm.stop_thinking_sound()
|
|
# Drain any residual output ref-counts from prior tests.
|
|
with vm._audio_output_lock:
|
|
vm._audio_output_active_count = 0
|
|
|
|
|
|
class TestConfigGate:
|
|
def test_default_enabled(self):
|
|
with patch("hermes_cli.config.load_config", return_value={"voice": {}}):
|
|
assert vm.thinking_sound_enabled() is True
|
|
|
|
|
|
def test_start_refuses_when_disabled(self):
|
|
_reset()
|
|
with patch.object(vm, "thinking_sound_enabled", return_value=False):
|
|
assert vm.start_thinking_sound() is False
|
|
assert vm._thinking_stop is None
|
|
|
|
|
|
class TestBlipSynthesis:
|
|
def test_blip_is_int16_low_volume(self):
|
|
with patch.object(vm, "_get_beep_volume", return_value=0.3):
|
|
blip = vm._synth_thinking_blip(np, 392.0)
|
|
assert blip.dtype == np.int16
|
|
assert len(blip) == int(vm.SAMPLE_RATE * 0.16)
|
|
# Quieter than the beeps: 0.3 * 0.5 * 32767 ≈ 4915 peak ceiling.
|
|
assert int(np.abs(blip).max()) <= int(0.3 * 0.5 * 32767) + 1
|
|
assert int(np.abs(blip).max()) > 0
|
|
|
|
|
|
def test_no_click_smooth_attack(self):
|
|
blip = vm._synth_thinking_blip(np, 392.0)
|
|
# First sample near zero (enveloped attack, no click).
|
|
assert abs(int(blip[0])) < 200
|
|
|
|
|
|
class TestLoopLifecycle:
|
|
def test_loop_plays_blips_and_stops_instantly(self):
|
|
_reset()
|
|
fake = _FakeSD()
|
|
stop = threading.Event()
|
|
with patch.object(vm, "_sounddevice_output_allowed", return_value=True), \
|
|
patch.object(vm, "_import_audio", return_value=(fake, np)), \
|
|
patch.object(vm, "_get_beep_volume", return_value=0.3):
|
|
t = threading.Thread(
|
|
target=vm._thinking_sound_loop, args=(stop, None), daemon=True
|
|
)
|
|
t.start()
|
|
deadline = time.monotonic() + 3.0
|
|
while not fake.played and time.monotonic() < deadline:
|
|
time.sleep(0.01)
|
|
stop.set()
|
|
t.join(timeout=3.0)
|
|
assert fake.played, "loop never played a blip"
|
|
assert not t.is_alive()
|
|
|
|
|
|
def test_start_is_idempotent_and_stop_clears(self):
|
|
_reset()
|
|
with patch.object(vm, "thinking_sound_enabled", return_value=True), \
|
|
patch.object(vm, "_sounddevice_output_allowed", return_value=False):
|
|
assert vm.start_thinking_sound() is True
|
|
first_stop = vm._thinking_stop
|
|
assert vm.start_thinking_sound() is True
|
|
assert vm._thinking_stop is first_stop # no second loop
|
|
vm.stop_thinking_sound()
|
|
assert vm._thinking_stop is None
|
|
assert first_stop.is_set()
|
|
vm.stop_thinking_sound() # idempotent
|
|
|
|
|
|
class TestAudioOutputRefcount:
|
|
def test_refcount_tracks_nested_playback(self):
|
|
_reset()
|
|
assert vm.is_audio_output_active() is False
|
|
vm.mark_audio_output_active(True)
|
|
vm.mark_audio_output_active(True)
|
|
assert vm.is_audio_output_active() is True
|
|
vm.mark_audio_output_active(False)
|
|
assert vm.is_audio_output_active() is True
|
|
vm.mark_audio_output_active(False)
|
|
assert vm.is_audio_output_active() is False
|
|
# Never goes negative.
|
|
vm.mark_audio_output_active(False)
|
|
assert vm.is_audio_output_active() is False
|
|
|
|
def test_play_audio_file_brackets_refcount(self, tmp_path):
|
|
"""play_audio_file flags real speaker output for its whole duration,
|
|
so the thinking loop knows audio is flowing."""
|
|
_reset()
|
|
seen = []
|
|
|
|
def fake_impl(path):
|
|
seen.append(vm.is_audio_output_active())
|
|
return True
|
|
|
|
with patch.object(vm, "_play_audio_file_impl", fake_impl):
|
|
vm.play_audio_file(str(tmp_path / "x.wav"))
|
|
assert seen == [True]
|
|
assert vm.is_audio_output_active() is False
|