-
Notifications
You must be signed in to change notification settings - Fork 57
/
tests.py
395 lines (307 loc) · 13.6 KB
/
tests.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
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
# -*- coding: utf-8 -*-
import requests
import unittest
from httmock import (all_requests, response, urlmatch, with_httmock, HTTMock,
remember_called, text_type, binary_type)
@urlmatch(scheme='swallow')
def unmatched_scheme(url, request):
raise AssertionError('This is outrageous')
@urlmatch(path=r'^never$')
def unmatched_path(url, request):
raise AssertionError('This is outrageous')
@urlmatch(method='post')
def unmatched_method(url, request):
raise AssertionError('This is outrageous')
@urlmatch(netloc=r'(.*\.)?google\.com$', path=r'^/$')
def google_mock(url, request):
return 'Hello from Google'
@urlmatch(netloc=r'(.*\.)?google\.com$', path=r'^/$')
@remember_called
def google_mock_count(url, request):
return 'Hello from Google'
@urlmatch(scheme='http', netloc=r'(.*\.)?facebook\.com$')
def facebook_mock(url, request):
return 'Hello from Facebook'
@urlmatch(scheme='http', netloc=r'(.*\.)?facebook\.com$')
@remember_called
def facebook_mock_count(url, request):
return 'Hello from Facebook'
@urlmatch(netloc=r'(.*\.)?google\.com$', path=r'^/$', method='POST')
@remember_called
def google_mock_store_requests(url, request):
return 'Posting at Google'
@all_requests
def charset_utf8(url, request):
return {
'content': u'Motörhead'.encode('utf-8'),
'status_code': 200,
'headers': {
'Content-Type': 'text/plain; charset=utf-8'
}
}
def any_mock(url, request):
return 'Hello from %s' % (url.netloc,)
def dict_any_mock(url, request):
return {
'content': 'Hello from %s' % (url.netloc,),
'status_code': 200,
'http_vsn': 10,
}
def example_400_response(url, response):
r = requests.Response()
r.status_code = 400
r._content = b'Bad request.'
return r
class MockTest(unittest.TestCase):
def test_return_type(self):
with HTTMock(any_mock):
r = requests.get('http://domain.com/')
self.assertTrue(isinstance(r, requests.Response))
self.assertTrue(isinstance(r.content, binary_type))
self.assertTrue(isinstance(r.text, text_type))
def test_scheme_fallback(self):
with HTTMock(unmatched_scheme, any_mock):
r = requests.get('http://example.com/')
self.assertEqual(r.content, b'Hello from example.com')
def test_path_fallback(self):
with HTTMock(unmatched_path, any_mock):
r = requests.get('http://example.com/')
self.assertEqual(r.content, b'Hello from example.com')
def test_method_fallback(self):
with HTTMock(unmatched_method, any_mock):
r = requests.get('http://example.com/')
self.assertEqual(r.content, b'Hello from example.com')
def test_netloc_fallback(self):
with HTTMock(google_mock, facebook_mock):
r = requests.get('http://google.com/')
self.assertEqual(r.content, b'Hello from Google')
with HTTMock(google_mock, facebook_mock):
r = requests.get('http://facebook.com/')
self.assertEqual(r.content, b'Hello from Facebook')
def test_400_response(self):
with HTTMock(example_400_response):
r = requests.get('http://example.com/')
self.assertEqual(r.status_code, 400)
self.assertEqual(r.content, b'Bad request.')
def test_real_request_fallback(self):
with HTTMock(any_mock):
with HTTMock(google_mock, facebook_mock):
r = requests.get('http://example.com/')
self.assertEqual(r.status_code, 200)
self.assertEqual(r.content, b'Hello from example.com')
def test_invalid_intercept_response_raises_value_error(self):
@all_requests
def response_content(url, request):
return -1
with HTTMock(response_content):
self.assertRaises(TypeError, requests.get, 'http://example.com/')
def test_encoding_from_contenttype(self):
with HTTMock(charset_utf8):
r = requests.get('http://example.com/')
self.assertEqual(r.encoding, 'utf-8')
self.assertEqual(r.text, u'Motörhead')
self.assertEqual(r.content, r.text.encode('utf-8'))
def test_has_raw_version(self):
with HTTMock(any_mock):
r = requests.get('http://example.com')
self.assertEqual(r.raw.version, 11)
with HTTMock(dict_any_mock):
r = requests.get('http://example.com')
self.assertEqual(r.raw.version, 10)
class DecoratorTest(unittest.TestCase):
@with_httmock(any_mock)
def test_decorator(self):
r = requests.get('http://example.com/')
self.assertEqual(r.content, b'Hello from example.com')
@with_httmock(any_mock)
def test_iter_lines(self):
r = requests.get('http://example.com/')
self.assertEqual(list(r.iter_lines()),
[b'Hello from example.com'])
class AllRequestsDecoratorTest(unittest.TestCase):
def test_all_requests_response(self):
@all_requests
def response_content(url, request):
return {'status_code': 200, 'content': 'Oh hai'}
with HTTMock(response_content):
r = requests.get('https://example.com/')
self.assertEqual(r.status_code, 200)
self.assertEqual(r.content, b'Oh hai')
def test_all_str_response(self):
@all_requests
def response_content(url, request):
return 'Hello'
with HTTMock(response_content):
r = requests.get('https://example.com/')
self.assertEqual(r.content, b'Hello')
class AllRequestsMethodDecoratorTest(unittest.TestCase):
@all_requests
def response_content(self, url, request):
return {'status_code': 200, 'content': 'Oh hai'}
def test_all_requests_response(self):
with HTTMock(self.response_content):
r = requests.get('https://example.com/')
self.assertEqual(r.status_code, 200)
self.assertEqual(r.content, b'Oh hai')
@all_requests
def string_response_content(self, url, request):
return 'Hello'
def test_all_str_response(self):
with HTTMock(self.string_response_content):
r = requests.get('https://example.com/')
self.assertEqual(r.content, b'Hello')
class UrlMatchMethodDecoratorTest(unittest.TestCase):
@urlmatch(netloc=r'(.*\.)?google\.com$', path=r'^/$')
def google_mock(self, url, request):
return 'Hello from Google'
@urlmatch(scheme='http', netloc=r'(.*\.)?facebook\.com$')
def facebook_mock(self, url, request):
return 'Hello from Facebook'
@urlmatch(query=r'.*page=test')
def query_page_mock(self, url, request):
return 'Hello from test page'
def test_netloc_fallback(self):
with HTTMock(self.google_mock, facebook_mock):
r = requests.get('http://google.com/')
self.assertEqual(r.content, b'Hello from Google')
with HTTMock(self.google_mock, facebook_mock):
r = requests.get('http://facebook.com/')
self.assertEqual(r.content, b'Hello from Facebook')
def test_query(self):
with HTTMock(self.query_page_mock, self.google_mock):
r = requests.get('http://google.com/?page=test')
r2 = requests.get('http://google.com/')
self.assertEqual(r.content, b'Hello from test page')
self.assertEqual(r2.content, b'Hello from Google')
class ResponseTest(unittest.TestCase):
content = {'name': 'foo', 'ipv4addr': '127.0.0.1'}
content_list = list(content.keys())
def test_response_auto_json(self):
r = response(0, self.content)
self.assertTrue(isinstance(r.content, binary_type))
self.assertTrue(isinstance(r.text, text_type))
self.assertEqual(r.json(), self.content)
r = response(0, self.content_list)
self.assertEqual(r.json(), self.content_list)
def test_response_status_code(self):
r = response(200)
self.assertEqual(r.status_code, 200)
def test_response_headers(self):
r = response(200, None, {'Content-Type': 'application/json'})
self.assertEqual(r.headers['content-type'], 'application/json')
def test_response_raw_version(self):
r = response(200, None, {'Content-Type': 'application/json'},
http_vsn=10)
self.assertEqual(r.raw.version, 10)
def test_response_cookies(self):
@all_requests
def response_content(url, request):
return response(200, 'Foo', {'Set-Cookie': 'foo=bar;'},
request=request)
with HTTMock(response_content):
r = requests.get('https://example.com/')
self.assertEqual(len(r.cookies), 1)
self.assertTrue('foo' in r.cookies)
self.assertEqual(r.cookies['foo'], 'bar')
def test_response_session_cookies(self):
@all_requests
def response_content(url, request):
return response(200, 'Foo', {'Set-Cookie': 'foo=bar;'},
request=request)
session = requests.Session()
with HTTMock(response_content):
r = session.get('https://foo_bar')
self.assertEqual(len(r.cookies), 1)
self.assertTrue('foo' in r.cookies)
self.assertEqual(r.cookies['foo'], 'bar')
self.assertEqual(len(session.cookies), 1)
self.assertTrue('foo' in session.cookies)
self.assertEqual(session.cookies['foo'], 'bar')
def test_session_persistent_cookies(self):
session = requests.Session()
with HTTMock(lambda u, r: response(200, 'Foo', {'Set-Cookie': 'foo=bar;'}, request=r)):
session.get('https://foo_bar')
with HTTMock(lambda u, r: response(200, 'Baz', {'Set-Cookie': 'baz=qux;'}, request=r)):
session.get('https://baz_qux')
self.assertEqual(len(session.cookies), 2)
self.assertTrue('foo' in session.cookies)
self.assertEqual(session.cookies['foo'], 'bar')
self.assertTrue('baz' in session.cookies)
self.assertEqual(session.cookies['baz'], 'qux')
def test_python_version_encoding_differences(self):
# Previous behavior would result in this test failing in Python3 due
# to how requests checks for utf-8 JSON content in requests.utils with:
#
# TypeError: Can't convert 'bytes' object to str implicitly
@all_requests
def get_mock(url, request):
return {'content': self.content,
'headers': {'content-type': 'application/json'},
'status_code': 200,
'elapsed': 5}
with HTTMock(get_mock):
response = requests.get('http://example.com/')
self.assertEqual(self.content, response.json())
def test_mock_redirect(self):
@urlmatch(netloc='example.com')
def get_mock(url, request):
return {'status_code': 302,
'headers': {'Location': 'http://google.com/'}}
with HTTMock(get_mock, google_mock):
response = requests.get('http://example.com/')
self.assertEqual(len(response.history), 1)
self.assertEqual(response.content, b'Hello from Google')
class StreamTest(unittest.TestCase):
@with_httmock(any_mock)
def test_stream_request(self):
r = requests.get('http://domain.com/', stream=True)
self.assertEqual(r.raw.read(), b'Hello from domain.com')
@with_httmock(dict_any_mock)
def test_stream_request_with_dict_mock(self):
r = requests.get('http://domain.com/', stream=True)
self.assertEqual(r.raw.read(), b'Hello from domain.com')
@with_httmock(any_mock)
def test_non_stream_request(self):
r = requests.get('http://domain.com/')
self.assertEqual(r.raw.read(), b'')
class RememberCalledTest(unittest.TestCase):
@staticmethod
def several_calls(count, method, *args, **kwargs):
results = []
for _ in range(count):
results.append(method(*args, **kwargs))
return results
def test_several_calls(self):
with HTTMock(google_mock_count, facebook_mock_count):
results = self.several_calls(
3, requests.get, 'http://facebook.com/')
self.assertTrue(facebook_mock_count.call['called'])
self.assertEqual(facebook_mock_count.call['count'], 3)
self.assertFalse(google_mock_count.call['called'])
self.assertEqual(google_mock_count.call['count'], 0)
for r in results:
self.assertEqual(r.content, b'Hello from Facebook')
# Negative case: cleanup call data
with HTTMock(facebook_mock_count):
results = self.several_calls(
1, requests.get, 'http://facebook.com/')
self.assertEqual(facebook_mock_count.call['count'], 1)
@with_httmock(google_mock_count, facebook_mock_count)
def test_several_call_decorated(self):
results = self.several_calls(3, requests.get, 'http://facebook.com/')
self.assertTrue(facebook_mock_count.call['called'])
self.assertEqual(facebook_mock_count.call['count'], 3)
self.assertFalse(google_mock_count.call['called'])
self.assertEqual(google_mock_count.call['count'], 0)
for r in results:
self.assertEqual(r.content, b'Hello from Facebook')
self.several_calls(1, requests.get, 'http://facebook.com/')
self.assertEqual(facebook_mock_count.call['count'], 4)
def test_store_several_requests(self):
with HTTMock(google_mock_store_requests):
payload = {"query": "foo"}
requests.post('http://google.com', data=payload)
self.assertTrue(google_mock_store_requests.call['called'])
self.assertEqual(google_mock_store_requests.call['count'], 1)
request = google_mock_store_requests.call['requests'][0]
self.assertEqual(request.body, 'query=foo')