# -*- coding: utf-8 -*- ''' :codeauthor: :email:`Jayesh Kariya ` ''' # Import Python libs from __future__ import absolute_import # Import Salt Testing Libs from salttesting import skipIf, TestCase from salttesting.mock import ( NO_MOCK, NO_MOCK_REASON, MagicMock, patch) from salttesting.helpers import ensure_in_syspath ensure_in_syspath('../../') # Import Salt Libs from salt.states import boto_cloudwatch_alarm boto_cloudwatch_alarm.__salt__ = {} boto_cloudwatch_alarm.__opts__ = {} @skipIf(NO_MOCK, NO_MOCK_REASON) class BotoCloudwatchAlarmTestCase(TestCase): ''' Test cases for salt.states.boto_cloudwatch_alarm ''' # 'present' function tests: 1 def test_present(self): ''' Test to ensure the cloudwatch alarm exists. ''' name = 'my test alarm' attributes = {'metric': 'ApproximateNumberOfMessagesVisible', 'namespace': 'AWS/SQS'} ret = {'name': name, 'result': None, 'changes': {}, 'comment': ''} mock = MagicMock(side_effect=[['ok_actions'], [], []]) mock_bool = MagicMock(return_value=True) with patch.dict(boto_cloudwatch_alarm.__salt__, {'boto_cloudwatch.get_alarm': mock, 'boto_cloudwatch.create_or_update_alarm': mock_bool}): with patch.dict(boto_cloudwatch_alarm.__opts__, {'test': True}): comt = ('alarm my test alarm is to be created/updated.') ret.update({'comment': comt}) self.assertDictEqual(boto_cloudwatch_alarm.present(name, attributes), ret) comt = ('alarm my test alarm is to be created/updated.') ret.update({'comment': comt}) self.assertDictEqual(boto_cloudwatch_alarm.present(name, attributes), ret) with patch.dict(boto_cloudwatch_alarm.__opts__, {'test': False}): changes = {'new': {'metric': 'ApproximateNumberOfMessagesVisible', 'namespace': 'AWS/SQS'}} comt = ('alarm my test alarm is to be created/updated.') ret.update({'changes': changes, 'comment': '', 'result': True}) self.assertDictEqual(boto_cloudwatch_alarm.present(name, attributes), ret) # 'absent' function tests: 1 def test_absent(self): ''' Test to ensure the named cloudwatch alarm is deleted. ''' name = 'my test alarm' ret = {'name': name, 'result': None, 'changes': {}, 'comment': ''} mock = MagicMock(side_effect=[True, False]) with patch.dict(boto_cloudwatch_alarm.__salt__, {'boto_cloudwatch.get_alarm': mock}): with patch.dict(boto_cloudwatch_alarm.__opts__, {'test': True}): comt = ('alarm {0} is set to be removed.'.format(name)) ret.update({'comment': comt}) self.assertDictEqual(boto_cloudwatch_alarm.absent(name), ret) comt = ('my test alarm does not exist in None.') ret.update({'comment': comt, 'result': True}) self.assertDictEqual(boto_cloudwatch_alarm.absent(name), ret) if __name__ == '__main__': from integration import run_tests run_tests(BotoCloudwatchAlarmTestCase, needs_daemon=False)