diff --git a/test/unit/api/__init__.py b/test/unit/api/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/test/unit/api/test_calls_api.py b/test/unit/api/test_calls_api.py new file mode 100644 index 00000000..8f08e237 --- /dev/null +++ b/test/unit/api/test_calls_api.py @@ -0,0 +1,67 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.calls_api import CallsApi + + +class TestCallsApi(unittest.TestCase): + """CallsApi unit test stubs""" + + def setUp(self) -> None: + self.api = CallsApi() + + def tearDown(self) -> None: + pass + + def test_create_call(self) -> None: + """Test case for create_call + + Create Call + """ + pass + + def test_get_call_state(self) -> None: + """Test case for get_call_state + + Get Call State Information + """ + pass + + def test_list_calls(self) -> None: + """Test case for list_calls + + Get Calls + """ + pass + + def test_update_call(self) -> None: + """Test case for update_call + + Update Call + """ + pass + + def test_update_call_bxml(self) -> None: + """Test case for update_call_bxml + + Update Call BXML + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_conferences_api.py b/test/unit/api/test_conferences_api.py new file mode 100644 index 00000000..312f2a6a --- /dev/null +++ b/test/unit/api/test_conferences_api.py @@ -0,0 +1,95 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.conferences_api import ConferencesApi + + +class TestConferencesApi(unittest.TestCase): + """ConferencesApi unit test stubs""" + + def setUp(self) -> None: + self.api = ConferencesApi() + + def tearDown(self) -> None: + pass + + def test_download_conference_recording(self) -> None: + """Test case for download_conference_recording + + Download Conference Recording + """ + pass + + def test_get_conference(self) -> None: + """Test case for get_conference + + Get Conference Information + """ + pass + + def test_get_conference_member(self) -> None: + """Test case for get_conference_member + + Get Conference Member + """ + pass + + def test_get_conference_recording(self) -> None: + """Test case for get_conference_recording + + Get Conference Recording Information + """ + pass + + def test_list_conference_recordings(self) -> None: + """Test case for list_conference_recordings + + Get Conference Recordings + """ + pass + + def test_list_conferences(self) -> None: + """Test case for list_conferences + + Get Conferences + """ + pass + + def test_update_conference(self) -> None: + """Test case for update_conference + + Update Conference + """ + pass + + def test_update_conference_bxml(self) -> None: + """Test case for update_conference_bxml + + Update Conference BXML + """ + pass + + def test_update_conference_member(self) -> None: + """Test case for update_conference_member + + Update Conference Member + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_media_api.py b/test/unit/api/test_media_api.py new file mode 100644 index 00000000..43f76846 --- /dev/null +++ b/test/unit/api/test_media_api.py @@ -0,0 +1,60 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.media_api import MediaApi + + +class TestMediaApi(unittest.TestCase): + """MediaApi unit test stubs""" + + def setUp(self) -> None: + self.api = MediaApi() + + def tearDown(self) -> None: + pass + + def test_delete_media(self) -> None: + """Test case for delete_media + + Delete Media + """ + pass + + def test_get_media(self) -> None: + """Test case for get_media + + Get Media + """ + pass + + def test_list_media(self) -> None: + """Test case for list_media + + List Media + """ + pass + + def test_upload_media(self) -> None: + """Test case for upload_media + + Upload Media + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_messages_api.py b/test/unit/api/test_messages_api.py new file mode 100644 index 00000000..71c2c2a1 --- /dev/null +++ b/test/unit/api/test_messages_api.py @@ -0,0 +1,46 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.messages_api import MessagesApi + + +class TestMessagesApi(unittest.TestCase): + """MessagesApi unit test stubs""" + + def setUp(self) -> None: + self.api = MessagesApi() + + def tearDown(self) -> None: + pass + + def test_create_message(self) -> None: + """Test case for create_message + + Create Message + """ + pass + + def test_list_messages(self) -> None: + """Test case for list_messages + + List Messages + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_mfa_api.py b/test/unit/api/test_mfa_api.py new file mode 100644 index 00000000..f847d212 --- /dev/null +++ b/test/unit/api/test_mfa_api.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.mfa_api import MFAApi + + +class TestMFAApi(unittest.TestCase): + """MFAApi unit test stubs""" + + def setUp(self) -> None: + self.api = MFAApi() + + def tearDown(self) -> None: + pass + + def test_generate_messaging_code(self) -> None: + """Test case for generate_messaging_code + + Messaging Authentication Code + """ + pass + + def test_generate_voice_code(self) -> None: + """Test case for generate_voice_code + + Voice Authentication Code + """ + pass + + def test_verify_code(self) -> None: + """Test case for verify_code + + Verify Authentication Code + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_phone_number_lookup_api.py b/test/unit/api/test_phone_number_lookup_api.py new file mode 100644 index 00000000..197e9ea4 --- /dev/null +++ b/test/unit/api/test_phone_number_lookup_api.py @@ -0,0 +1,46 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.phone_number_lookup_api import PhoneNumberLookupApi + + +class TestPhoneNumberLookupApi(unittest.TestCase): + """PhoneNumberLookupApi unit test stubs""" + + def setUp(self) -> None: + self.api = PhoneNumberLookupApi() + + def tearDown(self) -> None: + pass + + def test_create_lookup(self) -> None: + """Test case for create_lookup + + Create Lookup + """ + pass + + def test_get_lookup_status(self) -> None: + """Test case for get_lookup_status + + Get Lookup Request Status + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_recordings_api.py b/test/unit/api/test_recordings_api.py new file mode 100644 index 00000000..23f04a6a --- /dev/null +++ b/test/unit/api/test_recordings_api.py @@ -0,0 +1,102 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.recordings_api import RecordingsApi + + +class TestRecordingsApi(unittest.TestCase): + """RecordingsApi unit test stubs""" + + def setUp(self) -> None: + self.api = RecordingsApi() + + def tearDown(self) -> None: + pass + + def test_delete_recording(self) -> None: + """Test case for delete_recording + + Delete Recording + """ + pass + + def test_delete_recording_media(self) -> None: + """Test case for delete_recording_media + + Delete Recording Media + """ + pass + + def test_delete_recording_transcription(self) -> None: + """Test case for delete_recording_transcription + + Delete Transcription + """ + pass + + def test_download_call_recording(self) -> None: + """Test case for download_call_recording + + Download Recording + """ + pass + + def test_get_call_recording(self) -> None: + """Test case for get_call_recording + + Get Call Recording + """ + pass + + def test_get_recording_transcription(self) -> None: + """Test case for get_recording_transcription + + Get Transcription + """ + pass + + def test_list_account_call_recordings(self) -> None: + """Test case for list_account_call_recordings + + Get Call Recordings + """ + pass + + def test_list_call_recordings(self) -> None: + """Test case for list_call_recordings + + List Call Recordings + """ + pass + + def test_transcribe_call_recording(self) -> None: + """Test case for transcribe_call_recording + + Create Transcription Request + """ + pass + + def test_update_call_recording_state(self) -> None: + """Test case for update_call_recording_state + + Update Recording + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_statistics_api.py b/test/unit/api/test_statistics_api.py new file mode 100644 index 00000000..2d0e0442 --- /dev/null +++ b/test/unit/api/test_statistics_api.py @@ -0,0 +1,39 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.statistics_api import StatisticsApi + + +class TestStatisticsApi(unittest.TestCase): + """StatisticsApi unit test stubs""" + + def setUp(self) -> None: + self.api = StatisticsApi() + + def tearDown(self) -> None: + pass + + def test_get_statistics(self) -> None: + """Test case for get_statistics + + Get Account Statistics + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/unit/api/test_transcriptions_api.py b/test/unit/api/test_transcriptions_api.py new file mode 100644 index 00000000..ad497705 --- /dev/null +++ b/test/unit/api/test_transcriptions_api.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from bandwidth.api.transcriptions_api import TranscriptionsApi + + +class TestTranscriptionsApi(unittest.TestCase): + """TranscriptionsApi unit test stubs""" + + def setUp(self) -> None: + self.api = TranscriptionsApi() + + def tearDown(self) -> None: + pass + + def test_delete_real_time_transcription(self) -> None: + """Test case for delete_real_time_transcription + + Delete a specific transcription + """ + pass + + def test_get_real_time_transcription(self) -> None: + """Test case for get_real_time_transcription + + Retrieve a specific transcription + """ + pass + + def test_list_real_time_transcriptions(self) -> None: + """Test case for list_real_time_transcriptions + + Enumerate transcriptions made with StartTranscription + """ + pass + + +if __name__ == '__main__': + unittest.main()