input-remapper/tests/unit/test_context.py

101 lines
3.6 KiB
Python
Raw Normal View History

#!/usr/bin/python3
# -*- coding: utf-8 -*-
2022-01-01 12:00:49 +00:00
# input-remapper - GUI for device specific keyboard mappings
2022-01-01 12:52:33 +00:00
# Copyright (C) 2022 sezanzeb <proxima@sezanzeb.de>
#
2022-01-01 12:00:49 +00:00
# This file is part of input-remapper.
#
2022-01-01 12:00:49 +00:00
# input-remapper 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.
#
2022-01-01 12:00:49 +00:00
# input-remapper 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
2022-01-01 12:00:49 +00:00
# along with input-remapper. If not, see <https://www.gnu.org/licenses/>.
2022-12-15 13:43:03 +00:00
from inputremapper.configs.input_config import InputConfig
2022-11-23 21:55:28 +00:00
from tests.lib.cleanup import quick_cleanup
2022-12-15 13:43:03 +00:00
from tests.lib.fixtures import get_key_mapping, get_combination_config
2022-04-17 10:19:23 +00:00
from evdev.ecodes import (
EV_REL,
EV_ABS,
ABS_X,
ABS_Y,
REL_WHEEL_HI_RES,
REL_HWHEEL_HI_RES,
)
import unittest
2022-01-01 12:00:49 +00:00
from inputremapper.injection.context import Context
2022-01-31 19:58:37 +00:00
from inputremapper.configs.preset import Preset
2022-04-17 10:19:23 +00:00
from inputremapper.configs.mapping import Mapping
class TestContext(unittest.TestCase):
2021-09-29 18:17:45 +00:00
@classmethod
def setUpClass(cls):
quick_cleanup()
2022-04-17 10:19:23 +00:00
def test_callbacks(self):
preset = Preset()
cfg = {
2022-12-15 13:43:03 +00:00
"input_combination": get_combination_config((EV_ABS, ABS_X)),
2022-04-17 10:19:23 +00:00
"target_uinput": "mouse",
"output_type": EV_REL,
"output_code": REL_HWHEEL_HI_RES,
}
preset.add(Mapping(**cfg)) # abs x -> wheel
2022-12-15 13:43:03 +00:00
cfg["input_combination"] = get_combination_config((EV_ABS, ABS_Y))
2022-04-17 10:19:23 +00:00
cfg["output_code"] = REL_WHEEL_HI_RES
preset.add(Mapping(**cfg)) # abs y -> wheel
2022-12-15 13:43:03 +00:00
preset.add(get_key_mapping(get_combination_config((1, 31)), "keyboard", "k(a)"))
preset.add(get_key_mapping(get_combination_config((1, 32)), "keyboard", "b"))
2022-04-17 10:19:23 +00:00
# overlapping combination for (1, 32, 1)
preset.add(
get_key_mapping(
2022-12-15 13:43:03 +00:00
get_combination_config((1, 32), (1, 33), (1, 34)),
"keyboard",
"c",
2022-04-17 10:19:23 +00:00
)
2022-01-31 19:58:37 +00:00
)
2022-04-17 10:19:23 +00:00
# map abs x to key "b"
preset.add(
2022-12-15 13:43:03 +00:00
get_key_mapping(
get_combination_config((EV_ABS, ABS_X, 20)),
"keyboard",
"d",
),
2021-09-26 10:44:56 +00:00
)
2022-04-17 10:19:23 +00:00
context = Context(preset)
# expected callbacks and their lengths:
callbacks = {
2022-12-15 13:43:03 +00:00
# ABS_X -> "d" and ABS_X -> wheel have the same type and code
InputConfig(type=EV_ABS, code=ABS_X).input_match_hash: 2,
InputConfig(type=EV_ABS, code=ABS_Y).input_match_hash: 1,
InputConfig(type=1, code=31).input_match_hash: 1,
2022-04-17 10:19:23 +00:00
# even though we have 2 mappings with this type and code, we only expect one callback
# because they both map to keys. We don't want to trigger two mappings with the same key press
2022-12-15 13:43:03 +00:00
InputConfig(type=1, code=32).input_match_hash: 1,
InputConfig(type=1, code=33).input_match_hash: 1,
InputConfig(type=1, code=34).input_match_hash: 1,
2022-04-17 10:19:23 +00:00
}
2022-12-15 13:43:03 +00:00
self.assertEqual(set(callbacks.keys()), set(context._notify_callbacks.keys()))
2022-04-17 10:19:23 +00:00
for key, val in callbacks.items():
2022-12-15 13:43:03 +00:00
self.assertEqual(val, len(context._notify_callbacks[key]))
# 7 unique input events in the preset
self.assertEqual(7, len(context._handlers))
if __name__ == "__main__":
unittest.main()