mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
adding states/influxdb_user unit test case
This commit is contained in:
parent
e0b2a73eb4
commit
9d4043f9ff
120
tests/unit/states/influxdb_user_test.py
Normal file
120
tests/unit/states/influxdb_user_test.py
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
# -*- 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,
|
||||||
|
MagicMock,
|
||||||
|
patch)
|
||||||
|
|
||||||
|
from salttesting.helpers import ensure_in_syspath
|
||||||
|
|
||||||
|
ensure_in_syspath('../../')
|
||||||
|
|
||||||
|
# Import Salt Libs
|
||||||
|
from salt.states import influxdb_user
|
||||||
|
|
||||||
|
influxdb_user.__salt__ = {}
|
||||||
|
influxdb_user.__opts__ = {}
|
||||||
|
|
||||||
|
|
||||||
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||||||
|
class InfluxdbUserTestCase(TestCase):
|
||||||
|
'''
|
||||||
|
Test cases for salt.states.influxdb_user
|
||||||
|
'''
|
||||||
|
# 'present' function tests: 1
|
||||||
|
|
||||||
|
def test_present(self):
|
||||||
|
'''
|
||||||
|
Test to ensure that the cluster admin or database user is present.
|
||||||
|
'''
|
||||||
|
name = 'salt'
|
||||||
|
passwd = 'salt'
|
||||||
|
|
||||||
|
ret = {'name': name,
|
||||||
|
'result': False,
|
||||||
|
'comment': '',
|
||||||
|
'changes': {}}
|
||||||
|
|
||||||
|
mock = MagicMock(side_effect=[False, False, False, True])
|
||||||
|
mock_t = MagicMock(side_effect=[True, False])
|
||||||
|
mock_f = MagicMock(return_value=False)
|
||||||
|
with patch.dict(influxdb_user.__salt__,
|
||||||
|
{'influxdb.db_exists': mock_f,
|
||||||
|
'influxdb.user_exists': mock,
|
||||||
|
'influxdb.user_create': mock_t}):
|
||||||
|
comt = ('Database mydb does not exist')
|
||||||
|
ret.update({'comment': comt})
|
||||||
|
self.assertDictEqual(influxdb_user.present(name, passwd,
|
||||||
|
database='mydb'), ret)
|
||||||
|
|
||||||
|
with patch.dict(influxdb_user.__opts__, {'test': True}):
|
||||||
|
comt = ('User {0} is not present and needs to be created'
|
||||||
|
.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': None})
|
||||||
|
self.assertDictEqual(influxdb_user.present(name, passwd), ret)
|
||||||
|
|
||||||
|
with patch.dict(influxdb_user.__opts__, {'test': False}):
|
||||||
|
comt = ('User {0} has been created'.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': True,
|
||||||
|
'changes': {'salt': 'Present'}})
|
||||||
|
self.assertDictEqual(influxdb_user.present(name, passwd), ret)
|
||||||
|
|
||||||
|
comt = ('Failed to create user {0}'.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': False, 'changes': {}})
|
||||||
|
self.assertDictEqual(influxdb_user.present(name, passwd), ret)
|
||||||
|
|
||||||
|
comt = ('User {0} is already present'.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': True})
|
||||||
|
self.assertDictEqual(influxdb_user.present(name, passwd), ret)
|
||||||
|
|
||||||
|
# 'absent' function tests: 1
|
||||||
|
|
||||||
|
def test_absent(self):
|
||||||
|
'''
|
||||||
|
Test to ensure that the named cluster admin or database user is absent.
|
||||||
|
'''
|
||||||
|
name = 'salt'
|
||||||
|
|
||||||
|
ret = {'name': name,
|
||||||
|
'result': None,
|
||||||
|
'comment': '',
|
||||||
|
'changes': {}}
|
||||||
|
|
||||||
|
mock = MagicMock(side_effect=[True, True, True, False])
|
||||||
|
mock_t = MagicMock(side_effect=[True, False])
|
||||||
|
with patch.dict(influxdb_user.__salt__,
|
||||||
|
{'influxdb.user_exists': mock,
|
||||||
|
'influxdb.user_remove': mock_t}):
|
||||||
|
with patch.dict(influxdb_user.__opts__, {'test': True}):
|
||||||
|
comt = ('User {0} is present and needs to be removed'
|
||||||
|
.format(name))
|
||||||
|
ret.update({'comment': comt})
|
||||||
|
self.assertDictEqual(influxdb_user.absent(name), ret)
|
||||||
|
|
||||||
|
with patch.dict(influxdb_user.__opts__, {'test': False}):
|
||||||
|
comt = ('User {0} has been removed'.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': True,
|
||||||
|
'changes': {'salt': 'Absent'}})
|
||||||
|
self.assertDictEqual(influxdb_user.absent(name), ret)
|
||||||
|
|
||||||
|
comt = ('Failed to remove user {0}'.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': False, 'changes': {}})
|
||||||
|
self.assertDictEqual(influxdb_user.absent(name), ret)
|
||||||
|
|
||||||
|
comt = ('User {0} is not present, so it cannot be removed'
|
||||||
|
.format(name))
|
||||||
|
ret.update({'comment': comt, 'result': True})
|
||||||
|
self.assertDictEqual(influxdb_user.absent(name), ret)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
from integration import run_tests
|
||||||
|
run_tests(InfluxdbUserTestCase, needs_daemon=False)
|
Loading…
Reference in New Issue
Block a user