mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
6174e46023
Also start figuring out how to sanitize binary data in the JSON API.
84 lines
3.0 KiB
Python
84 lines
3.0 KiB
Python
import json, cStringIO
|
|
from libpathod import pathoc, test, version
|
|
import tutils
|
|
|
|
|
|
class TestDaemon:
|
|
@classmethod
|
|
def setUpAll(self):
|
|
self.d = test.Daemon(
|
|
staticdir=tutils.test_data.path("data"),
|
|
anchors=[("/anchor/.*", "202")]
|
|
)
|
|
|
|
@classmethod
|
|
def tearDownAll(self):
|
|
self.d.shutdown()
|
|
|
|
def setUp(self):
|
|
self.d.clear_log()
|
|
|
|
def test_info(self):
|
|
c = pathoc.Pathoc("127.0.0.1", self.d.port)
|
|
c.connect()
|
|
_, _, _, _, content = c.request("get:/api/info")
|
|
assert tuple(json.loads(content)["version"]) == version.IVERSION
|
|
|
|
def tval(self, requests, showreq=False, showresp=False, explain=False, hexdump=False, timeout=None, ignorecodes=None, ignoretimeout=None):
|
|
c = pathoc.Pathoc("127.0.0.1", self.d.port)
|
|
c.connect()
|
|
if timeout:
|
|
c.settimeout(timeout)
|
|
s = cStringIO.StringIO()
|
|
for i in requests:
|
|
c.print_request(
|
|
i,
|
|
showreq = showreq,
|
|
showresp = showresp,
|
|
explain = explain,
|
|
hexdump = hexdump,
|
|
ignorecodes = ignorecodes,
|
|
ignoretimeout = ignoretimeout,
|
|
fp = s
|
|
)
|
|
return s.getvalue()
|
|
|
|
def test_ignorecodes(self):
|
|
assert "200" in self.tval(["get:'/p/200:b@1'"])
|
|
assert "200" not in self.tval(["get:'/p/200:b@1'"], ignorecodes=[200])
|
|
assert "200" not in self.tval(["get:'/p/200:b@1'"], ignorecodes=[200, 201])
|
|
assert "202" in self.tval(["get:'/p/202:b@1'"], ignorecodes=[200, 201])
|
|
|
|
def test_timeout(self):
|
|
assert "Timeout" in self.tval(["get:'/p/200:p0,10'"], timeout=0.01)
|
|
assert "HTTP" in self.tval(["get:'/p/200:p5,10'"], showresp=True, timeout=0.01)
|
|
assert not "HTTP" in self.tval(["get:'/p/200:p5,10'"], showresp=True, timeout=0.01, ignoretimeout=True)
|
|
|
|
def test_showresp(self):
|
|
reqs = [ "get:/api/info:p0,0", "get:/api/info:p0,0" ]
|
|
assert self.tval(reqs).count("200") == 2
|
|
assert self.tval(reqs, showresp=True).count("unprintables escaped") == 2
|
|
assert self.tval(reqs, showresp=True, hexdump=True).count("hex dump") == 2
|
|
|
|
def test_showresp_httperr(self):
|
|
v = self.tval(["get:'/p/200:d20'"], showresp=True)
|
|
assert "Invalid headers" in v
|
|
assert "HTTP/" in v
|
|
|
|
def test_showreq(self):
|
|
reqs = [ "get:/api/info:p0,0", "get:/api/info:p0,0" ]
|
|
assert self.tval(reqs, showreq=True).count("unprintables escaped") == 2
|
|
assert self.tval(reqs, showreq=True, hexdump=True).count("hex dump") == 2
|
|
|
|
def test_parse_err(self):
|
|
assert "Error parsing" in self.tval(["foo"])
|
|
|
|
def test_conn_err(self):
|
|
assert "Invalid server response" in self.tval(["get:'/p/200:d2'"])
|
|
|
|
def test_fileread(self):
|
|
d = tutils.test_data.path("data/request")
|
|
assert "foo" in self.tval(["+%s"%d], showreq=True)
|
|
assert "File" in self.tval(["+/nonexistent"])
|
|
|