forked from twilio/twilio-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_make_request.py
78 lines (62 loc) · 2.39 KB
/
test_make_request.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""
Test that make+request is making correct HTTP requests
Uses the awesome httpbin.org to validate responses
"""
try:
import json
except ImportError:
import simplejson as json
import twilio
from nose.tools import raises
from mock import patch, Mock
from twilio import TwilioRestException
from twilio.rest.resources.base import make_request, make_twilio_request
get_headers = {
"User-Agent": "twilio-python/%s" % (twilio.__version__),
"Accept": "application/json",
}
post_headers = get_headers.copy()
post_headers["Content-Type"] = "application/x-www-form-urlencoded"
@patch('twilio.rest.resources.base.Response')
@patch('httplib2.Http')
def test_get_params(http_mock, response_mock):
http = Mock()
http.request.return_value = (Mock(), Mock())
http_mock.return_value = http
make_request("GET", "http://httpbin.org/get", params={"hey": "you"})
http.request.assert_called_with("http://httpbin.org/get?hey=you", "GET",
body=None, headers=None)
@patch('twilio.rest.resources.base.Response')
@patch('httplib2.Http')
def test_get_extra_params(http_mock, response_mock):
http = Mock()
http.request.return_value = (Mock(), Mock())
http_mock.return_value = http
make_request("GET", "http://httpbin.org/get?foo=bar", params={"hey": "you"})
http.request.assert_called_with("http://httpbin.org/get?foo=bar&hey=you", "GET",
body=None, headers=None)
@patch('twilio.rest.resources.base.Response')
@patch('httplib2.Http')
def test_resp_uri(http_mock, response_mock):
http = Mock()
http.request.return_value = (Mock(), Mock())
http_mock.return_value = http
make_request("GET", "http://httpbin.org/get")
http.request.assert_called_with("http://httpbin.org/get", "GET",
body=None, headers=None)
@patch('twilio.rest.resources.base.make_request')
def test_make_twilio_request_headers(mock):
url = "http://random/url"
make_twilio_request("POST", url)
mock.assert_called_with("POST", "http://random/url.json",
headers=post_headers)
@raises(TwilioRestException)
@patch('twilio.rest.resources.base.make_request')
def test_make_twilio_request_bad_data(mock):
resp = Mock()
resp.ok = False
mock.return_value = resp
url = "http://random/url"
make_twilio_request("POST", url)
mock.assert_called_with("POST", "http://random/url.json",
headers=post_headers)