input-remapper/tests/test.py

375 lines
10 KiB
Python
Raw Normal View History

2020-10-26 22:45:22 +00:00
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# key-mapper - GUI for device specific keyboard mappings
2020-10-26 22:45:22 +00:00
# Copyright (C) 2020 sezanzeb <proxima@hip70890b.de>
#
2020-10-31 13:02:59 +00:00
# This file is part of key-mapper.
2020-10-26 22:45:22 +00:00
#
2020-10-31 13:02:59 +00:00
# key-mapper is free software: you can redistribute it and/or modify
2020-10-26 22:45:22 +00:00
# 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.
#
2020-10-31 13:02:59 +00:00
# key-mapper is distributed in the hope that it will be useful,
2020-10-26 22:45:22 +00:00
# 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
2020-10-31 13:02:59 +00:00
# along with key-mapper. If not, see <https://www.gnu.org/licenses/>.
2020-10-26 22:45:22 +00:00
2020-10-31 13:02:59 +00:00
"""Sets up key-mapper for the tests and runs them."""
2020-10-26 22:45:22 +00:00
2020-11-29 15:21:34 +00:00
import os
2020-10-26 22:45:22 +00:00
import sys
2020-11-19 10:40:15 +00:00
import time
2020-12-03 19:03:53 +00:00
import copy
2020-10-26 22:45:22 +00:00
import unittest
2020-11-29 00:44:14 +00:00
import subprocess
2020-11-20 20:38:59 +00:00
import multiprocessing
2020-11-28 14:43:24 +00:00
import asyncio
import evdev
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('GLib', '2.0')
2020-11-16 14:39:15 +00:00
2020-11-29 15:21:34 +00:00
assert not os.getcwd().endswith('tests')
def is_service_running():
"""Check if the daemon is running."""
try:
subprocess.check_output(['pgrep', '-f', 'key-mapper-service'])
except subprocess.CalledProcessError:
return
# let tests control daemon existance
raise Exception('Expected the service not to be running already.')
is_service_running()
# make sure the "tests" module visible
sys.path.append(os.getcwd())
2020-11-29 15:21:34 +00:00
2020-11-30 17:59:34 +00:00
# give tests some time to test stuff while the process
# is still running
EVENT_READ_TIMEOUT = 0.01
2020-11-30 21:42:53 +00:00
MAX_ABS = 2 ** 15
2020-11-29 15:21:34 +00:00
2020-11-16 14:39:15 +00:00
tmp = '/tmp/key-mapper-test'
2020-11-18 22:00:18 +00:00
uinput_write_history = []
2020-11-20 20:38:59 +00:00
# for tests that makes the injector create its processes
uinput_write_history_pipe = multiprocessing.Pipe()
2020-11-18 23:04:04 +00:00
pending_events = {}
2020-11-18 22:00:18 +00:00
# key-mapper is only interested in devices that have EV_KEY, add some
# random other stuff to test that they are ignored.
fixtures = {
# device 1
'/dev/input/event11': {
2020-11-30 21:42:53 +00:00
'capabilities': {evdev.ecodes.EV_KEY: [], evdev.ecodes.EV_REL: []},
'phys': 'usb-0000:03:00.0-1/input2',
'name': 'device 1 foo'
},
'/dev/input/event10': {
'capabilities': {evdev.ecodes.EV_KEY: list(evdev.ecodes.keys.keys())},
'phys': 'usb-0000:03:00.0-1/input3',
'name': 'device 1'
},
'/dev/input/event13': {
'capabilities': {evdev.ecodes.EV_KEY: [], evdev.ecodes.EV_SYN: []},
'phys': 'usb-0000:03:00.0-1/input1',
'name': 'device 1'
},
'/dev/input/event14': {
'capabilities': {evdev.ecodes.EV_SYN: []},
'phys': 'usb-0000:03:00.0-1/input0',
'name': 'device 1 qux'
},
# device 2
'/dev/input/event20': {
'capabilities': {evdev.ecodes.EV_KEY: list(evdev.ecodes.keys.keys())},
'phys': 'usb-0000:03:00.0-2/input1',
'name': 'device 2'
},
'/dev/input/event30': {
2020-12-03 19:03:53 +00:00
# this device is expected to not have EV_KEY capabilities in tests
# yet. Only when the injector is running EV_KEY stuff is added
'capabilities': {
evdev.ecodes.EV_SYN: [],
evdev.ecodes.EV_ABS: [
evdev.ecodes.ABS_X,
evdev.ecodes.ABS_Y,
evdev.ecodes.ABS_RX,
evdev.ecodes.ABS_RY,
2020-12-03 19:03:53 +00:00
evdev.ecodes.ABS_HAT0X
]
},
'phys': 'usb-0000:03:00.0-3/input1',
2020-11-30 21:42:53 +00:00
'name': 'gamepad'
},
2020-11-30 21:42:53 +00:00
# device that is completely ignored
2020-11-22 20:54:09 +00:00
'/dev/input/event31': {
'capabilities': {evdev.ecodes.EV_SYN: []},
'phys': 'usb-0000:03:00.0-4/input1',
'name': 'Power Button'
},
# key-mapper devices are not displayed in the ui, some instance
# of key-mapper started injecting apparently.
'/dev/input/event40': {
'capabilities': {evdev.ecodes.EV_KEY: list(evdev.ecodes.keys.keys())},
'phys': 'key-mapper/input1',
'name': 'key-mapper device 2'
},
}
2020-11-18 22:00:18 +00:00
2020-11-18 23:04:04 +00:00
def get_events():
"""Get all events written by the injector."""
return uinput_write_history
2020-11-18 22:00:18 +00:00
def push_event(device, event):
2020-11-18 23:04:04 +00:00
"""Emit a fake event for a device.
2020-11-18 22:00:18 +00:00
Parameters
----------
device : string
2020-11-18 23:04:04 +00:00
For example 'device 1'
2020-12-06 13:23:00 +00:00
event : InputEvent
2020-11-18 22:00:18 +00:00
"""
2020-11-18 23:04:04 +00:00
if pending_events.get(device) is None:
pending_events[device] = []
pending_events[device].append(event)
2020-11-18 22:00:18 +00:00
2020-12-06 13:23:00 +00:00
class InputEvent:
2020-12-05 10:58:29 +00:00
"""Event to put into the injector for tests.
fakes evdev.InputEvent
"""
def __init__(self, type, code, value, timestamp=None):
2020-11-18 22:00:18 +00:00
"""
Paramaters
----------
type : int
one of evdev.ecodes.EV_*
code : int
keyboard event code as known to linux. E.g. 2 for the '1' button
2020-11-18 22:00:18 +00:00
value : int
1 for down, 0 for up, 2 for hold
"""
self.type = type
self.code = code
self.value = value
2020-11-16 14:39:15 +00:00
# tuple shorthand
self.t = (type, code, value)
if timestamp is None:
timestamp = time.time()
self.sec = int(timestamp)
self.usec = timestamp % 1 * 1000000
2020-11-16 14:39:15 +00:00
def patch_paths():
from keymapper import paths
2020-11-18 23:10:42 +00:00
paths.CONFIG = '/tmp/key-mapper-test/'
2020-11-16 14:39:15 +00:00
2020-11-30 17:59:34 +00:00
def patch_select():
# goes hand in hand with patch_evdev, which makes InputDevices return
# their names for `.fd`.
# rlist contains device names therefore, so select.select returns the
# name of the device for which events are pending.
import select
def new_select(rlist, *args):
ret = []
for thing in rlist:
if hasattr(thing, 'poll') and thing.poll():
# the reader receives msgs through pipes. If there is one
# ready, provide the pipe
ret.append(thing)
continue
if len(pending_events.get(thing, [])) > 0:
ret.append(thing)
return [ret, [], []]
2020-11-30 17:59:34 +00:00
select.select = new_select
class InputDevice:
# expose as existing attribute, otherwise the patch for
# evdev < 1.0.0 will crash the test
path = None
2020-11-14 23:27:45 +00:00
def __init__(self, path):
if path not in fixtures:
raise FileNotFoundError()
2020-11-30 13:34:27 +00:00
self.path = path
self.phys = fixtures[path]['phys']
self.name = fixtures[path]['name']
self.fd = self.name
self.capa = copy.deepcopy(fixtures[self.path]['capabilities'])
2020-12-03 19:37:36 +00:00
def absinfo(axis):
return {
evdev.ecodes.EV_ABS: evdev.AbsInfo(
value=None, min=None, fuzz=None, flat=None,
resolution=None, max=MAX_ABS
)
}[axis]
self.absinfo = absinfo
2020-11-30 20:16:58 +00:00
def grab(self):
pass
2020-11-30 20:16:58 +00:00
def read(self):
ret = pending_events.get(self.name, [])
if ret is not None:
# consume all of them
pending_events[self.name] = []
2020-11-18 22:00:18 +00:00
return ret
2020-11-30 17:59:34 +00:00
def read_one(self):
if pending_events.get(self.name) is None:
return None
2020-11-30 17:59:34 +00:00
if len(pending_events[self.name]) == 0:
return None
event = pending_events[self.name].pop(0)
return event
def read_loop(self):
"""Read all prepared events at once."""
if pending_events.get(self.name) is None:
return
while len(pending_events[self.name]) > 0:
yield pending_events[self.name].pop(0)
time.sleep(EVENT_READ_TIMEOUT)
2020-11-18 22:00:18 +00:00
async def async_read_loop(self):
"""Read all prepared events at once."""
if pending_events.get(self.name) is None:
return
2020-11-18 23:04:04 +00:00
while len(pending_events[self.name]) > 0:
yield pending_events[self.name].pop(0)
await asyncio.sleep(0.01)
2020-11-28 14:43:24 +00:00
def capabilities(self, absinfo=True):
return self.capa
2020-11-28 14:43:24 +00:00
2020-11-07 23:54:19 +00:00
class UInput:
def __init__(self, *args, **kwargs):
self.fd = 0
self.write_count = 0
self.device = InputDevice('/dev/input/event40')
pass
2020-11-18 23:04:04 +00:00
def capabilities(self, *args, **kwargs):
return []
2020-12-06 18:54:02 +00:00
def write(self, type, code, value):
self.write_count += 1
event = InputEvent(type, code, value)
uinput_write_history.append(event)
uinput_write_history_pipe[1].send(event)
2020-11-18 22:00:18 +00:00
def syn(self):
pass
def patch_evdev():
def list_devices():
return fixtures.keys()
2020-11-18 22:00:18 +00:00
2020-11-16 14:39:15 +00:00
evdev.list_devices = list_devices
evdev.InputDevice = InputDevice
2020-11-18 22:00:18 +00:00
evdev.UInput = UInput
2020-11-16 14:39:15 +00:00
def patch_unsaved():
# don't block tests
from keymapper.gtk import unsaved
unsaved.unsaved_changes_dialog = lambda: unsaved.CONTINUE
2020-11-28 23:28:46 +00:00
def clear_write_history():
"""Empty the history in preparation for the next test."""
while len(uinput_write_history) > 0:
uinput_write_history.pop()
while uinput_write_history_pipe[0].poll():
uinput_write_history_pipe[0].recv()
2020-12-03 19:03:53 +00:00
2020-11-16 14:39:15 +00:00
# quickly fake some stuff before any other file gets a chance to import
# the original versions
patch_paths()
patch_evdev()
patch_unsaved()
2020-11-30 17:59:34 +00:00
patch_select()
2020-11-07 23:54:19 +00:00
from keymapper.logger import update_verbosity
from keymapper.dev.injector import KeycodeInjector
2020-10-26 22:45:22 +00:00
2020-12-06 18:54:02 +00:00
# no need for a high number in tests
KeycodeInjector.regrab_timeout = 0.15
2020-11-26 22:34:52 +00:00
def main():
update_verbosity(True)
2020-10-26 22:45:22 +00:00
modules = sys.argv[1:]
# discoverer is really convenient, but it can't find a specific test
# in all of the available tests like unittest.main() does...,
# so provide both options.
if len(modules) > 0:
2020-12-02 15:17:52 +00:00
# for example
# `tests/test.py test_integration.TestIntegration.test_can_start`
# or `tests/test.py test_integration test_daemon`
2020-10-26 22:45:22 +00:00
testsuite = unittest.defaultTestLoader.loadTestsFromNames(
[f'testcases.{module}' for module in modules]
)
else:
# run all tests by default
testsuite = unittest.defaultTestLoader.discover(
'testcases', pattern='*.py'
)
2020-11-18 23:28:45 +00:00
# add a newline to each "qux (foo.bar)..." output before each test,
# because the first log will be on the same line otherwise
original_start_test = unittest.TextTestResult.startTest
def start_test(self, test):
original_start_test(self, test)
2020-11-22 14:17:55 +00:00
print()
2020-11-18 23:28:45 +00:00
unittest.TextTestResult.startTest = start_test
unittest.TextTestRunner(verbosity=2).run(testsuite)
2020-11-26 22:34:52 +00:00
if __name__ == "__main__":
main()