aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2016-07-15 16:35:24 +1200
committerAldo Cortesi <aldo@nullcube.com>2016-07-15 16:35:24 +1200
commitc7d0850d8f697915b183f4fafd5ede7df2245569 (patch)
tree2e8ecc38f022c2b302d5ce67fd282dab45941fd9 /test
parent917d51bd22ea75408bcf461b09b6cf78c44e1162 (diff)
downloadmitmproxy-c7d0850d8f697915b183f4fafd5ede7df2245569.tar.gz
mitmproxy-c7d0850d8f697915b183f4fafd5ede7df2245569.tar.bz2
mitmproxy-c7d0850d8f697915b183f4fafd5ede7df2245569.zip
Script cleanups
- Preserve script order on config change - Prohibit script duplicates (i.e. identical script + args) - Various cleanups and tweaks
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/builtins/test_script.py62
-rw-r--r--test/mitmproxy/data/addonscripts/recorder.py9
2 files changed, 67 insertions, 4 deletions
diff --git a/test/mitmproxy/builtins/test_script.py b/test/mitmproxy/builtins/test_script.py
index 2c2568ed..da60b64c 100644
--- a/test/mitmproxy/builtins/test_script.py
+++ b/test/mitmproxy/builtins/test_script.py
@@ -58,8 +58,8 @@ class TestScript(mastertest.MasterTest):
)
m.addons.add(sc)
assert sc.ns["call_log"] == [
- ("start", (), {}),
- ("configure", (options.Options(),), {})
+ ("solo", "start", (), {}),
+ ("solo", "configure", (options.Options(),), {})
]
sc.ns["call_log"] = []
@@ -67,7 +67,7 @@ class TestScript(mastertest.MasterTest):
self.invoke(m, "request", f)
recf = sc.ns["call_log"][0]
- assert recf[0] == "request"
+ assert recf[1] == "request"
def test_reload(self):
s = state.State()
@@ -129,3 +129,59 @@ class TestScriptLoader(mastertest.MasterTest):
assert len(m.addons) == 2
o.update(scripts = [])
assert len(m.addons) == 1
+
+ def test_dupes(self):
+ s = state.State()
+ o = options.Options(scripts=["one", "one"])
+ m = master.FlowMaster(o, None, s)
+ sc = script.ScriptLoader()
+ tutils.raises(exceptions.OptionsError, m.addons.add, sc)
+
+ def test_order(self):
+ rec = tutils.test_data.path("data/addonscripts/recorder.py")
+
+ s = state.State()
+ o = options.Options(
+ scripts = [
+ "%s %s" % (rec, "a"),
+ "%s %s" % (rec, "b"),
+ "%s %s" % (rec, "c"),
+ ]
+ )
+ m = mastertest.RecordingMaster(o, None, s)
+ sc = script.ScriptLoader()
+ m.addons.add(sc)
+
+ debug = [(i[0], i[1]) for i in m.event_log if i[0] == "debug"]
+ assert debug == [
+ ('debug', 'a start'), ('debug', 'a configure'),
+ ('debug', 'b start'), ('debug', 'b configure'),
+ ('debug', 'c start'), ('debug', 'c configure')
+ ]
+ m.event_log[:] = []
+
+ o.scripts = [
+ "%s %s" % (rec, "c"),
+ "%s %s" % (rec, "a"),
+ "%s %s" % (rec, "b"),
+ ]
+ debug = [(i[0], i[1]) for i in m.event_log if i[0] == "debug"]
+ assert debug == [
+ ('debug', 'c configure'),
+ ('debug', 'a configure'),
+ ('debug', 'b configure'),
+ ]
+ m.event_log[:] = []
+
+ o.scripts = [
+ "%s %s" % (rec, "x"),
+ "%s %s" % (rec, "a"),
+ ]
+ debug = [(i[0], i[1]) for i in m.event_log if i[0] == "debug"]
+ assert debug == [
+ ('debug', 'c done'),
+ ('debug', 'b done'),
+ ('debug', 'x start'),
+ ('debug', 'x configure'),
+ ('debug', 'a configure'),
+ ]
diff --git a/test/mitmproxy/data/addonscripts/recorder.py b/test/mitmproxy/data/addonscripts/recorder.py
index 728203e3..b6ac8d89 100644
--- a/test/mitmproxy/data/addonscripts/recorder.py
+++ b/test/mitmproxy/data/addonscripts/recorder.py
@@ -1,8 +1,14 @@
from mitmproxy import controller
from mitmproxy import ctx
+import sys
call_log = []
+if len(sys.argv) > 1:
+ name = sys.argv[1]
+else:
+ name = "solo"
+
# Keep a log of all possible event calls
evts = list(controller.Events) + ["configure"]
for i in evts:
@@ -10,9 +16,10 @@ for i in evts:
evt = i
def prox(*args, **kwargs):
- lg = (evt, args, kwargs)
+ lg = (name, evt, args, kwargs)
if evt != "log":
ctx.log.info(str(lg))
call_log.append(lg)
+ ctx.log.debug("%s %s" % (name, evt))
return prox
globals()[i] = mkprox()