salt/tests/unit/states/test_module.py

145 lines
4.4 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Nicole Thomas (nicole@saltstack.com)`
'''
2015-03-18 01:44:30 +00:00
# Import Python Libs
from __future__ import absolute_import
from inspect import ArgSpec
# Import Salt Libs
from salt.states import module
# Import Salt Testing Libs
from tests.support.unit import skipIf, TestCase
from tests.support.mock import (
NO_MOCK,
NO_MOCK_REASON,
MagicMock,
patch
)
CMD = 'foo.bar'
MOCK = MagicMock()
module.__salt__ = {CMD: MOCK}
module.__opts__ = {'test': False}
2017-03-08 11:02:27 +00:00
def _mocked_func_named(name, names=('Fred', 'Swen',)):
'''
Mocked function with named defaults.
:param name:
:param names:
:return:
'''
return {'name': name, 'names': names}
def _mocked_func_args(*args):
'''
Mocked function with args.
:param args:
:return:
'''
assert args == ('foo', 'bar')
return {'args': args}
@skipIf(NO_MOCK, NO_MOCK_REASON)
class ModuleStateTest(TestCase):
'''
Tests module state (salt/states/module.py)
'''
aspec = ArgSpec(args=['hello', 'world'],
varargs=None,
keywords=None,
defaults=False)
2017-03-08 10:49:48 +00:00
def test_xrun_module_not_available(self):
'''
Tests the return of module.xrun state when the module function is not available.
:return:
'''
with patch.dict(module.__salt__, {}, clear=True):
ret = module.xrun(**{CMD: None})
assert ret['comment'] == "Module function '{0}' is not available".format(CMD)
2017-03-08 10:49:48 +00:00
assert not ret['result']
def test_xrun_testmode(self):
'''
Tests the return of the module.xrun state when test=True is passed.
:return:
'''
with patch.dict(module.__opts__, {'test': True}):
ret = module.xrun(**{CMD: None})
assert ret['comment'] == "Module function '{0}' is set to execute".format(CMD)
assert ret['result']
2017-03-08 11:02:27 +00:00
def test_xrun_missing_arg(self):
'''
Tests the return of module.xrun state when arguments are missing
:return:
'''
with patch.dict(module.__salt__, {CMD: _mocked_func_named}):
ret = module.xrun(**{CMD: None})
assert ret['comment'] == "'{0}' failed: Missing arguments: name".format(CMD)
def test_xrun_correct_arg(self):
'''
Tests the return of module.xrun state when arguments are correct
:return:
'''
with patch.dict(module.__salt__, {CMD: _mocked_func_named}):
ret = module.xrun(**{CMD: [{'name': 'Fred'}]})
assert ret['comment'] == '{0}: Success'.format(CMD)
assert ret['result']
def test_xrun_unexpected_keywords(self):
with patch.dict(module.__salt__, {CMD: _mocked_func_args}):
ret = module.xrun(**{CMD: [{'foo': 'bar'}]})
assert ret['comment'] == "'{0}' failed: {1}() got an unexpected keyword argument 'foo'".format(
CMD, module.__salt__[CMD].func_name)
assert not ret['result']
def test_xrun_args(self):
2017-03-08 14:10:25 +00:00
'''
Test unnamed args.
:return:
'''
with patch.dict(module.__salt__, {CMD: _mocked_func_args}):
assert module.xrun(**{CMD: ['foo', 'bar']})['result']
2017-03-08 11:02:27 +00:00
def test_module_run_module_not_available(self):
'''
Tests the return of module.run state when the module function
name isn't available
'''
with patch.dict(module.__salt__, {}, clear=True):
ret = module.run(CMD)
comment = 'Module function {0} is not available'.format(CMD)
self.assertEqual(ret['comment'], comment)
self.assertFalse(ret['result'])
def test_module_run_test_true(self):
'''
Tests the return of module.run state when test=True is passed in
'''
with patch.dict(module.__opts__, {'test': True}):
ret = module.run(CMD)
comment = 'Module function {0} is set to execute'.format(CMD)
self.assertEqual(ret['comment'], comment)
2014-12-10 16:33:54 +00:00
@patch('salt.utils.args.get_function_argspec', MagicMock(return_value=aspec))
def test_module_run_missing_arg(self):
'''
Tests the return of module.run state when arguments are missing
'''
ret = module.run(CMD)
comment = 'The following arguments are missing:'
self.assertIn(comment, ret['comment'])
self.assertIn('world', ret['comment'])
self.assertIn('hello', ret['comment'])