2020-12-04 15:24:12 +00:00
|
|
|
#!/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>
|
2020-12-04 15:24:12 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# This file is part of input-remapper.
|
2020-12-04 15:24:12 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is free software: you can redistribute it and/or modify
|
2020-12-04 15:24:12 +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.
|
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is distributed in the hope that it will be useful,
|
2020-12-04 15:24:12 +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
|
2022-01-01 12:00:49 +00:00
|
|
|
# along with input-remapper. If not, see <https://www.gnu.org/licenses/>.
|
2020-12-04 15:24:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import os
|
|
|
|
import pkg_resources
|
|
|
|
|
2022-01-01 12:00:49 +00:00
|
|
|
from inputremapper.data import get_data_path
|
2020-12-04 15:24:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestData(unittest.TestCase):
|
|
|
|
def test_data_editable(self):
|
|
|
|
path = os.getcwd()
|
2022-01-01 12:00:49 +00:00
|
|
|
pkg_resources.require("input-remapper")[0].location = path
|
2021-09-26 10:44:56 +00:00
|
|
|
self.assertEqual(get_data_path(), path + "/data/")
|
|
|
|
self.assertEqual(get_data_path("a"), path + "/data/a")
|
2020-12-04 15:24:12 +00:00
|
|
|
|
|
|
|
def test_data_usr(self):
|
2021-09-26 10:44:56 +00:00
|
|
|
path = "/usr/some/where/python3.8/dist-packages/"
|
2022-01-01 12:00:49 +00:00
|
|
|
pkg_resources.require("input-remapper")[0].location = path
|
2020-12-04 15:24:12 +00:00
|
|
|
|
2021-09-26 10:44:56 +00:00
|
|
|
self.assertTrue(get_data_path().startswith("/usr/"))
|
2022-01-01 12:00:49 +00:00
|
|
|
self.assertTrue(get_data_path().endswith("input-remapper/"))
|
2020-12-04 15:24:12 +00:00
|
|
|
|
2021-09-26 10:44:56 +00:00
|
|
|
self.assertTrue(get_data_path("a").startswith("/usr/"))
|
2022-01-01 12:00:49 +00:00
|
|
|
self.assertTrue(get_data_path("a").endswith("input-remapper/a"))
|
2020-12-04 15:24:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|