mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #23534 from jayeshka/ini_manage_states-unit-test
adding states/ini_manage unit test case
This commit is contained in:
commit
4e77f6f8c4
1 changed files with 133 additions and 0 deletions
133
tests/unit/states/ini_manage_test.py
Normal file
133
tests/unit/states/ini_manage_test.py
Normal file
|
@ -0,0 +1,133 @@
|
|||
# -*- 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,
|
||||
patch)
|
||||
|
||||
from salttesting.helpers import ensure_in_syspath
|
||||
|
||||
ensure_in_syspath('../../')
|
||||
|
||||
# Import Salt Libs
|
||||
from salt.states import ini_manage
|
||||
|
||||
ini_manage.__salt__ = {}
|
||||
ini_manage.__opts__ = {}
|
||||
|
||||
|
||||
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||||
class IniManageTestCase(TestCase):
|
||||
'''
|
||||
Test cases for salt.states.ini_manage
|
||||
'''
|
||||
# 'options_present' function tests: 1
|
||||
|
||||
def test_options_present(self):
|
||||
'''
|
||||
Test to verify options present in file.
|
||||
'''
|
||||
name = 'salt'
|
||||
|
||||
ret = {'name': name,
|
||||
'result': None,
|
||||
'comment': '',
|
||||
'changes': {}}
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': True}):
|
||||
comt = (('ini file {0} shall be validated for presence of '
|
||||
'given options under their respective '
|
||||
'sections').format(name))
|
||||
ret.update({'comment': comt})
|
||||
self.assertDictEqual(ini_manage.options_present(name), ret)
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': False}):
|
||||
comt = ('No anomaly detected')
|
||||
ret.update({'comment': comt, 'result': True})
|
||||
self.assertDictEqual(ini_manage.options_present(name), ret)
|
||||
|
||||
# 'options_absent' function tests: 1
|
||||
|
||||
def test_options_absent(self):
|
||||
'''
|
||||
Test to verify options absent in file.
|
||||
'''
|
||||
name = 'salt'
|
||||
|
||||
ret = {'name': name,
|
||||
'result': None,
|
||||
'comment': '',
|
||||
'changes': {}}
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': True}):
|
||||
comt = (('ini file {0} shall be validated for absence of '
|
||||
'given options under their respective '
|
||||
'sections').format(name))
|
||||
ret.update({'comment': comt})
|
||||
self.assertDictEqual(ini_manage.options_absent(name), ret)
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': False}):
|
||||
comt = ('No anomaly detected')
|
||||
ret.update({'comment': comt, 'result': True})
|
||||
self.assertDictEqual(ini_manage.options_absent(name), ret)
|
||||
|
||||
# 'sections_present' function tests: 1
|
||||
|
||||
def test_sections_present(self):
|
||||
'''
|
||||
Test to verify sections present in file.
|
||||
'''
|
||||
name = 'salt'
|
||||
|
||||
ret = {'name': name,
|
||||
'result': None,
|
||||
'comment': '',
|
||||
'changes': {}}
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': True}):
|
||||
comt = (('ini file {0} shall be validated for '
|
||||
'presence of given sections with the '
|
||||
'exact contents').format(name))
|
||||
ret.update({'comment': comt})
|
||||
self.assertDictEqual(ini_manage.sections_present(name), ret)
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': False}):
|
||||
comt = ('No anomaly detected')
|
||||
ret.update({'comment': comt, 'result': True})
|
||||
self.assertDictEqual(ini_manage.sections_present(name), ret)
|
||||
|
||||
# 'sections_absent' function tests: 1
|
||||
|
||||
def test_sections_absent(self):
|
||||
'''
|
||||
Test to verify sections absent in file.
|
||||
'''
|
||||
name = 'salt'
|
||||
|
||||
ret = {'name': name,
|
||||
'result': None,
|
||||
'comment': '',
|
||||
'changes': {}}
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': True}):
|
||||
comt = (('ini file {0} shall be validated for absence of '
|
||||
'given sections').format(name))
|
||||
ret.update({'comment': comt})
|
||||
self.assertDictEqual(ini_manage.sections_absent(name), ret)
|
||||
|
||||
with patch.dict(ini_manage.__opts__, {'test': False}):
|
||||
comt = ('No anomaly detected')
|
||||
ret.update({'comment': comt, 'result': True})
|
||||
self.assertDictEqual(ini_manage.sections_absent(name), ret)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from integration import run_tests
|
||||
run_tests(IniManageTestCase, needs_daemon=False)
|
Loading…
Add table
Reference in a new issue