aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_protocol_http2.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-01 23:03:15 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-04 09:52:28 +0100
commitd8ae7c3e29bcf117eb051f9e74b76fea733c1c64 (patch)
tree61d5f26362a80a84aee92f4fb41d1061ca829f75 /test/test_protocol_http2.py
parentf2097b47ce6c88e2bef0889fb7e7d52b63158082 (diff)
downloadmitmproxy-d8ae7c3e29bcf117eb051f9e74b76fea733c1c64.tar.gz
mitmproxy-d8ae7c3e29bcf117eb051f9e74b76fea733c1c64.tar.bz2
mitmproxy-d8ae7c3e29bcf117eb051f9e74b76fea733c1c64.zip
fix tests and use netlib utils
Diffstat (limited to 'test/test_protocol_http2.py')
-rw-r--r--test/test_protocol_http2.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/test_protocol_http2.py b/test/test_protocol_http2.py
index 6da8cd31..831f70ab 100644
--- a/test/test_protocol_http2.py
+++ b/test/test_protocol_http2.py
@@ -20,6 +20,7 @@ logging.getLogger("PIL.PngImagePlugin").setLevel(logging.WARNING)
import netlib
from netlib import tservers as netlib_tservers
+from netlib.utils import http2_read_raw_frame
import h2
from hyperframe.frame import Frame
@@ -47,8 +48,7 @@ class _Http2ServerBase(netlib_tservers.ServerTestBase):
self.wfile.flush()
while True:
- raw_frame = utils.http2_read_frame(self.rfile)
- events = h2_conn.receive_data(raw_frame)
+ events = h2_conn.receive_data(b''.join(http2_read_raw_frame(self.rfile)))
self.wfile.write(h2_conn.data_to_send())
self.wfile.flush()
@@ -179,7 +179,7 @@ class TestSimple(_Http2TestBase, _Http2ServerBase):
done = False
while not done:
- events = h2_conn.receive_data(utils.http2_read_frame(client.rfile))
+ events = h2_conn.receive_data(b''.join(http2_read_raw_frame(client.rfile)))
client.wfile.write(h2_conn.data_to_send())
client.wfile.flush()
@@ -245,7 +245,7 @@ class TestWithBodies(_Http2TestBase, _Http2ServerBase):
done = False
while not done:
- events = h2_conn.receive_data(utils.http2_read_frame(client.rfile))
+ events = h2_conn.receive_data(b''.join(http2_read_raw_frame(client.rfile)))
client.wfile.write(h2_conn.data_to_send())
client.wfile.flush()
@@ -331,7 +331,7 @@ class TestPushPromise(_Http2TestBase, _Http2ServerBase):
pushed_streams = 0
while ended_streams != 3:
try:
- events = h2_conn.receive_data(utils.http2_read_frame(client.rfile))
+ events = h2_conn.receive_data(b''.join(http2_read_raw_frame(client.rfile)))
except:
break
client.wfile.write(h2_conn.data_to_send())
@@ -365,7 +365,7 @@ class TestPushPromise(_Http2TestBase, _Http2ServerBase):
done = False
while not done:
try:
- events = h2_conn.receive_data(utils.http2_read_frame(client.rfile))
+ events = h2_conn.receive_data(b''.join(http2_read_raw_frame(client.rfile)))
except:
break
client.wfile.write(h2_conn.data_to_send())
@@ -379,7 +379,7 @@ class TestPushPromise(_Http2TestBase, _Http2ServerBase):
client.wfile.write(h2_conn.data_to_send())
client.wfile.flush()
- bodies = [flow.response.body for flow in self.master.state.flows]
+ bodies = [flow.response.body for flow in self.master.state.flows if flow.response]
assert len(bodies) == 3
assert b'regular_stream' in bodies
# the other two bodies might not be transmitted before the reset