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
|
import ssl
import typing
import hpack
import hyperframe.frame
import pytest
from httpcore import (
SOCKET_OPTION,
AsyncHTTPConnection,
AsyncMockBackend,
AsyncMockStream,
AsyncNetworkStream,
ConnectError,
ConnectionNotAvailable,
Origin,
RemoteProtocolError,
WriteError,
)
@pytest.mark.anyio
async def test_http_connection():
origin = Origin(b"https", b"example.com", 443)
network_backend = AsyncMockBackend(
[
b"HTTP/1.1 200 OK\r\n",
b"Content-Type: plain/text\r\n",
b"Content-Length: 13\r\n",
b"\r\n",
b"Hello, world!",
]
)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, keepalive_expiry=5.0
) as conn:
assert not conn.is_idle()
assert not conn.is_closed()
assert not conn.is_available()
assert not conn.has_expired()
assert repr(conn) == "<AsyncHTTPConnection [CONNECTING]>"
async with conn.stream("GET", "https://example.com/") as response:
assert (
repr(conn)
== "<AsyncHTTPConnection ['https://example.com:443', HTTP/1.1, ACTIVE, Request Count: 1]>"
)
await response.aread()
assert response.status == 200
assert response.content == b"Hello, world!"
assert conn.is_idle()
assert not conn.is_closed()
assert conn.is_available()
assert not conn.has_expired()
assert (
repr(conn)
== "<AsyncHTTPConnection ['https://example.com:443', HTTP/1.1, IDLE, Request Count: 1]>"
)
@pytest.mark.anyio
async def test_concurrent_requests_not_available_on_http11_connections():
"""
Attempting to issue a request against an already active HTTP/1.1 connection
will raise a `ConnectionNotAvailable` exception.
"""
origin = Origin(b"https", b"example.com", 443)
network_backend = AsyncMockBackend(
[
b"HTTP/1.1 200 OK\r\n",
b"Content-Type: plain/text\r\n",
b"Content-Length: 13\r\n",
b"\r\n",
b"Hello, world!",
]
)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, keepalive_expiry=5.0
) as conn:
async with conn.stream("GET", "https://example.com/"):
with pytest.raises(ConnectionNotAvailable):
await conn.request("GET", "https://example.com/")
@pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
@pytest.mark.anyio
async def test_write_error_with_response_sent():
"""
If a server half-closes the connection while the client is sending
the request, it may still send a response. In this case the client
should successfully read and return the response.
See also the `test_write_error_without_response_sent` test above.
"""
class ErrorOnRequestTooLargeStream(AsyncMockStream):
def __init__(self, buffer: typing.List[bytes], http2: bool = False) -> None:
super().__init__(buffer, http2)
self.count = 0
async def write(
self, buffer: bytes, timeout: typing.Optional[float] = None
) -> None:
self.count += len(buffer)
if self.count > 1_000_000:
raise WriteError()
class ErrorOnRequestTooLarge(AsyncMockBackend):
async def connect_tcp(
self,
host: str,
port: int,
timeout: typing.Optional[float] = None,
local_address: typing.Optional[str] = None,
socket_options: typing.Optional[typing.Iterable[SOCKET_OPTION]] = None,
) -> AsyncMockStream:
return ErrorOnRequestTooLargeStream(list(self._buffer), http2=self._http2)
origin = Origin(b"https", b"example.com", 443)
network_backend = ErrorOnRequestTooLarge(
[
b"HTTP/1.1 413 Payload Too Large\r\n",
b"Content-Type: plain/text\r\n",
b"Content-Length: 37\r\n",
b"\r\n",
b"Request body exceeded 1,000,000 bytes",
]
)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, keepalive_expiry=5.0
) as conn:
content = b"x" * 10_000_000
response = await conn.request("POST", "https://example.com/", content=content)
assert response.status == 413
assert response.content == b"Request body exceeded 1,000,000 bytes"
@pytest.mark.anyio
@pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
async def test_write_error_without_response_sent():
"""
If a server fully closes the connection while the client is sending
the request, then client should raise an error.
See also the `test_write_error_with_response_sent` test above.
"""
class ErrorOnRequestTooLargeStream(AsyncMockStream):
def __init__(self, buffer: typing.List[bytes], http2: bool = False) -> None:
super().__init__(buffer, http2)
self.count = 0
async def write(
self, buffer: bytes, timeout: typing.Optional[float] = None
) -> None:
self.count += len(buffer)
if self.count > 1_000_000:
raise WriteError()
class ErrorOnRequestTooLarge(AsyncMockBackend):
async def connect_tcp(
self,
host: str,
port: int,
timeout: typing.Optional[float] = None,
local_address: typing.Optional[str] = None,
socket_options: typing.Optional[typing.Iterable[SOCKET_OPTION]] = None,
) -> AsyncMockStream:
return ErrorOnRequestTooLargeStream(list(self._buffer), http2=self._http2)
origin = Origin(b"https", b"example.com", 443)
network_backend = ErrorOnRequestTooLarge([])
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, keepalive_expiry=5.0
) as conn:
content = b"x" * 10_000_000
with pytest.raises(RemoteProtocolError) as exc_info:
await conn.request("POST", "https://example.com/", content=content)
assert str(exc_info.value) == "Server disconnected without sending a response."
@pytest.mark.anyio
@pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
async def test_http2_connection():
origin = Origin(b"https", b"example.com", 443)
network_backend = AsyncMockBackend(
[
hyperframe.frame.SettingsFrame().serialize(),
hyperframe.frame.HeadersFrame(
stream_id=1,
data=hpack.Encoder().encode(
[
(b":status", b"200"),
(b"content-type", b"plain/text"),
]
),
flags=["END_HEADERS"],
).serialize(),
hyperframe.frame.DataFrame(
stream_id=1, data=b"Hello, world!", flags=["END_STREAM"]
).serialize(),
],
http2=True,
)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, http2=True
) as conn:
response = await conn.request("GET", "https://example.com/")
assert response.status == 200
assert response.content == b"Hello, world!"
assert response.extensions["http_version"] == b"HTTP/2"
@pytest.mark.anyio
async def test_request_to_incorrect_origin():
"""
A connection can only send requests whichever origin it is connected to.
"""
origin = Origin(b"https", b"example.com", 443)
network_backend = AsyncMockBackend([])
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend
) as conn:
with pytest.raises(RuntimeError):
await conn.request("GET", "https://other.com/")
class NeedsRetryBackend(AsyncMockBackend):
def __init__(
self,
buffer: typing.List[bytes],
http2: bool = False,
connect_tcp_failures: int = 2,
start_tls_failures: int = 0,
) -> None:
self._connect_tcp_failures = connect_tcp_failures
self._start_tls_failures = start_tls_failures
super().__init__(buffer, http2)
async def connect_tcp(
self,
host: str,
port: int,
timeout: typing.Optional[float] = None,
local_address: typing.Optional[str] = None,
socket_options: typing.Optional[typing.Iterable[SOCKET_OPTION]] = None,
) -> AsyncNetworkStream:
if self._connect_tcp_failures > 0:
self._connect_tcp_failures -= 1
raise ConnectError()
stream = await super().connect_tcp(
host, port, timeout=timeout, local_address=local_address
)
return self._NeedsRetryAsyncNetworkStream(self, stream)
class _NeedsRetryAsyncNetworkStream(AsyncNetworkStream):
def __init__(
self, backend: "NeedsRetryBackend", stream: AsyncNetworkStream
) -> None:
self._backend = backend
self._stream = stream
async def read(
self, max_bytes: int, timeout: typing.Optional[float] = None
) -> bytes:
return await self._stream.read(max_bytes, timeout)
async def write(
self, buffer: bytes, timeout: typing.Optional[float] = None
) -> None:
await self._stream.write(buffer, timeout)
async def aclose(self) -> None:
await self._stream.aclose()
async def start_tls(
self,
ssl_context: ssl.SSLContext,
server_hostname: typing.Optional[str] = None,
timeout: typing.Optional[float] = None,
) -> "AsyncNetworkStream":
if self._backend._start_tls_failures > 0:
self._backend._start_tls_failures -= 1
raise ConnectError()
stream = await self._stream.start_tls(ssl_context, server_hostname, timeout)
return self._backend._NeedsRetryAsyncNetworkStream(self._backend, stream)
def get_extra_info(self, info: str) -> typing.Any:
return self._stream.get_extra_info(info)
@pytest.mark.anyio
async def test_connection_retries():
origin = Origin(b"https", b"example.com", 443)
content = [
b"HTTP/1.1 200 OK\r\n",
b"Content-Type: plain/text\r\n",
b"Content-Length: 13\r\n",
b"\r\n",
b"Hello, world!",
]
network_backend = NeedsRetryBackend(content)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, retries=3
) as conn:
response = await conn.request("GET", "https://example.com/")
assert response.status == 200
network_backend = NeedsRetryBackend(content)
async with AsyncHTTPConnection(
origin=origin,
network_backend=network_backend,
) as conn:
with pytest.raises(ConnectError):
await conn.request("GET", "https://example.com/")
@pytest.mark.anyio
async def test_connection_retries_tls():
origin = Origin(b"https", b"example.com", 443)
content = [
b"HTTP/1.1 200 OK\r\n",
b"Content-Type: plain/text\r\n",
b"Content-Length: 13\r\n",
b"\r\n",
b"Hello, world!",
]
network_backend = NeedsRetryBackend(
content, connect_tcp_failures=0, start_tls_failures=2
)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, retries=3
) as conn:
response = await conn.request("GET", "https://example.com/")
assert response.status == 200
network_backend = NeedsRetryBackend(
content, connect_tcp_failures=0, start_tls_failures=2
)
async with AsyncHTTPConnection(
origin=origin,
network_backend=network_backend,
) as conn:
with pytest.raises(ConnectError):
await conn.request("GET", "https://example.com/")
@pytest.mark.anyio
async def test_uds_connections():
# We're not actually testing Unix Domain Sockets here, because we're just
# using a mock backend, but at least we're covering the UDS codepath
# in `connection.py` which we may as well do.
origin = Origin(b"https", b"example.com", 443)
network_backend = AsyncMockBackend(
[
b"HTTP/1.1 200 OK\r\n",
b"Content-Type: plain/text\r\n",
b"Content-Length: 13\r\n",
b"\r\n",
b"Hello, world!",
]
)
async with AsyncHTTPConnection(
origin=origin, network_backend=network_backend, uds="/mock/example"
) as conn:
response = await conn.request("GET", "https://example.com/")
assert response.status == 200
|