This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/tests/integrations/test_voice_enhanced.py
Claude 4e11dd2490 refactor: Phase 3 — reorganize tests into module-mirroring subdirectories
Move 97 test files from flat tests/ into 13 subdirectories:
  tests/dashboard/   (8 files — routes, mobile, mission control)
  tests/swarm/       (17 files — coordinator, docker, routing, tasks)
  tests/timmy/       (12 files — agent, backends, CLI, tools)
  tests/self_coding/  (14 files — git safety, indexer, self-modify)
  tests/lightning/   (3 files — L402, LND, interface)
  tests/creative/    (8 files — assembler, director, image/music/video)
  tests/integrations/ (10 files — chat bridge, telegram, voice, websocket)
  tests/mcp/         (4 files — bootstrap, discovery, executor)
  tests/spark/       (3 files — engine, tools, events)
  tests/hands/       (3 files — registry, oracle, phase5)
  tests/scripture/   (1 file)
  tests/infrastructure/ (3 files — router cascade, API)
  tests/security/    (3 files — XSS, regression)

Fix Path(__file__) reference in test_mobile_scenarios.py for new depth.
Add __init__.py to all test subdirectories.

Tests: 1503 passed, 9 failed (pre-existing), 53 errors (pre-existing)

https://claude.ai/code/session_019oMFNvD8uSGSSmBMGkBfQN
2026-02-26 21:21:28 +00:00

102 lines
3.6 KiB
Python

"""Tests for dashboard/routes/voice_enhanced.py — enhanced voice processing."""
from unittest.mock import MagicMock, patch
import pytest
class TestVoiceEnhancedProcess:
"""Test the POST /voice/enhanced/process endpoint."""
def test_status_intent(self, client):
resp = client.post(
"/voice/enhanced/process",
data={"text": "what is your status", "speak_response": "false"},
)
assert resp.status_code == 200
data = resp.json()
assert data["intent"] == "status"
assert "operational" in data["response"].lower()
assert data["error"] is None
def test_help_intent(self, client):
resp = client.post(
"/voice/enhanced/process",
data={"text": "help me please", "speak_response": "false"},
)
assert resp.status_code == 200
data = resp.json()
assert data["intent"] == "help"
assert "commands" in data["response"].lower()
def test_swarm_intent(self, client):
resp = client.post(
"/voice/enhanced/process",
data={"text": "list all swarm agents", "speak_response": "false"},
)
assert resp.status_code == 200
data = resp.json()
assert data["intent"] == "swarm"
assert "agents" in data["response"].lower()
def test_voice_intent(self, client):
resp = client.post(
"/voice/enhanced/process",
data={"text": "change voice settings", "speak_response": "false"},
)
assert resp.status_code == 200
data = resp.json()
assert data["intent"] == "voice"
assert "tts" in data["response"].lower()
def test_chat_fallback_intent(self, client):
"""Chat intent should attempt to call the Timmy agent."""
mock_agent = MagicMock()
mock_run = MagicMock()
mock_run.content = "Hello from Timmy!"
mock_agent.run.return_value = mock_run
with patch("dashboard.routes.voice_enhanced.create_timmy", return_value=mock_agent):
resp = client.post(
"/voice/enhanced/process",
data={"text": "tell me about Bitcoin", "speak_response": "false"},
)
assert resp.status_code == 200
data = resp.json()
assert data["intent"] == "chat"
assert data["response"] == "Hello from Timmy!"
def test_chat_fallback_error_handling(self, client):
"""When the agent raises, the error should be captured gracefully."""
with patch(
"dashboard.routes.voice_enhanced.create_timmy",
side_effect=RuntimeError("Ollama offline"),
):
resp = client.post(
"/voice/enhanced/process",
data={"text": "tell me about sovereignty", "speak_response": "false"},
)
assert resp.status_code == 200
data = resp.json()
assert data["error"] is not None
assert "Ollama offline" in data["error"]
def test_speak_response_flag(self, client):
"""When speak_response=true, the spoken field should be true."""
resp = client.post(
"/voice/enhanced/process",
data={"text": "what is your status", "speak_response": "true"},
)
assert resp.status_code == 200
data = resp.json()
assert data["spoken"] is True
def test_confidence_returned(self, client):
resp = client.post(
"/voice/enhanced/process",
data={"text": "status check", "speak_response": "false"},
)
data = resp.json()
assert "confidence" in data
assert isinstance(data["confidence"], (int, float))