File: test_service.py

package info (click to toggle)
python-twilio 7.7.1%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,976 kB
  • sloc: python: 148,884; makefile: 50; sh: 2
file content (489 lines) | stat: -rw-r--r-- 22,828 bytes parent folder | download
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
# 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 ServiceTestCase(IntegrationTestCase):

    def test_fetch_request(self):
        self.holodeck.mock(Response(500, ''))

        with self.assertRaises(TwilioException):
            self.client.chat.v1.services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").fetch()

        self.holodeck.assert_has_request(Request(
            'get',
            'https://chat.twilio.com/v1/Services/ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
        ))

    def test_fetch_response(self):
        self.holodeck.mock(Response(
            200,
            '''
            {
                "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "consumption_report_interval": 100,
                "date_created": "2015-07-30T20:00:00Z",
                "date_updated": "2015-07-30T20:00:00Z",
                "default_channel_creator_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "default_channel_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "default_service_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "friendly_name": "friendly_name",
                "limits": {
                    "channel_members": 100,
                    "user_channels": 250
                },
                "links": {
                    "channels": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels",
                    "users": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Users",
                    "roles": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Roles"
                },
                "notifications": {},
                "post_webhook_url": "post_webhook_url",
                "pre_webhook_url": "pre_webhook_url",
                "reachability_enabled": false,
                "read_status_enabled": false,
                "sid": "ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "typing_indicator_timeout": 100,
                "url": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "webhook_filters": [
                    "webhook_filters"
                ],
                "webhook_method": "webhook_method",
                "webhooks": {}
            }
            '''
        ))

        actual = self.client.chat.v1.services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").fetch()

        self.assertIsNotNone(actual)

    def test_delete_request(self):
        self.holodeck.mock(Response(500, ''))

        with self.assertRaises(TwilioException):
            self.client.chat.v1.services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").delete()

        self.holodeck.assert_has_request(Request(
            'delete',
            'https://chat.twilio.com/v1/Services/ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
        ))

    def test_delete_response(self):
        self.holodeck.mock(Response(
            204,
            None,
        ))

        actual = self.client.chat.v1.services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").delete()

        self.assertTrue(actual)

    def test_create_request(self):
        self.holodeck.mock(Response(500, ''))

        with self.assertRaises(TwilioException):
            self.client.chat.v1.services.create(friendly_name="friendly_name")

        values = {'FriendlyName': "friendly_name", }

        self.holodeck.assert_has_request(Request(
            'post',
            'https://chat.twilio.com/v1/Services',
            data=values,
        ))

    def test_create_response(self):
        self.holodeck.mock(Response(
            201,
            '''
            {
                "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "consumption_report_interval": 100,
                "date_created": "2015-07-30T20:00:00Z",
                "date_updated": "2015-07-30T20:00:00Z",
                "default_channel_creator_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "default_channel_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "default_service_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "friendly_name": "friendly_name",
                "limits": {
                    "channel_members": 100,
                    "user_channels": 250
                },
                "links": {
                    "channels": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels",
                    "users": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Users",
                    "roles": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Roles"
                },
                "notifications": {},
                "post_webhook_url": "post_webhook_url",
                "pre_webhook_url": "pre_webhook_url",
                "reachability_enabled": false,
                "read_status_enabled": false,
                "sid": "ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "typing_indicator_timeout": 100,
                "url": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "webhook_filters": [
                    "webhook_filters"
                ],
                "webhook_method": "webhook_method",
                "webhooks": {}
            }
            '''
        ))

        actual = self.client.chat.v1.services.create(friendly_name="friendly_name")

        self.assertIsNotNone(actual)

    def test_list_request(self):
        self.holodeck.mock(Response(500, ''))

        with self.assertRaises(TwilioException):
            self.client.chat.v1.services.list()

        self.holodeck.assert_has_request(Request(
            'get',
            'https://chat.twilio.com/v1/Services',
        ))

    def test_read_empty_response(self):
        self.holodeck.mock(Response(
            200,
            '''
            {
                "meta": {
                    "first_page_url": "https://chat.twilio.com/v1/Services?PageSize=50&Page=0",
                    "key": "services",
                    "next_page_url": null,
                    "page": 0,
                    "page_size": 50,
                    "previous_page_url": null,
                    "url": "https://chat.twilio.com/v1/Services?PageSize=50&Page=0"
                },
                "services": []
            }
            '''
        ))

        actual = self.client.chat.v1.services.list()

        self.assertIsNotNone(actual)

    def test_read_full_response(self):
        self.holodeck.mock(Response(
            200,
            '''
            {
                "meta": {
                    "first_page_url": "https://chat.twilio.com/v1/Services?PageSize=50&Page=0",
                    "key": "services",
                    "next_page_url": null,
                    "page": 0,
                    "page_size": 50,
                    "previous_page_url": null,
                    "url": "https://chat.twilio.com/v1/Services?PageSize=50&Page=0"
                },
                "services": [
                    {
                        "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "consumption_report_interval": 100,
                        "date_created": "2015-07-30T20:00:00Z",
                        "date_updated": "2015-07-30T20:00:00Z",
                        "default_channel_creator_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "default_channel_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "default_service_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "friendly_name": "friendly_name",
                        "limits": {
                            "user_channels": 250,
                            "channel_members": 100,
                            "actions_per_second": 30
                        },
                        "links": {
                            "channels": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels",
                            "users": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Users",
                            "roles": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Roles"
                        },
                        "notifications": {
                            "added_to_channel": {
                                "enabled": false,
                                "template": "notifications.added_to_channel.template"
                            },
                            "invited_to_channel": {
                                "enabled": false,
                                "template": "notifications.invited_to_channel.template"
                            },
                            "log_enabled": true,
                            "new_message": {
                                "enabled": false,
                                "template": "notifications.new_message.template"
                            },
                            "removed_from_channel": {
                                "enabled": false,
                                "template": "notifications.removed_from_channel.template"
                            }
                        },
                        "post_webhook_url": "post_webhook_url",
                        "pre_webhook_url": "pre_webhook_url",
                        "reachability_enabled": false,
                        "read_status_enabled": false,
                        "sid": "ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "typing_indicator_timeout": 100,
                        "url": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "webhook_filters": [
                            "webhook_filters"
                        ],
                        "webhook_method": "webhook_method",
                        "webhooks": {
                            "on_channel_add": {
                                "format": "webhooks.on_channel_add.format",
                                "method": "webhooks.on_channel_add.method",
                                "url": "webhooks.on_channel_add.url"
                            },
                            "on_channel_added": {
                                "format": "webhooks.on_channel_added.format",
                                "method": "webhooks.on_channel_added.method",
                                "url": "webhooks.on_channel_added.url"
                            },
                            "on_channel_destroy": {
                                "format": "webhooks.on_channel_destroy.format",
                                "method": "webhooks.on_channel_destroy.method",
                                "url": "webhooks.on_channel_destroy.url"
                            },
                            "on_channel_destroyed": {
                                "format": "webhooks.on_channel_destroyed.format",
                                "method": "webhooks.on_channel_destroyed.method",
                                "url": "webhooks.on_channel_destroyed.url"
                            },
                            "on_channel_update": {
                                "format": "webhooks.on_channel_update.format",
                                "method": "webhooks.on_channel_update.method",
                                "url": "webhooks.on_channel_update.url"
                            },
                            "on_channel_updated": {
                                "format": "webhooks.on_channel_updated.format",
                                "method": "webhooks.on_channel_updated.method",
                                "url": "webhooks.on_channel_updated.url"
                            },
                            "on_member_add": {
                                "format": "webhooks.on_member_add.format",
                                "method": "webhooks.on_member_add.method",
                                "url": "webhooks.on_member_add.url"
                            },
                            "on_member_added": {
                                "format": "webhooks.on_member_added.format",
                                "method": "webhooks.on_member_added.method",
                                "url": "webhooks.on_member_added.url"
                            },
                            "on_member_remove": {
                                "format": "webhooks.on_member_remove.format",
                                "method": "webhooks.on_member_remove.method",
                                "url": "webhooks.on_member_remove.url"
                            },
                            "on_member_removed": {
                                "format": "webhooks.on_member_removed.format",
                                "method": "webhooks.on_member_removed.method",
                                "url": "webhooks.on_member_removed.url"
                            },
                            "on_message_remove": {
                                "format": "webhooks.on_message_remove.format",
                                "method": "webhooks.on_message_remove.method",
                                "url": "webhooks.on_message_remove.url"
                            },
                            "on_message_removed": {
                                "format": "webhooks.on_message_removed.format",
                                "method": "webhooks.on_message_removed.method",
                                "url": "webhooks.on_message_removed.url"
                            },
                            "on_message_send": {
                                "format": "webhooks.on_message_send.format",
                                "method": "webhooks.on_message_send.method",
                                "url": "webhooks.on_message_send.url"
                            },
                            "on_message_sent": {
                                "format": "webhooks.on_message_sent.format",
                                "method": "webhooks.on_message_sent.method",
                                "url": "webhooks.on_message_sent.url"
                            },
                            "on_message_update": {
                                "format": "webhooks.on_message_update.format",
                                "method": "webhooks.on_message_update.method",
                                "url": "webhooks.on_message_update.url"
                            },
                            "on_message_updated": {
                                "format": "webhooks.on_message_updated.format",
                                "method": "webhooks.on_message_updated.method",
                                "url": "webhooks.on_message_updated.url"
                            }
                        }
                    }
                ]
            }
            '''
        ))

        actual = self.client.chat.v1.services.list()

        self.assertIsNotNone(actual)

    def test_update_request(self):
        self.holodeck.mock(Response(500, ''))

        with self.assertRaises(TwilioException):
            self.client.chat.v1.services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").update()

        self.holodeck.assert_has_request(Request(
            'post',
            'https://chat.twilio.com/v1/Services/ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
        ))

    def test_update_response(self):
        self.holodeck.mock(Response(
            200,
            '''
            {
                "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "consumption_report_interval": 100,
                "date_created": "2015-07-30T20:00:00Z",
                "date_updated": "2015-07-30T20:00:00Z",
                "default_channel_creator_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "default_channel_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "default_service_role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "friendly_name": "friendly_name",
                "limits": {
                    "channel_members": 500,
                    "user_channels": 600
                },
                "links": {
                    "channels": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels",
                    "users": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Users",
                    "roles": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Roles"
                },
                "notifications": {
                    "added_to_channel": {
                        "enabled": false,
                        "template": "notifications.added_to_channel.template"
                    },
                    "invited_to_channel": {
                        "enabled": false,
                        "template": "notifications.invited_to_channel.template"
                    },
                    "new_message": {
                        "enabled": false,
                        "template": "notifications.new_message.template"
                    },
                    "removed_from_channel": {
                        "enabled": false,
                        "template": "notifications.removed_from_channel.template"
                    }
                },
                "post_webhook_url": "post_webhook_url",
                "pre_webhook_url": "pre_webhook_url",
                "reachability_enabled": false,
                "read_status_enabled": false,
                "sid": "ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "typing_indicator_timeout": 100,
                "url": "https://chat.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                "webhook_filters": [
                    "webhook_filters"
                ],
                "webhook_method": "webhook_method",
                "webhooks": {
                    "on_channel_add": {
                        "format": "webhooks.on_channel_add.format",
                        "method": "webhooks.on_channel_add.method",
                        "url": "webhooks.on_channel_add.url"
                    },
                    "on_channel_added": {
                        "format": "webhooks.on_channel_added.format",
                        "method": "webhooks.on_channel_added.method",
                        "url": "webhooks.on_channel_added.url"
                    },
                    "on_channel_destroy": {
                        "format": "webhooks.on_channel_destroy.format",
                        "method": "webhooks.on_channel_destroy.method",
                        "url": "webhooks.on_channel_destroy.url"
                    },
                    "on_channel_destroyed": {
                        "format": "webhooks.on_channel_destroyed.format",
                        "method": "webhooks.on_channel_destroyed.method",
                        "url": "webhooks.on_channel_destroyed.url"
                    },
                    "on_channel_update": {
                        "format": "webhooks.on_channel_update.format",
                        "method": "webhooks.on_channel_update.method",
                        "url": "webhooks.on_channel_update.url"
                    },
                    "on_channel_updated": {
                        "format": "webhooks.on_channel_updated.format",
                        "method": "webhooks.on_channel_updated.method",
                        "url": "webhooks.on_channel_updated.url"
                    },
                    "on_member_add": {
                        "format": "webhooks.on_member_add.format",
                        "method": "webhooks.on_member_add.method",
                        "url": "webhooks.on_member_add.url"
                    },
                    "on_member_added": {
                        "format": "webhooks.on_member_added.format",
                        "method": "webhooks.on_member_added.method",
                        "url": "webhooks.on_member_added.url"
                    },
                    "on_member_remove": {
                        "format": "webhooks.on_member_remove.format",
                        "method": "webhooks.on_member_remove.method",
                        "url": "webhooks.on_member_remove.url"
                    },
                    "on_member_removed": {
                        "format": "webhooks.on_member_removed.format",
                        "method": "webhooks.on_member_removed.method",
                        "url": "webhooks.on_member_removed.url"
                    },
                    "on_message_remove": {
                        "format": "webhooks.on_message_remove.format",
                        "method": "webhooks.on_message_remove.method",
                        "url": "webhooks.on_message_remove.url"
                    },
                    "on_message_removed": {
                        "format": "webhooks.on_message_removed.format",
                        "method": "webhooks.on_message_removed.method",
                        "url": "webhooks.on_message_removed.url"
                    },
                    "on_message_send": {
                        "format": "webhooks.on_message_send.format",
                        "method": "webhooks.on_message_send.method",
                        "url": "webhooks.on_message_send.url"
                    },
                    "on_message_sent": {
                        "format": "webhooks.on_message_sent.format",
                        "method": "webhooks.on_message_sent.method",
                        "url": "webhooks.on_message_sent.url"
                    },
                    "on_message_update": {
                        "format": "webhooks.on_message_update.format",
                        "method": "webhooks.on_message_update.method",
                        "url": "webhooks.on_message_update.url"
                    },
                    "on_message_updated": {
                        "format": "webhooks.on_message_updated.format",
                        "method": "webhooks.on_message_updated.method",
                        "url": "webhooks.on_message_updated.url"
                    }
                }
            }
            '''
        ))

        actual = self.client.chat.v1.services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").update()

        self.assertIsNotNone(actual)