def test_absent(): """ 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 {} is present and needs to be removed".format(name) ret.update({"comment": comt}) assert mongodb_database.absent(name) == ret with patch.dict(mongodb_database.__opts__, {"test": False}): comt = "Database {} has been removed".format(name) ret.update({"comment": comt, "result": True, "changes": {"mydb": "Absent"}}) assert mongodb_database.absent(name) == ret comt = "Database {} is not present".format(name) ret.update({"comment": comt, "changes": {}}) assert mongodb_database.absent(name) == ret
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)
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)