Пример #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)
Пример #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)
Пример #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)
Пример #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)
Пример #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'])
Пример #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'])
Пример #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"])
Пример #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"])
Пример #9
0
    def test_empty_command(self):
        with tutils.raises(exceptions.AddonError):
            script.parse_command("")

        with tutils.raises(exceptions.AddonError):
            script.parse_command("  ")
Пример #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))
Пример #11
0
    def test_empty_command(self):
        with pytest.raises(ValueError):
            script.parse_command("")

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

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

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