mitmproxy/test/http/http2/test_protocol.py

539 lines
18 KiB
Python
Raw Normal View History

2015-06-05 11:28:09 +00:00
import OpenSSL
2015-08-05 19:32:53 +00:00
import mock
2015-06-05 11:28:09 +00:00
2016-01-24 22:24:59 +00:00
from netlib import tcp, http, tutils, tservers
from netlib.exceptions import TcpDisconnect
2015-09-15 22:04:23 +00:00
from netlib.http import Headers
from netlib.http.http2.connections import HTTP2Protocol, TCPHandler
2015-07-14 21:02:14 +00:00
from netlib.http.http2.frame import *
2015-06-05 11:28:09 +00:00
2015-08-05 19:32:53 +00:00
class TestTCPHandlerWrapper:
def test_wrapped(self):
2015-09-15 22:04:23 +00:00
h = TCPHandler(rfile='foo', wfile='bar')
2015-08-05 19:32:53 +00:00
p = HTTP2Protocol(h)
assert p.tcp_handler.rfile == 'foo'
assert p.tcp_handler.wfile == 'bar'
def test_direct(self):
p = HTTP2Protocol(rfile='foo', wfile='bar')
2015-09-15 22:04:23 +00:00
assert isinstance(p.tcp_handler, TCPHandler)
2015-08-05 19:32:53 +00:00
assert p.tcp_handler.rfile == 'foo'
assert p.tcp_handler.wfile == 'bar'
2015-06-05 11:28:09 +00:00
class EchoHandler(tcp.BaseHandler):
sni = None
def handle(self):
2015-06-05 18:49:03 +00:00
while True:
v = self.rfile.safe_read(1)
self.wfile.write(v)
self.wfile.flush()
2015-06-05 11:28:09 +00:00
2015-08-05 19:32:53 +00:00
class TestProtocol:
2015-09-15 22:04:23 +00:00
@mock.patch("netlib.http.http2.connections.HTTP2Protocol.perform_server_connection_preface")
@mock.patch("netlib.http.http2.connections.HTTP2Protocol.perform_client_connection_preface")
2015-08-05 19:32:53 +00:00
def test_perform_connection_preface(self, mock_client_method, mock_server_method):
protocol = HTTP2Protocol(is_server=False)
protocol.connection_preface_performed = True
protocol.perform_connection_preface()
assert not mock_client_method.called
assert not mock_server_method.called
protocol.perform_connection_preface(force=True)
assert mock_client_method.called
assert not mock_server_method.called
2015-09-15 22:04:23 +00:00
@mock.patch("netlib.http.http2.connections.HTTP2Protocol.perform_server_connection_preface")
@mock.patch("netlib.http.http2.connections.HTTP2Protocol.perform_client_connection_preface")
2015-08-05 19:32:53 +00:00
def test_perform_connection_preface_server(self, mock_client_method, mock_server_method):
protocol = HTTP2Protocol(is_server=True)
protocol.connection_preface_performed = True
protocol.perform_connection_preface()
assert not mock_client_method.called
assert not mock_server_method.called
protocol.perform_connection_preface(force=True)
assert not mock_client_method.called
assert mock_server_method.called
2015-06-22 02:52:23 +00:00
class TestCheckALPNMatch(tservers.ServerTestBase):
2015-06-05 11:28:09 +00:00
handler = EchoHandler
ssl = dict(
2015-09-26 15:39:50 +00:00
alpn_select=b'h2',
2015-06-05 11:28:09 +00:00
)
if OpenSSL._util.lib.Cryptography_HAS_ALPN:
def test_check_alpn(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
2015-09-26 15:39:50 +00:00
c.convert_to_ssl(alpn_protos=[b'h2'])
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
2015-06-05 11:28:09 +00:00
assert protocol.check_alpn()
2015-06-22 02:52:23 +00:00
class TestCheckALPNMismatch(tservers.ServerTestBase):
2015-06-05 11:28:09 +00:00
handler = EchoHandler
ssl = dict(
alpn_select=None,
)
if OpenSSL._util.lib.Cryptography_HAS_ALPN:
def test_check_alpn(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
2015-09-26 15:39:50 +00:00
c.convert_to_ssl(alpn_protos=[b'h2'])
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
2015-06-05 11:28:09 +00:00
tutils.raises(NotImplementedError, protocol.check_alpn)
2015-06-22 02:52:23 +00:00
class TestPerformServerConnectionPreface(tservers.ServerTestBase):
2015-06-11 13:38:32 +00:00
class handler(tcp.BaseHandler):
def handle(self):
# send magic
2015-06-12 12:41:54 +00:00
self.wfile.write(
2015-06-11 13:38:32 +00:00
'505249202a20485454502f322e300d0a0d0a534d0d0a0d0a'.decode('hex'))
self.wfile.flush()
# send empty settings frame
self.wfile.write('000000040000000000'.decode('hex'))
self.wfile.flush()
# check empty settings frame
assert self.rfile.read(9) ==\
'000000040000000000'.decode('hex')
# check settings acknowledgement
assert self.rfile.read(9) == \
'000000040100000000'.decode('hex')
# send settings acknowledgement
self.wfile.write('000000040100000000'.decode('hex'))
self.wfile.flush()
def test_perform_server_connection_preface(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
assert not protocol.connection_preface_performed
2015-06-11 13:38:32 +00:00
protocol.perform_server_connection_preface()
2015-08-05 19:32:53 +00:00
assert protocol.connection_preface_performed
tutils.raises(TcpDisconnect, protocol.perform_server_connection_preface, force=True)
2015-06-11 13:38:32 +00:00
2015-06-22 02:52:23 +00:00
class TestPerformClientConnectionPreface(tservers.ServerTestBase):
2015-06-05 11:28:09 +00:00
class handler(tcp.BaseHandler):
def handle(self):
# check magic
assert self.rfile.read(24) ==\
'505249202a20485454502f322e300d0a0d0a534d0d0a0d0a'.decode('hex')
# check empty settings frame
assert self.rfile.read(9) ==\
'000000040000000000'.decode('hex')
# send empty settings frame
self.wfile.write('000000040000000000'.decode('hex'))
self.wfile.flush()
# check settings acknowledgement
assert self.rfile.read(9) == \
'000000040100000000'.decode('hex')
# send settings acknowledgement
self.wfile.write('000000040100000000'.decode('hex'))
self.wfile.flush()
2015-06-11 13:38:32 +00:00
def test_perform_client_connection_preface(self):
2015-06-05 11:28:09 +00:00
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
assert not protocol.connection_preface_performed
2015-06-11 13:38:32 +00:00
protocol.perform_client_connection_preface()
2015-08-05 19:32:53 +00:00
assert protocol.connection_preface_performed
2015-06-05 11:28:09 +00:00
2015-06-12 13:21:23 +00:00
class TestClientStreamIds():
2015-06-05 11:28:09 +00:00
c = tcp.TCPClient(("127.0.0.1", 0))
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
2015-06-05 11:28:09 +00:00
2015-06-12 13:21:23 +00:00
def test_client_stream_ids(self):
2015-06-05 11:28:09 +00:00
assert self.protocol.current_stream_id is None
2015-07-29 09:27:43 +00:00
assert self.protocol._next_stream_id() == 1
2015-06-05 11:28:09 +00:00
assert self.protocol.current_stream_id == 1
2015-07-29 09:27:43 +00:00
assert self.protocol._next_stream_id() == 3
2015-06-05 11:28:09 +00:00
assert self.protocol.current_stream_id == 3
2015-07-29 09:27:43 +00:00
assert self.protocol._next_stream_id() == 5
2015-06-05 11:28:09 +00:00
assert self.protocol.current_stream_id == 5
2015-06-12 13:21:23 +00:00
class TestServerStreamIds():
c = tcp.TCPClient(("127.0.0.1", 0))
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c, is_server=True)
2015-06-12 13:21:23 +00:00
def test_server_stream_ids(self):
assert self.protocol.current_stream_id is None
2015-07-29 09:27:43 +00:00
assert self.protocol._next_stream_id() == 2
2015-06-12 13:21:23 +00:00
assert self.protocol.current_stream_id == 2
2015-07-29 09:27:43 +00:00
assert self.protocol._next_stream_id() == 4
2015-06-12 13:21:23 +00:00
assert self.protocol.current_stream_id == 4
2015-07-29 09:27:43 +00:00
assert self.protocol._next_stream_id() == 6
2015-06-12 13:21:23 +00:00
assert self.protocol.current_stream_id == 6
2015-06-22 02:52:23 +00:00
class TestApplySettings(tservers.ServerTestBase):
2015-06-05 11:28:09 +00:00
class handler(tcp.BaseHandler):
def handle(self):
# check settings acknowledgement
assert self.rfile.read(9) == '000000040100000000'.decode('hex')
self.wfile.write("OK")
self.wfile.flush()
2015-08-21 07:18:14 +00:00
self.rfile.safe_read(9) # just to keep the connection alive a bit longer
2015-06-05 11:28:09 +00:00
ssl = True
def test_apply_settings(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
2015-06-05 11:28:09 +00:00
protocol._apply_settings({
SettingsFrame.SETTINGS.SETTINGS_ENABLE_PUSH: 'foo',
SettingsFrame.SETTINGS.SETTINGS_MAX_CONCURRENT_STREAMS: 'bar',
SettingsFrame.SETTINGS.SETTINGS_INITIAL_WINDOW_SIZE: 'deadbeef',
})
assert c.rfile.safe_read(2) == "OK"
assert protocol.http2_settings[
SettingsFrame.SETTINGS.SETTINGS_ENABLE_PUSH] == 'foo'
assert protocol.http2_settings[
SettingsFrame.SETTINGS.SETTINGS_MAX_CONCURRENT_STREAMS] == 'bar'
assert protocol.http2_settings[
SettingsFrame.SETTINGS.SETTINGS_INITIAL_WINDOW_SIZE] == 'deadbeef'
class TestCreateHeaders():
c = tcp.TCPClient(("127.0.0.1", 0))
def test_create_headers(self):
2015-09-05 16:15:47 +00:00
headers = http.Headers([
2015-06-05 11:28:09 +00:00
(b':method', b'GET'),
(b':path', b'index.html'),
(b':scheme', b'https'),
2015-09-05 16:15:47 +00:00
(b'foo', b'bar')])
2015-06-05 11:28:09 +00:00
2015-08-05 19:32:53 +00:00
bytes = HTTP2Protocol(self.c)._create_headers(
2015-06-05 11:28:09 +00:00
headers, 1, end_stream=True)
assert b''.join(bytes) ==\
'000014010500000001824488355217caf3a69a3f87408294e7838c767f'\
.decode('hex')
2015-08-05 19:32:53 +00:00
bytes = HTTP2Protocol(self.c)._create_headers(
2015-06-05 11:28:09 +00:00
headers, 1, end_stream=False)
assert b''.join(bytes) ==\
'000014010400000001824488355217caf3a69a3f87408294e7838c767f'\
.decode('hex')
def test_create_headers_multiple_frames(self):
2015-09-05 16:15:47 +00:00
headers = http.Headers([
(b':method', b'GET'),
(b':path', b'/'),
(b':scheme', b'https'),
(b'foo', b'bar'),
2015-09-05 16:15:47 +00:00
(b'server', b'version')])
protocol = HTTP2Protocol(self.c)
protocol.http2_settings[SettingsFrame.SETTINGS.SETTINGS_MAX_FRAME_SIZE] = 8
bytes = protocol._create_headers(headers, 1, end_stream=True)
assert len(bytes) == 3
assert bytes[0] == '000008010000000001828487408294e783'.decode('hex')
assert bytes[1] == '0000080900000000018c767f7685ee5b10'.decode('hex')
assert bytes[2] == '00000209050000000163d5'.decode('hex')
2015-06-05 11:28:09 +00:00
class TestCreateBody():
c = tcp.TCPClient(("127.0.0.1", 0))
def test_create_body_empty(self):
protocol = HTTP2Protocol(self.c)
bytes = protocol._create_body(b'', 1)
2015-06-05 11:28:09 +00:00
assert b''.join(bytes) == ''.decode('hex')
def test_create_body_single_frame(self):
protocol = HTTP2Protocol(self.c)
bytes = protocol._create_body('foobar', 1)
2015-06-05 11:28:09 +00:00
assert b''.join(bytes) == '000006000100000001666f6f626172'.decode('hex')
def test_create_body_multiple_frames(self):
protocol = HTTP2Protocol(self.c)
protocol.http2_settings[SettingsFrame.SETTINGS.SETTINGS_MAX_FRAME_SIZE] = 5
bytes = protocol._create_body('foobarmehm42', 1)
assert len(bytes) == 3
assert bytes[0] == '000005000000000001666f6f6261'.decode('hex')
assert bytes[1] == '000005000000000001726d65686d'.decode('hex')
assert bytes[2] == '0000020001000000013432'.decode('hex')
2015-06-05 11:28:09 +00:00
2015-08-05 19:32:53 +00:00
class TestReadRequest(tservers.ServerTestBase):
class handler(tcp.BaseHandler):
def handle(self):
self.wfile.write(
b'000003010400000001828487'.decode('hex'))
self.wfile.write(
b'000006000100000001666f6f626172'.decode('hex'))
self.wfile.flush()
2015-08-21 07:18:14 +00:00
self.rfile.safe_read(9) # just to keep the connection alive a bit longer
2015-06-05 11:28:09 +00:00
2015-08-05 19:32:53 +00:00
ssl = True
def test_read_request(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
protocol = HTTP2Protocol(c, is_server=True)
protocol.connection_preface_performed = True
2015-09-16 16:43:24 +00:00
req = protocol.read_request(NotImplemented)
2015-08-05 19:32:53 +00:00
2015-08-16 18:02:18 +00:00
assert req.stream_id
2015-09-05 16:15:47 +00:00
assert req.headers.fields == [[':method', 'GET'], [':path', '/'], [':scheme', 'https']]
2015-09-26 15:39:50 +00:00
assert req.content == b'foobar'
2015-08-16 18:02:18 +00:00
class TestReadRequestRelative(tservers.ServerTestBase):
class handler(tcp.BaseHandler):
def handle(self):
self.wfile.write(
b'00000c0105000000014287d5af7e4d5a777f4481f9'.decode('hex'))
self.wfile.flush()
ssl = True
def test_asterisk_form_in(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
protocol = HTTP2Protocol(c, is_server=True)
protocol.connection_preface_performed = True
2015-09-16 16:43:24 +00:00
req = protocol.read_request(NotImplemented)
2015-08-16 18:02:18 +00:00
assert req.form_in == "relative"
assert req.method == "OPTIONS"
assert req.path == "*"
class TestReadRequestAbsolute(tservers.ServerTestBase):
class handler(tcp.BaseHandler):
def handle(self):
self.wfile.write(
b'00001901050000000182448d9d29aee30c0e492c2a1170426366871c92585422e085'.decode('hex'))
self.wfile.flush()
ssl = True
def test_absolute_form_in(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
protocol = HTTP2Protocol(c, is_server=True)
protocol.connection_preface_performed = True
2015-09-16 16:43:24 +00:00
req = protocol.read_request(NotImplemented)
2015-08-16 18:02:18 +00:00
assert req.form_in == "absolute"
assert req.scheme == "http"
assert req.host == "address"
assert req.port == 22
class TestReadRequestConnect(tservers.ServerTestBase):
class handler(tcp.BaseHandler):
def handle(self):
self.wfile.write(
b'00001b0105000000014287bdab4e9c17b7ff44871c92585422e08541871c92585422e085'.decode('hex'))
self.wfile.write(
b'00001d0105000000014287bdab4e9c17b7ff44882f91d35d055c87a741882f91d35d055c87a7'.decode('hex'))
2015-08-16 18:02:18 +00:00
self.wfile.flush()
ssl = True
def test_connect(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
protocol = HTTP2Protocol(c, is_server=True)
protocol.connection_preface_performed = True
2015-09-16 16:43:24 +00:00
req = protocol.read_request(NotImplemented)
2015-08-16 18:02:18 +00:00
assert req.form_in == "authority"
assert req.method == "CONNECT"
assert req.host == "address"
assert req.port == 22
2015-06-05 11:28:09 +00:00
2015-09-16 16:43:24 +00:00
req = protocol.read_request(NotImplemented)
assert req.form_in == "authority"
assert req.method == "CONNECT"
assert req.host == "example.com"
assert req.port == 443
2015-06-05 11:28:09 +00:00
2015-06-22 02:52:23 +00:00
class TestReadResponse(tservers.ServerTestBase):
2015-06-05 11:28:09 +00:00
class handler(tcp.BaseHandler):
def handle(self):
self.wfile.write(
b'00000801040000002a88628594e78c767f'.decode('hex'))
2015-06-05 11:28:09 +00:00
self.wfile.write(
b'00000600010000002a666f6f626172'.decode('hex'))
2015-06-05 11:28:09 +00:00
self.wfile.flush()
2015-08-21 07:18:14 +00:00
self.rfile.safe_read(9) # just to keep the connection alive a bit longer
2015-06-05 11:28:09 +00:00
ssl = True
def test_read_response(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
2015-07-30 11:52:13 +00:00
protocol.connection_preface_performed = True
2015-06-05 11:28:09 +00:00
2015-09-16 16:43:24 +00:00
resp = protocol.read_response(NotImplemented, stream_id=42)
2015-06-05 11:28:09 +00:00
2015-09-17 13:16:12 +00:00
assert resp.http_version == (2, 0)
2015-07-30 11:52:13 +00:00
assert resp.status_code == 200
2015-07-16 20:50:24 +00:00
assert resp.msg == ""
2015-09-05 16:15:47 +00:00
assert resp.headers.fields == [[':status', '200'], ['etag', 'foobar']]
2015-09-26 15:39:50 +00:00
assert resp.content == b'foobar'
2015-08-05 19:32:53 +00:00
assert resp.timestamp_end
2015-06-12 13:21:23 +00:00
2015-06-22 02:52:23 +00:00
class TestReadEmptyResponse(tservers.ServerTestBase):
2015-06-12 13:21:23 +00:00
class handler(tcp.BaseHandler):
def handle(self):
self.wfile.write(
b'00000801050000002a88628594e78c767f'.decode('hex'))
2015-06-12 13:21:23 +00:00
self.wfile.flush()
ssl = True
def test_read_empty_response(self):
c = tcp.TCPClient(("127.0.0.1", self.port))
c.connect()
c.convert_to_ssl()
2015-08-05 19:32:53 +00:00
protocol = HTTP2Protocol(c)
2015-07-30 11:52:13 +00:00
protocol.connection_preface_performed = True
2015-06-12 13:21:23 +00:00
2015-09-16 16:43:24 +00:00
resp = protocol.read_response(NotImplemented, stream_id=42)
2015-06-12 13:21:23 +00:00
assert resp.stream_id == 42
2015-09-17 13:16:12 +00:00
assert resp.http_version == (2, 0)
2015-07-30 11:52:13 +00:00
assert resp.status_code == 200
2015-07-16 20:50:24 +00:00
assert resp.msg == ""
2015-09-05 16:15:47 +00:00
assert resp.headers.fields == [[':status', '200'], ['etag', 'foobar']]
2015-09-26 15:39:50 +00:00
assert resp.content == b''
2015-06-12 13:21:23 +00:00
2015-08-05 19:32:53 +00:00
class TestAssembleRequest(object):
c = tcp.TCPClient(("127.0.0.1", 0))
2015-06-12 13:21:23 +00:00
2015-08-05 19:32:53 +00:00
def test_request_simple(self):
bytes = HTTP2Protocol(self.c).assemble_request(http.Request(
'',
'GET',
'https',
'',
'',
'/',
(2, 0),
None,
None,
))
assert len(bytes) == 1
assert bytes[0] == '00000d0105000000018284874188089d5c0b8170dc07'.decode('hex')
2015-06-12 13:21:23 +00:00
2015-08-05 19:32:53 +00:00
def test_request_with_stream_id(self):
req = http.Request(
'',
'GET',
'https',
'',
'',
'/',
(2, 0),
None,
None,
)
req.stream_id = 0x42
bytes = HTTP2Protocol(self.c).assemble_request(req)
assert len(bytes) == 1
assert bytes[0] == '00000d0105000000428284874188089d5c0b8170dc07'.decode('hex')
2015-06-12 13:21:23 +00:00
2015-08-05 19:32:53 +00:00
def test_request_with_body(self):
bytes = HTTP2Protocol(self.c).assemble_request(http.Request(
'',
'GET',
'https',
'',
'',
'/',
(2, 0),
2015-09-05 16:15:47 +00:00
http.Headers([('foo', 'bar')]),
2015-08-05 19:32:53 +00:00
'foobar',
))
assert len(bytes) == 2
assert bytes[0] ==\
'0000150104000000018284874188089d5c0b8170dc07408294e7838c767f'.decode('hex')
assert bytes[1] ==\
'000006000100000001666f6f626172'.decode('hex')
2015-06-12 13:21:23 +00:00
2015-08-05 19:32:53 +00:00
class TestAssembleResponse(object):
2015-06-12 13:21:23 +00:00
c = tcp.TCPClient(("127.0.0.1", 0))
2015-08-05 19:32:53 +00:00
def test_simple(self):
bytes = HTTP2Protocol(self.c, is_server=True).assemble_response(http.Response(
2015-07-29 09:27:43 +00:00
(2, 0),
200,
))
2015-06-12 13:21:23 +00:00
assert len(bytes) == 1
assert bytes[0] ==\
'00000101050000000288'.decode('hex')
2015-08-05 19:32:53 +00:00
def test_with_stream_id(self):
resp = http.Response(
(2, 0),
200,
)
resp.stream_id = 0x42
bytes = HTTP2Protocol(self.c, is_server=True).assemble_response(resp)
assert len(bytes) == 1
assert bytes[0] ==\
'00000101050000004288'.decode('hex')
def test_with_body(self):
bytes = HTTP2Protocol(self.c, is_server=True).assemble_response(http.Response(
2015-07-29 09:27:43 +00:00
(2, 0),
200,
'',
2015-09-05 16:15:47 +00:00
Headers(foo="bar"),
2015-07-29 09:27:43 +00:00
'foobar'
))
2015-06-12 13:21:23 +00:00
assert len(bytes) == 2
assert bytes[0] ==\
2015-07-29 09:27:43 +00:00
'00000901040000000288408294e7838c767f'.decode('hex')
2015-06-12 13:21:23 +00:00
assert bytes[1] ==\
2015-07-29 09:27:43 +00:00
'000006000100000002666f6f626172'.decode('hex')