diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-01-07 22:41:07 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2017-01-07 23:08:50 +0100 |
commit | 88f3459c7d7fc44bf0e247cf7f018f8c53431e8d (patch) | |
tree | cd51db8c6b617d3c354b9999d7e568e9eae7cf20 | |
parent | ede124a5874a9accb66b09aa3048365f5943f957 (diff) | |
download | mitmproxy-88f3459c7d7fc44bf0e247cf7f018f8c53431e8d.tar.gz mitmproxy-88f3459c7d7fc44bf0e247cf7f018f8c53431e8d.tar.bz2 mitmproxy-88f3459c7d7fc44bf0e247cf7f018f8c53431e8d.zip |
stronger tests, lint
-rw-r--r-- | mitmproxy/tools/web/app.py | 1 | ||||
-rw-r--r-- | test/mitmproxy/net/http/test_response.py | 2 | ||||
-rw-r--r-- | test/mitmproxy/test_web_app.py | 4 |
3 files changed, 3 insertions, 4 deletions
diff --git a/mitmproxy/tools/web/app.py b/mitmproxy/tools/web/app.py index f873b351..05477f2d 100644 --- a/mitmproxy/tools/web/app.py +++ b/mitmproxy/tools/web/app.py @@ -17,7 +17,6 @@ from mitmproxy import http from mitmproxy import io from mitmproxy import log from mitmproxy import version -from mitmproxy.utils import strutils def flow_to_json(flow: mitmproxy.flow.Flow) -> dict: diff --git a/test/mitmproxy/net/http/test_response.py b/test/mitmproxy/net/http/test_response.py index eae957a8..ad250387 100644 --- a/test/mitmproxy/net/http/test_response.py +++ b/test/mitmproxy/net/http/test_response.py @@ -6,7 +6,7 @@ from mitmproxy.net.http import Headers from mitmproxy.net.http import Response from mitmproxy.net.http.cookies import CookieAttrs from mitmproxy.test.tutils import raises, tresp -from .test_message import _test_passthrough_attr, _test_decoded_attr +from .test_message import _test_passthrough_attr class TestResponseData: diff --git a/test/mitmproxy/test_web_app.py b/test/mitmproxy/test_web_app.py index 61cf6993..7da5e4e9 100644 --- a/test/mitmproxy/test_web_app.py +++ b/test/mitmproxy/test_web_app.py @@ -129,7 +129,7 @@ class TestApp(tornado.testing.AsyncHTTPTestCase): "content": "req", }, "response": { - "msg": "Not Found", + "msg": "Non-Authorisé", "code": 404, "headers": [("bar", "baz")], "content": "resp", @@ -140,7 +140,7 @@ class TestApp(tornado.testing.AsyncHTTPTestCase): assert f.request.port == 123 assert f.request.headers["foo"] == "bar" assert f.request.text == "req" - assert f.response.msg == "Not Found" + assert f.response.msg == "Non-Authorisé" assert f.response.status_code == 404 assert f.response.headers["bar"] == "baz" assert f.response.text == "resp" |