-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtest_streaming.py
More file actions
390 lines (298 loc) · 11.6 KB
/
test_streaming.py
File metadata and controls
390 lines (298 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
from urllib.parse import urlencode
import pytest
from pydantic import ValidationError
from pytest_mock import MockFixture
from assemblyai.streaming.v3 import (
SpeechModel,
SpeechStartedEvent,
StreamingClient,
StreamingClientOptions,
StreamingParameters,
TurnEvent,
)
def _disable_rw_threads(mocker: MockFixture):
"""
Disable the read and write threads for the WebSocket.
"""
mocker.patch("threading.Thread.start", return_value=None)
def test_client_connect(mocker: MockFixture):
actual_url = None
actual_additional_headers = None
actual_open_timeout = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url, actual_additional_headers, actual_open_timeout
actual_url = url
actual_additional_headers = additional_headers
actual_open_timeout = open_timeout
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.universal_streaming_english,
)
client.connect(params)
expected_headers = {
"sample_rate": params.sample_rate,
"speech_model": str(params.speech_model),
}
assert actual_url == f"wss://api.example.com/v3/ws?{urlencode(expected_headers)}"
assert actual_additional_headers["Authorization"] == "test"
assert actual_additional_headers["AssemblyAI-Version"] == "2025-05-12"
assert "AssemblyAI/1.0" in actual_additional_headers["User-Agent"]
assert actual_open_timeout == 15
def test_client_connect_with_token(mocker: MockFixture):
actual_url = None
actual_additional_headers = None
actual_open_timeout = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url, actual_additional_headers, actual_open_timeout
actual_url = url
actual_additional_headers = additional_headers
actual_open_timeout = open_timeout
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(token="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.universal_streaming_english,
)
client.connect(params)
expected_headers = {
"sample_rate": params.sample_rate,
"speech_model": str(params.speech_model),
}
assert actual_url == f"wss://api.example.com/v3/ws?{urlencode(expected_headers)}"
assert actual_additional_headers["Authorization"] == "test"
assert actual_additional_headers["AssemblyAI-Version"] == "2025-05-12"
assert "AssemblyAI/1.0" in actual_additional_headers["User-Agent"]
assert actual_open_timeout == 15
def test_client_connect_all_parameters(mocker: MockFixture):
actual_url = None
actual_additional_headers = None
actual_open_timeout = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url, actual_additional_headers, actual_open_timeout
actual_url = url
actual_additional_headers = additional_headers
actual_open_timeout = open_timeout
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.universal_streaming_english,
end_of_turn_confidence_threshold=0.5,
min_end_of_turn_silence_when_confident=2000,
max_turn_silence=3000,
)
client.connect(params)
expected_headers = {
"end_of_turn_confidence_threshold": params.end_of_turn_confidence_threshold,
"min_end_of_turn_silence_when_confident": params.min_end_of_turn_silence_when_confident,
"max_turn_silence": params.max_turn_silence,
"sample_rate": params.sample_rate,
"speech_model": str(params.speech_model),
}
assert actual_url == f"wss://api.example.com/v3/ws?{urlencode(expected_headers)}"
assert actual_additional_headers["Authorization"] == "test"
assert actual_additional_headers["AssemblyAI-Version"] == "2025-05-12"
assert "AssemblyAI/1.0" in actual_additional_headers["User-Agent"]
assert actual_open_timeout == 15
def test_client_send_audio(mocker: MockFixture):
actual_url = None
actual_additional_headers = None
actual_open_timeout = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url, actual_additional_headers, actual_open_timeout
actual_url = url
actual_additional_headers = additional_headers
actual_open_timeout = open_timeout
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.universal_streaming_english,
)
client.connect(params)
client.stream(b"test audio data")
assert client._write_queue.qsize() == 1
assert isinstance(client._write_queue.get(timeout=1), bytes)
def test_client_connect_with_webhook(mocker: MockFixture):
actual_url = None
actual_additional_headers = None
actual_open_timeout = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url, actual_additional_headers, actual_open_timeout
actual_url = url
actual_additional_headers = additional_headers
actual_open_timeout = open_timeout
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.universal_streaming_english,
webhook_url="https://example.com/webhook",
webhook_auth_header_name="X-Webhook-Secret",
webhook_auth_header_value="my-secret",
)
client.connect(params)
expected_params = {
"sample_rate": params.sample_rate,
"speech_model": str(params.speech_model),
"webhook_url": params.webhook_url,
"webhook_auth_header_name": params.webhook_auth_header_name,
"webhook_auth_header_value": params.webhook_auth_header_value,
}
assert actual_url == f"wss://api.example.com/v3/ws?{urlencode(expected_params)}"
assert actual_additional_headers["Authorization"] == "test"
assert actual_open_timeout == 15
def test_client_connect_with_u3_pro_and_prompt(mocker: MockFixture):
actual_url = None
actual_additional_headers = None
actual_open_timeout = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url, actual_additional_headers, actual_open_timeout
actual_url = url
actual_additional_headers = additional_headers
actual_open_timeout = open_timeout
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=8000,
speech_model=SpeechModel.u3_pro,
min_end_of_turn_silence_when_confident=200,
prompt="Transcribe this audio with beautiful punctuation and formatting.",
keyterms_prompt=["yes", "no", "okay"],
)
client.connect(params)
# The expected URL should contain all the parameters
assert "sample_rate=8000" in actual_url
assert "speech_model=u3-pro" in actual_url
assert "min_end_of_turn_silence_when_confident=200" in actual_url
assert "prompt=Transcribe" in actual_url
assert "keyterms_prompt=" in actual_url # keyterms_prompt is JSON-encoded
assert actual_additional_headers["Authorization"] == "test"
assert actual_additional_headers["AssemblyAI-Version"] == "2025-05-12"
assert "AssemblyAI/1.0" in actual_additional_headers["User-Agent"]
assert actual_open_timeout == 15
def test_client_connect_with_speaker_labels(mocker: MockFixture):
actual_url = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url
actual_url = url
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.universal_streaming_english,
speaker_labels=True,
max_speakers=3,
)
client.connect(params)
assert "speaker_labels=True" in actual_url
assert "max_speakers=3" in actual_url
def test_client_connect_with_whisper_rt(mocker: MockFixture):
actual_url = None
def mocked_websocket_connect(
url: str, additional_headers: dict, open_timeout: float
):
nonlocal actual_url
actual_url = url
mocker.patch(
"assemblyai.streaming.v3.client.websocket_connect",
new=mocked_websocket_connect,
)
_disable_rw_threads(mocker)
options = StreamingClientOptions(api_key="test", api_host="api.example.com")
client = StreamingClient(options)
params = StreamingParameters(
sample_rate=16000,
speech_model=SpeechModel.whisper_rt,
)
client.connect(params)
assert "speech_model=whisper-rt" in actual_url
def test_turn_event_with_speaker_label():
data = {
"type": "Turn",
"turn_order": 1,
"turn_is_formatted": True,
"end_of_turn": False,
"transcript": "Hello world",
"end_of_turn_confidence": 0.85,
"words": [],
"speaker_label": "B",
}
event = TurnEvent.parse_obj(data)
assert event.speaker_label == "B"
def test_turn_event_without_speaker_label():
data = {
"type": "Turn",
"turn_order": 1,
"turn_is_formatted": True,
"end_of_turn": False,
"transcript": "Hello world",
"end_of_turn_confidence": 0.85,
"words": [],
}
event = TurnEvent.parse_obj(data)
assert event.speaker_label is None
def test_speech_model_required():
"""Test that omitting speech_model raises a validation error."""
with pytest.raises(ValidationError):
StreamingParameters(sample_rate=16000)
def test_speech_started_event():
"""Test SpeechStarted event parsing (u3-rt-pro only)"""
data = {
"type": "SpeechStarted",
"timestamp": 1280,
}
event = SpeechStartedEvent.parse_obj(data)
assert event.type == "SpeechStarted"
assert event.timestamp == 1280