mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
Add tests for remaining functions
This commit is contained in:
parent
69aa8f8cbf
commit
88d5db9cdd
@ -20,29 +20,151 @@ from salt.exceptions import SaltInvocationError, CommandExecutionError
|
||||
mac_utils.__salt__ = {}
|
||||
|
||||
|
||||
#@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||||
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||||
class MacUtilsTestCase(TestCase):
|
||||
'''
|
||||
test mac_utils salt utility
|
||||
'''
|
||||
def test_execute_return_success(self):
|
||||
def test_execute_return_success_not_supported(self):
|
||||
'''
|
||||
test set_sleep function
|
||||
test execute_return_success function
|
||||
command not supported
|
||||
'''
|
||||
mock_cmd = MagicMock(return_value={'retcode': 0, 'stdout': 'not supported'})
|
||||
mock_cmd = MagicMock(return_value={'retcode': 0,
|
||||
'stdout': 'not supported'})
|
||||
with patch.dict(mac_utils.__salt__, {'cmd.run_all': mock_cmd}):
|
||||
ret = mac_utils.execute_return_success('dir c:\\')
|
||||
self.assertEqual(ret, 'Not supported on this machine')
|
||||
|
||||
mock_cmd = MagicMock(return_value={'retcode': 1, 'stdout': 'spongebob'})
|
||||
def test_execute_return_success_command_failed(self):
|
||||
'''
|
||||
test execute_return_success function
|
||||
command failed
|
||||
'''
|
||||
mock_cmd = MagicMock(return_value={'retcode': 1,
|
||||
'stdout': 'spongebob'})
|
||||
with patch.dict(mac_utils.__salt__, {'cmd.run_all': mock_cmd}):
|
||||
self.assertRaises(CommandExecutionError, mac_utils.execute_return_success, 'dir c:\\')
|
||||
self.assertRaises(CommandExecutionError,
|
||||
mac_utils.execute_return_success,
|
||||
'dir c:\\')
|
||||
|
||||
mock_cmd = MagicMock(return_value={'retcode': 0, 'stdout': 'spongebob'})
|
||||
def test_execute_return_success_command_succeeded(self):
|
||||
'''
|
||||
test execute_return_success function
|
||||
command succeeded
|
||||
'''
|
||||
mock_cmd = MagicMock(return_value={'retcode': 0,
|
||||
'stdout': 'spongebob'})
|
||||
with patch.dict(mac_utils.__salt__, {'cmd.run_all': mock_cmd}):
|
||||
ret = mac_utils.execute_return_success('dir c:\\')
|
||||
self.assertEqual(ret, True)
|
||||
|
||||
def test_execute_return_result_command_failed(self):
|
||||
'''
|
||||
test execute_return_result function
|
||||
command failed
|
||||
'''
|
||||
mock_cmd = MagicMock(return_value={'retcode': 1,
|
||||
'stdout': 'spongebob',
|
||||
'stderr': 'squarepants'})
|
||||
with patch.dict(mac_utils.__salt__, {'cmd.run_all': mock_cmd}):
|
||||
self.assertRaises(CommandExecutionError,
|
||||
mac_utils.execute_return_result,
|
||||
'dir c:\\')
|
||||
|
||||
def test_execute_return_result_command_succeeded(self):
|
||||
'''
|
||||
test execute_return_result function
|
||||
command succeeded
|
||||
'''
|
||||
mock_cmd = MagicMock(return_value={'retcode': 0,
|
||||
'stdout': 'spongebob'})
|
||||
with patch.dict(mac_utils.__salt__, {'cmd.run_all': mock_cmd}):
|
||||
ret = mac_utils.execute_return_result('dir c:\\')
|
||||
self.assertEqual(ret, 'spongebob')
|
||||
|
||||
def test_parse_return_space(self):
|
||||
'''
|
||||
test parse_return function
|
||||
space after colon
|
||||
'''
|
||||
self.assertEqual(mac_utils.parse_return('spongebob: squarepants'),
|
||||
'squarepants')
|
||||
|
||||
def test_parse_return_new_line(self):
|
||||
'''
|
||||
test parse_return function
|
||||
new line after colon
|
||||
'''
|
||||
self.assertEqual(mac_utils.parse_return('spongebob:\nsquarepants'),
|
||||
'squarepants')
|
||||
|
||||
def test_parse_return_no_delimiter(self):
|
||||
'''
|
||||
test parse_return function
|
||||
no delimiter
|
||||
'''
|
||||
self.assertEqual(mac_utils.parse_return('squarepants'),
|
||||
'squarepants')
|
||||
|
||||
def test_validate_enabled_on(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test on
|
||||
'''
|
||||
self.assertEqual(mac_utils.validate_enabled('On'),
|
||||
'on')
|
||||
|
||||
def test_validate_enabled_off(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test off
|
||||
'''
|
||||
self.assertEqual(mac_utils.validate_enabled('Off'),
|
||||
'off')
|
||||
|
||||
def test_validate_enabled_bad_string(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test bad string
|
||||
'''
|
||||
self.assertRaises(SaltInvocationError,
|
||||
mac_utils.validate_enabled,
|
||||
'bad string')
|
||||
|
||||
def test_validate_enabled_non_zero(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test non zero
|
||||
'''
|
||||
for x in range(1, 179, 3):
|
||||
self.assertEqual(mac_utils.validate_enabled(x),
|
||||
'on')
|
||||
|
||||
def test_validate_enabled_0(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test 0
|
||||
'''
|
||||
self.assertEqual(mac_utils.validate_enabled(0),
|
||||
'off')
|
||||
|
||||
def test_validate_enabled_true(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test True
|
||||
'''
|
||||
self.assertEqual(mac_utils.validate_enabled(True),
|
||||
'on')
|
||||
|
||||
def test_validate_enabled_false(self):
|
||||
'''
|
||||
test validate_enabled function
|
||||
test False
|
||||
'''
|
||||
self.assertEqual(mac_utils.validate_enabled(False),
|
||||
'off')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from integration import run_tests
|
||||
|
Loading…
Reference in New Issue
Block a user