salt/tests/unit/modules/test_bower.py

107 lines
4.0 KiB
Python
Raw Normal View History

2015-02-21 05:56:20 +00:00
# -*- coding: utf-8 -*-
'''
:codeauthor: Alexander Pyatkin <asp@thexyz.net>
2015-02-21 05:56:20 +00:00
'''
# Import Python Libs
from __future__ import absolute_import, print_function, unicode_literals
2015-02-21 05:56:20 +00:00
# Import Salt Testing Libs
2017-02-19 22:28:46 +00:00
from tests.support.mixins import LoaderModuleMockMixin
from tests.support.unit import TestCase, skipIf
2017-02-19 22:28:46 +00:00
from tests.support.mock import MagicMock, patch, NO_MOCK, NO_MOCK_REASON
2015-02-21 05:56:20 +00:00
# Import Salt Libs
import salt.modules.bower as bower
2015-02-21 05:56:20 +00:00
from salt.exceptions import CommandExecutionError
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-02-19 22:28:46 +00:00
class BowerTestCase(TestCase, LoaderModuleMockMixin):
2015-02-21 05:56:20 +00:00
'''
Test cases for salt.modules.bower
'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
return {bower: {'_check_valid_version': MagicMock(return_value=True)}}
2015-02-21 05:56:20 +00:00
def test_install_with_error(self):
'''
Test if it raises an exception when install package fails
'''
mock = MagicMock(return_value={'retcode': 1, 'stderr': 'error'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertRaises(
CommandExecutionError,
bower.install,
'/path/to/project',
'underscore')
def test_install_new_package(self):
'''
Test if it returns True when install package succeeds
'''
mock = MagicMock(return_value={'retcode': 0,
'stdout': '{"underscore":{}}'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertTrue(bower.install('/path/to/project', 'underscore'))
def test_install_existing_package(self):
'''
Test if it returns False when package already installed
'''
mock = MagicMock(return_value={'retcode': 0,
'stdout': '{}'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertFalse(bower.install('/path/to/project', 'underscore'))
def test_uninstall_with_error(self):
'''
Test if it raises an exception when uninstall package fails
'''
mock = MagicMock(return_value={'retcode': 1, 'stderr': 'error'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertRaises(
CommandExecutionError,
bower.uninstall,
'/path/to/project',
'underscore')
def test_uninstall_existing_package(self):
'''
Test if it returns True when uninstall package succeeds
'''
mock = MagicMock(return_value={'retcode': 0,
'stdout': '{"underscore": {}}'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertTrue(bower.uninstall('/path/to/project', 'underscore'))
def test_uninstall_missing_package(self):
'''
Test if it returns False when package is not installed
'''
mock = MagicMock(return_value={'retcode': 0,
'stdout': '{}'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertFalse(bower.uninstall('/path/to/project', 'underscore'))
def test_list_packages_with_error(self):
'''
Test if it raises an exception when list installed packages fails
'''
mock = MagicMock(return_value={'retcode': 1, 'stderr': 'error'})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertRaises(
CommandExecutionError,
bower.list_,
'/path/to/project')
def test_list_packages_success(self):
'''
Test if it lists installed Bower packages
'''
output = '{"dependencies": {"underscore": {}, "jquery":{}}}'
mock = MagicMock(return_value={'retcode': 0, 'stdout': output})
with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
self.assertEqual(bower.list_('/path/to/project'),
{'underscore': {}, 'jquery': {}})