summaryrefslogtreecommitdiff
path: root/tests/unit/keyinput/conftest.py
blob: 96d07f744a4e02a561a4cae9d9e90cc467d857ba (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
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:

# Copyright 2015-2018 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/>.

"""pytest fixtures for tests.keyinput."""

import pytest

from PyQt5.QtCore import QEvent, Qt
from PyQt5.QtGui import QKeyEvent

from qutebrowser.keyinput import keyutils


BINDINGS = {'prompt': {'<Ctrl-a>': 'message-info ctrla',
                       'a': 'message-info a',
                       'ba': 'message-info ba',
                       'ax': 'message-info ax',
                       'ccc': 'message-info ccc',
                       'yY': 'yank -s',
                       '0': 'message-info 0'},
            'command': {'foo': 'message-info bar',
                        '<Ctrl+X>': 'message-info ctrlx'},
            'normal': {'a': 'message-info a', 'ba': 'message-info ba'}}
MAPPINGS = {
    'x': 'a',
    'b': 'a',
}


@pytest.fixture
def keyinput_bindings(config_stub, key_config_stub):
    """Register some test bindings."""
    config_stub.val.bindings.default = {}
    config_stub.val.bindings.commands = dict(BINDINGS)
    config_stub.val.bindings.key_mappings = dict(MAPPINGS)


@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