From e9a96f4d7f087bb9f01a48224a0b0090635c91f1 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Thu, 3 Nov 2016 19:36:34 +1300 Subject: [PATCH] addons.script: 100% test coverage --- mitmproxy/test/taddons.py | 3 ++ test/mitmproxy/addons/test_script.py | 51 ++++++++++++++++++++++++++-- 2 files changed, 52 insertions(+), 2 deletions(-) diff --git a/mitmproxy/test/taddons.py b/mitmproxy/test/taddons.py index 7804b90db..a25b68917 100644 --- a/mitmproxy/test/taddons.py +++ b/mitmproxy/test/taddons.py @@ -15,6 +15,9 @@ class RecordingMaster(mitmproxy.master.Master): def add_log(self, e, level): self.event_log.append((level, e)) + def clear(self): + self.event_log = [] + class context: """ diff --git a/test/mitmproxy/addons/test_script.py b/test/mitmproxy/addons/test_script.py index 23e9f1f1a..c31f4e9b0 100644 --- a/test/mitmproxy/addons/test_script.py +++ b/test/mitmproxy/addons/test_script.py @@ -9,12 +9,59 @@ from mitmproxy.test import taddons from mitmproxy import exceptions from mitmproxy import options from mitmproxy import proxy -from mitmproxy.addons import script from mitmproxy import master +from mitmproxy.addons import script + +import watchdog.events + from .. import tutils as ttutils +def test_ns(): + n = script.NS({}) + n.one = "one" + assert n.one == "one" + assert n.__dict__["ns"]["one"] == "one" + + +def test_scriptenv(): + with taddons.context() as tctx: + with script.scriptenv("path", []): + raise SystemExit + assert tctx.master.event_log[0][0] == "error" + assert "exited" in tctx.master.event_log[0][1] + + tctx.master.clear() + with script.scriptenv("path", []): + raise ValueError("fooo") + assert tctx.master.event_log[0][0] == "error" + assert "foo" in tctx.master.event_log[0][1] + + +class Called: + def __init__(self): + self.called = False + + def __call__(self, *args, **kwargs): + self.called = True + + +def test_reloadhandler(): + rh = script.ReloadHandler(Called()) + assert not rh.filter(watchdog.events.DirCreatedEvent("path")) + assert not rh.filter(watchdog.events.FileModifiedEvent("/foo/.bar")) + assert rh.filter(watchdog.events.FileModifiedEvent("/foo/bar")) + + assert not rh.callback.called + rh.on_modified(watchdog.events.FileModifiedEvent("/foo/bar")) + assert rh.callback.called + rh.callback.called = False + + rh.on_created(watchdog.events.FileCreatedEvent("foo")) + assert rh.callback.called + + class TestParseCommand: def test_empty_command(self): with tutils.raises(exceptions.AddonError): @@ -65,7 +112,7 @@ def test_load_script(): class TestScript: def test_simple(self): - with taddons.context() as tctx: + with taddons.context(): sc = script.Script( tutils.test_data.path( "mitmproxy/data/addonscripts/recorder.py"