File: test_template.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 (65 lines) | stat: -rw-r--r-- 2,284 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
# 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 TemplateTestCase(IntegrationTestCase):

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

        with self.assertRaises(TwilioException):
            self.client.verify.v2.templates.list()

        self.holodeck.assert_has_request(Request(
            'get',
            'https://verify.twilio.com/v2/Templates',
        ))

    def test_list_verification_templates_response(self):
        self.holodeck.mock(Response(
            200,
            '''
            {
                "templates": [
                    {
                        "sid": "HJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                        "friendly_name": "Base Verification Template 2 with do not share",
                        "translations": {
                            "en": {
                                "is_default_translation": true,
                                "status": "approved",
                                "locale": "en",
                                "text": "Your {{friendly_name}} verification code is: {{code}}. Do not share this code with anyone.",
                                "date_updated": "2021-07-29T20:38:28.759979905Z",
                                "date_created": "2021-07-29T20:38:28.165602325Z"
                            }
                        }
                    }
                ],
                "meta": {
                    "page": 0,
                    "page_size": 50,
                    "first_page_url": "https://verify.twilio.com/v2/Templates?PageSize=50&Page=0",
                    "previous_page_url": null,
                    "url": "https://verify.twilio.com/v2/Templates?PageSize=50&Page=0",
                    "next_page_url": null,
                    "key": "templates"
                }
            }
            '''
        ))

        actual = self.client.verify.v2.templates.list()

        self.assertIsNotNone(actual)