mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-25 23:21:45 +03:00
4897615a1e
pylint complain: Using deprecated method assertEquals() (deprecated-method) https://docs.python.org/3.3/library/unittest.html#deprecated-aliases Method Name Deprecated alias Deprecated alias assertEqual() failUnlessEqual assertEquals Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
55 lines
1.8 KiB
Python
55 lines
1.8 KiB
Python
# Copyright (C) 2017 Red Hat, Inc.
|
|
#
|
|
# This program 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 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
# MA 02110-1301 USA.
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from virtinst import hostkeymap
|
|
|
|
|
|
class TestHostkeymap(unittest.TestCase):
|
|
"""
|
|
Tests for hostkeymap.py file parsing
|
|
"""
|
|
# pylint: disable=protected-access
|
|
|
|
def testFiles(self):
|
|
def _open(filename):
|
|
return open(os.path.join(os.getcwd(),
|
|
"tests/hostkeymap", filename))
|
|
|
|
self.assertEqual(
|
|
hostkeymap._sysconfig_keyboard(
|
|
_open("sysconfig-comments.txt")),
|
|
"")
|
|
self.assertEqual(
|
|
hostkeymap._sysconfig_keyboard(
|
|
_open("sysconfig-rhel5.txt")),
|
|
"us")
|
|
self.assertEqual(
|
|
hostkeymap._find_xkblayout(
|
|
_open("default-keyboard-debian9.txt")),
|
|
"us")
|
|
self.assertEqual(
|
|
hostkeymap._find_xkblayout(
|
|
_open("console-setup-debian9.txt")),
|
|
None)
|
|
self.assertEqual(
|
|
hostkeymap._xorg_keymap(
|
|
_open("xorg-rhel5.txt")),
|
|
"us")
|