123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # -*- coding: utf-8 -*-
- '''
- :codeauthor: Jayesh Kariya <jayeshk@saltstack.com>
- '''
- # Import Python libs
- from __future__ import absolute_import, unicode_literals, print_function
- # Import Salt Testing Libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.unit import TestCase
- from tests.support.mock import (
- MagicMock,
- patch)
- # Import Salt Libs
- import salt.states.pagerduty as pagerduty
- class PagerdutyTestCase(TestCase, LoaderModuleMockMixin):
- '''
- Test cases for salt.states.pagerduty
- '''
- def setup_loader_modules(self):
- return {pagerduty: {}}
- # 'create_event' function tests: 1
- def test_create_event(self):
- '''
- Test to create an event on the PagerDuty service.
- '''
- name = 'This is a server warning message'
- details = 'This is a much more detailed message'
- service_key = '9abcd123456789efabcde362783cdbaf'
- profile = 'my-pagerduty-account'
- ret = {'name': name,
- 'result': None,
- 'comment': '',
- 'changes': {}}
- with patch.dict(pagerduty.__opts__, {'test': True}):
- comt = ('Need to create event: {0}'.format(name))
- ret.update({'comment': comt})
- self.assertDictEqual(pagerduty.create_event(name, details,
- service_key, profile),
- ret)
- with patch.dict(pagerduty.__opts__, {'test': False}):
- mock_t = MagicMock(return_value=True)
- with patch.dict(pagerduty.__salt__,
- {'pagerduty.create_event': mock_t}):
- comt = ('Created event: {0}'.format(name))
- ret.update({'comment': comt, 'result': True})
- self.assertDictEqual(pagerduty.create_event(name, details,
- service_key,
- profile), ret)
|