Beispiel #1
0
    def test_no_script_file(self):
        with pytest.raises(Exception, match="not found"):
            script.parse_command("notfound")

        with tutils.tmpdir() as dir:
            with pytest.raises(Exception, match="Not a file"):
                script.parse_command(dir)
Beispiel #2
0
    def test_no_script_file(self):
        with tutils.raises("not found"):
            script.parse_command("notfound")

        with tutils.tmpdir() as dir:
            with tutils.raises("not a file"):
                script.parse_command(dir)
Beispiel #3
0
    def test_no_script_file(self):
        with pytest.raises(Exception, match="not found"):
            script.parse_command("notfound")

        with tutils.tmpdir() as dir:
            with pytest.raises(Exception, match="Not a file"):
                script.parse_command(dir)
Beispiel #4
0
    def test_no_script_file(self):
        with tutils.raises("not found"):
            script.parse_command("notfound")

        with tutils.tmpdir() as dir:
            with tutils.raises("not a file"):
                script.parse_command(dir)
Beispiel #5
0
 def test_parse_windows(self):
     with tutils.chdir(tutils.test_data.dirname):
         assert script.parse_command("data\\addonscripts\\recorder.py") == (
             "data\\addonscripts\\recorder.py", [])
         assert script.parse_command(
             "data\\addonscripts\\recorder.py 'foo \\ bar'") == (
                 "data\\addonscripts\\recorder.py", ['foo \\ bar'])
Beispiel #6
0
 def test_parse_windows(self):
     with tutils.chdir(tutils.test_data.dirname):
         assert script.parse_command(
             "mitmproxy/data\\addonscripts\\recorder.py"
         ) == ("mitmproxy/data\\addonscripts\\recorder.py", [])
         assert script.parse_command(
             "mitmproxy/data\\addonscripts\\recorder.py 'foo \\ bar'"
         ) == ("mitmproxy/data\\addonscripts\\recorder.py", ['foo \\ bar'])
Beispiel #7
0
 def test_parse_args(self):
     with tutils.chdir(tutils.test_data.dirname):
         assert script.parse_command("data/addonscripts/recorder.py") == (
             "data/addonscripts/recorder.py", [])
         assert script.parse_command("data/addonscripts/recorder.py foo bar"
                                     ) == ("data/addonscripts/recorder.py",
                                           ["foo", "bar"])
         assert script.parse_command(
             "data/addonscripts/recorder.py 'foo bar'") == (
                 "data/addonscripts/recorder.py", ["foo bar"])
Beispiel #8
0
 def test_parse_args(self):
     with tutils.chdir(tutils.test_data.dirname):
         assert script.parse_command(
             "mitmproxy/data/addonscripts/recorder.py"
         ) == ("mitmproxy/data/addonscripts/recorder.py", [])
         assert script.parse_command(
             "mitmproxy/data/addonscripts/recorder.py foo bar"
         ) == ("mitmproxy/data/addonscripts/recorder.py", ["foo", "bar"])
         assert script.parse_command(
             "mitmproxy/data/addonscripts/recorder.py 'foo bar'"
         ) == ("mitmproxy/data/addonscripts/recorder.py", ["foo bar"])
Beispiel #9
0
    def test_empty_command(self):
        with tutils.raises(exceptions.AddonError):
            script.parse_command("")

        with tutils.raises(exceptions.AddonError):
            script.parse_command("  ")
Beispiel #10
0
    def test_no_script_file(self, tmpdir):
        with pytest.raises(Exception, match="not found"):
            script.parse_command("notfound")

        with pytest.raises(Exception, match="Not a file"):
            script.parse_command(str(tmpdir))
Beispiel #11
0
    def test_empty_command(self):
        with pytest.raises(ValueError):
            script.parse_command("")

        with pytest.raises(ValueError):
            script.parse_command("  ")
Beispiel #12
0
 def is_error(self, col, val):
     try:
         script.parse_command(val)
     except exceptions.OptionsError as e:
         return str(e)
Beispiel #13
0
    def test_empty_command(self):
        with tutils.raises(exceptions.AddonError):
            script.parse_command("")

        with tutils.raises(exceptions.AddonError):
            script.parse_command("  ")
Beispiel #14
0
 def is_error(self, col, val):
     try:
         script.parse_command(val)
     except exceptions.AddonError as e:
         return str(e)
Beispiel #15
0
    def test_empty_command(self):
        with tutils.raises(ValueError):
            script.parse_command("")

        with tutils.raises(ValueError):
            script.parse_command("  ")