2020-11-20 20:38:19 +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/>.
|
|
|
|
|
|
|
|
|
2020-12-19 20:50:27 +00:00
|
|
|
import os
|
2020-11-20 20:38:19 +00:00
|
|
|
import unittest
|
|
|
|
|
2020-12-24 00:26:34 +00:00
|
|
|
from keymapper.config import config, GlobalConfig
|
|
|
|
from keymapper.paths import touch, CONFIG_PATH
|
|
|
|
|
|
|
|
from tests.test import cleanup
|
2020-11-20 20:38:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestConfig(unittest.TestCase):
|
|
|
|
def tearDown(self):
|
2020-12-24 00:26:34 +00:00
|
|
|
cleanup()
|
2020-11-20 20:38:19 +00:00
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 0)
|
|
|
|
|
2020-12-24 00:26:34 +00:00
|
|
|
def test_migrate(self):
|
|
|
|
old = os.path.join(CONFIG_PATH, 'config')
|
|
|
|
new = os.path.join(CONFIG_PATH, 'config.json')
|
|
|
|
os.remove(new)
|
|
|
|
touch(old)
|
|
|
|
with open(old, 'w') as f:
|
|
|
|
f.write('{}')
|
|
|
|
GlobalConfig()
|
|
|
|
self.assertTrue(os.path.exists(new))
|
|
|
|
self.assertFalse(os.path.exists(old))
|
|
|
|
|
2020-12-24 10:00:36 +00:00
|
|
|
def test_wont_migrate(self):
|
|
|
|
old = os.path.join(CONFIG_PATH, 'config')
|
|
|
|
new = os.path.join(CONFIG_PATH, 'config.json')
|
|
|
|
|
|
|
|
touch(new)
|
|
|
|
with open(new, 'w') as f:
|
|
|
|
f.write('{}')
|
|
|
|
|
|
|
|
touch(old)
|
|
|
|
with open(old, 'w') as f:
|
|
|
|
f.write('{}')
|
|
|
|
|
|
|
|
GlobalConfig()
|
|
|
|
self.assertTrue(os.path.exists(new))
|
|
|
|
self.assertTrue(os.path.exists(old))
|
|
|
|
|
2020-12-02 18:33:31 +00:00
|
|
|
def test_get_default(self):
|
|
|
|
config._config = {}
|
|
|
|
self.assertEqual(config.get('gamepad.joystick.non_linearity'), 4)
|
|
|
|
|
|
|
|
config.set('gamepad.joystick.non_linearity', 3)
|
|
|
|
self.assertEqual(config.get('gamepad.joystick.non_linearity'), 3)
|
|
|
|
|
2020-11-30 19:57:09 +00:00
|
|
|
def test_basic(self):
|
2020-12-01 23:02:41 +00:00
|
|
|
self.assertEqual(config.get('a'), None)
|
|
|
|
|
2020-11-30 19:57:09 +00:00
|
|
|
config.set('a', 1)
|
|
|
|
self.assertEqual(config.get('a'), 1)
|
|
|
|
|
|
|
|
config.remove('a')
|
|
|
|
config.set('a.b', 2)
|
|
|
|
self.assertEqual(config.get('a.b'), 2)
|
|
|
|
self.assertEqual(config._config['a']['b'], 2)
|
|
|
|
|
|
|
|
config.remove('a.b')
|
|
|
|
config.set('a.b.c', 3)
|
|
|
|
self.assertEqual(config.get('a.b.c'), 3)
|
|
|
|
self.assertEqual(config._config['a']['b']['c'], 3)
|
|
|
|
|
2020-11-20 20:38:19 +00:00
|
|
|
def test_autoload(self):
|
2020-11-25 18:20:44 +00:00
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 0)
|
2020-11-26 23:11:23 +00:00
|
|
|
self.assertFalse(config.is_autoloaded('d1', 'a'))
|
|
|
|
self.assertFalse(config.is_autoloaded('d2', 'b'))
|
2020-11-25 18:20:44 +00:00
|
|
|
|
2020-11-20 20:38:19 +00:00
|
|
|
config.set_autoload_preset('d1', 'a')
|
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 1)
|
2020-11-26 23:11:23 +00:00
|
|
|
self.assertTrue(config.is_autoloaded('d1', 'a'))
|
|
|
|
self.assertFalse(config.is_autoloaded('d2', 'b'))
|
2020-11-20 20:38:19 +00:00
|
|
|
|
2020-11-30 19:57:09 +00:00
|
|
|
config.set_autoload_preset('d2', 'b')
|
2020-11-20 20:38:19 +00:00
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 2)
|
2020-11-26 23:11:23 +00:00
|
|
|
self.assertTrue(config.is_autoloaded('d1', 'a'))
|
|
|
|
self.assertTrue(config.is_autoloaded('d2', 'b'))
|
2020-11-20 20:38:19 +00:00
|
|
|
|
|
|
|
config.set_autoload_preset('d2', 'c')
|
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 2)
|
2020-11-26 23:11:23 +00:00
|
|
|
self.assertTrue(config.is_autoloaded('d1', 'a'))
|
|
|
|
self.assertFalse(config.is_autoloaded('d2', 'b'))
|
|
|
|
self.assertTrue(config.is_autoloaded('d2', 'c'))
|
2020-11-20 20:38:19 +00:00
|
|
|
self.assertListEqual(
|
|
|
|
list(config.iterate_autoload_presets()),
|
|
|
|
[('d1', 'a'), ('d2', 'c')]
|
|
|
|
)
|
|
|
|
|
2020-11-30 19:57:09 +00:00
|
|
|
config.set_autoload_preset('d2', None)
|
2020-11-26 23:11:23 +00:00
|
|
|
self.assertTrue(config.is_autoloaded('d1', 'a'))
|
|
|
|
self.assertFalse(config.is_autoloaded('d2', 'b'))
|
|
|
|
self.assertFalse(config.is_autoloaded('d2', 'c'))
|
|
|
|
self.assertListEqual(
|
|
|
|
list(config.iterate_autoload_presets()),
|
|
|
|
[('d1', 'a')]
|
|
|
|
)
|
|
|
|
|
2020-12-19 20:50:27 +00:00
|
|
|
def test_initial(self):
|
|
|
|
# when loading for the first time, create a config file with
|
|
|
|
# the default values
|
2020-12-24 00:26:34 +00:00
|
|
|
os.remove(config.path)
|
|
|
|
self.assertFalse(os.path.exists(config.path))
|
2020-12-19 20:50:27 +00:00
|
|
|
config.load_config()
|
2020-12-24 00:26:34 +00:00
|
|
|
self.assertTrue(os.path.exists(config.path))
|
2020-12-19 20:50:27 +00:00
|
|
|
|
2020-12-24 00:26:34 +00:00
|
|
|
with open(config.path, 'r') as file:
|
2020-12-19 20:50:27 +00:00
|
|
|
contents = file.read()
|
|
|
|
self.assertIn('"keystroke_sleep_ms": 10', contents)
|
|
|
|
|
2020-11-20 20:38:19 +00:00
|
|
|
def test_save_load(self):
|
2020-11-25 18:20:44 +00:00
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 0)
|
|
|
|
|
|
|
|
config.load_config()
|
|
|
|
self.assertEqual(len(config.iterate_autoload_presets()), 0)
|
|
|
|
|
2020-11-20 20:38:19 +00:00
|
|
|
config.set_autoload_preset('d1', 'a')
|
|
|
|
config.set_autoload_preset('d2', 'b')
|
|
|
|
config.save_config()
|
|
|
|
|
|
|
|
# ignored after load
|
|
|
|
config.set_autoload_preset('d3', 'c')
|
|
|
|
|
|
|
|
config.load_config()
|
|
|
|
self.assertListEqual(
|
|
|
|
list(config.iterate_autoload_presets()),
|
|
|
|
[('d1', 'a'), ('d2', 'b')]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|