mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
62e9407903
Develop pylint
78 lines
2.0 KiB
Python
78 lines
2.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from salttesting import TestCase, skipIf
|
|
from salttesting.mock import (
|
|
MagicMock,
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import Salt Libs
|
|
from salt.modules import keyboard
|
|
|
|
# Globals
|
|
keyboard.__salt__ = {}
|
|
keyboard.__grains__ = {'os_family': ''}
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class KeyboardTestCase(TestCase):
|
|
'''
|
|
Test cases for salt.modules.keyboard
|
|
'''
|
|
# 'get_sys' function tests: 1
|
|
|
|
def test_get_sys(self):
|
|
'''
|
|
Test if it get current system keyboard setting
|
|
'''
|
|
mock = MagicMock(return_value='X11 Layout=us')
|
|
with patch.dict(keyboard.__salt__, {'cmd.run': mock}):
|
|
self.assertEqual(keyboard.get_sys(), 'us')
|
|
|
|
# 'set_sys' function tests: 1
|
|
|
|
def test_set_sys(self):
|
|
'''
|
|
Test if it set current system keyboard setting
|
|
'''
|
|
mock = MagicMock(return_value='us')
|
|
with patch.dict(keyboard.__salt__, {'cmd.run': mock}):
|
|
self.assertEqual(keyboard.set_sys('us'), 'us')
|
|
|
|
# 'get_x' function tests: 1
|
|
|
|
def test_get_x(self):
|
|
'''
|
|
Test if it get current X keyboard setting
|
|
'''
|
|
mock = MagicMock(return_value='layout: us')
|
|
with patch.dict(keyboard.__salt__, {'cmd.run': mock}):
|
|
self.assertEqual(keyboard.get_x(), 'us')
|
|
|
|
# 'set_x' function tests: 1
|
|
|
|
def test_set_x(self):
|
|
'''
|
|
Test if it set current X keyboard setting
|
|
'''
|
|
mock = MagicMock(return_value='us')
|
|
with patch.dict(keyboard.__salt__, {'cmd.run': mock}):
|
|
self.assertEqual(keyboard.set_x('us'), 'us')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(KeyboardTestCase, needs_daemon=False)
|