mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
66 lines
1.9 KiB
Python
66 lines
1.9 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.mixins import LoaderModuleMockMixin
|
|
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
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class RabbitmqVhostTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.states.rabbitmq_vhost
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {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)
|