2015-04-27 11:37:06 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
2018-05-28 21:13:12 +00:00
|
|
|
:codeauthor: Jayesh Kariya <jayeshk@saltstack.com>
|
2015-04-27 11:37:06 +00:00
|
|
|
'''
|
|
|
|
# Import Python libs
|
2018-01-17 23:05:08 +00:00
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
2017-07-28 20:47:56 +00:00
|
|
|
import textwrap
|
2015-04-27 11:37:06 +00:00
|
|
|
|
|
|
|
# Import Salt Testing Libs
|
2017-02-19 22:28:46 +00:00
|
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import skipIf, TestCase
|
2017-02-19 22:28:46 +00:00
|
|
|
from tests.support.mock import NO_MOCK, NO_MOCK_REASON, MagicMock, patch
|
2015-04-27 11:37:06 +00:00
|
|
|
|
|
|
|
# Import Salt Libs
|
2017-07-28 20:47:56 +00:00
|
|
|
import salt.config
|
|
|
|
import salt.loader
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.states.boto_sqs as boto_sqs
|
2015-04-27 11:37:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-02-19 22:28:46 +00:00
|
|
|
class BotoSqsTestCase(TestCase, LoaderModuleMockMixin):
|
2015-04-27 11:37:06 +00:00
|
|
|
'''
|
|
|
|
Test cases for salt.states.boto_sqs
|
|
|
|
'''
|
2017-03-22 12:12:36 +00:00
|
|
|
def setup_loader_modules(self):
|
2017-07-28 20:47:56 +00:00
|
|
|
utils = salt.loader.utils(
|
|
|
|
self.opts,
|
2018-10-18 18:52:32 +00:00
|
|
|
whitelist=['boto3', 'yaml', 'args', 'systemd', 'path', 'platform'],
|
|
|
|
context={})
|
2017-07-28 20:47:56 +00:00
|
|
|
return {
|
|
|
|
boto_sqs: {
|
|
|
|
'__utils__': utils,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
cls.opts = salt.config.DEFAULT_MINION_OPTS
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
del cls.opts
|
2017-03-22 12:12:36 +00:00
|
|
|
|
2015-04-27 11:37:06 +00:00
|
|
|
# 'present' function tests: 1
|
|
|
|
|
|
|
|
def test_present(self):
|
|
|
|
'''
|
|
|
|
Test to ensure the SQS queue exists.
|
|
|
|
'''
|
|
|
|
name = 'mysqs'
|
2017-07-28 20:47:56 +00:00
|
|
|
attributes = {'DelaySeconds': 20}
|
|
|
|
base_ret = {'name': name, 'changes': {}}
|
|
|
|
|
|
|
|
mock = MagicMock(
|
|
|
|
side_effect=[{'result': b} for b in [False, False, True, True]],
|
|
|
|
)
|
|
|
|
mock_bool = MagicMock(return_value={'error': 'create error'})
|
|
|
|
mock_attr = MagicMock(return_value={'result': {}})
|
2015-04-27 11:37:06 +00:00
|
|
|
with patch.dict(boto_sqs.__salt__,
|
|
|
|
{'boto_sqs.exists': mock,
|
|
|
|
'boto_sqs.create': mock_bool,
|
|
|
|
'boto_sqs.get_attributes': mock_attr}):
|
|
|
|
with patch.dict(boto_sqs.__opts__, {'test': False}):
|
2017-08-19 00:06:15 +00:00
|
|
|
comt = ['Failed to create SQS queue {0}: create error'.format(
|
2017-07-28 20:47:56 +00:00
|
|
|
name,
|
2017-08-19 00:06:15 +00:00
|
|
|
)]
|
2017-07-28 20:47:56 +00:00
|
|
|
ret = base_ret.copy()
|
|
|
|
ret.update({'result': False, 'comment': comt})
|
2015-04-27 11:37:06 +00:00
|
|
|
self.assertDictEqual(boto_sqs.present(name), ret)
|
|
|
|
|
|
|
|
with patch.dict(boto_sqs.__opts__, {'test': True}):
|
2017-08-19 00:06:15 +00:00
|
|
|
comt = ['SQS queue {0} is set to be created.'.format(name)]
|
2017-07-28 20:47:56 +00:00
|
|
|
ret = base_ret.copy()
|
|
|
|
ret.update({
|
|
|
|
'result': None,
|
|
|
|
'comment': comt,
|
2018-09-28 04:12:58 +00:00
|
|
|
'changes': {'old': None, 'new': 'mysqs'},
|
2017-07-28 20:47:56 +00:00
|
|
|
})
|
2015-04-27 11:37:06 +00:00
|
|
|
self.assertDictEqual(boto_sqs.present(name), ret)
|
2017-07-28 20:47:56 +00:00
|
|
|
diff = textwrap.dedent('''\
|
2018-01-17 23:05:08 +00:00
|
|
|
---
|
|
|
|
+++
|
2017-07-28 20:47:56 +00:00
|
|
|
@@ -1 +1 @@
|
|
|
|
-{}
|
|
|
|
+DelaySeconds: 20
|
2018-01-21 23:24:11 +00:00
|
|
|
|
|
|
|
''').splitlines()
|
|
|
|
# Difflib adds a trailing space after the +++/--- lines,
|
|
|
|
# programatically add them back here. Having them in the test
|
|
|
|
# file itself is not feasible since a few popular plugins for
|
|
|
|
# vim will remove trailing whitespace.
|
|
|
|
for idx in (0, 1):
|
|
|
|
diff[idx] += ' '
|
|
|
|
diff = '\n'.join(diff)
|
|
|
|
|
2017-08-19 00:06:15 +00:00
|
|
|
comt = [
|
|
|
|
'SQS queue mysqs present.',
|
|
|
|
'Attribute(s) DelaySeconds set to be updated:\n{0}'.format(
|
|
|
|
diff,
|
|
|
|
),
|
|
|
|
]
|
2017-07-28 20:47:56 +00:00
|
|
|
ret.update({
|
|
|
|
'comment': comt,
|
2018-09-28 04:12:58 +00:00
|
|
|
'changes': {'attributes': {'diff': diff}},
|
2017-07-28 20:47:56 +00:00
|
|
|
})
|
2015-04-27 11:37:06 +00:00
|
|
|
self.assertDictEqual(boto_sqs.present(name, attributes), ret)
|
|
|
|
|
2017-08-19 00:06:15 +00:00
|
|
|
comt = ['SQS queue mysqs present.']
|
2017-07-28 20:47:56 +00:00
|
|
|
ret = base_ret.copy()
|
|
|
|
ret.update({'result': True, 'comment': comt})
|
2015-04-27 11:37:06 +00:00
|
|
|
self.assertDictEqual(boto_sqs.present(name), ret)
|
|
|
|
|
|
|
|
# 'absent' function tests: 1
|
|
|
|
|
|
|
|
def test_absent(self):
|
|
|
|
'''
|
|
|
|
Test to ensure the named sqs queue is deleted.
|
|
|
|
'''
|
|
|
|
name = 'test.example.com.'
|
2017-07-28 20:47:56 +00:00
|
|
|
base_ret = {'name': name, 'changes': {}}
|
2015-04-27 11:37:06 +00:00
|
|
|
|
2017-07-28 20:47:56 +00:00
|
|
|
mock = MagicMock(side_effect=[{'result': False}, {'result': True}])
|
2015-04-27 11:37:06 +00:00
|
|
|
with patch.dict(boto_sqs.__salt__,
|
|
|
|
{'boto_sqs.exists': mock}):
|
2017-07-28 20:47:56 +00:00
|
|
|
comt = ('SQS queue {0} does not exist in None.'.format(name))
|
|
|
|
ret = base_ret.copy()
|
|
|
|
ret.update({'result': True, 'comment': comt})
|
2015-04-27 11:37:06 +00:00
|
|
|
self.assertDictEqual(boto_sqs.absent(name), ret)
|
|
|
|
|
|
|
|
with patch.dict(boto_sqs.__opts__, {'test': True}):
|
2017-07-28 20:47:56 +00:00
|
|
|
comt = ('SQS queue {0} is set to be removed.'.format(name))
|
|
|
|
ret = base_ret.copy()
|
|
|
|
ret.update({
|
|
|
|
'result': None,
|
|
|
|
'comment': comt,
|
2018-09-28 04:12:58 +00:00
|
|
|
'changes': {'old': name, 'new': None},
|
2017-07-28 20:47:56 +00:00
|
|
|
})
|
2015-04-27 11:37:06 +00:00
|
|
|
self.assertDictEqual(boto_sqs.absent(name), ret)
|