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
|
"""
This module contains tests that use invalid content lengths, and validates that
they fail appropriately.
"""
from __future__ import annotations
import pytest
import h2.config
import h2.connection
import h2.errors
import h2.events
import h2.exceptions
class TestInvalidContentLengths:
"""
Hyper-h2 raises Protocol Errors when the content-length sent by a remote
peer is not valid.
"""
example_request_headers = [
(":authority", "example.com"),
(":path", "/"),
(":scheme", "https"),
(":method", "POST"),
("content-length", "15"),
]
example_request_headers_bytes = [
(b":authority", b"example.com"),
(b":path", b"/"),
(b":scheme", b"https"),
(b":method", b"POST"),
(b"content-length", b"15"),
]
example_response_headers = [
(":status", "200"),
("server", "fake-serv/0.1.0"),
]
server_config = h2.config.H2Configuration(client_side=False)
@pytest.mark.parametrize("request_headers", [example_request_headers, example_request_headers_bytes])
def test_too_much_data(self, frame_factory, request_headers) -> None:
"""
Remote peers sending data in excess of content-length causes Protocol
Errors.
"""
c = h2.connection.H2Connection(config=self.server_config)
c.initiate_connection()
c.receive_data(frame_factory.preamble())
headers = frame_factory.build_headers_frame(
headers=request_headers,
)
first_data = frame_factory.build_data_frame(data=b"\x01"*15)
c.receive_data(headers.serialize() + first_data.serialize())
c.clear_outbound_data_buffer()
second_data = frame_factory.build_data_frame(data=b"\x01")
with pytest.raises(h2.exceptions.InvalidBodyLengthError) as exp:
c.receive_data(second_data.serialize())
assert exp.value.expected_length == 15
assert exp.value.actual_length == 16
assert str(exp.value) == (
"InvalidBodyLengthError: Expected 15 bytes, received 16"
)
expected_frame = frame_factory.build_goaway_frame(
last_stream_id=1,
error_code=h2.errors.ErrorCodes.PROTOCOL_ERROR,
)
assert c.data_to_send() == expected_frame.serialize()
@pytest.mark.parametrize("request_headers", [example_request_headers, example_request_headers_bytes])
def test_insufficient_data(self, frame_factory, request_headers) -> None:
"""
Remote peers sending less data than content-length causes Protocol
Errors.
"""
c = h2.connection.H2Connection(config=self.server_config)
c.initiate_connection()
c.receive_data(frame_factory.preamble())
headers = frame_factory.build_headers_frame(
headers=request_headers,
)
first_data = frame_factory.build_data_frame(data=b"\x01"*13)
c.receive_data(headers.serialize() + first_data.serialize())
c.clear_outbound_data_buffer()
second_data = frame_factory.build_data_frame(
data=b"\x01",
flags=["END_STREAM"],
)
with pytest.raises(h2.exceptions.InvalidBodyLengthError) as exp:
c.receive_data(second_data.serialize())
assert exp.value.expected_length == 15
assert exp.value.actual_length == 14
assert str(exp.value) == (
"InvalidBodyLengthError: Expected 15 bytes, received 14"
)
expected_frame = frame_factory.build_goaway_frame(
last_stream_id=1,
error_code=h2.errors.ErrorCodes.PROTOCOL_ERROR,
)
assert c.data_to_send() == expected_frame.serialize()
@pytest.mark.parametrize("request_headers", [example_request_headers, example_request_headers_bytes])
def test_insufficient_data_empty_frame(self, frame_factory, request_headers) -> None:
"""
Remote peers sending less data than content-length where the last data
frame is empty causes Protocol Errors.
"""
c = h2.connection.H2Connection(config=self.server_config)
c.initiate_connection()
c.receive_data(frame_factory.preamble())
headers = frame_factory.build_headers_frame(
headers=request_headers,
)
first_data = frame_factory.build_data_frame(data=b"\x01"*14)
c.receive_data(headers.serialize() + first_data.serialize())
c.clear_outbound_data_buffer()
second_data = frame_factory.build_data_frame(
data=b"",
flags=["END_STREAM"],
)
with pytest.raises(h2.exceptions.InvalidBodyLengthError) as exp:
c.receive_data(second_data.serialize())
assert exp.value.expected_length == 15
assert exp.value.actual_length == 14
assert str(exp.value) == (
"InvalidBodyLengthError: Expected 15 bytes, received 14"
)
expected_frame = frame_factory.build_goaway_frame(
last_stream_id=1,
error_code=h2.errors.ErrorCodes.PROTOCOL_ERROR,
)
assert c.data_to_send() == expected_frame.serialize()
|