summaryrefslogtreecommitdiff
path: root/tests/unit/commands/test_parser.py
blob: d13e65504585911dc968759bb13502d8a0017acf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Copyright 2015-2021 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later

"""Tests for qutebrowser.commands.parser."""

import re

import pytest

from qutebrowser.misc import objects
from qutebrowser.commands import parser, cmdexc


class TestCommandParser:

    def test_parse_all(self, cmdline_test):
        """Test parsing of commands.

        See https://github.com/qutebrowser/qutebrowser/issues/615

        Args:
            cmdline_test: A pytest fixture which provides testcases.
        """
        p = parser.CommandParser()
        if cmdline_test.valid:
            p.parse_all(cmdline_test.cmd, aliases=False)
        else:
            with pytest.raises(cmdexc.NoSuchCommandError):
                p.parse_all(cmdline_test.cmd, aliases=False)

    def test_parse_all_with_alias(self, cmdline_test, monkeypatch,
                                  config_stub):
        if not cmdline_test.cmd:
            pytest.skip("Empty command")

        config_stub.val.aliases = {'alias_name': cmdline_test.cmd}

        p = parser.CommandParser()
        if cmdline_test.valid:
            assert len(p.parse_all("alias_name")) > 0
        else:
            with pytest.raises(cmdexc.NoSuchCommandError):
                p.parse_all("alias_name")

    @pytest.mark.parametrize('command', ['', ' '])
    def test_parse_empty_with_alias(self, command):
        """An empty command should not crash.

        See https://github.com/qutebrowser/qutebrowser/issues/1690
        and https://github.com/qutebrowser/qutebrowser/issues/1773
        """
        p = parser.CommandParser()
        with pytest.raises(cmdexc.EmptyCommandError):
            p.parse_all(command)

    @pytest.mark.parametrize('command, name, args', [
        ("set-cmd-text -s :open", "set-cmd-text", ["-s", ":open"]),
        ("set-cmd-text :open {url:pretty}", "set-cmd-text",
         [":open {url:pretty}"]),
        ("set-cmd-text -s :open -t", "set-cmd-text", ["-s", ":open -t"]),
        ("set-cmd-text :open -t -r {url:pretty}", "set-cmd-text",
         [":open -t -r {url:pretty}"]),
        ("set-cmd-text -s :open -b", "set-cmd-text", ["-s", ":open -b"]),
        ("set-cmd-text :open -b -r {url:pretty}", "set-cmd-text",
         [":open -b -r {url:pretty}"]),
        ("set-cmd-text -s :open -w", "set-cmd-text",
         ["-s", ":open -w"]),
        ("set-cmd-text :open -w {url:pretty}", "set-cmd-text",
         [":open -w {url:pretty}"]),
        ("set-cmd-text /", "set-cmd-text", ["/"]),
        ("set-cmd-text ?", "set-cmd-text", ["?"]),
        ("set-cmd-text :", "set-cmd-text", [":"]),
    ])
    def test_parse_result(self, config_stub, command, name, args):
        p = parser.CommandParser()
        result = p.parse_all(command)[0]
        assert result.cmd.name == name
        assert result.args == args


class TestCompletions:

    """Tests for completions.use_best_match."""

    @pytest.fixture(autouse=True)
    def cmdutils_stub(self, monkeypatch, stubs):
        """Patch the cmdutils module to provide fake commands."""
        monkeypatch.setattr(objects, 'commands', {
            'one': stubs.FakeCommand(name='one'),
            'two': stubs.FakeCommand(name='two'),
            'two-foo': stubs.FakeCommand(name='two-foo'),
        })

    def test_partial_parsing(self, config_stub):
        """Test partial parsing with a runner where it's enabled.

        The same with it being disabled is tested by test_parse_all.
        """
        p = parser.CommandParser(partial_match=True)
        result = p.parse('on')
        assert result.cmd.name == 'one'

    def test_dont_use_best_match(self, config_stub):
        """Test multiple completion options with use_best_match set to false.

        Should raise NoSuchCommandError
        """
        config_stub.val.completion.use_best_match = False
        p = parser.CommandParser(partial_match=True)

        with pytest.raises(cmdexc.NoSuchCommandError):
            p.parse('tw')

    def test_use_best_match(self, config_stub):
        """Test multiple completion options with use_best_match set to true.

        The resulting command should be the best match
        """
        config_stub.val.completion.use_best_match = True
        p = parser.CommandParser(partial_match=True)

        result = p.parse('tw')
        assert result.cmd.name == 'two'


@pytest.mark.parametrize("find_similar, msg", [
    (True, "tabfocus: no such command (did you mean :tab-focus?)"),
    (False, "tabfocus: no such command"),
])
def test_find_similar(find_similar, msg):
    p = parser.CommandParser(find_similar=find_similar)
    with pytest.raises(cmdexc.NoSuchCommandError, match=re.escape(msg)):
        p.parse_all("tabfocus", aliases=False)