salt/tests/unit/states/test_layman.py

76 lines
2.3 KiB
Python
Raw Normal View History

2015-05-12 12:35:35 +00:00
# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
'''
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing Libs
2017-03-22 16:42:17 +00:00
from tests.support.mixins import LoaderModuleMockMixin
from tests.support.unit import skipIf, TestCase
from tests.support.mock import (
2015-05-12 12:35:35 +00:00
NO_MOCK,
NO_MOCK_REASON,
MagicMock,
patch)
# Import Salt Libs
import salt.states.layman as layman
2015-05-12 12:35:35 +00:00
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-22 16:42:17 +00:00
class LaymanTestCase(TestCase, LoaderModuleMockMixin):
2015-05-12 12:35:35 +00:00
'''
Test cases for salt.states.layman
'''
2017-03-22 16:42:17 +00:00
def setup_loader_modules(self):
return {layman: {}}
2015-05-12 12:35:35 +00:00
# 'present' function tests: 1
def test_present(self):
'''
Test to verify that the overlay is present.
'''
name = 'sunrise'
ret = {'name': name,
'result': True,
'comment': '',
'changes': {}}
mock = MagicMock(side_effect=[[name], []])
with patch.dict(layman.__salt__, {'layman.list_local': mock}):
comt = ('Overlay {0} already present'.format(name))
ret.update({'comment': comt})
self.assertDictEqual(layman.present(name), ret)
with patch.dict(layman.__opts__, {'test': True}):
comt = ('Overlay {0} is set to be added'.format(name))
ret.update({'comment': comt, 'result': None})
self.assertDictEqual(layman.present(name), ret)
# 'absent' function tests: 1
def test_absent(self):
'''
Test to verify that the overlay is absent.
'''
name = 'sunrise'
ret = {'name': name,
'result': True,
'comment': '',
'changes': {}}
mock = MagicMock(side_effect=[[], [name]])
with patch.dict(layman.__salt__, {'layman.list_local': mock}):
comt = ('Overlay {0} already absent'.format(name))
ret.update({'comment': comt})
self.assertDictEqual(layman.absent(name), ret)
with patch.dict(layman.__opts__, {'test': True}):
comt = ('Overlay {0} is set to be deleted'.format(name))
ret.update({'comment': comt, 'result': None})
self.assertDictEqual(layman.absent(name), ret)