forked from twilio/twilio-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_notifications.py
59 lines (40 loc) · 1.57 KB
/
test_notifications.py
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
from datetime import date
from mock import patch
from nose.tools import raises, assert_true
from twilio.rest.resources import Notifications
from tools import create_mock_json
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"
ACCOUNT_SID = "AC123"
AUTH = (ACCOUNT_SID, "token")
RE_SID = "RE19e96a31ed59a5733d2c1c1c69a83a28"
list_resource = Notifications(BASE_URI, AUTH)
@patch("twilio.rest.resources.base.make_twilio_request")
def test_paging(mock):
resp = create_mock_json("tests/resources/notifications_list.json")
mock.return_value = resp
uri = "%s/Notifications" % (BASE_URI)
list_resource.list(before=date(2010, 12, 5))
exp_params = {'MessageDate<': '2010-12-05'}
mock.assert_called_with("GET", uri, params=exp_params, auth=AUTH)
@patch("twilio.rest.resources.base.make_twilio_request")
def test_get(mock):
resp = create_mock_json("tests/resources/notifications_instance.json")
mock.return_value = resp
uri = "%s/Notifications/%s" % (BASE_URI, RE_SID)
list_resource.get(RE_SID)
mock.assert_called_with("GET", uri, auth=AUTH)
@patch("twilio.rest.resources.base.make_twilio_request")
def test_get2(mock):
resp = create_mock_json("tests/resources/notifications_instance.json")
resp.status_code = 204
mock.return_value = resp
uri = "%s/Notifications/%s" % (BASE_URI, RE_SID)
r = list_resource.delete(RE_SID)
mock.assert_called_with("DELETE", uri, auth=AUTH)
assert_true(r)
@raises(AttributeError)
def test_create():
list_resource.create
@raises(AttributeError)
def test_update():
list_resource.update