salt/tests/unit/states/apache_conf_test.py
2015-12-13 13:58:27 +01:00

100 lines
3.3 KiB
Python

# -*- coding: utf-8 -*-
# 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 apache_conf
apache_conf.__opts__ = {}
apache_conf.__salt__ = {}
@skipIf(NO_MOCK, NO_MOCK_REASON)
class ApacheConfTestCase(TestCase):
'''
Test cases for salt.states.apache_conf
'''
# 'enabled' function tests: 1
def test_enabled(self):
'''
Test to ensure an Apache conf is enabled.
'''
name = 'saltstack.com'
ret = {'name': name,
'result': True,
'changes': {},
'comment': ''}
mock = MagicMock(side_effect=[True, False, False])
mock_str = MagicMock(return_value={'Status': ['enabled']})
with patch.dict(apache_conf.__salt__,
{'apache.check_conf_enabled': mock,
'apache.a2enconf': mock_str}):
comt = ('{0} already enabled.'.format(name))
ret.update({'comment': comt})
self.assertDictEqual(apache_conf.enabled(name), ret)
comt = ('Apache conf {0} is set to be enabled.'.format(name))
ret.update({'comment': comt, 'result': None,
'changes': {'new': name, 'old': None}})
with patch.dict(apache_conf.__opts__, {'test': True}):
self.assertDictEqual(apache_conf.enabled(name), ret)
comt = ('Failed to enable {0} Apache conf'.format(name))
ret.update({'comment': comt, 'result': False, 'changes': {}})
with patch.dict(apache_conf.__opts__, {'test': False}):
self.assertDictEqual(apache_conf.enabled(name), ret)
# 'disabled' function tests: 1
def test_disabled(self):
'''
Test to ensure an Apache conf is disabled.
'''
name = 'saltstack.com'
ret = {'name': name,
'result': None,
'changes': {},
'comment': ''}
mock = MagicMock(side_effect=[True, True, False])
mock_str = MagicMock(return_value={'Status': ['disabled']})
with patch.dict(apache_conf.__salt__,
{'apache.check_conf_enabled': mock,
'apache.a2disconf': mock_str}):
comt = ('Apache conf {0} is set to be disabled.'.format(name))
ret.update({'comment': comt, 'changes': {'new': None, 'old': name}})
with patch.dict(apache_conf.__opts__, {'test': True}):
self.assertDictEqual(apache_conf.disabled(name), ret)
comt = ('Failed to disable {0} Apache conf'.format(name))
ret.update({'comment': comt, 'result': False,
'changes': {}})
with patch.dict(apache_conf.__opts__, {'test': False}):
self.assertDictEqual(apache_conf.disabled(name), ret)
comt = ('{0} already disabled.'.format(name))
ret.update({'comment': comt, 'result': True})
self.assertDictEqual(apache_conf.disabled(name), ret)
if __name__ == '__main__':
from integration import run_tests
run_tests(ApacheConfTestCase, needs_daemon=False)