mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
75 lines
2.7 KiB
Python
75 lines
2.7 KiB
Python
# Import Salt Testing libs
|
|
from salttesting import skipIf, TestCase
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import external libs
|
|
try:
|
|
from mock import MagicMock, patch
|
|
has_mock = True
|
|
except ImportError:
|
|
has_mock = False
|
|
|
|
# Late import so mock can do it's job
|
|
import salt.states.gem as gem
|
|
gem.__salt__ = {}
|
|
gem.__opts__ = {'test': False}
|
|
|
|
|
|
@skipIf(has_mock is False, 'mock python module is unavailable')
|
|
class TestGemState(TestCase):
|
|
|
|
def test_installed(self):
|
|
gems = {'foo': ['1.0'], 'bar': ['2.0']}
|
|
gem_list = MagicMock(return_value=gems)
|
|
gem_install_succeeds = MagicMock(return_value=True)
|
|
gem_install_fails = MagicMock(return_value=False)
|
|
|
|
with patch.dict(gem.__salt__, {'gem.list': gem_list}):
|
|
with patch.dict(gem.__salt__,
|
|
{'gem.install': gem_install_succeeds}):
|
|
ret = gem.installed('foo')
|
|
self.assertEqual(True, ret['result'])
|
|
ret = gem.installed('quux')
|
|
self.assertEqual(True, ret['result'])
|
|
gem_install_succeeds.assert_called_once_with(
|
|
'quux', ruby=None, runas=None, version=None, rdoc=False,
|
|
ri=False
|
|
)
|
|
|
|
with patch.dict(gem.__salt__,
|
|
{'gem.install': gem_install_fails}):
|
|
ret = gem.installed('quux')
|
|
self.assertEqual(False, ret['result'])
|
|
gem_install_fails.assert_called_once_with(
|
|
'quux', ruby=None, runas=None, version=None, rdoc=False,
|
|
ri=False
|
|
)
|
|
|
|
def test_removed(self):
|
|
gems = ['foo', 'bar']
|
|
gem_list = MagicMock(return_value=gems)
|
|
gem_uninstall_succeeds = MagicMock(return_value=True)
|
|
gem_uninstall_fails = MagicMock(return_value=False)
|
|
with patch.dict(gem.__salt__, {'gem.list': gem_list}):
|
|
with patch.dict(gem.__salt__,
|
|
{'gem.uninstall': gem_uninstall_succeeds}):
|
|
ret = gem.removed('quux')
|
|
self.assertEqual(True, ret['result'])
|
|
ret = gem.removed('foo')
|
|
self.assertEqual(True, ret['result'])
|
|
gem_uninstall_succeeds.assert_called_once_with(
|
|
'foo', None, runas=None)
|
|
|
|
with patch.dict(gem.__salt__,
|
|
{'gem.uninstall': gem_uninstall_fails}):
|
|
ret = gem.removed('bar')
|
|
self.assertEqual(False, ret['result'])
|
|
gem_uninstall_fails.assert_called_once_with(
|
|
'bar', None, runas=None)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(TestGemState, needs_daemon=False)
|