1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- # -*- coding: utf-8 -*-
- '''
- :codeauthor: Jayesh Kariya <jayeshk@saltstack.com>
- '''
- # Import Python libs
- from __future__ import absolute_import, unicode_literals, print_function
- # Import Salt Testing Libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.unit import TestCase
- from tests.support.mock import (
- MagicMock,
- patch
- )
- # Import Salt Libs
- import salt.states.postgres_user as postgres_user
- class PostgresUserTestCase(TestCase, LoaderModuleMockMixin):
- '''
- Test cases for salt.states.postgres_user
- '''
- def setup_loader_modules(self):
- return {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)
|