salt/tests/unit/modules/keyboard_test.py
2015-02-03 12:04:47 +05:30

71 lines
1.8 KiB
Python

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
'''
# Import Salt Testing Libs
from salttesting import TestCase, skipIf
from salttesting.mock import (
MagicMock,
patch,
NO_MOCK,
NO_MOCK_REASON
)
# Import Salt Libs
from salt.modules import keyboard
# Globals
keyboard.__salt__ = {}
@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)