salt/tests/unit/modules/test_logrotate.py

93 lines
2.6 KiB
Python
Raw Normal View History

2015-02-03 08:29:01 +00:00
# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
'''
# Import Python Libs
from __future__ import absolute_import
# Import Salt Libs
from salt.exceptions import SaltInvocationError
from salt.modules import logrotate
2015-02-03 08:29:01 +00:00
# Import Salt Testing Libs
from tests.support.unit import TestCase, skipIf
from tests.support.mock import (
2015-02-03 08:29:01 +00:00
MagicMock,
patch,
NO_MOCK,
NO_MOCK_REASON
)
# Globals
logrotate.__salt__ = {}
PARSE_CONF = {
'include files': {
'rsyslog': ['/var/log/syslog']
},
2016-11-04 16:43:02 +00:00
'rotate': 1,
'/var/log/wtmp': {
2016-11-04 16:43:02 +00:00
'rotate': 1
}
}
2015-02-03 08:29:01 +00:00
@skipIf(NO_MOCK, NO_MOCK_REASON)
class LogrotateTestCase(TestCase):
'''
Test cases for salt.modules.logrotate
'''
# 'show_conf' function tests: 1
@patch('salt.modules.logrotate._parse_conf',
MagicMock(return_value=True))
def test_show_conf(self):
'''
Test if it show parsed configuration
'''
self.assertTrue(logrotate.show_conf())
# 'set_' function tests: 4
2015-02-03 08:29:01 +00:00
@patch('salt.modules.logrotate._parse_conf',
MagicMock(return_value=PARSE_CONF))
2015-02-03 08:29:01 +00:00
def test_set(self):
'''
Test if it set a new value for a specific configuration line
'''
with patch.dict(logrotate.__salt__,
{'file.replace': MagicMock(return_value=True)}):
self.assertTrue(logrotate.set_('rotate', '2'))
2015-02-03 08:29:01 +00:00
@patch('salt.modules.logrotate._parse_conf',
MagicMock(return_value=PARSE_CONF))
def test_set_failed(self):
'''
Test if it fails to set a new value for a specific configuration line
'''
kwargs = {'key': '/var/log/wtmp',
'value': 2}
self.assertRaises(SaltInvocationError, logrotate.set_, **kwargs)
@patch('salt.modules.logrotate._parse_conf',
MagicMock(return_value=PARSE_CONF))
2015-02-03 08:29:01 +00:00
def test_set_setting(self):
'''
Test if it set a new value for a specific configuration line
'''
with patch.dict(logrotate.__salt__,
{'file.replace': MagicMock(return_value=True)}):
self.assertTrue(logrotate.set_('/var/log/wtmp', 'rotate', '2'))
@patch('salt.modules.logrotate._parse_conf',
MagicMock(return_value=PARSE_CONF))
def test_set_setting_failed(self):
'''
Test if it fails to set a new value for a specific configuration line
'''
kwargs = {'key': 'rotate',
'value': '/var/log/wtmp',
'setting': '2'}
self.assertRaises(SaltInvocationError, logrotate.set_, **kwargs)