2020-07-20 13:56:18 +02:00
|
|
|
import pytest
|
|
|
|
|
2020-10-07 22:36:58 +02:00
|
|
|
import util.cli
|
|
|
|
import core.config
|
|
|
|
import modules.contrib.layout_xkbswitch
|
|
|
|
|
|
|
|
def build_module():
|
|
|
|
return modules.contrib.layout_xkbswitch.Module(
|
|
|
|
config=core.config.Config([]),
|
|
|
|
theme=None
|
|
|
|
)
|
|
|
|
|
2020-07-20 13:56:18 +02:00
|
|
|
def test_load_module():
|
|
|
|
__import__("modules.contrib.layout-xkbswitch")
|
|
|
|
|
2020-10-02 00:10:46 +02:00
|
|
|
def test_load_symbolic_link_module():
|
|
|
|
__import__("modules.contrib.layout_xkbswitch")
|
2020-10-07 22:36:58 +02:00
|
|
|
|
|
|
|
def test_current_layout(mocker):
|
|
|
|
command = mocker.patch('util.cli.execute')
|
|
|
|
command.side_effect = ['en', 'en']
|
|
|
|
|
|
|
|
module = build_module()
|
|
|
|
widget = module.widget()
|
|
|
|
|
|
|
|
module.update()
|
|
|
|
|
|
|
|
assert widget.full_text() == 'en'
|
|
|
|
|
|
|
|
def test_current_layout_exception(mocker):
|
|
|
|
command = mocker.patch('util.cli.execute')
|
|
|
|
command.side_effect = RuntimeError
|
|
|
|
|
|
|
|
module = build_module()
|
|
|
|
widget = module.widget()
|
|
|
|
|
|
|
|
module.update()
|
|
|
|
|
|
|
|
assert widget.full_text() == ['n/a']
|
|
|
|
|
|
|
|
def test_input_register(mocker):
|
|
|
|
input_register = mocker.patch('core.input.register')
|
|
|
|
|
|
|
|
module = build_module()
|
|
|
|
|
|
|
|
input_register.assert_called_with(
|
|
|
|
module,
|
|
|
|
button=core.input.LEFT_MOUSE,
|
|
|
|
cmd=module.next_keymap
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_next_keymap(mocker):
|
|
|
|
command = mocker.patch('util.cli.execute')
|
|
|
|
|
|
|
|
module = build_module()
|
|
|
|
module.next_keymap(False)
|
|
|
|
|
|
|
|
command.assert_called_with('xkb-switch -n', ignore_errors=True)
|