Files
ai-podcast/tests/test_twilio_service.py
2026-02-05 13:39:02 -07:00

104 lines
2.7 KiB
Python

import sys
sys.path.insert(0, "/Users/lukemacneil/ai-podcast")
from backend.services.twilio_service import TwilioService
def test_queue_starts_empty():
svc = TwilioService()
assert svc.get_queue() == []
def test_add_caller_to_queue():
svc = TwilioService()
svc.add_to_queue("CA123", "+15125550142")
q = svc.get_queue()
assert len(q) == 1
assert q[0]["call_sid"] == "CA123"
assert q[0]["phone"] == "+15125550142"
assert "wait_time" in q[0]
def test_remove_caller_from_queue():
svc = TwilioService()
svc.add_to_queue("CA123", "+15125550142")
svc.remove_from_queue("CA123")
assert svc.get_queue() == []
def test_allocate_channel():
svc = TwilioService()
ch1 = svc.allocate_channel()
ch2 = svc.allocate_channel()
assert ch1 == 3
assert ch2 == 4
svc.release_channel(ch1)
ch3 = svc.allocate_channel()
assert ch3 == 3
def test_take_call():
svc = TwilioService()
svc.add_to_queue("CA123", "+15125550142")
result = svc.take_call("CA123")
assert result["call_sid"] == "CA123"
assert result["channel"] >= 3
assert svc.get_queue() == []
assert svc.active_calls["CA123"]["channel"] == result["channel"]
def test_hangup_real_caller():
svc = TwilioService()
svc.add_to_queue("CA123", "+15125550142")
svc.take_call("CA123")
ch = svc.active_calls["CA123"]["channel"]
svc.hangup("CA123")
assert "CA123" not in svc.active_calls
assert ch not in svc._allocated_channels
def test_caller_counter_increments():
svc = TwilioService()
svc.add_to_queue("CA1", "+15125550001")
svc.add_to_queue("CA2", "+15125550002")
r1 = svc.take_call("CA1")
r2 = svc.take_call("CA2")
assert r1["name"] == "Caller #1"
assert r2["name"] == "Caller #2"
def test_register_and_unregister_websocket():
svc = TwilioService()
fake_ws = object()
svc.register_websocket("CA123", fake_ws)
assert svc._websockets["CA123"] is fake_ws
svc.unregister_websocket("CA123")
assert "CA123" not in svc._websockets
def test_hangup_clears_websocket():
svc = TwilioService()
svc.add_to_queue("CA123", "+15125550142")
svc.take_call("CA123")
svc.register_websocket("CA123", object())
svc.hangup("CA123")
assert "CA123" not in svc._websockets
def test_reset_clears_websockets():
svc = TwilioService()
svc.register_websocket("CA1", object())
svc.register_websocket("CA2", object())
svc.reset()
assert svc._websockets == {}
def test_send_audio_no_websocket():
"""send_audio_to_caller returns silently when no WS registered"""
import asyncio
svc = TwilioService()
# Should not raise
asyncio.get_event_loop().run_until_complete(
svc.send_audio_to_caller("CA_NONE", b"\x00" * 100, 8000)
)