stronger tests, lint
This commit is contained in:
parent
ede124a587
commit
88f3459c7d
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue