diff options
author | kira0204 <rshtmudgal@gmail.com> | 2018-04-10 08:33:40 +0530 |
---|---|---|
committer | kira0204 <rshtmudgal@gmail.com> | 2018-04-10 08:33:40 +0530 |
commit | 6780e5025a971e27f921aecf92ccf4ed5a05c7e0 (patch) | |
tree | 85399f144d4a7aef07b86a93225b2950b2df7b50 /test | |
parent | 5e2a1ec23c74e4b75278d36b65f74d565ce7d847 (diff) | |
download | mitmproxy-6780e5025a971e27f921aecf92ccf4ed5a05c7e0.tar.gz mitmproxy-6780e5025a971e27f921aecf92ccf4ed5a05c7e0.tar.bz2 mitmproxy-6780e5025a971e27f921aecf92ccf4ed5a05c7e0.zip |
Handling user script exceptions, fix #2839
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/addons/test_script.py | 23 | ||||
-rw-r--r-- | test/mitmproxy/data/addonscripts/recorder/error.py | 7 |
2 files changed, 23 insertions, 7 deletions
diff --git a/test/mitmproxy/addons/test_script.py b/test/mitmproxy/addons/test_script.py index 3f0ce68c..96e19841 100644 --- a/test/mitmproxy/addons/test_script.py +++ b/test/mitmproxy/addons/test_script.py @@ -12,18 +12,27 @@ from mitmproxy.test import tflow from mitmproxy.test import tutils -def test_load_script(): - ns = script.load_script( - tutils.test_data.path( - "mitmproxy/data/addonscripts/recorder/recorder.py" +@pytest.mark.asyncio +async def test_load_script(): + with taddons.context() as tctx: + ns = script.load_script( + tutils.test_data.path( + "mitmproxy/data/addonscripts/recorder/recorder.py" + ) ) - ) - assert ns.addons + assert ns.addons - with pytest.raises(FileNotFoundError): script.load_script( "nonexistent" ) + assert await tctx.master.await_log("No such file or directory") + + script.load_script( + tutils.test_data.path( + "mitmproxy/data/addonscripts/recorder/error.py" + ) + ) + assert await tctx.master.await_log("invalid syntax") def test_load_fullname(): diff --git a/test/mitmproxy/data/addonscripts/recorder/error.py b/test/mitmproxy/data/addonscripts/recorder/error.py new file mode 100644 index 00000000..2e7e648a --- /dev/null +++ b/test/mitmproxy/data/addonscripts/recorder/error.py @@ -0,0 +1,7 @@ +""" +This file is intended to have syntax errors for test purposes +""" + +impotr recorder # Intended Syntax Error + +addons = [recorder.Recorder("e")] |