mitmproxy/test/test_proxy.py

32 lines
557 B
Python
Raw Normal View History

2012-02-19 22:04:07 +00:00
import cStringIO, textwrap
from cStringIO import StringIO
2010-02-16 04:09:07 +00:00
import libpry
2012-02-19 22:04:07 +00:00
from libmproxy import proxy, flow
import tutils
2010-02-16 04:09:07 +00:00
def test_proxy_error():
p = proxy.ProxyError(111, "msg")
assert str(p)
2010-02-16 04:09:07 +00:00
2012-06-18 22:42:55 +00:00
def test_app_registry():
ar = proxy.AppRegistry()
ar.add("foo", "domain", 80)
2012-06-18 22:42:55 +00:00
r = tutils.treq()
r.host = "domain"
r.port = 80
assert ar.get(r)
2012-06-18 22:42:55 +00:00
r.port = 81
assert not ar.get(r)
r = tutils.treq()
r.host = "domain2"
r.port = 80
assert not ar.get(r)
r.headers["host"] = ["domain"]
assert ar.get(r)