2015-04-21 12:00:48 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
|
|
|
'''
|
|
|
|
# Import Python libs
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
|
|
# Import Salt Testing Libs
|
2017-03-22 16:42:17 +00:00
|
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import skipIf, TestCase
|
|
|
|
from tests.support.mock import (
|
2015-04-21 12:00:48 +00:00
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON,
|
|
|
|
MagicMock,
|
|
|
|
patch)
|
|
|
|
|
|
|
|
# Import Salt Libs
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.states.aws_sqs as aws_sqs
|
2015-04-21 12:00:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-03-22 16:42:17 +00:00
|
|
|
class AwsSqsTestCase(TestCase, LoaderModuleMockMixin):
|
2015-04-21 12:00:48 +00:00
|
|
|
'''
|
|
|
|
Test cases for salt.states.aws_sqs
|
|
|
|
'''
|
2017-03-22 16:42:17 +00:00
|
|
|
def setup_loader_modules(self):
|
|
|
|
return {aws_sqs: {}}
|
|
|
|
|
2015-04-21 12:00:48 +00:00
|
|
|
# 'exists' function tests: 1
|
|
|
|
|
|
|
|
def test_exists(self):
|
|
|
|
'''
|
|
|
|
Test to ensure the SQS queue exists.
|
|
|
|
'''
|
|
|
|
name = 'myqueue'
|
|
|
|
region = 'eu-west-1'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': None,
|
|
|
|
'changes': {},
|
|
|
|
'comment': ''}
|
|
|
|
|
|
|
|
mock = MagicMock(side_effect=[False, True])
|
|
|
|
with patch.dict(aws_sqs.__salt__, {'aws_sqs.queue_exists': mock}):
|
|
|
|
comt = 'AWS SQS queue {0} is set to be created'.format(name)
|
|
|
|
ret.update({'comment': comt})
|
|
|
|
with patch.dict(aws_sqs.__opts__, {'test': True}):
|
|
|
|
self.assertDictEqual(aws_sqs.exists(name, region), ret)
|
|
|
|
|
|
|
|
comt = u'{0} exists in {1}'.format(name, region)
|
|
|
|
ret.update({'comment': comt, 'result': True})
|
|
|
|
self.assertDictEqual(aws_sqs.exists(name, region), ret)
|
|
|
|
|
|
|
|
# 'absent' function tests: 1
|
|
|
|
|
|
|
|
def test_absent(self):
|
|
|
|
'''
|
|
|
|
Test to remove the named SQS queue if it exists.
|
|
|
|
'''
|
|
|
|
name = 'myqueue'
|
|
|
|
region = 'eu-west-1'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': None,
|
|
|
|
'changes': {},
|
|
|
|
'comment': ''}
|
|
|
|
|
|
|
|
mock = MagicMock(side_effect=[True, False])
|
|
|
|
with patch.dict(aws_sqs.__salt__, {'aws_sqs.queue_exists': mock}):
|
|
|
|
comt = 'AWS SQS queue {0} is set to be removed'.format(name)
|
|
|
|
ret.update({'comment': comt})
|
|
|
|
with patch.dict(aws_sqs.__opts__, {'test': True}):
|
|
|
|
self.assertDictEqual(aws_sqs.absent(name, region), ret)
|
|
|
|
|
|
|
|
comt = u'{0} does not exist in {1}'.format(name, region)
|
|
|
|
ret.update({'comment': comt, 'result': True})
|
|
|
|
self.assertDictEqual(aws_sqs.absent(name, region), ret)
|