Skip to content

Commit 2f5ffe4

Browse files
Merge branch 'feature/openapi-generator-sdk' into DX-2688
2 parents d45dfc5 + 2afb475 commit 2f5ffe4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

test/integration/test_recordings.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ def get_test_status(self, test_id: str) -> Dict:
217217
)
218218
return json.loads(response.data)
219219

220+
@unittest.skip("Manteca currently broken")
220221
def test_successful_call_recording(self) -> None:
221222
"""
222223
Tests a successful flow of creating a call with a recording.
@@ -311,6 +312,7 @@ def test_successful_call_recording(self) -> None:
311312
call_recordings = self.recordings_api_instance.list_call_recordings(BW_ACCOUNT_ID, call_id)
312313
assert len(call_recordings) == 0
313314

315+
@unittest.skip("Manteca currently broken")
314316
def test_successful_update_active_recording(self) -> None:
315317
"""
316318
Tests updating the recording for a call that is currently active.
@@ -347,6 +349,7 @@ def test_successful_update_active_recording(self) -> None:
347349
update_call = UpdateCall(state=CallStateEnum('completed'))
348350
self.calls_api_instance.update_call(BW_ACCOUNT_ID, call_id, update_call)
349351

352+
@unittest.skip("Manteca currently broken")
350353
def test_invalid_list_call_recordings(self) -> None:
351354
"""
352355
Tests invalid flows for list_call_recordings
@@ -367,6 +370,7 @@ def test_invalid_list_call_recordings(self) -> None:
367370
# This should probably be a 404, but actually returns an empty list
368371
assert self.recordings_api_instance.list_call_recordings(BW_ACCOUNT_ID, "not a call id") == []
369372

373+
@unittest.skip("Manteca currently broken")
370374
def test_invalid_get_call_recording(self) -> None:
371375
"""
372376
Tests invalid flows for get_call_recording
@@ -391,6 +395,7 @@ def test_invalid_get_call_recording(self) -> None:
391395
with self.assertRaises(NotFoundException):
392396
self.recordings_api_instance.get_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id")
393397

398+
@unittest.skip("Manteca currently broken")
394399
def test_invalid_download_call_recording(self) -> None:
395400
"""
396401
Tests invalid flows for download_call_recording
@@ -415,6 +420,7 @@ def test_invalid_download_call_recording(self) -> None:
415420
with self.assertRaises(NotFoundException):
416421
self.recordings_api_instance.download_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id")
417422

423+
@unittest.skip("Manteca currently broken")
418424
def test_invalid_transcribe_call_recording(self) -> None:
419425
"""
420426
Tests invalid flows for transcribe_call_recording
@@ -445,6 +451,7 @@ def test_invalid_transcribe_call_recording(self) -> None:
445451
# self.recordings_api_instance.transcribe_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id", transcribe_recording)
446452

447453

454+
@unittest.skip("Manteca currently broken")
448455
def test_invalid_get_call_transcription(self) -> None:
449456
"""
450457
Tests invalid flows for get_call_transcription
@@ -485,6 +492,7 @@ def test_invalid_get_call_transcription(self) -> None:
485492
with self.assertRaises(NotFoundException):
486493
self.recordings_api_instance.get_call_transcription(BW_ACCOUNT_ID, call_id, "not a recording id")
487494

495+
@unittest.skip("Manteca currently broken")
488496
def test_invalid_delete_call_transcription(self) -> None:
489497
"""
490498
Tests invalid flows for delete_call_transcription
@@ -525,6 +533,7 @@ def test_invalid_delete_call_transcription(self) -> None:
525533
with self.assertRaises(NotFoundException):
526534
self.recordings_api_instance.delete_call_transcription(BW_ACCOUNT_ID, call_id, "not a recording id")
527535

536+
@unittest.skip("Manteca currently broken")
528537
def test_invalid_delete_recording_media(self) -> None:
529538
"""
530539
Tests invalid flows for delete_recording_media
@@ -549,6 +558,7 @@ def test_invalid_delete_recording_media(self) -> None:
549558
with self.assertRaises(NotFoundException):
550559
self.recordings_api_instance.delete_recording_media(BW_ACCOUNT_ID, call_id, "not a recording id")
551560

561+
@unittest.skip("Manteca currently broken")
552562
def test_invalid_delete_recording(self) -> None:
553563
"""
554564
Tests invalid flows for delete_recording
@@ -573,6 +583,7 @@ def test_invalid_delete_recording(self) -> None:
573583
with self.assertRaises(NotFoundException):
574584
self.recordings_api_instance.delete_recording(BW_ACCOUNT_ID, call_id, "not a recording id")
575585

586+
@unittest.skip("Manteca currently broken")
576587
def test_invalid_update_call_recording_state(self) -> None:
577588
"""
578589
Tests invalid flows for update_call_recording_state

0 commit comments

Comments
 (0)