2012-06-13 06:16:47 +00:00
|
|
|
import os, shutil, tempfile
|
2012-06-09 01:42:43 +00:00
|
|
|
from contextlib import contextmanager
|
2014-03-09 20:51:24 +00:00
|
|
|
from libmproxy import flow, utils, controller
|
2014-01-31 03:45:39 +00:00
|
|
|
from libmproxy.protocol import http
|
2014-03-09 20:51:24 +00:00
|
|
|
from libmproxy.proxy.connection import ClientConnection, ServerConnection
|
2014-02-05 22:17:26 +00:00
|
|
|
import mock_urwid
|
|
|
|
from libmproxy.console.flowview import FlowView
|
|
|
|
from libmproxy.console import ConsoleState
|
2014-02-05 13:33:17 +00:00
|
|
|
from libmproxy.protocol.primitives import Error
|
2012-06-28 02:29:15 +00:00
|
|
|
from netlib import certutils
|
2013-06-17 22:53:38 +00:00
|
|
|
from nose.plugins.skip import SkipTest
|
2013-12-24 01:28:20 +00:00
|
|
|
from mock import Mock
|
2014-02-04 04:02:17 +00:00
|
|
|
from time import time
|
2013-06-17 22:53:38 +00:00
|
|
|
|
|
|
|
def _SkipWindows():
|
|
|
|
raise SkipTest("Skipped on Windows.")
|
|
|
|
def SkipWindows(fn):
|
|
|
|
if os.name == "nt":
|
|
|
|
return _SkipWindows
|
|
|
|
else:
|
|
|
|
return fn
|
2011-03-05 02:58:48 +00:00
|
|
|
|
2014-01-31 03:45:39 +00:00
|
|
|
|
|
|
|
def tclient_conn():
|
2014-03-09 20:13:08 +00:00
|
|
|
c = ClientConnection._from_state(dict(
|
2014-01-31 03:45:39 +00:00
|
|
|
address=dict(address=("address", 22), use_ipv6=True),
|
|
|
|
clientcert=None
|
|
|
|
))
|
2014-02-04 04:02:17 +00:00
|
|
|
c.reply = controller.DummyReply()
|
|
|
|
return c
|
2014-01-31 03:45:39 +00:00
|
|
|
|
2014-02-05 13:33:17 +00:00
|
|
|
|
2014-01-31 03:45:39 +00:00
|
|
|
def tserver_conn():
|
2014-03-09 20:13:08 +00:00
|
|
|
c = ServerConnection._from_state(dict(
|
2014-01-31 03:45:39 +00:00
|
|
|
address=dict(address=("address", 22), use_ipv6=True),
|
|
|
|
source_address=dict(address=("address", 22), use_ipv6=True),
|
|
|
|
cert=None
|
|
|
|
))
|
2014-02-04 04:02:17 +00:00
|
|
|
c.reply = controller.DummyReply()
|
2014-02-05 13:33:17 +00:00
|
|
|
return c
|
2014-01-31 03:45:39 +00:00
|
|
|
|
|
|
|
|
2014-02-07 02:56:57 +00:00
|
|
|
def treq_absolute(conn=None, content="content"):
|
|
|
|
r = treq(conn, content)
|
|
|
|
r.form_in = r.form_out = "absolute"
|
|
|
|
r.host = "address"
|
|
|
|
r.port = 22
|
|
|
|
r.scheme = "http"
|
|
|
|
return r
|
|
|
|
|
2013-12-25 03:50:29 +00:00
|
|
|
def treq(conn=None, content="content"):
|
2011-03-05 02:58:48 +00:00
|
|
|
if not conn:
|
2014-01-31 03:45:39 +00:00
|
|
|
conn = tclient_conn()
|
|
|
|
server_conn = tserver_conn()
|
2012-02-19 22:29:36 +00:00
|
|
|
headers = flow.ODictCaseless()
|
2011-03-05 02:58:48 +00:00
|
|
|
headers["header"] = ["qvalue"]
|
2014-01-31 03:45:39 +00:00
|
|
|
|
|
|
|
f = http.HTTPFlow(conn, server_conn)
|
2014-03-08 14:47:09 +00:00
|
|
|
f.request = http.HTTPRequest("relative", "GET", None, None, None, "/path", (1, 1), headers, content,
|
2014-01-31 03:45:39 +00:00
|
|
|
None, None, None)
|
|
|
|
f.request.reply = controller.DummyReply()
|
|
|
|
return f.request
|
2011-03-05 02:58:48 +00:00
|
|
|
|
|
|
|
|
2014-01-31 03:45:39 +00:00
|
|
|
def tresp(req=None, content="message"):
|
2011-03-05 02:58:48 +00:00
|
|
|
if not req:
|
|
|
|
req = treq()
|
2014-01-31 03:45:39 +00:00
|
|
|
f = req.flow
|
|
|
|
|
2012-02-19 22:29:36 +00:00
|
|
|
headers = flow.ODictCaseless()
|
2011-03-05 02:58:48 +00:00
|
|
|
headers["header_response"] = ["svalue"]
|
2014-01-31 03:45:39 +00:00
|
|
|
cert = certutils.SSLCert.from_der(file(test_data.path("data/dercert"), "rb").read())
|
2014-03-09 20:13:08 +00:00
|
|
|
f.server_conn = ServerConnection._from_state(dict(
|
2014-01-31 03:45:39 +00:00
|
|
|
address=dict(address=("address", 22), use_ipv6=True),
|
|
|
|
source_address=None,
|
|
|
|
cert=cert.to_pem()))
|
2014-02-04 04:02:17 +00:00
|
|
|
f.response = http.HTTPResponse((1, 1), 200, "OK", headers, content, time(), time())
|
2014-01-31 03:45:39 +00:00
|
|
|
f.response.reply = controller.DummyReply()
|
|
|
|
return f.response
|
|
|
|
|
2011-03-05 02:58:48 +00:00
|
|
|
|
2013-12-15 01:43:16 +00:00
|
|
|
def terr(req=None):
|
|
|
|
if not req:
|
|
|
|
req = treq()
|
2014-01-31 03:45:39 +00:00
|
|
|
f = req.flow
|
2014-02-05 13:33:17 +00:00
|
|
|
f.error = Error("error")
|
2014-01-31 03:45:39 +00:00
|
|
|
f.error.reply = controller.DummyReply()
|
|
|
|
return f.error
|
2013-12-15 01:43:16 +00:00
|
|
|
|
2014-02-07 02:56:57 +00:00
|
|
|
def tflow_noreq():
|
|
|
|
f = tflow()
|
|
|
|
f.request = None
|
|
|
|
return f
|
2011-03-05 02:58:48 +00:00
|
|
|
|
2014-01-31 03:45:39 +00:00
|
|
|
def tflow(req=None):
|
|
|
|
if not req:
|
|
|
|
req = treq()
|
|
|
|
return req.flow
|
2011-03-05 02:58:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def tflow_full():
|
2013-12-15 01:43:16 +00:00
|
|
|
f = tflow()
|
|
|
|
f.response = tresp(f.request)
|
2011-03-05 02:58:48 +00:00
|
|
|
return f
|
|
|
|
|
|
|
|
|
2011-05-14 23:22:35 +00:00
|
|
|
def tflow_err():
|
2013-12-15 01:43:16 +00:00
|
|
|
f = tflow()
|
|
|
|
f.error = terr(f.request)
|
2011-05-14 23:22:35 +00:00
|
|
|
return f
|
|
|
|
|
2013-12-25 03:50:29 +00:00
|
|
|
def tflowview(request_contents=None):
|
2013-12-24 01:28:20 +00:00
|
|
|
m = Mock()
|
|
|
|
cs = ConsoleState()
|
2013-12-25 03:50:29 +00:00
|
|
|
if request_contents == None:
|
|
|
|
flow = tflow()
|
|
|
|
else:
|
|
|
|
req = treq(None, request_contents)
|
|
|
|
flow = tflow(req)
|
|
|
|
|
2013-12-24 01:28:20 +00:00
|
|
|
fv = FlowView(m, cs, flow)
|
|
|
|
return fv
|
|
|
|
|
2013-12-25 03:50:29 +00:00
|
|
|
def get_body_line(last_displayed_body, line_nb):
|
|
|
|
return last_displayed_body.contents()[line_nb + 2]
|
2011-05-14 23:22:35 +00:00
|
|
|
|
2012-06-09 01:42:43 +00:00
|
|
|
@contextmanager
|
|
|
|
def tmpdir(*args, **kwargs):
|
|
|
|
orig_workdir = os.getcwd()
|
|
|
|
temp_workdir = tempfile.mkdtemp(*args, **kwargs)
|
|
|
|
os.chdir(temp_workdir)
|
|
|
|
|
|
|
|
yield temp_workdir
|
|
|
|
|
|
|
|
os.chdir(orig_workdir)
|
|
|
|
shutil.rmtree(temp_workdir)
|
|
|
|
|
|
|
|
|
2012-06-08 22:57:00 +00:00
|
|
|
def raises(exc, obj, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Assert that a callable raises a specified exception.
|
|
|
|
|
|
|
|
:exc An exception class or a string. If a class, assert that an
|
|
|
|
exception of this type is raised. If a string, assert that the string
|
|
|
|
occurs in the string representation of the exception, based on a
|
|
|
|
case-insenstivie match.
|
|
|
|
|
|
|
|
:obj A callable object.
|
|
|
|
|
|
|
|
:args Arguments to be passsed to the callable.
|
|
|
|
|
|
|
|
:kwargs Arguments to be passed to the callable.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
apply(obj, args, kwargs)
|
|
|
|
except Exception, v:
|
|
|
|
if isinstance(exc, basestring):
|
|
|
|
if exc.lower() in str(v).lower():
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError(
|
|
|
|
"Expected %s, but caught %s"%(
|
|
|
|
repr(str(exc)), v
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
if isinstance(v, exc):
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError(
|
|
|
|
"Expected %s, but caught %s %s"%(
|
|
|
|
exc.__name__, v.__class__.__name__, str(v)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
raise AssertionError("No exception raised.")
|
2013-01-05 12:16:08 +00:00
|
|
|
|
2012-06-09 01:42:43 +00:00
|
|
|
test_data = utils.Data(__name__)
|