2016-07-14 04:20:27 +00:00
|
|
|
from mitmproxy import contentviews
|
2017-02-01 15:48:46 +00:00
|
|
|
from mitmproxy.test import tflow
|
2016-11-01 20:44:18 +00:00
|
|
|
from mitmproxy.test import tutils
|
2017-04-25 07:06:24 +00:00
|
|
|
from mitmproxy.test import taddons
|
2016-10-19 22:56:38 +00:00
|
|
|
from mitmproxy.net.http import Headers
|
2016-08-03 10:58:41 +00:00
|
|
|
|
2017-03-22 11:02:18 +00:00
|
|
|
from ..mitmproxy import tservers
|
2016-03-07 03:42:10 +00:00
|
|
|
|
2016-05-19 01:46:42 +00:00
|
|
|
|
2017-02-10 21:12:24 +00:00
|
|
|
class TestScripts(tservers.MasterTest):
|
2018-04-22 23:05:58 +00:00
|
|
|
def test_add_header(self, tdata):
|
2017-04-25 19:13:36 +00:00
|
|
|
with taddons.context() as tctx:
|
2020-06-22 23:53:39 +00:00
|
|
|
a = tctx.script(tdata.path("../examples/addons/scripting-minimal-example.py"))
|
|
|
|
f = tflow.tflow()
|
|
|
|
a.request(f)
|
|
|
|
assert f.request.headers["myheader"] == "value"
|
2016-03-09 18:21:29 +00:00
|
|
|
|
2018-04-22 23:05:58 +00:00
|
|
|
def test_custom_contentviews(self, tdata):
|
2017-04-25 19:13:36 +00:00
|
|
|
with taddons.context() as tctx:
|
2020-06-22 23:53:39 +00:00
|
|
|
tctx.script(tdata.path("../examples/addons/contentview.py"))
|
2017-04-25 19:13:36 +00:00
|
|
|
swapcase = contentviews.get("swapcase")
|
|
|
|
_, fmt = swapcase(b"<html>Test!</html>")
|
|
|
|
assert any(b'tEST!' in val[0][1] for val in fmt)
|
2016-07-07 08:21:15 +00:00
|
|
|
|
2018-04-22 23:05:58 +00:00
|
|
|
def test_modify_form(self, tdata):
|
2017-04-25 19:13:36 +00:00
|
|
|
with taddons.context() as tctx:
|
2020-06-22 23:53:39 +00:00
|
|
|
sc = tctx.script(tdata.path("../examples/addons/http-modify-form.py"))
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2017-04-25 19:13:36 +00:00
|
|
|
form_header = Headers(content_type="application/x-www-form-urlencoded")
|
|
|
|
f = tflow.tflow(req=tutils.treq(headers=form_header))
|
|
|
|
sc.request(f)
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2017-04-25 19:13:36 +00:00
|
|
|
assert f.request.urlencoded_form["mitmproxy"] == "rocks"
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2017-04-25 19:13:36 +00:00
|
|
|
f.request.headers["content-type"] = ""
|
|
|
|
sc.request(f)
|
|
|
|
assert list(f.request.urlencoded_form.items()) == [("foo", "bar")]
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2018-04-22 23:05:58 +00:00
|
|
|
def test_modify_querystring(self, tdata):
|
2017-04-25 19:13:36 +00:00
|
|
|
with taddons.context() as tctx:
|
2020-06-22 23:53:39 +00:00
|
|
|
sc = tctx.script(tdata.path("../examples/addons/http-modify-query-string.py"))
|
2017-04-25 19:13:36 +00:00
|
|
|
f = tflow.tflow(req=tutils.treq(path="/search?q=term"))
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2017-04-25 19:13:36 +00:00
|
|
|
sc.request(f)
|
|
|
|
assert f.request.query["mitmproxy"] == "rocks"
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2017-04-25 19:13:36 +00:00
|
|
|
f.request.path = "/"
|
|
|
|
sc.request(f)
|
|
|
|
assert f.request.query["mitmproxy"] == "rocks"
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2018-04-22 23:05:58 +00:00
|
|
|
def test_redirect_requests(self, tdata):
|
2017-04-25 19:13:36 +00:00
|
|
|
with taddons.context() as tctx:
|
2020-06-22 23:53:39 +00:00
|
|
|
sc = tctx.script(tdata.path("../examples/addons/http-redirect-requests.py"))
|
2017-04-25 19:13:36 +00:00
|
|
|
f = tflow.tflow(req=tutils.treq(host="example.org"))
|
|
|
|
sc.request(f)
|
|
|
|
assert f.request.host == "mitmproxy.org"
|
2016-07-14 04:20:27 +00:00
|
|
|
|
2018-04-22 23:05:58 +00:00
|
|
|
def test_send_reply_from_proxy(self, tdata):
|
2017-04-25 19:13:36 +00:00
|
|
|
with taddons.context() as tctx:
|
2020-06-22 23:53:39 +00:00
|
|
|
sc = tctx.script(tdata.path("../examples/addons/http-reply-from-proxy.py"))
|
2017-04-25 19:13:36 +00:00
|
|
|
f = tflow.tflow(req=tutils.treq(host="example.com", port=80))
|
|
|
|
sc.request(f)
|
|
|
|
assert f.response.content == b"Hello World"
|