mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
71 lines
2.2 KiB
Python
71 lines
2.2 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 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 mongodb_database
|
||
|
|
||
|
mongodb_database.__salt__ = {}
|
||
|
mongodb_database.__opts__ = {}
|
||
|
|
||
|
|
||
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||
|
class MongodbDatabaseTestCase(TestCase):
|
||
|
'''
|
||
|
Test cases for salt.states.mongodb_database
|
||
|
'''
|
||
|
# 'absent' function tests: 1
|
||
|
|
||
|
def test_absent(self):
|
||
|
'''
|
||
|
Test to ensure that the named database is absent.
|
||
|
'''
|
||
|
name = "mydb"
|
||
|
|
||
|
ret = {'name': name,
|
||
|
'result': None,
|
||
|
'comment': '',
|
||
|
'changes': {}}
|
||
|
|
||
|
mock = MagicMock(side_effect=[True, True, False])
|
||
|
mock_t = MagicMock(return_value=True)
|
||
|
with patch.dict(mongodb_database.__salt__,
|
||
|
{'mongodb.db_exists': mock,
|
||
|
'mongodb.db_remove': mock_t}):
|
||
|
with patch.dict(mongodb_database.__opts__, {'test': True}):
|
||
|
comt = ('Database {0} is present and needs to be removed'
|
||
|
.format(name))
|
||
|
ret.update({'comment': comt})
|
||
|
self.assertDictEqual(mongodb_database.absent(name), ret)
|
||
|
|
||
|
with patch.dict(mongodb_database.__opts__, {'test': False}):
|
||
|
comt = ('Database {0} has been removed'.format(name))
|
||
|
ret.update({'comment': comt, 'result': True,
|
||
|
'changes': {'mydb': 'Absent'}})
|
||
|
self.assertDictEqual(mongodb_database.absent(name), ret)
|
||
|
|
||
|
comt = ('User {0} is not present, so it cannot be removed'
|
||
|
.format(name))
|
||
|
ret.update({'comment': comt, 'changes': {}})
|
||
|
self.assertDictEqual(mongodb_database.absent(name), ret)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
from integration import run_tests
|
||
|
run_tests(MongodbDatabaseTestCase, needs_daemon=False)
|