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
|
import asyncio
from unittest import mock
from yarl import URL
from aiohttp import http
from aiohttp.client_exceptions import ClientOSError, ServerDisconnectedError
from aiohttp.client_proto import ResponseHandler
from aiohttp.client_reqrep import ClientResponse
from aiohttp.helpers import TimerNoop
async def test_force_close(loop: asyncio.AbstractEventLoop) -> None:
"""Ensure that the force_close method sets the should_close attribute to True.
This is used externally in aiodocker
https://github.com/aio-libs/aiodocker/issues/920
"""
proto = ResponseHandler(loop=loop)
proto.force_close()
assert proto.should_close
async def test_oserror(loop: asyncio.AbstractEventLoop) -> None:
proto = ResponseHandler(loop=loop)
transport = mock.Mock()
proto.connection_made(transport)
proto.connection_lost(OSError())
assert proto.should_close
assert isinstance(proto.exception(), ClientOSError)
async def test_pause_resume_on_error(loop) -> None:
proto = ResponseHandler(loop=loop)
transport = mock.Mock()
proto.connection_made(transport)
proto.pause_reading()
assert proto._reading_paused
proto.resume_reading()
assert not proto._reading_paused
async def test_client_proto_bad_message(loop) -> None:
proto = ResponseHandler(loop=loop)
transport = mock.Mock()
proto.connection_made(transport)
proto.set_response_params()
proto.data_received(b"HTTP\r\n\r\n")
assert proto.should_close
assert transport.close.called
assert isinstance(proto.exception(), http.HttpProcessingError)
async def test_uncompleted_message(loop) -> None:
proto = ResponseHandler(loop=loop)
transport = mock.Mock()
proto.connection_made(transport)
proto.set_response_params(read_until_eof=True)
proto.data_received(
b"HTTP/1.1 301 Moved Permanently\r\nLocation: http://python.org/"
)
proto.connection_lost(None)
exc = proto.exception()
assert isinstance(exc, ServerDisconnectedError)
assert exc.message.code == 301
assert dict(exc.message.headers) == {"Location": "http://python.org/"}
async def test_data_received_after_close(loop: asyncio.AbstractEventLoop) -> None:
proto = ResponseHandler(loop=loop)
transport = mock.Mock()
proto.connection_made(transport)
proto.set_response_params(read_until_eof=True)
proto.close()
assert transport.close.called
transport.close.reset_mock()
proto.data_received(b"HTTP\r\n\r\n")
assert proto.should_close
assert not transport.close.called
assert isinstance(proto.exception(), http.HttpProcessingError)
async def test_multiple_responses_one_byte_at_a_time(
loop: asyncio.AbstractEventLoop,
) -> None:
proto = ResponseHandler(loop=loop)
proto.connection_made(mock.Mock())
conn = mock.Mock(protocol=proto)
proto.set_response_params(read_until_eof=True)
for _ in range(2):
messages = (
b"HTTP/1.1 200 OK\r\nContent-Length: 2\r\n\r\nab"
b"HTTP/1.1 200 OK\r\nContent-Length: 2\r\n\r\ncd"
b"HTTP/1.1 200 OK\r\nContent-Length: 2\r\n\r\nef"
)
for i in range(len(messages)):
proto.data_received(messages[i : i + 1])
expected = [b"ab", b"cd", b"ef"]
for payload in expected:
response = ClientResponse(
"get",
URL("http://def-cl-resp.org"),
writer=mock.Mock(),
continue100=None,
timer=TimerNoop(),
request_info=mock.Mock(),
traces=[],
loop=loop,
session=mock.Mock(),
)
await response.start(conn)
await response.read() == payload
async def test_unexpected_exception_during_data_received(
loop: asyncio.AbstractEventLoop,
) -> None:
proto = ResponseHandler(loop=loop)
class PatchableHttpResponseParser(http.HttpResponseParser):
"""Subclass of HttpResponseParser to make it patchable."""
with mock.patch(
"aiohttp.client_proto.HttpResponseParser", PatchableHttpResponseParser
):
proto.connection_made(mock.Mock())
conn = mock.Mock(protocol=proto)
proto.set_response_params(read_until_eof=True)
proto.data_received(b"HTTP/1.1 200 OK\r\nContent-Length: 2\r\n\r\nab")
response = ClientResponse(
"get",
URL("http://def-cl-resp.org"),
writer=mock.Mock(),
continue100=None,
timer=TimerNoop(),
request_info=mock.Mock(),
traces=[],
loop=loop,
session=mock.Mock(),
)
await response.start(conn)
await response.read() == b"ab"
with mock.patch.object(proto._parser, "feed_data", side_effect=ValueError):
proto.data_received(b"HTTP/1.1 200 OK\r\nContent-Length: 2\r\n\r\ncd")
assert isinstance(proto.exception(), http.HttpProcessingError)
async def test_client_protocol_readuntil_eof(loop: asyncio.AbstractEventLoop) -> None:
proto = ResponseHandler(loop=loop)
transport = mock.Mock()
proto.connection_made(transport)
conn = mock.Mock()
conn.protocol = proto
proto.data_received(b"HTTP/1.1 200 Ok\r\n\r\n")
response = ClientResponse(
"get",
URL("http://def-cl-resp.org"),
writer=mock.Mock(),
continue100=None,
timer=TimerNoop(),
request_info=mock.Mock(),
traces=[],
loop=loop,
session=mock.Mock(),
)
proto.set_response_params(read_until_eof=True)
await response.start(conn)
assert not response.content.is_eof()
proto.data_received(b"0000")
data = await response.content.readany()
assert data == b"0000"
proto.data_received(b"1111")
data = await response.content.readany()
assert data == b"1111"
proto.connection_lost(None)
assert response.content.is_eof()
async def test_empty_data(loop) -> None:
proto = ResponseHandler(loop=loop)
proto.data_received(b"")
# do nothing
async def test_schedule_timeout(loop) -> None:
proto = ResponseHandler(loop=loop)
proto.set_response_params(read_timeout=1)
assert proto._read_timeout_handle is None
proto.start_timeout()
assert proto._read_timeout_handle is not None
async def test_drop_timeout(loop) -> None:
proto = ResponseHandler(loop=loop)
proto.set_response_params(read_timeout=1)
proto.start_timeout()
assert proto._read_timeout_handle is not None
proto._drop_timeout()
assert proto._read_timeout_handle is None
async def test_reschedule_timeout(loop) -> None:
proto = ResponseHandler(loop=loop)
proto.set_response_params(read_timeout=1)
proto.start_timeout()
assert proto._read_timeout_handle is not None
h = proto._read_timeout_handle
proto._reschedule_timeout()
assert proto._read_timeout_handle is not None
assert proto._read_timeout_handle is not h
async def test_eof_received(loop) -> None:
proto = ResponseHandler(loop=loop)
proto.set_response_params(read_timeout=1)
proto.start_timeout()
assert proto._read_timeout_handle is not None
proto.eof_received()
assert proto._read_timeout_handle is None
async def test_connection_lost_sets_transport_to_none(loop, mocker) -> None:
"""Ensure that the transport is set to None when the connection is lost.
This ensures the writer knows that the connection is closed.
"""
proto = ResponseHandler(loop=loop)
proto.connection_made(mocker.Mock())
assert proto.transport is not None
proto.connection_lost(OSError())
assert proto.transport is None
async def test_connection_lost_exception_is_marked_retrieved(
loop: asyncio.AbstractEventLoop,
) -> None:
"""Test that connection_lost properly handles exceptions without warnings."""
proto = ResponseHandler(loop=loop)
proto.connection_made(mock.Mock())
# Access closed property before connection_lost to ensure future is created
closed_future = proto.closed
assert closed_future is not None
# Simulate an SSL shutdown timeout error
ssl_error = TimeoutError("SSL shutdown timed out")
proto.connection_lost(ssl_error)
# Verify the exception was set on the closed future
assert closed_future.done()
exc = closed_future.exception()
assert exc is not None
assert "Connection lost: SSL shutdown timed out" in str(exc)
assert exc.__cause__ is ssl_error
async def test_closed_property_lazy_creation(
loop: asyncio.AbstractEventLoop,
) -> None:
"""Test that closed future is created lazily."""
proto = ResponseHandler(loop=loop)
# Initially, the closed future should not be created
assert proto._closed is None
# Accessing the property should create the future
closed_future = proto.closed
assert closed_future is not None
assert isinstance(closed_future, asyncio.Future)
assert not closed_future.done()
# Subsequent access should return the same future
assert proto.closed is closed_future
async def test_closed_property_after_connection_lost(
loop: asyncio.AbstractEventLoop,
) -> None:
"""Test that closed property returns None after connection_lost if never accessed."""
proto = ResponseHandler(loop=loop)
proto.connection_made(mock.Mock())
# Don't access proto.closed before connection_lost
proto.connection_lost(None)
# After connection_lost, closed should return None if it was never accessed
assert proto.closed is None
async def test_abort(loop: asyncio.AbstractEventLoop) -> None:
"""Test the abort() method."""
proto = ResponseHandler(loop=loop)
# Create a mock transport
transport = mock.Mock()
proto.connection_made(transport)
# Set up some state
proto._payload = mock.Mock()
# Mock _drop_timeout method using patch.object
with mock.patch.object(proto, "_drop_timeout") as mock_drop_timeout:
# Call abort
proto.abort()
# Verify transport.abort() was called
transport.abort.assert_called_once()
# Verify cleanup
assert proto.transport is None
assert proto._payload is None
assert proto._exception is None # type: ignore[unreachable]
mock_drop_timeout.assert_called_once()
async def test_abort_without_transport(loop: asyncio.AbstractEventLoop) -> None:
"""Test abort() when transport is None."""
proto = ResponseHandler(loop=loop)
# Mock _drop_timeout method using patch.object
with mock.patch.object(proto, "_drop_timeout") as mock_drop_timeout:
# Call abort without transport
proto.abort()
# Should not raise and should still clean up
assert proto._exception is None
mock_drop_timeout.assert_not_called()
|