2012-04-08 07:23:05 +00:00
|
|
|
import sys
|
2012-03-24 01:02:41 +00:00
|
|
|
import libmproxy.console.contentview as cv
|
|
|
|
from libmproxy import utils, flow, encoding
|
2012-06-09 01:42:43 +00:00
|
|
|
import tutils
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-11-26 00:25:07 +00:00
|
|
|
try:
|
|
|
|
import pyamf
|
|
|
|
except ImportError:
|
|
|
|
pyamf = None
|
|
|
|
|
|
|
|
|
2012-06-09 01:42:43 +00:00
|
|
|
class TestContentView:
|
2012-03-24 01:02:41 +00:00
|
|
|
def test_trailer(self):
|
|
|
|
txt = []
|
2012-04-08 07:23:05 +00:00
|
|
|
cv.trailer(5, txt, 1000)
|
2012-03-24 01:02:41 +00:00
|
|
|
assert not txt
|
2012-04-08 07:23:05 +00:00
|
|
|
cv.trailer(cv.VIEW_CUTOFF + 10, txt, cv.VIEW_CUTOFF)
|
2012-03-24 01:02:41 +00:00
|
|
|
assert txt
|
2012-03-24 21:56:45 +00:00
|
|
|
|
2012-08-18 05:29:29 +00:00
|
|
|
def test_view_auto(self):
|
|
|
|
v = cv.ViewAuto()
|
|
|
|
f = v(
|
2012-03-24 01:02:41 +00:00
|
|
|
flow.ODictCaseless(),
|
2012-08-18 05:29:29 +00:00
|
|
|
"foo",
|
|
|
|
1000
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
2012-08-18 05:29:29 +00:00
|
|
|
assert f[0] == "Raw"
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-08-18 05:29:29 +00:00
|
|
|
f = v(
|
2012-03-24 01:02:41 +00:00
|
|
|
flow.ODictCaseless(
|
|
|
|
[["content-type", "text/html"]],
|
|
|
|
),
|
2012-08-18 05:29:29 +00:00
|
|
|
"<html></html>",
|
|
|
|
1000
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
2012-08-18 05:29:29 +00:00
|
|
|
assert f[0] == "HTML"
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-08-18 05:29:29 +00:00
|
|
|
f = v(
|
2012-03-24 01:02:41 +00:00
|
|
|
flow.ODictCaseless(
|
|
|
|
[["content-type", "text/flibble"]],
|
|
|
|
),
|
2012-08-18 05:29:29 +00:00
|
|
|
"foo",
|
|
|
|
1000
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
2012-08-18 05:29:29 +00:00
|
|
|
assert f[0] == "Raw"
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-08-18 05:29:29 +00:00
|
|
|
f = v(
|
2012-03-24 01:02:41 +00:00
|
|
|
flow.ODictCaseless(
|
|
|
|
[["content-type", "text/flibble"]],
|
|
|
|
),
|
2012-08-18 05:29:29 +00:00
|
|
|
"<xml></xml>",
|
|
|
|
1000
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
2012-08-18 05:29:29 +00:00
|
|
|
assert f[0].startswith("XML")
|
2012-08-17 06:27:47 +00:00
|
|
|
|
|
|
|
|
2012-03-24 01:02:41 +00:00
|
|
|
def test_view_urlencoded(self):
|
|
|
|
d = utils.urlencode([("one", "two"), ("three", "four")])
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewURLEncoded()
|
|
|
|
assert v([], d, 100)
|
2013-02-11 02:22:25 +00:00
|
|
|
d = utils.urlencode([("adsfa", "")])
|
|
|
|
v = cv.ViewURLEncoded()
|
|
|
|
assert v([], d, 100)
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-04-07 01:47:03 +00:00
|
|
|
def test_view_html(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewHTML()
|
2012-04-07 01:47:03 +00:00
|
|
|
s = "<html><br><br></br><p>one</p></html>"
|
2012-08-18 05:08:17 +00:00
|
|
|
assert v([], s, 1000)
|
2012-04-07 01:47:03 +00:00
|
|
|
|
|
|
|
s = "gobbledygook"
|
2012-08-18 05:08:17 +00:00
|
|
|
assert not v([], s, 1000)
|
|
|
|
|
|
|
|
def test_view_html_outline(self):
|
|
|
|
v = cv.ViewHTMLOutline()
|
|
|
|
s = "<html><br><br></br><p>one</p></html>"
|
|
|
|
assert v([], s, 1000)
|
2012-04-07 01:47:03 +00:00
|
|
|
|
2012-03-24 01:02:41 +00:00
|
|
|
def test_view_json(self):
|
|
|
|
cv.VIEW_CUTOFF = 100
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewJSON()
|
|
|
|
assert v([], "{}", 1000)
|
|
|
|
assert not v([], "{", 1000)
|
|
|
|
assert v([], "[" + ",".join(["0"]*cv.VIEW_CUTOFF) + "]", 1000)
|
|
|
|
assert v([], "[1, 2, 3, 4, 5]", 5)
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-04-07 01:47:03 +00:00
|
|
|
def test_view_xml(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewXML()
|
|
|
|
assert v([], "<foo></foo>", 1000)
|
|
|
|
assert not v([], "<foo>", 1000)
|
2012-04-07 01:47:03 +00:00
|
|
|
s = """<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?xml-stylesheet title="XSL_formatting"?>
|
2012-04-07 10:15:31 +00:00
|
|
|
<rss
|
2012-04-07 01:47:03 +00:00
|
|
|
xmlns:media="http://search.yahoo.com/mrss/"
|
|
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
|
|
version="2.0">
|
|
|
|
</rss>
|
|
|
|
"""
|
2012-08-18 05:08:17 +00:00
|
|
|
assert v([], s, 1000)
|
2012-03-24 01:02:41 +00:00
|
|
|
|
|
|
|
def test_view_raw(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewRaw()
|
|
|
|
assert v([], "foo", 1000)
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-03-24 21:56:45 +00:00
|
|
|
def test_view_javascript(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewJavaScript()
|
|
|
|
assert v([], "[1, 2, 3]", 100)
|
|
|
|
assert v([], "[1, 2, 3", 100)
|
|
|
|
assert v([], "function(a){[1, 2, 3]}", 100)
|
2012-03-24 21:56:45 +00:00
|
|
|
|
2012-04-08 07:23:05 +00:00
|
|
|
def test_view_hex(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewHex()
|
|
|
|
assert v([], "foo", 1000)
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-03-25 22:26:02 +00:00
|
|
|
def test_view_image(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
v = cv.ViewImage()
|
2012-06-09 01:42:43 +00:00
|
|
|
p = tutils.test_data.path("data/image.png")
|
2012-08-18 05:08:17 +00:00
|
|
|
assert v([], file(p).read(), sys.maxint)
|
2012-06-09 01:42:43 +00:00
|
|
|
|
|
|
|
p = tutils.test_data.path("data/image.gif")
|
2012-08-18 05:08:17 +00:00
|
|
|
assert v([], file(p).read(), sys.maxint)
|
2012-06-09 01:42:43 +00:00
|
|
|
|
|
|
|
p = tutils.test_data.path("data/image-err1.jpg")
|
2012-08-18 05:08:17 +00:00
|
|
|
assert v([], file(p).read(), sys.maxint)
|
2012-06-09 01:42:43 +00:00
|
|
|
|
|
|
|
p = tutils.test_data.path("data/image.ico")
|
2012-08-18 05:08:17 +00:00
|
|
|
assert v([], file(p).read(), sys.maxint)
|
2012-06-09 01:42:43 +00:00
|
|
|
|
2012-08-18 05:08:17 +00:00
|
|
|
assert not v([], "flibble", sys.maxint)
|
2012-03-25 22:26:02 +00:00
|
|
|
|
2012-03-24 21:10:48 +00:00
|
|
|
def test_view_multipart(self):
|
2012-08-18 05:08:17 +00:00
|
|
|
view = cv.ViewMultipart()
|
2012-03-24 21:10:48 +00:00
|
|
|
v = """
|
|
|
|
--AaB03x
|
|
|
|
Content-Disposition: form-data; name="submit-name"
|
|
|
|
|
|
|
|
Larry
|
|
|
|
--AaB03x
|
|
|
|
""".strip()
|
|
|
|
h = flow.ODictCaseless(
|
|
|
|
[("Content-Type", "multipart/form-data; boundary=AaB03x")]
|
|
|
|
)
|
2012-08-18 05:08:17 +00:00
|
|
|
assert view(h, v, 1000)
|
2012-03-24 21:10:48 +00:00
|
|
|
|
|
|
|
h = flow.ODictCaseless()
|
2012-08-18 05:08:17 +00:00
|
|
|
assert not view(h, v, 1000)
|
2012-03-24 21:10:48 +00:00
|
|
|
|
|
|
|
h = flow.ODictCaseless(
|
|
|
|
[("Content-Type", "multipart/form-data")]
|
|
|
|
)
|
2012-08-18 05:08:17 +00:00
|
|
|
assert not view(h, v, 1000)
|
2012-03-24 21:10:48 +00:00
|
|
|
|
|
|
|
h = flow.ODictCaseless(
|
|
|
|
[("Content-Type", "unparseable")]
|
|
|
|
)
|
2012-08-18 05:08:17 +00:00
|
|
|
assert not view(h, v, 1000)
|
2012-03-24 21:10:48 +00:00
|
|
|
|
2012-03-24 01:02:41 +00:00
|
|
|
def test_get_content_view(self):
|
|
|
|
r = cv.get_content_view(
|
2012-08-18 05:08:17 +00:00
|
|
|
cv.get("Raw"),
|
2012-03-24 01:02:41 +00:00
|
|
|
[["content-type", "application/json"]],
|
2012-04-08 07:23:05 +00:00
|
|
|
"[1, 2, 3]",
|
2012-08-18 05:42:40 +00:00
|
|
|
1000,
|
|
|
|
lambda x: None
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
2012-04-01 22:30:35 +00:00
|
|
|
assert "Raw" in r[0]
|
2012-03-24 01:02:41 +00:00
|
|
|
|
|
|
|
r = cv.get_content_view(
|
2012-08-18 05:08:17 +00:00
|
|
|
cv.get("Auto"),
|
2012-03-24 01:02:41 +00:00
|
|
|
[["content-type", "application/json"]],
|
2012-04-08 07:23:05 +00:00
|
|
|
"[1, 2, 3]",
|
2012-08-18 05:42:40 +00:00
|
|
|
1000,
|
|
|
|
lambda x: None
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
|
|
|
assert r[0] == "JSON"
|
|
|
|
|
|
|
|
r = cv.get_content_view(
|
2012-08-18 05:08:17 +00:00
|
|
|
cv.get("Auto"),
|
2012-03-24 01:02:41 +00:00
|
|
|
[["content-type", "application/json"]],
|
2012-04-08 07:23:05 +00:00
|
|
|
"[1, 2",
|
2012-08-18 05:42:40 +00:00
|
|
|
1000,
|
|
|
|
lambda x: None
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
2012-04-02 01:24:51 +00:00
|
|
|
assert "Raw" in r[0]
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-08-18 05:42:40 +00:00
|
|
|
r = cv.get_content_view(
|
|
|
|
cv.get("AMF"),
|
|
|
|
[],
|
|
|
|
"[1, 2",
|
|
|
|
1000,
|
|
|
|
lambda x: None
|
|
|
|
)
|
|
|
|
assert "Raw" in r[0]
|
|
|
|
|
|
|
|
|
2012-03-24 01:02:41 +00:00
|
|
|
r = cv.get_content_view(
|
2012-08-18 05:08:17 +00:00
|
|
|
cv.get("Auto"),
|
2012-03-24 01:02:41 +00:00
|
|
|
[
|
|
|
|
["content-type", "application/json"],
|
|
|
|
["content-encoding", "gzip"]
|
|
|
|
],
|
2012-04-08 07:23:05 +00:00
|
|
|
encoding.encode('gzip', "[1, 2, 3]"),
|
2012-08-18 05:42:40 +00:00
|
|
|
1000,
|
|
|
|
lambda x: None
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
|
|
|
assert "decoded gzip" in r[0]
|
|
|
|
assert "JSON" in r[0]
|
|
|
|
|
|
|
|
r = cv.get_content_view(
|
2012-08-18 05:08:17 +00:00
|
|
|
cv.get("XML"),
|
2012-03-24 01:02:41 +00:00
|
|
|
[
|
|
|
|
["content-type", "application/json"],
|
|
|
|
["content-encoding", "gzip"]
|
|
|
|
],
|
2012-04-08 07:23:05 +00:00
|
|
|
encoding.encode('gzip', "[1, 2, 3]"),
|
2012-08-18 05:42:40 +00:00
|
|
|
1000,
|
|
|
|
lambda x: None
|
2012-03-24 01:02:41 +00:00
|
|
|
)
|
|
|
|
assert "decoded gzip" in r[0]
|
2012-04-07 10:15:31 +00:00
|
|
|
assert "Raw" in r[0]
|
2012-03-24 01:02:41 +00:00
|
|
|
|
2012-08-18 05:29:29 +00:00
|
|
|
|
2012-11-26 00:25:07 +00:00
|
|
|
if pyamf:
|
|
|
|
def test_view_amf_request():
|
|
|
|
v = cv.ViewAMF()
|
|
|
|
|
|
|
|
p = tutils.test_data.path("data/amf01")
|
|
|
|
assert v([], file(p).read(), sys.maxint)
|
|
|
|
|
|
|
|
p = tutils.test_data.path("data/amf02")
|
|
|
|
assert v([], file(p).read(), sys.maxint)
|
|
|
|
|
|
|
|
def test_view_amf_response():
|
|
|
|
v = cv.ViewAMF()
|
|
|
|
p = tutils.test_data.path("data/amf03")
|
|
|
|
assert v([], file(p).read(), sys.maxint)
|
|
|
|
|
2013-04-06 18:18:12 +00:00
|
|
|
if cv.ViewProtobuf.is_available():
|
|
|
|
def test_view_protobuf_request():
|
|
|
|
v = cv.ViewProtobuf()
|
|
|
|
|
|
|
|
p = tutils.test_data.path("data/protobuf01")
|
|
|
|
content_type, output = v([], file(p).read(), sys.maxint)
|
|
|
|
assert content_type == "Protobuf"
|
|
|
|
assert output[0].text == '1: "3bbc333c-e61c-433b-819a-0b9a8cc103b8"'
|
2012-11-26 00:25:07 +00:00
|
|
|
|
2012-08-18 05:29:29 +00:00
|
|
|
def test_get_by_shortcut():
|
|
|
|
assert cv.get_by_shortcut("h")
|