mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 14:14:48 +00:00

mod_proxy: forward trailers on chunked request encoding test: add http/1.x test cases in pytest git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899552 13f79535-47bb-0310-9956-ffa450edef68
70 lines
2.8 KiB
Python
70 lines
2.8 KiB
Python
import re
|
|
import socket
|
|
from typing import Optional
|
|
|
|
import pytest
|
|
|
|
from .env import H1Conf
|
|
|
|
|
|
class TestRequestStrict:
|
|
|
|
@pytest.fixture(autouse=True, scope='class')
|
|
def _class_scope(self, env):
|
|
conf = H1Conf(env)
|
|
conf.add([
|
|
"HttpProtocolOptions Strict",
|
|
])
|
|
conf.install()
|
|
assert env.apache_restart() == 0
|
|
|
|
# strict tests from t/apache/http_strict.t
|
|
# possible expected results:
|
|
# 0: any HTTP error
|
|
# 1: any HTTP success
|
|
# 200-500: specific HTTP status code
|
|
# undef: HTTPD should drop connection without error message
|
|
@pytest.mark.parametrize(["intext", "status"], [
|
|
["GET / HTTP/1.0\n\n", 400],
|
|
["G/T / HTTP/1.0\r\n\r\n", 400],
|
|
["GET / HTTP/1.0 \r\nHost: localhost\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\nFoo: b\x01ar\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\nF\x01o: bar\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\r", None],
|
|
["GET / HTTP/1.0\r\nHost: localhost\r\nHost: localhost\r\n\r\n", 400],
|
|
["GET http://017700000001/ HTTP/1.0\r\n\r\n", 400],
|
|
["GET http://0x7f.1/ HTTP/1.0\r\n\r\n", 400],
|
|
["GET http://127.01.0.1/ HTTP/1.0\r\n\r\n", 400],
|
|
["GET http://%3127.0.0.1/ HTTP/1.0\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\nHost: localhost:80\r\nHost: localhost:80\r\n\r\n", 400],
|
|
["GET http://foo@localhost:80/ HTTP/1.0\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\nHost: 4714::abcd:8001\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\nHost: abc\xa0\r\n\r\n", 400],
|
|
["GET / HTTP/1.0\r\nHost: foo_bar.example.com\r\n\r\n", 200],
|
|
["GET http://foo_bar/ HTTP/1.0\r\n\r\n", 200],
|
|
])
|
|
def test_h1_007_01(self, env, intext, status: Optional[int]):
|
|
with socket.create_connection(('localhost', int(env.http_port))) as sock:
|
|
# on some OS, the server does not see our connection until there is
|
|
# something incoming
|
|
sock.sendall(intext.encode())
|
|
sock.shutdown(socket.SHUT_WR)
|
|
buff = sock.recv(1024)
|
|
msg = buff.decode()
|
|
if status is None:
|
|
assert len(msg) == 0, f"unexpected answer: {msg}"
|
|
else:
|
|
assert len(msg) > 0, "no answer from server"
|
|
rlines = msg.splitlines()
|
|
response = rlines[0]
|
|
m = re.match(r'^HTTP/1.1 (\d+)\s+(\S+)', response)
|
|
assert m, f"unrecognized response: {rlines}"
|
|
if status == 1:
|
|
assert int(m.group(1)) >= 200
|
|
elif status == 90:
|
|
assert len(rlines) >= 1, f"{rlines}"
|
|
elif status > 0:
|
|
assert int(m.group(1)) == status, f"{rlines}"
|
|
else:
|
|
assert int(m.group(1)) >= 400, f"{rlines}"
|