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
|
# -*- coding: utf-8 -*-
"""Tests for aiohttp/client.py"""
import asyncio
import gc
from unittest import mock
import pytest
from yarl import URL
import aiohttp
from aiohttp import helpers
from aiohttp.client_reqrep import ClientResponse
def test_del(loop):
response = ClientResponse('get', URL('http://del-cl-resp.org'))
response._post_init(loop)
connection = mock.Mock()
response._setup_connection(connection)
loop.set_exception_handler(lambda loop, ctx: None)
with pytest.warns(ResourceWarning):
del response
gc.collect()
connection.close.assert_called_with()
def test_close(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
response._connection = mock.Mock()
response.close()
assert response.connection is None
response.close()
response.close()
def test_wait_for_100_1(loop):
response = ClientResponse(
'get', URL('http://python.org'), continue100=object())
response._post_init(loop)
assert response._continue is not None
response.close()
def test_wait_for_100_2(loop):
response = ClientResponse(
'get', URL('http://python.org'))
response._post_init(loop)
assert response._continue is None
response.close()
def test_repr(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
response.status = 200
response.reason = 'Ok'
assert '<ClientResponse(http://def-cl-resp.org) [200 Ok]>'\
in repr(response)
def test_repr_non_ascii_url():
response = ClientResponse('get', URL('http://fake-host.org/\u03bb'))
assert "<ClientResponse(http://fake-host.org/%CE%BB) [None None]>"\
in repr(response)
def test_repr_non_ascii_reason():
response = ClientResponse('get', URL('http://fake-host.org/path'))
response.reason = '\u03bb'
assert "<ClientResponse(http://fake-host.org/path) [None \\u03bb]>"\
in repr(response)
@asyncio.coroutine
def test_read_and_release_connection(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result(b'payload')
return fut
content = response.content = mock.Mock()
content.read.side_effect = side_effect
res = yield from response.read()
assert res == b'payload'
assert response._connection is None
@asyncio.coroutine
def test_read_and_release_connection_with_error(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
content = response.content = mock.Mock()
content.read.return_value = helpers.create_future(loop)
content.read.return_value.set_exception(ValueError)
with pytest.raises(ValueError):
yield from response.read()
assert response._closed
@asyncio.coroutine
def test_release(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
fut = helpers.create_future(loop)
fut.set_result(b'')
content = response.content = mock.Mock()
content.readany.return_value = fut
yield from response.release()
assert response._connection is None
@asyncio.coroutine
def test_text(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result('{"тест": "пройден"}'.encode('cp1251'))
return fut
response.headers = {
'Content-Type': 'application/json;charset=cp1251'}
content = response.content = mock.Mock()
content.read.side_effect = side_effect
res = yield from response.text()
assert res == '{"тест": "пройден"}'
assert response._connection is None
@asyncio.coroutine
def test_text_custom_encoding(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result('{"тест": "пройден"}'.encode('cp1251'))
return fut
response.headers = {
'Content-Type': 'application/json'}
content = response.content = mock.Mock()
content.read.side_effect = side_effect
response._get_encoding = mock.Mock()
res = yield from response.text(encoding='cp1251')
assert res == '{"тест": "пройден"}'
assert response._connection is None
assert not response._get_encoding.called
@asyncio.coroutine
def test_text_detect_encoding(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result('{"тест": "пройден"}'.encode('cp1251'))
return fut
response.headers = {'Content-Type': 'text/plain'}
content = response.content = mock.Mock()
content.read.side_effect = side_effect
yield from response.read()
res = yield from response.text()
assert res == '{"тест": "пройден"}'
assert response._connection is None
@asyncio.coroutine
def test_text_after_read(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result('{"тест": "пройден"}'.encode('cp1251'))
return fut
response.headers = {
'Content-Type': 'application/json;charset=cp1251'}
content = response.content = mock.Mock()
content.read.side_effect = side_effect
res = yield from response.text()
assert res == '{"тест": "пройден"}'
assert response._connection is None
@asyncio.coroutine
def test_json(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result('{"тест": "пройден"}'.encode('cp1251'))
return fut
response.headers = {
'Content-Type': 'application/json;charset=cp1251'}
content = response.content = mock.Mock()
content.read.side_effect = side_effect
res = yield from response.json()
assert res == {'тест': 'пройден'}
assert response._connection is None
@asyncio.coroutine
def test_json_custom_loader(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
response.headers = {
'Content-Type': 'application/json;charset=cp1251'}
response._content = b'data'
def custom(content):
return content + '-custom'
res = yield from response.json(loads=custom)
assert res == 'data-custom'
@asyncio.coroutine
def test_json_no_content(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
response.headers = {
'Content-Type': 'data/octet-stream'}
response._content = b''
with mock.patch('aiohttp.client_reqrep.client_logger') as m_log:
res = yield from response.json()
assert res is None
m_log.warning.assert_called_with(
'Attempt to decode JSON with unexpected mimetype: %s',
'data/octet-stream')
@asyncio.coroutine
def test_json_override_encoding(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
def side_effect(*args, **kwargs):
fut = helpers.create_future(loop)
fut.set_result('{"тест": "пройден"}'.encode('cp1251'))
return fut
response.headers = {
'Content-Type': 'application/json;charset=utf8'}
content = response.content = mock.Mock()
content.read.side_effect = side_effect
response._get_encoding = mock.Mock()
res = yield from response.json(encoding='cp1251')
assert res == {'тест': 'пройден'}
assert response._connection is None
assert not response._get_encoding.called
def test_override_flow_control(loop):
class MyResponse(ClientResponse):
flow_control_class = aiohttp.StreamReader
response = MyResponse('get', URL('http://my-cl-resp.org'))
response._post_init(loop)
response._setup_connection(mock.Mock())
assert isinstance(response.content, aiohttp.StreamReader)
response.close()
def test_get_encoding_unknown(loop):
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response._post_init(loop)
response.headers = {'Content-Type': 'application/json'}
with mock.patch('aiohttp.client_reqrep.chardet') as m_chardet:
m_chardet.detect.return_value = {'encoding': None}
assert response._get_encoding() == 'utf-8'
def test_raise_for_status_2xx():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.status = 200
response.reason = 'OK'
response.raise_for_status() # should not raise
def test_raise_for_status_4xx():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.status = 409
response.reason = 'CONFLICT'
with pytest.raises(aiohttp.HttpProcessingError) as cm:
response.raise_for_status()
assert str(cm.value.code) == '409'
assert str(cm.value.message) == "CONFLICT"
def test_resp_host():
response = ClientResponse('get', URL('http://del-cl-resp.org'))
with pytest.warns(DeprecationWarning):
assert 'del-cl-resp.org' == response.host
def test_content_type():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.headers = {'Content-Type': 'application/json;charset=cp1251'}
assert 'application/json' == response.content_type
def test_content_type_no_header():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.headers = {}
assert 'application/octet-stream' == response.content_type
def test_charset():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.headers = {'Content-Type': 'application/json;charset=cp1251'}
assert 'cp1251' == response.charset
def test_charset_no_header():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.headers = {}
assert response.charset is None
def test_charset_no_charset():
response = ClientResponse('get', URL('http://def-cl-resp.org'))
response.headers = {'Content-Type': 'application/json'}
assert response.charset is None
|