mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
adding states/portage_config unit test case.
This commit is contained in:
parent
05745fa931
commit
8cf1505392
1 changed files with 87 additions and 0 deletions
87
tests/unit/states/portage_config_test.py
Normal file
87
tests/unit/states/portage_config_test.py
Normal file
|
@ -0,0 +1,87 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
'''
|
||||
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
||||
'''
|
||||
# Import Python libs
|
||||
from __future__ import absolute_import
|
||||
|
||||
# Import Salt Testing Libs
|
||||
from salttesting import skipIf, TestCase
|
||||
from salttesting.mock import (
|
||||
NO_MOCK,
|
||||
NO_MOCK_REASON,
|
||||
MagicMock,
|
||||
patch)
|
||||
|
||||
from salttesting.helpers import ensure_in_syspath
|
||||
|
||||
ensure_in_syspath('../../')
|
||||
|
||||
# Import Salt Libs
|
||||
from salt.states import portage_config
|
||||
|
||||
portage_config.__salt__ = {}
|
||||
portage_config.__opts__ = {'test': True}
|
||||
|
||||
|
||||
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||||
class PortageConfigTestCase(TestCase):
|
||||
'''
|
||||
Test cases for salt.states.portage_config
|
||||
'''
|
||||
# 'mod_init' function tests: 1
|
||||
|
||||
def test_mod_init(self):
|
||||
'''
|
||||
Test to enforce a nice structure on the configuration files.
|
||||
'''
|
||||
name = 'salt'
|
||||
|
||||
mock = MagicMock(side_effect=[True, Exception])
|
||||
with patch.dict(portage_config.__salt__,
|
||||
{'portage_config.enforce_nice_config': mock}):
|
||||
self.assertTrue(portage_config.mod_init(name))
|
||||
|
||||
self.assertFalse(portage_config.mod_init(name))
|
||||
|
||||
# 'flags' function tests: 1
|
||||
|
||||
@patch('traceback.format_exc', MagicMock(return_value='SALTSTACK'))
|
||||
def test_flags(self):
|
||||
'''
|
||||
Test to enforce the given flags on the given package or ``DEPEND`` atom.
|
||||
'''
|
||||
name = 'salt'
|
||||
|
||||
ret = {'name': name,
|
||||
'result': False,
|
||||
'comment': 'SALTSTACK',
|
||||
'changes': {}}
|
||||
|
||||
mock = MagicMock(side_effect=Exception('error'))
|
||||
with patch.dict(portage_config.__salt__,
|
||||
{'portage_config.get_missing_flags': mock}):
|
||||
self.assertDictEqual(portage_config.flags(name, use='openssl'), ret)
|
||||
|
||||
self.assertDictEqual(portage_config.flags(name,
|
||||
accept_keywords=True),
|
||||
ret)
|
||||
|
||||
self.assertDictEqual(portage_config.flags(name, env=True), ret)
|
||||
|
||||
self.assertDictEqual(portage_config.flags(name, license=True), ret)
|
||||
|
||||
self.assertDictEqual(portage_config.flags(name, properties=True),
|
||||
ret)
|
||||
|
||||
self.assertDictEqual(portage_config.flags(name, mask=True), ret)
|
||||
|
||||
self.assertDictEqual(portage_config.flags(name, unmask=True), ret)
|
||||
|
||||
ret.update({'comment': '', 'result': True})
|
||||
self.assertDictEqual(portage_config.flags(name), ret)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from integration import run_tests
|
||||
run_tests(PortageConfigTestCase, needs_daemon=False)
|
Loading…
Add table
Reference in a new issue