-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ 1820de764052a95e2f0570d74a5de0ba04f74f2e
- Loading branch information
Showing
32 changed files
with
1,928 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
342 changes: 298 additions & 44 deletions
342
tests/integration/api/v2010/account/test_conference.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
136 changes: 136 additions & 0 deletions
136
tests/integration/messaging/v1/test_brand_registration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
# coding=utf-8 | ||
r""" | ||
This code was generated by | ||
\ / _ _ _| _ _ | ||
| (_)\/(_)(_|\/| |(/_ v1.0.0 | ||
/ / | ||
""" | ||
|
||
from tests import IntegrationTestCase | ||
from tests.holodeck import Request | ||
from twilio.base.exceptions import TwilioException | ||
from twilio.http.response import Response | ||
|
||
|
||
class BrandRegistrationTestCase(IntegrationTestCase): | ||
|
||
def test_fetch_request(self): | ||
self.holodeck.mock(Response(500, '')) | ||
|
||
with self.assertRaises(TwilioException): | ||
self.client.messaging.v1.brand_registrations("BNXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").fetch() | ||
|
||
self.holodeck.assert_has_request(Request( | ||
'get', | ||
'https://messaging.twilio.com/v1/a2p/BrandRegistrations/BNXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', | ||
)) | ||
|
||
def test_fetch_response(self): | ||
self.holodeck.mock(Response( | ||
200, | ||
''' | ||
{ | ||
"sid": "BN0044409f7e067e279523808d267e2d85", | ||
"account_sid": "AC78e8e67fc0246521490fb9907fd0c165", | ||
"customer_profile_bundle_sid": "BU3344409f7e067e279523808d267e2d85", | ||
"a2p_profile_bundle_sid": "BU3344409f7e067e279523808d267e2d85", | ||
"date_created": "2021-01-27T14:18:35Z", | ||
"date_updated": "2021-01-27T14:18:36Z", | ||
"status": "IN_PROGRESS", | ||
"tcr_id": "BXXXXXX", | ||
"failure_reason": "Registration error", | ||
"url": "https://messaging.twilio.com/v1/a2p/BrandRegistrations/BN0044409f7e067e279523808d267e2d85" | ||
} | ||
''' | ||
)) | ||
|
||
actual = self.client.messaging.v1.brand_registrations("BNXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").fetch() | ||
|
||
self.assertIsNotNone(actual) | ||
|
||
def test_list_request(self): | ||
self.holodeck.mock(Response(500, '')) | ||
|
||
with self.assertRaises(TwilioException): | ||
self.client.messaging.v1.brand_registrations.list() | ||
|
||
self.holodeck.assert_has_request(Request( | ||
'get', | ||
'https://messaging.twilio.com/v1/a2p/BrandRegistrations', | ||
)) | ||
|
||
def test_read_response(self): | ||
self.holodeck.mock(Response( | ||
200, | ||
''' | ||
{ | ||
"meta": { | ||
"page": 0, | ||
"page_size": 50, | ||
"first_page_url": "https://messaging.twilio.com/v1/a2p/BrandRegistrations?PageSize=50&Page=0", | ||
"previous_page_url": null, | ||
"next_page_url": null, | ||
"key": "data", | ||
"url": "https://messaging.twilio.com/v1/a2p/BrandRegistrations?PageSize=50&Page=0" | ||
}, | ||
"data": [ | ||
{ | ||
"sid": "BN0044409f7e067e279523808d267e2d85", | ||
"account_sid": "AC78e8e67fc0246521490fb9907fd0c165", | ||
"customer_profile_bundle_sid": "BU3344409f7e067e279523808d267e2d85", | ||
"a2p_profile_bundle_sid": "BU3344409f7e067e279523808d267e2d85", | ||
"date_created": "2021-01-27T14:18:35Z", | ||
"date_updated": "2021-01-27T14:18:36Z", | ||
"status": "IN_PROGRESS", | ||
"tcr_id": "BXXXXXX", | ||
"failure_reason": "Registration error", | ||
"url": "https://messaging.twilio.com/v1/a2p/BrandRegistrations/BN0044409f7e067e279523808d267e2d85" | ||
} | ||
] | ||
} | ||
''' | ||
)) | ||
|
||
actual = self.client.messaging.v1.brand_registrations.list() | ||
|
||
self.assertIsNotNone(actual) | ||
|
||
def test_create_request(self): | ||
self.holodeck.mock(Response(500, '')) | ||
|
||
with self.assertRaises(TwilioException): | ||
self.client.messaging.v1.brand_registrations.create(customer_profile_bundle_sid="BUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", a2p_profile_bundle_sid="BUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX") | ||
|
||
values = { | ||
'CustomerProfileBundleSid': "BUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", | ||
'A2PProfileBundleSid': "BUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", | ||
} | ||
|
||
self.holodeck.assert_has_request(Request( | ||
'post', | ||
'https://messaging.twilio.com/v1/a2p/BrandRegistrations', | ||
data=values, | ||
)) | ||
|
||
def test_create_response(self): | ||
self.holodeck.mock(Response( | ||
201, | ||
''' | ||
{ | ||
"sid": "BN0044409f7e067e279523808d267e2d85", | ||
"account_sid": "AC78e8e67fc0246521490fb9907fd0c165", | ||
"customer_profile_bundle_sid": "BU0000009f7e067e279523808d267e2d90", | ||
"a2p_profile_bundle_sid": "BU1111109f7e067e279523808d267e2d85", | ||
"date_created": "2021-01-28T10:45:51Z", | ||
"date_updated": "2021-01-28T10:45:51Z", | ||
"status": "PENDING", | ||
"tcr_id": "BXXXXXX", | ||
"failure_reason": "Registration error", | ||
"url": "https://messaging.twilio.com/v1/a2p/BrandRegistrations/BN0044409f7e067e279523808d267e2d85" | ||
} | ||
''' | ||
)) | ||
|
||
actual = self.client.messaging.v1.brand_registrations.create(customer_profile_bundle_sid="BUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", a2p_profile_bundle_sid="BUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX") | ||
|
||
self.assertIsNotNone(actual) |
Oops, something went wrong.