2011-01-30 22:48:53 +00:00
|
|
|
from libmproxy import console, proxy, filt, flow
|
|
|
|
import utils
|
2010-02-16 04:09:07 +00:00
|
|
|
import libpry
|
|
|
|
|
|
|
|
|
|
|
|
class uState(libpry.AutoTree):
|
|
|
|
def test_flow(self):
|
|
|
|
"""
|
|
|
|
normal flow:
|
|
|
|
|
|
|
|
connect -> request -> response
|
|
|
|
"""
|
2011-02-03 01:51:32 +00:00
|
|
|
bc = proxy.ClientConnection("address", 22)
|
2011-01-25 02:02:48 +00:00
|
|
|
c = console.ConsoleState()
|
2011-01-30 22:44:52 +00:00
|
|
|
f = flow.Flow(bc)
|
2010-02-16 04:09:07 +00:00
|
|
|
c.add_browserconnect(f)
|
|
|
|
assert c.lookup(bc)
|
|
|
|
assert c.get_focus() == (f, 0)
|
|
|
|
|
|
|
|
def test_focus(self):
|
|
|
|
"""
|
|
|
|
normal flow:
|
|
|
|
|
|
|
|
connect -> request -> response
|
|
|
|
"""
|
2011-01-25 02:02:48 +00:00
|
|
|
c = console.ConsoleState()
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2011-02-03 01:51:32 +00:00
|
|
|
bc = proxy.ClientConnection("address", 22)
|
2011-01-30 22:44:52 +00:00
|
|
|
f = flow.Flow(bc)
|
2010-02-16 04:09:07 +00:00
|
|
|
c.add_browserconnect(f)
|
|
|
|
assert c.get_focus() == (f, 0)
|
|
|
|
assert c.get_from_pos(0) == (f, 0)
|
|
|
|
assert c.get_from_pos(1) == (None, None)
|
|
|
|
assert c.get_next(0) == (None, None)
|
|
|
|
|
2011-02-03 01:51:32 +00:00
|
|
|
bc2 = proxy.ClientConnection("address", 22)
|
2011-01-30 22:44:52 +00:00
|
|
|
f2 = flow.Flow(bc2)
|
2010-02-16 04:09:07 +00:00
|
|
|
c.add_browserconnect(f2)
|
|
|
|
assert c.get_focus() == (f, 1)
|
|
|
|
assert c.get_next(0) == (f, 1)
|
|
|
|
assert c.get_prev(1) == (f2, 0)
|
|
|
|
assert c.get_next(1) == (None, None)
|
|
|
|
|
|
|
|
c.set_focus(0)
|
|
|
|
assert c.get_focus() == (f2, 0)
|
|
|
|
c.set_focus(-1)
|
|
|
|
assert c.get_focus() == (f2, 0)
|
|
|
|
|
|
|
|
c.delete_flow(f2)
|
|
|
|
assert c.get_focus() == (f, 0)
|
|
|
|
c.delete_flow(f)
|
|
|
|
assert c.get_focus() == (None, None)
|
|
|
|
|
|
|
|
def _add_request(self, state):
|
2011-01-30 22:48:53 +00:00
|
|
|
f = utils.tflow()
|
2010-02-16 04:09:07 +00:00
|
|
|
state.add_browserconnect(f)
|
2011-02-03 01:51:32 +00:00
|
|
|
q = utils.treq(f.client_conn)
|
2010-02-16 04:09:07 +00:00
|
|
|
state.add_request(q)
|
|
|
|
return f
|
|
|
|
|
|
|
|
def _add_response(self, state):
|
|
|
|
f = self._add_request(state)
|
2011-01-30 22:48:53 +00:00
|
|
|
r = utils.tresp(f.request)
|
2010-02-16 04:09:07 +00:00
|
|
|
state.add_response(r)
|
|
|
|
|
2011-02-02 23:16:03 +00:00
|
|
|
def test_add_request(self):
|
2011-01-25 02:02:48 +00:00
|
|
|
c = console.ConsoleState()
|
2011-01-30 22:48:53 +00:00
|
|
|
f = utils.tflow()
|
2010-02-16 04:09:07 +00:00
|
|
|
c.add_browserconnect(f)
|
2011-02-03 01:51:32 +00:00
|
|
|
q = utils.treq(f.client_conn)
|
2011-02-02 23:16:03 +00:00
|
|
|
c.focus = None
|
|
|
|
assert c.add_request(q)
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2011-02-02 23:16:03 +00:00
|
|
|
def test_add_response(self):
|
2011-01-25 02:02:48 +00:00
|
|
|
c = console.ConsoleState()
|
2011-02-02 23:16:03 +00:00
|
|
|
f = self._add_request(c)
|
|
|
|
r = utils.tresp(f.request)
|
|
|
|
c.focus = None
|
|
|
|
c.add_response(r)
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2011-02-02 23:16:03 +00:00
|
|
|
def test_focus_view(self):
|
2011-01-26 03:50:17 +00:00
|
|
|
c = console.ConsoleState()
|
|
|
|
self._add_request(c)
|
|
|
|
self._add_response(c)
|
|
|
|
self._add_request(c)
|
|
|
|
self._add_response(c)
|
|
|
|
self._add_request(c)
|
|
|
|
self._add_response(c)
|
2011-02-02 23:16:03 +00:00
|
|
|
c.set_limit(filt.parse("~q"))
|
|
|
|
assert len(c.view) == 3
|
|
|
|
assert c.focus == 2
|
2011-01-26 03:50:17 +00:00
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
|
|
|
|
class uformat_keyvals(libpry.AutoTree):
|
|
|
|
def test_simple(self):
|
|
|
|
assert console.format_keyvals(
|
|
|
|
[
|
|
|
|
("aa", "bb"),
|
2011-02-02 23:16:03 +00:00
|
|
|
None,
|
2010-02-16 04:09:07 +00:00
|
|
|
("cc", "dd"),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2011-02-02 23:16:03 +00:00
|
|
|
|
|
|
|
class uformat_flow(libpry.AutoTree):
|
|
|
|
def test_simple(self):
|
|
|
|
f = utils.tflow()
|
|
|
|
assert ('focus', '>> ') not in console.format_flow(f, False)
|
|
|
|
assert ('focus', '>> ') in console.format_flow(f, True)
|
|
|
|
|
2011-02-03 00:30:47 +00:00
|
|
|
assert ('focus', '>> ') not in console.format_flow(f, False, True)
|
|
|
|
assert ('focus', '>> ') in console.format_flow(f, True, True)
|
|
|
|
|
2011-02-02 23:16:03 +00:00
|
|
|
f.response = utils.tresp()
|
|
|
|
f.request = f.response.request
|
|
|
|
f.backup()
|
|
|
|
|
|
|
|
assert ('method', '[edited] ') in console.format_flow(f, True)
|
2011-02-03 00:30:47 +00:00
|
|
|
assert ('method', '[edited] ') in console.format_flow(f, True, True)
|
2011-02-03 01:51:32 +00:00
|
|
|
f.client_conn = flow.ReplayConnection()
|
2011-02-02 23:16:03 +00:00
|
|
|
assert ('method', '[replay] ') in console.format_flow(f, True)
|
2011-02-03 00:30:47 +00:00
|
|
|
assert ('method', '[replay] ') in console.format_flow(f, True, True)
|
2011-02-02 23:16:03 +00:00
|
|
|
|
|
|
|
|
2011-01-26 21:29:37 +00:00
|
|
|
class uPathCompleter(libpry.AutoTree):
|
2011-02-03 00:50:57 +00:00
|
|
|
def test_lookup_construction(self):
|
|
|
|
c = console._PathCompleter()
|
|
|
|
assert c.complete("/tm") == "/tmp/"
|
|
|
|
c.reset()
|
|
|
|
|
|
|
|
assert c.complete("./completion/a") == "./completion/aaa"
|
|
|
|
c.reset()
|
|
|
|
assert c.complete("./completion/aaa") == "./completion/aaa"
|
|
|
|
assert c.complete("./completion/aaa") == "./completion/aab"
|
|
|
|
|
|
|
|
|
2011-01-26 21:29:37 +00:00
|
|
|
def test_completion(self):
|
|
|
|
c = console._PathCompleter(True)
|
|
|
|
c.reset()
|
|
|
|
c.lookup = [
|
|
|
|
("a", "x/a"),
|
|
|
|
("aa", "x/aa"),
|
|
|
|
]
|
|
|
|
assert c.complete("a") == "a"
|
|
|
|
assert c.final == "x/a"
|
|
|
|
assert c.complete("a") == "aa"
|
|
|
|
assert c.complete("a") == "a"
|
|
|
|
|
|
|
|
c = console._PathCompleter(True)
|
|
|
|
r = c.complete("l")
|
|
|
|
assert c.final.endswith(r)
|
|
|
|
|
|
|
|
c.reset()
|
|
|
|
assert c.complete("/nonexistent") == "/nonexistent"
|
|
|
|
assert c.final == "/nonexistent"
|
|
|
|
c.reset()
|
|
|
|
assert c.complete("~") != "~"
|
|
|
|
|
|
|
|
c.reset()
|
|
|
|
s = "thisisatotallynonexistantpathforsure"
|
|
|
|
assert c.complete(s) == s
|
|
|
|
assert c.final == s
|
|
|
|
|
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2011-02-03 00:50:57 +00:00
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
tests = [
|
|
|
|
uformat_keyvals(),
|
2011-02-02 23:16:03 +00:00
|
|
|
uformat_flow(),
|
2011-01-26 21:29:37 +00:00
|
|
|
uState(),
|
|
|
|
uPathCompleter()
|
2010-02-16 04:09:07 +00:00
|
|
|
]
|