salt/tests/unit/modules/keyboard_test.py

78 lines
2.0 KiB
Python
Raw Normal View History

2015-02-03 06:34:47 +00:00
# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
'''
# Import Python Libs
from __future__ import absolute_import
2015-02-03 06:34:47 +00:00
# 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('../../')
2015-02-03 06:34:47 +00:00
# Import Salt Libs
from salt.modules import keyboard
# Globals
keyboard.__salt__ = {}
keyboard.__grains__ = {'os_family': ''}
2015-02-03 06:34:47 +00:00
@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)