2020-12-19 15:04:07 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# key-mapper - GUI for device specific keyboard mappings
|
|
|
|
# Copyright (C) 2020 sezanzeb <proxima@hip70890b.de>
|
|
|
|
#
|
|
|
|
# This file is part of key-mapper.
|
|
|
|
#
|
|
|
|
# key-mapper 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.
|
|
|
|
#
|
|
|
|
# key-mapper 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 key-mapper. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from evdev.ecodes import EV_REL, REL_X, REL_Y, REL_WHEEL, REL_HWHEEL
|
|
|
|
|
|
|
|
from keymapper.dev.ev_abs_mapper import ev_abs_mapper
|
|
|
|
from keymapper.config import config
|
2020-12-19 20:50:27 +00:00
|
|
|
from keymapper.mapping import Mapping
|
2020-12-19 15:04:07 +00:00
|
|
|
from keymapper.dev.ev_abs_mapper import MOUSE, WHEEL
|
|
|
|
|
|
|
|
from tests.test import InputDevice, UInput, MAX_ABS, clear_write_history, \
|
|
|
|
uinput_write_history
|
|
|
|
|
|
|
|
|
|
|
|
abs_state = [0, 0, 0, 0]
|
|
|
|
|
|
|
|
|
|
|
|
class TestEvAbsMapper(unittest.TestCase):
|
|
|
|
# there is also `test_abs_to_rel` in test_injector.py
|
|
|
|
def setUp(self):
|
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(loop)
|
|
|
|
|
2020-12-19 20:50:27 +00:00
|
|
|
self.mapping = Mapping()
|
|
|
|
|
2020-12-19 15:04:07 +00:00
|
|
|
device = InputDevice('/dev/input/event30')
|
|
|
|
uinput = UInput()
|
2020-12-19 20:50:27 +00:00
|
|
|
asyncio.ensure_future(ev_abs_mapper(
|
|
|
|
abs_state,
|
|
|
|
device,
|
|
|
|
uinput,
|
|
|
|
self.mapping
|
|
|
|
))
|
2020-12-19 15:04:07 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
config.clear_config()
|
2020-12-19 20:50:27 +00:00
|
|
|
self.mapping.clear_config()
|
2020-12-19 15:04:07 +00:00
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
|
2020-12-26 15:46:01 +00:00
|
|
|
try:
|
|
|
|
for task in asyncio.Task.all_tasks():
|
|
|
|
task.cancel()
|
|
|
|
|
|
|
|
loop.stop()
|
|
|
|
loop.close()
|
|
|
|
except RuntimeError:
|
|
|
|
pass
|
2020-12-19 15:04:07 +00:00
|
|
|
|
|
|
|
clear_write_history()
|
|
|
|
|
|
|
|
def do(self, a, b, c, d, expectation):
|
|
|
|
"""Present fake values to the loop and observe the outcome."""
|
|
|
|
clear_write_history()
|
|
|
|
abs_state[0] = a
|
|
|
|
abs_state[1] = b
|
|
|
|
abs_state[2] = c
|
|
|
|
abs_state[3] = d
|
|
|
|
# 3 frames
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
loop.run_until_complete(asyncio.sleep(3 / 60))
|
|
|
|
history = [h.t for h in uinput_write_history]
|
|
|
|
# sleep long enough to test if multiple events are written
|
|
|
|
self.assertGreater(len(history), 1)
|
|
|
|
self.assertIn(expectation, history)
|
|
|
|
self.assertEqual(history.count(expectation), len(history))
|
|
|
|
|
|
|
|
def test_joystick_purpose_1(self):
|
2020-12-19 20:50:27 +00:00
|
|
|
speed = 20
|
|
|
|
self.mapping.set('gamepad.joystick.non_linearity', 1)
|
|
|
|
self.mapping.set('gamepad.joystick.pointer_speed', speed)
|
|
|
|
self.mapping.set('gamepad.joystick.left_purpose', MOUSE)
|
|
|
|
self.mapping.set('gamepad.joystick.right_purpose', WHEEL)
|
2020-12-19 15:04:07 +00:00
|
|
|
|
2020-12-19 20:50:27 +00:00
|
|
|
self.do(MAX_ABS, 0, 0, 0, (EV_REL, REL_X, speed))
|
|
|
|
self.do(-MAX_ABS, 0, 0, 0, (EV_REL, REL_X, -speed))
|
|
|
|
self.do(0, MAX_ABS, 0, 0, (EV_REL, REL_Y, speed))
|
|
|
|
self.do(0, -MAX_ABS, 0, 0, (EV_REL, REL_Y, -speed))
|
2020-12-19 15:04:07 +00:00
|
|
|
|
|
|
|
# wheel event values are negative
|
|
|
|
self.do(0, 0, MAX_ABS, 0, (EV_REL, REL_HWHEEL, -1))
|
|
|
|
self.do(0, 0, -MAX_ABS, 0, (EV_REL, REL_HWHEEL, 1))
|
|
|
|
self.do(0, 0, 0, MAX_ABS, (EV_REL, REL_WHEEL, -1))
|
|
|
|
self.do(0, 0, 0, -MAX_ABS, (EV_REL, REL_WHEEL, 1))
|
|
|
|
|
|
|
|
def test_joystick_purpose_2(self):
|
2020-12-19 20:50:27 +00:00
|
|
|
speed = 30
|
|
|
|
config.set('gamepad.joystick.non_linearity', 1)
|
|
|
|
config.set('gamepad.joystick.pointer_speed', speed)
|
2020-12-19 15:04:07 +00:00
|
|
|
config.set('gamepad.joystick.left_purpose', WHEEL)
|
|
|
|
config.set('gamepad.joystick.right_purpose', MOUSE)
|
|
|
|
|
|
|
|
self.do(MAX_ABS, 0, 0, 0, (EV_REL, REL_HWHEEL, -1))
|
|
|
|
self.do(-MAX_ABS, 0, 0, 0, (EV_REL, REL_HWHEEL, 1))
|
|
|
|
self.do(0, MAX_ABS, 0, 0, (EV_REL, REL_WHEEL, -1))
|
|
|
|
self.do(0, -MAX_ABS, 0, 0, (EV_REL, REL_WHEEL, 1))
|
|
|
|
|
|
|
|
# wheel event values are negative
|
2020-12-19 20:50:27 +00:00
|
|
|
self.do(0, 0, MAX_ABS, 0, (EV_REL, REL_X, speed))
|
|
|
|
self.do(0, 0, -MAX_ABS, 0, (EV_REL, REL_X, -speed))
|
|
|
|
self.do(0, 0, 0, MAX_ABS, (EV_REL, REL_Y, speed))
|
|
|
|
self.do(0, 0, 0, -MAX_ABS, (EV_REL, REL_Y, -speed))
|
2020-12-19 15:04:07 +00:00
|
|
|
|
|
|
|
def test_joystick_purpose_3(self):
|
2020-12-19 20:50:27 +00:00
|
|
|
speed = 40
|
|
|
|
self.mapping.set('gamepad.joystick.non_linearity', 1)
|
|
|
|
config.set('gamepad.joystick.pointer_speed', speed)
|
|
|
|
self.mapping.set('gamepad.joystick.left_purpose', MOUSE)
|
2020-12-19 15:04:07 +00:00
|
|
|
config.set('gamepad.joystick.right_purpose', MOUSE)
|
|
|
|
|
2020-12-19 20:50:27 +00:00
|
|
|
self.do(MAX_ABS, 0, 0, 0, (EV_REL, REL_X, speed))
|
|
|
|
self.do(-MAX_ABS, 0, 0, 0, (EV_REL, REL_X, -speed))
|
|
|
|
self.do(0, MAX_ABS, 0, 0, (EV_REL, REL_Y, speed))
|
|
|
|
self.do(0, -MAX_ABS, 0, 0, (EV_REL, REL_Y, -speed))
|
2020-12-19 15:04:07 +00:00
|
|
|
|
|
|
|
# wheel event values are negative
|
2020-12-19 20:50:27 +00:00
|
|
|
self.do(0, 0, MAX_ABS, 0, (EV_REL, REL_X, speed))
|
|
|
|
self.do(0, 0, -MAX_ABS, 0, (EV_REL, REL_X, -speed))
|
|
|
|
self.do(0, 0, 0, MAX_ABS, (EV_REL, REL_Y, speed))
|
|
|
|
self.do(0, 0, 0, -MAX_ABS, (EV_REL, REL_Y, -speed))
|
2020-12-19 15:04:07 +00:00
|
|
|
|
|
|
|
def test_joystick_purpose_4(self):
|
|
|
|
config.set('gamepad.joystick.left_purpose', WHEEL)
|
|
|
|
config.set('gamepad.joystick.right_purpose', WHEEL)
|
|
|
|
|
|
|
|
self.do(MAX_ABS, 0, 0, 0, (EV_REL, REL_HWHEEL, -1))
|
|
|
|
self.do(-MAX_ABS, 0, 0, 0, (EV_REL, REL_HWHEEL, 1))
|
|
|
|
self.do(0, MAX_ABS, 0, 0, (EV_REL, REL_WHEEL, -1))
|
|
|
|
self.do(0, -MAX_ABS, 0, 0, (EV_REL, REL_WHEEL, 1))
|
|
|
|
|
|
|
|
# wheel event values are negative
|
|
|
|
self.do(0, 0, MAX_ABS, 0, (EV_REL, REL_HWHEEL, -1))
|
|
|
|
self.do(0, 0, -MAX_ABS, 0, (EV_REL, REL_HWHEEL, 1))
|
|
|
|
self.do(0, 0, 0, MAX_ABS, (EV_REL, REL_WHEEL, -1))
|
|
|
|
self.do(0, 0, 0, -MAX_ABS, (EV_REL, REL_WHEEL, 1))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|