salt/tests/unit/states/test_postgres_user.py
2017-03-01 01:33:07 +00:00

92 lines
3.1 KiB
Python

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
'''
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing Libs
from tests.support.unit import skipIf, TestCase
from tests.support.mock import (
NO_MOCK,
NO_MOCK_REASON,
MagicMock,
patch
)
# Import Salt Libs
from salt.states import postgres_user
postgres_user.__opts__ = {}
postgres_user.__salt__ = {}
@skipIf(NO_MOCK, NO_MOCK_REASON)
class PostgresUserTestCase(TestCase):
'''
Test cases for salt.states.postgres_user
'''
# 'present' function tests: 1
def test_present(self):
'''
Test to ensure that the named user is present
with the specified privileges.
'''
name = 'frank'
ret = {'name': name,
'changes': {},
'result': False,
'comment': ''}
mock_t = MagicMock(return_value=True)
mock = MagicMock(return_value=None)
with patch.dict(postgres_user.__salt__,
{'postgres.role_get': mock,
'postgres.user_create': mock_t}):
with patch.dict(postgres_user.__opts__, {'test': True}):
comt = ('User {0} is set to be created'.format(name))
ret.update({'comment': comt, 'result': None})
self.assertDictEqual(postgres_user.present(name), ret)
with patch.dict(postgres_user.__opts__, {'test': False}):
comt = ('The user {0} has been created'.format(name))
ret.update({'comment': comt, 'result': True,
'changes': {name: 'Present'}})
self.assertDictEqual(postgres_user.present(name), ret)
# 'absent' function tests: 1
def test_absent(self):
'''
Test to ensure that the named user is absent.
'''
name = 'frank'
ret = {'name': name,
'changes': {},
'result': False,
'comment': ''}
mock_t = MagicMock(return_value=True)
mock = MagicMock(side_effect=[True, True, False])
with patch.dict(postgres_user.__salt__,
{'postgres.user_exists': mock,
'postgres.user_remove': mock_t}):
with patch.dict(postgres_user.__opts__, {'test': True}):
comt = ('User {0} is set to be removed'.format(name))
ret.update({'comment': comt, 'result': None})
self.assertDictEqual(postgres_user.absent(name), ret)
with patch.dict(postgres_user.__opts__, {'test': False}):
comt = ('User {0} has been removed'.format(name))
ret.update({'comment': comt, 'result': True,
'changes': {name: 'Absent'}})
self.assertDictEqual(postgres_user.absent(name), ret)
comt = ('User {0} is not present, so it cannot be removed'
.format(name))
ret.update({'comment': comt, 'result': True, 'changes': {}})
self.assertDictEqual(postgres_user.absent(name), ret)