2015-04-13 07:47:09 +02:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
|
2017-05-09 21:37:03 +02:00
|
|
|
# Copyright 2015-2017 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
2015-04-13 07:47:09 +02:00
|
|
|
#
|
|
|
|
# This file is part of qutebrowser.
|
|
|
|
#
|
|
|
|
# qutebrowser is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# qutebrowser is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
"""Tests for qutebrowser.commands.runners."""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2017-10-17 11:49:46 +02:00
|
|
|
from qutebrowser.commands import runners, cmdexc, cmdutils
|
2015-04-13 07:47:09 +02:00
|
|
|
|
|
|
|
|
2017-07-02 17:18:58 +02:00
|
|
|
class TestCommandParser:
|
2015-04-13 07:47:09 +02:00
|
|
|
|
|
|
|
def test_parse_all(self, cmdline_test):
|
|
|
|
"""Test parsing of commands.
|
|
|
|
|
2017-02-05 00:13:11 +01:00
|
|
|
See https://github.com/qutebrowser/qutebrowser/issues/615
|
2015-04-13 07:47:09 +02:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cmdline_test: A pytest fixture which provides testcases.
|
|
|
|
"""
|
2017-07-02 17:18:58 +02:00
|
|
|
parser = runners.CommandParser()
|
2015-04-13 07:47:09 +02:00
|
|
|
if cmdline_test.valid:
|
2017-07-02 17:18:58 +02:00
|
|
|
parser.parse_all(cmdline_test.cmd, aliases=False)
|
2015-04-13 07:47:09 +02:00
|
|
|
else:
|
|
|
|
with pytest.raises(cmdexc.NoSuchCommandError):
|
2017-07-02 17:18:58 +02:00
|
|
|
parser.parse_all(cmdline_test.cmd, aliases=False)
|
2015-11-15 19:16:56 +01:00
|
|
|
|
2017-07-04 15:33:58 +02:00
|
|
|
def test_parse_all_with_alias(self, cmdline_test, monkeypatch,
|
|
|
|
config_stub):
|
2017-07-03 18:42:41 +02:00
|
|
|
if not cmdline_test.cmd:
|
|
|
|
pytest.skip("Empty command")
|
|
|
|
|
|
|
|
config_stub.val.aliases = {'alias_name': cmdline_test.cmd}
|
2016-06-12 22:31:10 +02:00
|
|
|
|
2017-07-02 17:18:58 +02:00
|
|
|
parser = runners.CommandParser()
|
2016-06-12 22:31:10 +02:00
|
|
|
if cmdline_test.valid:
|
2017-07-02 17:18:58 +02:00
|
|
|
assert len(parser.parse_all("alias_name")) > 0
|
2016-06-12 22:31:10 +02:00
|
|
|
else:
|
|
|
|
with pytest.raises(cmdexc.NoSuchCommandError):
|
2017-07-02 17:18:58 +02:00
|
|
|
parser.parse_all("alias_name")
|
2016-06-12 22:31:10 +02:00
|
|
|
|
2016-08-05 15:41:43 +02:00
|
|
|
@pytest.mark.parametrize('command', ['', ' '])
|
|
|
|
def test_parse_empty_with_alias(self, command):
|
2016-07-27 11:19:01 +02:00
|
|
|
"""An empty command should not crash.
|
|
|
|
|
2017-02-05 00:13:11 +01:00
|
|
|
See https://github.com/qutebrowser/qutebrowser/issues/1690
|
|
|
|
and https://github.com/qutebrowser/qutebrowser/issues/1773
|
2016-07-27 11:19:01 +02:00
|
|
|
"""
|
2017-07-02 17:18:58 +02:00
|
|
|
parser = runners.CommandParser()
|
2016-07-27 11:19:01 +02:00
|
|
|
with pytest.raises(cmdexc.NoSuchCommandError):
|
2017-07-02 17:18:58 +02:00
|
|
|
parser.parse_all(command)
|
2016-07-27 11:19:01 +02:00
|
|
|
|
2017-10-17 11:49:46 +02:00
|
|
|
|
|
|
|
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(cmdutils, 'cmd_dict', {
|
|
|
|
'one': stubs.FakeCommand(name='one'),
|
|
|
|
'two': stubs.FakeCommand(name='two'),
|
|
|
|
'two-foo': stubs.FakeCommand(name='two-foo'),
|
|
|
|
})
|
|
|
|
|
|
|
|
def test_partial_parsing(self, config_stub):
|
2016-06-06 16:18:49 +02:00
|
|
|
"""Test partial parsing with a runner where it's enabled.
|
|
|
|
|
|
|
|
The same with it being disabled is tested by test_parse_all.
|
|
|
|
"""
|
2017-07-02 17:18:58 +02:00
|
|
|
parser = runners.CommandParser(partial_match=True)
|
2017-10-17 11:49:46 +02:00
|
|
|
result = parser.parse('on')
|
|
|
|
assert result.cmd.name == 'one'
|
2017-10-10 22:51:40 +02:00
|
|
|
|
2017-10-10 22:52:57 +02:00
|
|
|
def test_dont_use_best_match(self, config_stub):
|
2017-10-10 22:51:40 +02:00
|
|
|
"""Test multiple completion options with use_best_match set to false.
|
|
|
|
|
|
|
|
Should raise NoSuchCommandError
|
|
|
|
"""
|
|
|
|
config_stub.val.completion.use_best_match = False
|
|
|
|
parser = runners.CommandParser(partial_match=True)
|
|
|
|
|
|
|
|
with pytest.raises(cmdexc.NoSuchCommandError):
|
2017-10-17 11:49:46 +02:00
|
|
|
parser.parse('tw')
|
2017-10-10 22:51:40 +02:00
|
|
|
|
2017-10-10 22:52:57 +02:00
|
|
|
def test_use_best_match(self, config_stub):
|
2017-10-10 22:51:40 +02:00
|
|
|
"""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
|
|
|
|
parser = runners.CommandParser(partial_match=True)
|
|
|
|
|
2017-10-17 11:49:46 +02:00
|
|
|
result = parser.parse('tw')
|
|
|
|
assert result.cmd.name == 'two'
|