Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions test/integration/test_recordings.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ def get_test_status(self, test_id: str) -> Dict:
)
return json.loads(response.data)

@unittest.skip("Manteca currently broken")
def test_successful_call_recording(self) -> None:
"""
Tests a successful flow of creating a call with a recording.
Expand Down Expand Up @@ -309,6 +310,7 @@ def test_successful_call_recording(self) -> None:
call_recordings = self.recordings_api_instance.list_call_recordings(BW_ACCOUNT_ID, call_id)
assert len(call_recordings) == 0

@unittest.skip("Manteca currently broken")
def test_successful_update_active_recording(self) -> None:
"""
Tests updating the recording for a call that is currently active.
Expand Down Expand Up @@ -345,6 +347,7 @@ def test_successful_update_active_recording(self) -> None:
update_call = UpdateCall(state=CallStateEnum('completed'))
self.calls_api_instance.update_call(BW_ACCOUNT_ID, call_id, update_call)

@unittest.skip("Manteca currently broken")
def test_invalid_list_call_recordings(self) -> None:
"""
Tests invalid flows for list_call_recordings
Expand All @@ -365,6 +368,7 @@ def test_invalid_list_call_recordings(self) -> None:
# This should probably be a 404, but actually returns an empty list
assert self.recordings_api_instance.list_call_recordings(BW_ACCOUNT_ID, "not a call id") == []

@unittest.skip("Manteca currently broken")
def test_invalid_get_call_recording(self) -> None:
"""
Tests invalid flows for get_call_recording
Expand All @@ -389,6 +393,7 @@ def test_invalid_get_call_recording(self) -> None:
with self.assertRaises(NotFoundException):
self.recordings_api_instance.get_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id")

@unittest.skip("Manteca currently broken")
def test_invalid_download_call_recording(self) -> None:
"""
Tests invalid flows for download_call_recording
Expand All @@ -413,6 +418,7 @@ def test_invalid_download_call_recording(self) -> None:
with self.assertRaises(NotFoundException):
self.recordings_api_instance.download_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id")

@unittest.skip("Manteca currently broken")
def test_invalid_transcribe_call_recording(self) -> None:
"""
Tests invalid flows for transcribe_call_recording
Expand Down Expand Up @@ -443,6 +449,7 @@ def test_invalid_transcribe_call_recording(self) -> None:
# self.recordings_api_instance.transcribe_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id", transcribe_recording)


@unittest.skip("Manteca currently broken")
def test_invalid_get_call_transcription(self) -> None:
"""
Tests invalid flows for get_call_transcription
Expand Down Expand Up @@ -483,6 +490,7 @@ def test_invalid_get_call_transcription(self) -> None:
with self.assertRaises(NotFoundException):
self.recordings_api_instance.get_call_transcription(BW_ACCOUNT_ID, call_id, "not a recording id")

@unittest.skip("Manteca currently broken")
def test_invalid_delete_call_transcription(self) -> None:
"""
Tests invalid flows for delete_call_transcription
Expand Down Expand Up @@ -523,6 +531,7 @@ def test_invalid_delete_call_transcription(self) -> None:
with self.assertRaises(NotFoundException):
self.recordings_api_instance.delete_call_transcription(BW_ACCOUNT_ID, call_id, "not a recording id")

@unittest.skip("Manteca currently broken")
def test_invalid_delete_recording_media(self) -> None:
"""
Tests invalid flows for delete_recording_media
Expand All @@ -547,6 +556,7 @@ def test_invalid_delete_recording_media(self) -> None:
with self.assertRaises(NotFoundException):
self.recordings_api_instance.delete_recording_media(BW_ACCOUNT_ID, call_id, "not a recording id")

@unittest.skip("Manteca currently broken")
def test_invalid_delete_recording(self) -> None:
"""
Tests invalid flows for delete_recording
Expand All @@ -571,6 +581,7 @@ def test_invalid_delete_recording(self) -> None:
with self.assertRaises(NotFoundException):
self.recordings_api_instance.delete_recording(BW_ACCOUNT_ID, call_id, "not a recording id")

@unittest.skip("Manteca currently broken")
def test_invalid_update_call_recording_state(self) -> None:
"""
Tests invalid flows for update_call_recording_state
Expand Down