salt/tests/unit/states/test_rabbitmq_vhost.py

65 lines
1.8 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
import salt.states.rabbitmq_vhost as rabbitmq_vhost
rabbitmq_vhost.__opts__ = {}
rabbitmq_vhost.__salt__ = {}
@skipIf(NO_MOCK, NO_MOCK_REASON)
class RabbitmqVhostTestCase(TestCase):
'''
Test cases for salt.states.rabbitmq_vhost
'''
# 'present' function tests: 1
def test_present(self):
'''
Test to ensure the RabbitMQ VHost exists.
'''
name = 'virtual_host'
ret = {'name': name,
'changes': {'new': 'virtual_host', 'old': ''},
'result': None,
'comment': 'Virtual Host \'virtual_host\' will be created.'}
mock = MagicMock(return_value=False)
with patch.dict(rabbitmq_vhost.__salt__,
{'rabbitmq.vhost_exists': mock}):
with patch.dict(rabbitmq_vhost.__opts__, {'test': True}):
self.assertDictEqual(rabbitmq_vhost.present(name), ret)
# 'absent' function tests: 1
def test_absent(self):
'''
Test to ensure the named user is absent.
'''
name = 'myqueue'
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Virtual Host \'{0}\' is not present.'.format(name)}
mock = MagicMock(return_value=False)
with patch.dict(rabbitmq_vhost.__salt__,
{'rabbitmq.vhost_exists': mock}):
self.assertDictEqual(rabbitmq_vhost.absent(name), ret)