aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2017-01-25 21:12:11 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2017-02-02 10:15:01 +0100
commit380d8ec37041d0128df0e0a9ede4b157314f6546 (patch)
tree05a4a6e5d6beb00c7c278d9e06b2e27af05c2837
parent3ae060f0d334eebb59c97d0647a2f39ee1b60549 (diff)
downloadmitmproxy-380d8ec37041d0128df0e0a9ede4b157314f6546.tar.gz
mitmproxy-380d8ec37041d0128df0e0a9ede4b157314f6546.tar.bz2
mitmproxy-380d8ec37041d0128df0e0a9ede4b157314f6546.zip
increase test coverage
-rw-r--r--mitmproxy/net/http/http2/framereader.py4
-rw-r--r--mitmproxy/net/http/http2/utils.py7
-rw-r--r--mitmproxy/utils/debug.py10
-rw-r--r--mitmproxy/utils/typecheck.py1
-rw-r--r--pathod/protocols/websockets.py1
-rw-r--r--test/mitmproxy/addons/test_view.py2
-rw-r--r--test/mitmproxy/net/http/http2/test_framereader.py42
-rw-r--r--test/mitmproxy/net/http/http2/test_utils.py70
-rw-r--r--test/mitmproxy/script/test_concurrent.py2
-rw-r--r--test/mitmproxy/utils/test_debug.py6
-rw-r--r--test/mitmproxy/utils/test_typecheck.py16
11 files changed, 144 insertions, 17 deletions
diff --git a/mitmproxy/net/http/http2/framereader.py b/mitmproxy/net/http/http2/framereader.py
index 6a164919..777d247d 100644
--- a/mitmproxy/net/http/http2/framereader.py
+++ b/mitmproxy/net/http/http2/framereader.py
@@ -1,6 +1,6 @@
import codecs
-import hyperframe
+import hyperframe.frame
from mitmproxy import exceptions
@@ -20,6 +20,6 @@ def parse_frame(header, body=None):
body = header[9:]
header = header[:9]
- frame, length = hyperframe.frame.Frame.parse_frame_header(header)
+ frame, _ = hyperframe.frame.Frame.parse_frame_header(header)
frame.parse_body(memoryview(body))
return frame
diff --git a/mitmproxy/net/http/http2/utils.py b/mitmproxy/net/http/http2/utils.py
index 62a59c72..24dc773c 100644
--- a/mitmproxy/net/http/http2/utils.py
+++ b/mitmproxy/net/http/http2/utils.py
@@ -14,11 +14,12 @@ def parse_headers(headers):
host = None
port = None
+ if method == b'CONNECT':
+ raise NotImplementedError("CONNECT over HTTP/2 is not implemented.")
+
if path == b'*' or path.startswith(b"/"):
first_line_format = "relative"
- elif method == b'CONNECT': # pragma: no cover
- raise NotImplementedError("CONNECT over HTTP/2 is not implemented.")
- else: # pragma: no cover
+ else:
first_line_format = "absolute"
# FIXME: verify if path or :host contains what we need
scheme, host, port, _ = url.parse(path)
diff --git a/mitmproxy/utils/debug.py b/mitmproxy/utils/debug.py
index 52f48f6b..ff98b86c 100644
--- a/mitmproxy/utils/debug.py
+++ b/mitmproxy/utils/debug.py
@@ -45,17 +45,17 @@ def dump_system_info():
]
d = platform.linux_distribution()
t = "Linux distro: %s %s %s" % d
- if d[0]: # pragma: no-cover
+ if d[0]: # pragma: no cover
data.append(t)
d = platform.mac_ver()
t = "Mac version: %s %s %s" % d
- if d[0]: # pragma: no-cover
+ if d[0]: # pragma: no cover
data.append(t)
d = platform.win32_ver()
t = "Windows version: %s %s %s %s" % d
- if d[0]: # pragma: no-cover
+ if d[0]: # pragma: no cover
data.append(t)
return "\n".join(data)
@@ -135,11 +135,11 @@ def dump_stacks(signal=None, frame=None, file=sys.stdout, testing=False):
if line:
code.append(" %s" % (line.strip()))
print("\n".join(code), file=file)
- if not testing:
+ if not testing: # pragma: no cover
sys.exit(1)
def register_info_dumpers():
- if os.name != "nt":
+ if os.name != "nt": # pragma: windows no cover
signal.signal(signal.SIGUSR1, dump_info)
signal.signal(signal.SIGUSR2, dump_stacks)
diff --git a/mitmproxy/utils/typecheck.py b/mitmproxy/utils/typecheck.py
index ae1a507d..2cdf7f51 100644
--- a/mitmproxy/utils/typecheck.py
+++ b/mitmproxy/utils/typecheck.py
@@ -58,6 +58,7 @@ def check_type(attr_name: str, value: typing.Any, typeinfo: type) -> None:
except AttributeError:
# Python 3.5.0
T = typeinfo.__parameters__[0]
+
if not isinstance(value, (tuple, list)):
raise e
for v in value:
diff --git a/pathod/protocols/websockets.py b/pathod/protocols/websockets.py
index 00ae5aa8..2d1f1bf6 100644
--- a/pathod/protocols/websockets.py
+++ b/pathod/protocols/websockets.py
@@ -53,4 +53,3 @@ class WebsocketsProtocol:
)
lg("crafting websocket spec: %s" % frame_log["spec"])
self.pathod_handler.addlog(frame_log)
- return self.handle_websocket, None
diff --git a/test/mitmproxy/addons/test_view.py b/test/mitmproxy/addons/test_view.py
index da4ca007..6a7f2ef1 100644
--- a/test/mitmproxy/addons/test_view.py
+++ b/test/mitmproxy/addons/test_view.py
@@ -76,7 +76,7 @@ def test_simple():
assert v.get_by_id(f.id)
assert not v.get_by_id("nonexistent")
- # These all just call udpate
+ # These all just call update
v.error(f)
v.response(f)
v.intercept(f)
diff --git a/test/mitmproxy/net/http/http2/test_framereader.py b/test/mitmproxy/net/http/http2/test_framereader.py
index 41b73189..485ba69f 100644
--- a/test/mitmproxy/net/http/http2/test_framereader.py
+++ b/test/mitmproxy/net/http/http2/test_framereader.py
@@ -1 +1,41 @@
-# foobar
+import pytest
+import codecs
+from io import BytesIO
+import hyperframe.frame
+
+from mitmproxy import exceptions
+from mitmproxy.net.http.http2 import read_raw_frame, parse_frame
+
+
+def test_read_raw_frame():
+ raw = codecs.decode('000006000101234567666f6f626172', 'hex_codec')
+ bio = BytesIO(raw)
+ bio.safe_read = bio.read
+
+ header, body = read_raw_frame(bio)
+ assert header
+ assert body
+
+
+def test_read_raw_frame_failed():
+ raw = codecs.decode('485454000000000000', 'hex_codec')
+ bio = BytesIO(raw)
+ bio.safe_read = bio.read
+
+ with pytest.raises(exceptions.HttpException):
+ read_raw_frame(bio)
+
+
+def test_parse_frame():
+ f = parse_frame(
+ codecs.decode('000006000101234567', 'hex_codec'),
+ codecs.decode('666f6f626172', 'hex_codec')
+ )
+ assert isinstance(f, hyperframe.frame.Frame)
+
+
+def test_parse_frame_combined():
+ f = parse_frame(
+ codecs.decode('000006000101234567666f6f626172', 'hex_codec'),
+ )
+ assert isinstance(f, hyperframe.frame.Frame)
diff --git a/test/mitmproxy/net/http/http2/test_utils.py b/test/mitmproxy/net/http/http2/test_utils.py
new file mode 100644
index 00000000..41d49b6f
--- /dev/null
+++ b/test/mitmproxy/net/http/http2/test_utils.py
@@ -0,0 +1,70 @@
+import pytest
+
+from mitmproxy.net.http.http2 import parse_headers
+
+
+class TestHttp2ParseHeaders:
+
+ def test_relative(self):
+ h = dict([
+ (':authority', "127.0.0.1:1234"),
+ (':method', 'GET'),
+ (':scheme', 'https'),
+ (':path', '/'),
+ ])
+ first_line_format, method, scheme, host, port, path = parse_headers(h)
+ assert first_line_format == 'relative'
+ assert method == b'GET'
+ assert scheme == b'https'
+ assert host == b'127.0.0.1'
+ assert port == 1234
+ assert path == b'/'
+
+ def test_absolute(self):
+ h = dict([
+ (':authority', "127.0.0.1:1234"),
+ (':method', 'GET'),
+ (':scheme', 'https'),
+ (':path', 'https://127.0.0.1:4321'),
+ ])
+ first_line_format, method, scheme, host, port, path = parse_headers(h)
+ assert first_line_format == 'absolute'
+ assert method == b'GET'
+ assert scheme == b'https'
+ assert host == b'127.0.0.1'
+ assert port == 1234
+ assert path == b'https://127.0.0.1:4321'
+
+ @pytest.mark.parametrize("scheme, expected_port", [
+ ('http', 80),
+ ('https', 443),
+ ])
+ def test_without_port(self, scheme, expected_port):
+ h = dict([
+ (':authority', "127.0.0.1"),
+ (':method', 'GET'),
+ (':scheme', scheme),
+ (':path', '/'),
+ ])
+ _, _, _, _, port, _ = parse_headers(h)
+ assert port == expected_port
+
+ def test_without_authority(self):
+ h = dict([
+ (':method', 'GET'),
+ (':scheme', 'https'),
+ (':path', '/'),
+ ])
+ _, _, _, host, _, _ = parse_headers(h)
+ assert host == b'localhost'
+
+ def test_connect(self):
+ h = dict([
+ (':authority', "127.0.0.1"),
+ (':method', 'CONNECT'),
+ (':scheme', 'https'),
+ (':path', '/'),
+ ])
+
+ with pytest.raises(NotImplementedError):
+ parse_headers(h)
diff --git a/test/mitmproxy/script/test_concurrent.py b/test/mitmproxy/script/test_concurrent.py
index bb760f92..90cdc3d8 100644
--- a/test/mitmproxy/script/test_concurrent.py
+++ b/test/mitmproxy/script/test_concurrent.py
@@ -8,7 +8,6 @@ from mitmproxy.addons import script
import time
from test.mitmproxy import mastertest
-from test.mitmproxy import tutils as ttutils
class Thing:
@@ -18,7 +17,6 @@ class Thing:
class TestConcurrent(mastertest.MasterTest):
- @ttutils.skip_appveyor
def test_concurrent(self):
with taddons.context() as tctx:
sc = script.Script(
diff --git a/test/mitmproxy/utils/test_debug.py b/test/mitmproxy/utils/test_debug.py
index 18f5cdbc..22f8dc66 100644
--- a/test/mitmproxy/utils/test_debug.py
+++ b/test/mitmproxy/utils/test_debug.py
@@ -1,4 +1,6 @@
import io
+import subprocess
+from unittest import mock
from mitmproxy.utils import debug
@@ -6,6 +8,10 @@ from mitmproxy.utils import debug
def test_dump_system_info():
assert debug.dump_system_info()
+ with mock.patch('subprocess.check_output') as m:
+ m.side_effect = subprocess.CalledProcessError(-1, 'git describe --tags --long')
+ assert 'release version' in debug.dump_system_info()
+
def test_dump_info():
cs = io.StringIO()
diff --git a/test/mitmproxy/utils/test_typecheck.py b/test/mitmproxy/utils/test_typecheck.py
index a21c65c9..67981be4 100644
--- a/test/mitmproxy/utils/test_typecheck.py
+++ b/test/mitmproxy/utils/test_typecheck.py
@@ -38,8 +38,15 @@ def test_check_union():
with pytest.raises(TypeError):
typecheck.check_type("foo", [], typing.Union[int, str])
+ # Python 3.5 only defines __union_params__
+ m = mock.Mock()
+ m.__str__ = lambda self: "typing.Union"
+ m.__union_params__ = (int,)
+ typecheck.check_type("foo", 42, m)
+
def test_check_tuple():
+ typecheck.check_type("foo", (42, "42"), typing.Tuple[int, str])
with pytest.raises(TypeError):
typecheck.check_type("foo", None, typing.Tuple[int, str])
with pytest.raises(TypeError):
@@ -48,7 +55,12 @@ def test_check_tuple():
typecheck.check_type("foo", (42, 42), typing.Tuple[int, str])
with pytest.raises(TypeError):
typecheck.check_type("foo", ("42", 42), typing.Tuple[int, str])
- typecheck.check_type("foo", (42, "42"), typing.Tuple[int, str])
+
+ # Python 3.5 only defines __tuple_params__
+ m = mock.Mock()
+ m.__str__ = lambda self: "typing.Tuple"
+ m.__tuple_params__ = (int, str)
+ typecheck.check_type("foo", (42, "42"), m)
def test_check_sequence():
@@ -62,7 +74,7 @@ def test_check_sequence():
with pytest.raises(TypeError):
typecheck.check_type("foo", "foo", typing.Sequence[str])
- # Python 3.5.0 only defines __parameters__
+ # Python 3.5 only defines __parameters__
m = mock.Mock()
m.__str__ = lambda self: "typing.Sequence"
m.__parameters__ = (int,)