mitmproxy/test/test_dump.py

207 lines
6.4 KiB
Python
Raw Normal View History

2011-02-16 21:18:38 +00:00
import os
2011-02-16 09:10:24 +00:00
from cStringIO import StringIO
2015-08-01 08:40:19 +00:00
import netlib.tutils
from netlib.http.semantics import CONTENT_MISSING
from libmproxy import dump, flow
2015-08-01 08:40:19 +00:00
from libmproxy.protocol import http, http_wrappers
2014-03-09 20:51:24 +00:00
from libmproxy.proxy.primitives import Log
import tutils
import mock
2011-02-16 09:10:24 +00:00
def test_strfuncs():
2015-08-01 08:40:19 +00:00
t = http_wrappers.HTTPResponse.wrap(netlib.tutils.tresp())
t.is_replay = True
dump.str_response(t)
f = tutils.tflow()
f.client_conn = None
f.request.stickycookie = True
assert "stickycookie" in dump.str_request(f, False)
assert "stickycookie" in dump.str_request(f, True)
assert "replay" in dump.str_request(f, False)
assert "replay" in dump.str_request(f, True)
2011-02-16 09:10:24 +00:00
class TestDumpMaster:
def _cycle(self, m, content):
2015-08-01 08:40:19 +00:00
f = tutils.tflow(req=netlib.tutils.treq(content))
2014-03-09 20:51:24 +00:00
l = Log("connect")
l.reply = mock.MagicMock()
m.handle_log(l)
m.handle_clientconnect(f.client_conn)
m.handle_serverconnect(f.server_conn)
m.handle_request(f)
2015-08-01 08:40:19 +00:00
f.response = http_wrappers.HTTPResponse.wrap(netlib.tutils.tresp(content))
f = m.handle_response(f)
m.handle_clientdisconnect(f.client_conn)
2012-04-02 21:52:26 +00:00
return f
2011-02-16 09:10:24 +00:00
2011-08-02 04:52:47 +00:00
def _dummy_cycle(self, n, filt, content, **options):
cs = StringIO()
o = dump.Options(filtstr=filt, **options)
m = dump.DumpMaster(None, o, outfile=cs)
2011-08-02 04:52:47 +00:00
for i in range(n):
self._cycle(m, content)
m.shutdown()
return cs.getvalue()
2011-08-02 04:52:47 +00:00
def _flowfile(self, path):
2013-06-15 22:23:44 +00:00
f = open(path, "wb")
2011-08-02 04:52:47 +00:00
fw = flow.FlowWriter(f)
t = tutils.tflow(resp=True)
2011-08-02 04:52:47 +00:00
fw.add(t)
f.close()
def test_error(self):
cs = StringIO()
2014-03-13 00:22:12 +00:00
o = dump.Options(flow_detail=1)
m = dump.DumpMaster(None, o, outfile=cs)
f = tutils.tflow(err=True)
m.handle_request(f)
assert m.handle_error(f)
assert "error" in cs.getvalue()
def test_missing_content(self):
cs = StringIO()
o = dump.Options(flow_detail=3)
m = dump.DumpMaster(None, o, outfile=cs)
f = tutils.tflow()
f.request.content = CONTENT_MISSING
m.handle_request(f)
2015-08-01 08:40:19 +00:00
f.response = http_wrappers.HTTPResponse.wrap(netlib.tutils.tresp())
f.response.content = CONTENT_MISSING
m.handle_response(f)
assert "content missing" in cs.getvalue()
def test_replay(self):
cs = StringIO()
2015-02-05 13:44:45 +00:00
o = dump.Options(server_replay=["nonexistent"], kill=True)
tutils.raises(dump.DumpError, dump.DumpMaster, None, o, outfile=cs)
with tutils.tmpdir() as t:
p = os.path.join(t, "rep")
self._flowfile(p)
2015-01-05 21:12:38 +00:00
o = dump.Options(server_replay=[p], kill=True)
m = dump.DumpMaster(None, o, outfile=cs)
2012-02-10 02:04:20 +00:00
self._cycle(m, "content")
self._cycle(m, "content")
2015-01-05 21:12:38 +00:00
o = dump.Options(server_replay=[p], kill=False)
m = dump.DumpMaster(None, o, outfile=cs)
self._cycle(m, "nonexistent")
2015-01-05 21:12:38 +00:00
o = dump.Options(client_replay=[p], kill=False)
m = dump.DumpMaster(None, o, outfile=cs)
2011-08-02 04:52:47 +00:00
def test_read(self):
with tutils.tmpdir() as t:
p = os.path.join(t, "read")
self._flowfile(p)
assert "GET" in self._dummy_cycle(
0,
None,
"",
flow_detail=1,
rfile=p
)
2011-08-02 04:52:47 +00:00
tutils.raises(
dump.DumpError, self._dummy_cycle,
0, None, "", verbosity=1, rfile="/nonexistent"
)
tutils.raises(
dump.DumpError, self._dummy_cycle,
0, None, "", verbosity=1, rfile="test_dump.py"
)
2011-08-02 04:52:47 +00:00
2011-02-16 10:03:46 +00:00
def test_options(self):
o = dump.Options(verbosity = 2)
assert o.verbosity == 2
2011-02-16 21:44:08 +00:00
def test_filter(self):
2011-08-02 04:52:47 +00:00
assert not "GET" in self._dummy_cycle(1, "~u foo", "", verbosity=1)
2011-02-16 21:44:08 +00:00
def test_app(self):
o = dump.Options(app=True)
s = mock.MagicMock()
m = dump.DumpMaster(s, o)
assert len(m.apps.apps) == 1
2012-04-02 21:52:26 +00:00
def test_replacements(self):
cs = StringIO()
2012-04-02 21:52:26 +00:00
o = dump.Options(replacements=[(".*", "content", "foo")])
m = dump.DumpMaster(None, o, outfile=cs)
2012-04-02 21:52:26 +00:00
f = self._cycle(m, "content")
assert f.request.content == "foo"
2012-08-18 12:22:42 +00:00
def test_setheader(self):
cs = StringIO()
2012-08-18 12:22:42 +00:00
o = dump.Options(setheaders=[(".*", "one", "two")])
m = dump.DumpMaster(None, o, outfile=cs)
2012-08-18 12:22:42 +00:00
f = self._cycle(m, "content")
assert f.request.headers["one"] == ["two"]
2011-02-16 21:44:08 +00:00
def test_basic(self):
2011-02-16 09:10:24 +00:00
for i in (1, 2, 3):
2014-03-13 00:22:12 +00:00
assert "GET" in self._dummy_cycle(1, "~s", "", flow_detail=i)
2015-05-30 00:03:28 +00:00
assert "GET" in self._dummy_cycle(
1,
"~s",
"\x00\x00\x00",
flow_detail=i)
2014-03-13 00:22:12 +00:00
assert "GET" in self._dummy_cycle(1, "~s", "ascii", flow_detail=i)
2011-02-16 09:10:24 +00:00
2011-02-16 21:18:38 +00:00
def test_write(self):
with tutils.tmpdir() as d:
p = os.path.join(d, "a")
2015-05-30 00:03:28 +00:00
self._dummy_cycle(1, None, "", outfile=(p, "wb"), verbosity=0)
assert len(list(flow.FlowReader(open(p, "rb")).stream())) == 1
2011-02-16 21:18:38 +00:00
def test_write_append(self):
with tutils.tmpdir() as d:
p = os.path.join(d, "a.append")
2015-05-30 00:03:28 +00:00
self._dummy_cycle(1, None, "", outfile=(p, "wb"), verbosity=0)
self._dummy_cycle(1, None, "", outfile=(p, "ab"), verbosity=0)
assert len(list(flow.FlowReader(open(p, "rb")).stream())) == 2
2011-02-16 21:18:38 +00:00
def test_write_err(self):
tutils.raises(
dump.DumpError,
self._dummy_cycle,
2011-08-02 04:52:47 +00:00
1,
None,
2012-02-10 02:04:20 +00:00
"",
outfile = ("nonexistentdir/foo", "wb")
)
def test_script(self):
ret = self._dummy_cycle(
1, None, "",
2014-03-13 00:22:12 +00:00
scripts=[tutils.test_data.path("scripts/all.py")], verbosity=1
)
assert "XCLIENTCONNECT" in ret
assert "XSERVERCONNECT" in ret
assert "XREQUEST" in ret
assert "XRESPONSE" in ret
assert "XCLIENTDISCONNECT" in ret
tutils.raises(
dump.DumpError,
self._dummy_cycle, 1, None, "", scripts=["nonexistent"]
)
tutils.raises(
dump.DumpError,
self._dummy_cycle, 1, None, "", scripts=["starterr.py"]
2011-02-16 21:18:38 +00:00
)
def test_stickycookie(self):
2011-08-03 22:34:34 +00:00
self._dummy_cycle(1, None, "", stickycookie = ".*")
2011-03-20 05:52:16 +00:00
def test_stickyauth(self):
2011-08-03 22:34:34 +00:00
self._dummy_cycle(1, None, "", stickyauth = ".*")