mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-30 03:14:22 +00:00
ceb8caee98
This commit removes the app registry, adds a wsgiapp addon base, and ports the onboarding app to it.
584 lines
16 KiB
Python
584 lines
16 KiB
Python
import mock
|
|
import io
|
|
|
|
import netlib.utils
|
|
from netlib.http import Headers
|
|
from mitmproxy import flowfilter, flow, options
|
|
from mitmproxy.contrib import tnetstring
|
|
from mitmproxy.exceptions import FlowReadException, Kill
|
|
from mitmproxy.models import Error
|
|
from mitmproxy.models import Flow
|
|
from mitmproxy.models import HTTPFlow
|
|
from mitmproxy.models import HTTPRequest
|
|
from mitmproxy.models import HTTPResponse
|
|
from mitmproxy.proxy import ProxyConfig
|
|
from mitmproxy.proxy.server import DummyServer
|
|
from mitmproxy.models.connections import ClientConnection
|
|
from . import tutils
|
|
|
|
|
|
class TestHTTPFlow:
|
|
|
|
def test_copy(self):
|
|
f = tutils.tflow(resp=True)
|
|
f.get_state()
|
|
f2 = f.copy()
|
|
a = f.get_state()
|
|
b = f2.get_state()
|
|
del a["id"]
|
|
del b["id"]
|
|
assert a == b
|
|
assert not f == f2
|
|
assert f is not f2
|
|
assert f.request.get_state() == f2.request.get_state()
|
|
assert f.request is not f2.request
|
|
assert f.request.headers == f2.request.headers
|
|
assert f.request.headers is not f2.request.headers
|
|
assert f.response.get_state() == f2.response.get_state()
|
|
assert f.response is not f2.response
|
|
|
|
f = tutils.tflow(err=True)
|
|
f2 = f.copy()
|
|
assert f is not f2
|
|
assert f.request is not f2.request
|
|
assert f.request.headers == f2.request.headers
|
|
assert f.request.headers is not f2.request.headers
|
|
assert f.error.get_state() == f2.error.get_state()
|
|
assert f.error is not f2.error
|
|
|
|
def test_match(self):
|
|
f = tutils.tflow(resp=True)
|
|
assert not flowfilter.match("~b test", f)
|
|
assert flowfilter.match(None, f)
|
|
assert not flowfilter.match("~b test", f)
|
|
|
|
f = tutils.tflow(err=True)
|
|
assert flowfilter.match("~e", f)
|
|
|
|
tutils.raises(ValueError, flowfilter.match, "~", f)
|
|
|
|
def test_backup(self):
|
|
f = tutils.tflow()
|
|
f.response = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
f.request.content = b"foo"
|
|
assert not f.modified()
|
|
f.backup()
|
|
f.request.content = b"bar"
|
|
assert f.modified()
|
|
f.revert()
|
|
assert f.request.content == b"foo"
|
|
|
|
def test_backup_idempotence(self):
|
|
f = tutils.tflow(resp=True)
|
|
f.backup()
|
|
f.revert()
|
|
f.backup()
|
|
f.revert()
|
|
|
|
def test_getset_state(self):
|
|
f = tutils.tflow(resp=True)
|
|
state = f.get_state()
|
|
assert f.get_state() == HTTPFlow.from_state(
|
|
state).get_state()
|
|
|
|
f.response = None
|
|
f.error = Error("error")
|
|
state = f.get_state()
|
|
assert f.get_state() == HTTPFlow.from_state(
|
|
state).get_state()
|
|
|
|
f2 = f.copy()
|
|
f2.id = f.id # copy creates a different uuid
|
|
assert f.get_state() == f2.get_state()
|
|
assert not f == f2
|
|
f2.error = Error("e2")
|
|
assert not f == f2
|
|
f.set_state(f2.get_state())
|
|
assert f.get_state() == f2.get_state()
|
|
|
|
def test_kill(self):
|
|
fm = mock.Mock()
|
|
f = tutils.tflow()
|
|
f.reply.handle()
|
|
f.intercept(fm)
|
|
assert f.killable
|
|
f.kill(fm)
|
|
assert not f.killable
|
|
assert fm.error.called
|
|
assert f.reply.value == Kill
|
|
|
|
def test_killall(self):
|
|
srv = DummyServer(None)
|
|
s = flow.State()
|
|
fm = flow.FlowMaster(None, srv)
|
|
fm.addons.add(s)
|
|
|
|
f = tutils.tflow()
|
|
f.reply.handle()
|
|
f.intercept(fm)
|
|
|
|
s.killall(fm)
|
|
for i in s.view:
|
|
assert "killed" in str(i.error)
|
|
|
|
def test_resume(self):
|
|
f = tutils.tflow()
|
|
f.reply.handle()
|
|
f.intercept(mock.Mock())
|
|
assert f.reply.state == "taken"
|
|
f.resume(mock.Mock())
|
|
assert f.reply.state == "committed"
|
|
|
|
def test_replace_unicode(self):
|
|
f = tutils.tflow(resp=True)
|
|
f.response.content = b"\xc2foo"
|
|
f.replace(b"foo", u"bar")
|
|
|
|
def test_replace_no_content(self):
|
|
f = tutils.tflow()
|
|
f.request.content = None
|
|
assert f.replace("foo", "bar") == 0
|
|
|
|
def test_replace(self):
|
|
f = tutils.tflow(resp=True)
|
|
f.request.headers["foo"] = "foo"
|
|
f.request.content = b"afoob"
|
|
|
|
f.response.headers["foo"] = "foo"
|
|
f.response.content = b"afoob"
|
|
|
|
assert f.replace("foo", "bar") == 6
|
|
|
|
assert f.request.headers["bar"] == "bar"
|
|
assert f.request.content == b"abarb"
|
|
assert f.response.headers["bar"] == "bar"
|
|
assert f.response.content == b"abarb"
|
|
|
|
def test_replace_encoded(self):
|
|
f = tutils.tflow(resp=True)
|
|
f.request.content = b"afoob"
|
|
f.request.encode("gzip")
|
|
f.response.content = b"afoob"
|
|
f.response.encode("gzip")
|
|
|
|
f.replace("foo", "bar")
|
|
|
|
assert f.request.raw_content != b"abarb"
|
|
f.request.decode()
|
|
assert f.request.raw_content == b"abarb"
|
|
|
|
assert f.response.raw_content != b"abarb"
|
|
f.response.decode()
|
|
assert f.response.raw_content == b"abarb"
|
|
|
|
|
|
class TestTCPFlow:
|
|
|
|
def test_match(self):
|
|
f = tutils.ttcpflow()
|
|
assert not flowfilter.match("~b nonexistent", f)
|
|
assert flowfilter.match(None, f)
|
|
assert not flowfilter.match("~b nonexistent", f)
|
|
|
|
f = tutils.ttcpflow(err=True)
|
|
assert flowfilter.match("~e", f)
|
|
|
|
tutils.raises(ValueError, flowfilter.match, "~", f)
|
|
|
|
|
|
class TestState:
|
|
|
|
def test_backup(self):
|
|
c = flow.State()
|
|
f = tutils.tflow()
|
|
c.add_flow(f)
|
|
f.backup()
|
|
c.revert(f)
|
|
|
|
def test_flow(self):
|
|
"""
|
|
normal flow:
|
|
|
|
connect -> request -> response
|
|
"""
|
|
c = flow.State()
|
|
f = tutils.tflow()
|
|
c.add_flow(f)
|
|
assert f
|
|
assert c.flow_count() == 1
|
|
assert c.active_flow_count() == 1
|
|
|
|
newf = tutils.tflow()
|
|
assert c.add_flow(newf)
|
|
assert c.active_flow_count() == 2
|
|
|
|
f.response = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
assert c.update_flow(f)
|
|
assert c.flow_count() == 2
|
|
assert c.active_flow_count() == 1
|
|
|
|
assert not c.update_flow(None)
|
|
assert c.active_flow_count() == 1
|
|
|
|
newf.response = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
assert c.update_flow(newf)
|
|
assert c.active_flow_count() == 0
|
|
|
|
def test_err(self):
|
|
c = flow.State()
|
|
f = tutils.tflow()
|
|
c.add_flow(f)
|
|
f.error = Error("message")
|
|
assert c.update_flow(f)
|
|
|
|
c = flow.State()
|
|
f = tutils.tflow()
|
|
c.add_flow(f)
|
|
c.set_view_filter("~e")
|
|
assert not c.view
|
|
f.error = tutils.terr()
|
|
assert c.update_flow(f)
|
|
assert c.view
|
|
|
|
def test_set_view_filter(self):
|
|
c = flow.State()
|
|
|
|
f = tutils.tflow()
|
|
assert len(c.view) == 0
|
|
|
|
c.add_flow(f)
|
|
assert len(c.view) == 1
|
|
|
|
c.set_view_filter("~s")
|
|
assert c.filter_txt == "~s"
|
|
assert len(c.view) == 0
|
|
f.response = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
c.update_flow(f)
|
|
assert len(c.view) == 1
|
|
c.set_view_filter(None)
|
|
assert len(c.view) == 1
|
|
|
|
f = tutils.tflow()
|
|
c.add_flow(f)
|
|
assert len(c.view) == 2
|
|
c.set_view_filter("~q")
|
|
assert len(c.view) == 1
|
|
c.set_view_filter("~s")
|
|
assert len(c.view) == 1
|
|
|
|
assert "Invalid" in c.set_view_filter("~")
|
|
|
|
def test_set_intercept(self):
|
|
c = flow.State()
|
|
assert not c.set_intercept("~q")
|
|
assert c.intercept_txt == "~q"
|
|
assert "Invalid" in c.set_intercept("~")
|
|
assert not c.set_intercept(None)
|
|
assert c.intercept_txt is None
|
|
|
|
def _add_request(self, state):
|
|
f = tutils.tflow()
|
|
state.add_flow(f)
|
|
return f
|
|
|
|
def _add_response(self, state):
|
|
f = tutils.tflow()
|
|
state.add_flow(f)
|
|
f.response = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
state.update_flow(f)
|
|
|
|
def _add_error(self, state):
|
|
f = tutils.tflow(err=True)
|
|
state.add_flow(f)
|
|
|
|
def test_clear(self):
|
|
c = flow.State()
|
|
f = self._add_request(c)
|
|
f.intercepted = True
|
|
|
|
c.clear()
|
|
assert c.flow_count() == 0
|
|
|
|
def test_dump_flows(self):
|
|
c = flow.State()
|
|
self._add_request(c)
|
|
self._add_response(c)
|
|
self._add_request(c)
|
|
self._add_response(c)
|
|
self._add_request(c)
|
|
self._add_response(c)
|
|
self._add_error(c)
|
|
|
|
flows = c.view[:]
|
|
c.clear()
|
|
|
|
c.load_flows(flows)
|
|
assert isinstance(c.flows[0], Flow)
|
|
|
|
def test_accept_all(self):
|
|
c = flow.State()
|
|
self._add_request(c)
|
|
self._add_response(c)
|
|
self._add_request(c)
|
|
c.accept_all(mock.Mock())
|
|
|
|
|
|
class TestSerialize:
|
|
|
|
def _treader(self):
|
|
sio = io.BytesIO()
|
|
w = flow.FlowWriter(sio)
|
|
for i in range(3):
|
|
f = tutils.tflow(resp=True)
|
|
w.add(f)
|
|
for i in range(3):
|
|
f = tutils.tflow(err=True)
|
|
w.add(f)
|
|
f = tutils.ttcpflow()
|
|
w.add(f)
|
|
f = tutils.ttcpflow(err=True)
|
|
w.add(f)
|
|
|
|
sio.seek(0)
|
|
return flow.FlowReader(sio)
|
|
|
|
def test_roundtrip(self):
|
|
sio = io.BytesIO()
|
|
f = tutils.tflow()
|
|
f.marked = True
|
|
f.request.content = bytes(bytearray(range(256)))
|
|
w = flow.FlowWriter(sio)
|
|
w.add(f)
|
|
|
|
sio.seek(0)
|
|
r = flow.FlowReader(sio)
|
|
l = list(r.stream())
|
|
assert len(l) == 1
|
|
|
|
f2 = l[0]
|
|
assert f2.get_state() == f.get_state()
|
|
assert f2.request == f.request
|
|
assert f2.marked
|
|
|
|
def test_load_flows(self):
|
|
r = self._treader()
|
|
s = flow.State()
|
|
fm = flow.FlowMaster(None, None)
|
|
fm.addons.add(s)
|
|
fm.load_flows(r)
|
|
assert len(s.flows) == 6
|
|
|
|
def test_load_flows_reverse(self):
|
|
r = self._treader()
|
|
s = flow.State()
|
|
opts = options.Options(
|
|
mode="reverse",
|
|
upstream_server="https://use-this-domain"
|
|
)
|
|
conf = ProxyConfig(opts)
|
|
fm = flow.FlowMaster(opts, DummyServer(conf))
|
|
fm.addons.add(s)
|
|
fm.load_flows(r)
|
|
assert s.flows[0].request.host == "use-this-domain"
|
|
|
|
def test_filter(self):
|
|
sio = io.BytesIO()
|
|
flt = flowfilter.parse("~c 200")
|
|
w = flow.FilteredFlowWriter(sio, flt)
|
|
|
|
f = tutils.tflow(resp=True)
|
|
f.response.status_code = 200
|
|
w.add(f)
|
|
|
|
f = tutils.tflow(resp=True)
|
|
f.response.status_code = 201
|
|
w.add(f)
|
|
|
|
sio.seek(0)
|
|
r = flow.FlowReader(sio)
|
|
assert len(list(r.stream()))
|
|
|
|
def test_error(self):
|
|
sio = io.BytesIO()
|
|
sio.write(b"bogus")
|
|
sio.seek(0)
|
|
r = flow.FlowReader(sio)
|
|
tutils.raises(FlowReadException, list, r.stream())
|
|
|
|
f = FlowReadException("foo")
|
|
assert str(f) == "foo"
|
|
|
|
def test_versioncheck(self):
|
|
f = tutils.tflow()
|
|
d = f.get_state()
|
|
d["version"] = (0, 0)
|
|
sio = io.BytesIO()
|
|
tnetstring.dump(d, sio)
|
|
sio.seek(0)
|
|
|
|
r = flow.FlowReader(sio)
|
|
tutils.raises("version", list, r.stream())
|
|
|
|
|
|
class TestFlowMaster:
|
|
|
|
def test_replay(self):
|
|
fm = flow.FlowMaster(None, None)
|
|
f = tutils.tflow(resp=True)
|
|
f.request.content = None
|
|
tutils.raises("missing", fm.replay_request, f)
|
|
|
|
f.intercepted = True
|
|
tutils.raises("intercepted", fm.replay_request, f)
|
|
|
|
f.live = True
|
|
tutils.raises("live", fm.replay_request, f)
|
|
|
|
def test_create_flow(self):
|
|
fm = flow.FlowMaster(None, None)
|
|
assert fm.create_request("GET", "http", "example.com", 80, "/")
|
|
|
|
def test_all(self):
|
|
s = flow.State()
|
|
fm = flow.FlowMaster(None, None)
|
|
fm.addons.add(s)
|
|
f = tutils.tflow(req=None)
|
|
fm.clientconnect(f.client_conn)
|
|
f.request = HTTPRequest.wrap(netlib.tutils.treq())
|
|
fm.request(f)
|
|
assert s.flow_count() == 1
|
|
|
|
f.response = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
fm.response(f)
|
|
assert s.flow_count() == 1
|
|
|
|
fm.clientdisconnect(f.client_conn)
|
|
|
|
f.error = Error("msg")
|
|
fm.error(f)
|
|
|
|
fm.shutdown()
|
|
|
|
|
|
class TestRequest:
|
|
|
|
def test_simple(self):
|
|
f = tutils.tflow()
|
|
r = f.request
|
|
u = r.url
|
|
r.url = u
|
|
tutils.raises(ValueError, setattr, r, "url", "")
|
|
assert r.url == u
|
|
r2 = r.copy()
|
|
assert r.get_state() == r2.get_state()
|
|
|
|
def test_get_url(self):
|
|
r = HTTPRequest.wrap(netlib.tutils.treq())
|
|
|
|
assert r.url == "http://address:22/path"
|
|
|
|
r.scheme = "https"
|
|
assert r.url == "https://address:22/path"
|
|
|
|
r.host = "host"
|
|
r.port = 42
|
|
assert r.url == "https://host:42/path"
|
|
|
|
r.host = "address"
|
|
r.port = 22
|
|
assert r.url == "https://address:22/path"
|
|
|
|
assert r.pretty_url == "https://address:22/path"
|
|
r.headers["Host"] = "foo.com:22"
|
|
assert r.url == "https://address:22/path"
|
|
assert r.pretty_url == "https://foo.com:22/path"
|
|
|
|
def test_replace(self):
|
|
r = HTTPRequest.wrap(netlib.tutils.treq())
|
|
r.path = "path/foo"
|
|
r.headers["Foo"] = "fOo"
|
|
r.content = b"afoob"
|
|
assert r.replace("foo(?i)", "boo") == 4
|
|
assert r.path == "path/boo"
|
|
assert b"foo" not in r.content
|
|
assert r.headers["boo"] == "boo"
|
|
|
|
def test_constrain_encoding(self):
|
|
r = HTTPRequest.wrap(netlib.tutils.treq())
|
|
r.headers["accept-encoding"] = "gzip, oink"
|
|
r.constrain_encoding()
|
|
assert "oink" not in r.headers["accept-encoding"]
|
|
|
|
r.headers.set_all("accept-encoding", ["gzip", "oink"])
|
|
r.constrain_encoding()
|
|
assert "oink" not in r.headers["accept-encoding"]
|
|
|
|
def test_get_content_type(self):
|
|
resp = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
resp.headers = Headers(content_type="text/plain")
|
|
assert resp.headers["content-type"] == "text/plain"
|
|
|
|
|
|
class TestResponse:
|
|
|
|
def test_simple(self):
|
|
f = tutils.tflow(resp=True)
|
|
resp = f.response
|
|
resp2 = resp.copy()
|
|
assert resp2.get_state() == resp.get_state()
|
|
|
|
def test_replace(self):
|
|
r = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
r.headers["Foo"] = "fOo"
|
|
r.content = b"afoob"
|
|
assert r.replace("foo(?i)", "boo") == 3
|
|
assert b"foo" not in r.content
|
|
assert r.headers["boo"] == "boo"
|
|
|
|
def test_get_content_type(self):
|
|
resp = HTTPResponse.wrap(netlib.tutils.tresp())
|
|
resp.headers = Headers(content_type="text/plain")
|
|
assert resp.headers["content-type"] == "text/plain"
|
|
|
|
|
|
class TestError:
|
|
|
|
def test_getset_state(self):
|
|
e = Error("Error")
|
|
state = e.get_state()
|
|
assert Error.from_state(state).get_state() == e.get_state()
|
|
|
|
assert e.copy()
|
|
|
|
e2 = Error("bar")
|
|
assert not e == e2
|
|
e.set_state(e2.get_state())
|
|
assert e.get_state() == e2.get_state()
|
|
|
|
e3 = e.copy()
|
|
assert e3.get_state() == e.get_state()
|
|
|
|
def test_repr(self):
|
|
e = Error("yay")
|
|
assert repr(e)
|
|
|
|
|
|
class TestClientConnection:
|
|
def test_state(self):
|
|
c = tutils.tclient_conn()
|
|
assert ClientConnection.from_state(c.get_state()).get_state() == \
|
|
c.get_state()
|
|
|
|
c2 = tutils.tclient_conn()
|
|
c2.address.address = (c2.address.host, 4242)
|
|
assert not c == c2
|
|
|
|
c2.timestamp_start = 42
|
|
c.set_state(c2.get_state())
|
|
assert c.timestamp_start == 42
|
|
|
|
c3 = c.copy()
|
|
assert c3.get_state() == c.get_state()
|
|
|
|
assert str(c)
|