2015-05-19 07:44:45 +02:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
|
2018-02-05 12:19:50 +01:00
|
|
|
# Copyright 2015-2018 Florian Bruhin (The Compiler) <mail@qutebrowser.org>:
|
2015-05-19 07:44:45 +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/>.
|
|
|
|
|
|
|
|
"""pytest fixtures for tests.keyinput."""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2018-03-04 19:38:15 +01:00
|
|
|
from PyQt5.QtCore import QEvent, Qt
|
|
|
|
from PyQt5.QtGui import QKeyEvent
|
|
|
|
|
|
|
|
from qutebrowser.keyinput import keyutils
|
|
|
|
|
2015-05-19 07:44:45 +02:00
|
|
|
|
2017-07-03 21:09:16 +02:00
|
|
|
BINDINGS = {'prompt': {'<Ctrl-a>': 'message-info ctrla',
|
|
|
|
'a': 'message-info a',
|
|
|
|
'ba': 'message-info ba',
|
|
|
|
'ax': 'message-info ax',
|
|
|
|
'ccc': 'message-info ccc',
|
2018-03-02 14:16:40 +01:00
|
|
|
'yY': 'yank -s',
|
2017-07-03 21:09:16 +02:00
|
|
|
'0': 'message-info 0'},
|
|
|
|
'command': {'foo': 'message-info bar',
|
|
|
|
'<Ctrl+X>': 'message-info ctrlx'},
|
|
|
|
'normal': {'a': 'message-info a', 'ba': 'message-info ba'}}
|
2017-09-22 15:28:45 +02:00
|
|
|
MAPPINGS = {
|
|
|
|
'x': 'a',
|
|
|
|
'b': 'a',
|
|
|
|
}
|
2015-05-19 07:44:45 +02:00
|
|
|
|
|
|
|
|
2016-08-22 07:40:24 +02:00
|
|
|
@pytest.fixture
|
2017-07-03 21:09:16 +02:00
|
|
|
def keyinput_bindings(config_stub, key_config_stub):
|
|
|
|
"""Register some test bindings."""
|
|
|
|
config_stub.val.bindings.default = {}
|
|
|
|
config_stub.val.bindings.commands = dict(BINDINGS)
|
2017-09-22 15:28:45 +02:00
|
|
|
config_stub.val.bindings.key_mappings = dict(MAPPINGS)
|
2018-03-04 19:38:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def fake_keyevent():
|
|
|
|
"""Fixture that when called will return a mock instance of a QKeyEvent."""
|
|
|
|
def func(key, modifiers=Qt.NoModifier, typ=QEvent.KeyPress):
|
|
|
|
"""Generate a new fake QKeyPressEvent."""
|
|
|
|
text = keyutils.KeyInfo(key, modifiers).text()
|
|
|
|
return QKeyEvent(QKeyEvent.KeyPress, key, modifiers, text)
|
|
|
|
|
|
|
|
return func
|