4b00a17d71
Ensure MarkKeyParser implements on_keyconfig_changed, so it doesn't fail when rebinding a key. It doesn't have keybindings, so the implementation is just `pass`. This also fixes a few flake8 style errors.
62 lines
2.1 KiB
Python
62 lines
2.1 KiB
Python
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
# Copyright 2016 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# 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/>.
|
|
|
|
import pytest
|
|
|
|
from qutebrowser.keyinput import modeman as modeman_module
|
|
from qutebrowser.utils import usertypes
|
|
|
|
from PyQt5.QtCore import Qt, QObject, pyqtSignal
|
|
|
|
|
|
class FakeKeyparser(QObject):
|
|
|
|
"""A fake BaseKeyParser which doesn't handle anything."""
|
|
|
|
request_leave = pyqtSignal(usertypes.KeyMode, str)
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.passthrough = False
|
|
|
|
def handle(self, evt):
|
|
return False
|
|
|
|
|
|
@pytest.fixture
|
|
def modeman(config_stub, qapp):
|
|
config_stub.data = {'input': {'forward-unbound-keys': 'auto'}}
|
|
mm = modeman_module.ModeManager(0)
|
|
mm.register(usertypes.KeyMode.normal, FakeKeyparser())
|
|
return mm
|
|
|
|
|
|
@pytest.mark.parametrize('key, modifiers, text, filtered', [
|
|
(Qt.Key_A, Qt.NoModifier, 'a', True),
|
|
(Qt.Key_Up, Qt.NoModifier, '', False),
|
|
# https://github.com/The-Compiler/qutebrowser/issues/1207
|
|
(Qt.Key_A, Qt.ShiftModifier, 'A', True),
|
|
(Qt.Key_A, Qt.ShiftModifier | Qt.ControlModifier, 'x', False),
|
|
])
|
|
def test_non_alphanumeric(key, modifiers, text, filtered,
|
|
fake_keyevent_factory, modeman):
|
|
"""Make sure non-alphanumeric keys are passed through correctly."""
|
|
evt = fake_keyevent_factory(key=key, modifiers=modifiers, text=text)
|
|
assert modeman.eventFilter(evt) == filtered
|