89 lines
2.9 KiB
Python
89 lines
2.9 KiB
Python
"""
|
|
tests.components.test_splunk
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Tests splunk component.
|
|
"""
|
|
import unittest
|
|
from unittest import mock
|
|
|
|
import homeassistant.components.splunk as splunk
|
|
from homeassistant.const import STATE_ON, STATE_OFF, EVENT_STATE_CHANGED
|
|
|
|
|
|
class TestSplunk(unittest.TestCase):
|
|
def test_setup_config_full(self):
|
|
config = {
|
|
'splunk': {
|
|
'host': 'host',
|
|
'port': 123,
|
|
'token': 'secret',
|
|
'use_ssl': 'False',
|
|
}
|
|
}
|
|
hass = mock.MagicMock()
|
|
self.assertTrue(splunk.setup(hass, config))
|
|
self.assertTrue(hass.bus.listen.called)
|
|
self.assertEqual(EVENT_STATE_CHANGED,
|
|
hass.bus.listen.call_args_list[0][0][0])
|
|
|
|
def test_setup_config_defaults(self):
|
|
config = {
|
|
'splunk': {
|
|
'host': 'host',
|
|
'token': 'secret',
|
|
}
|
|
}
|
|
hass = mock.MagicMock()
|
|
self.assertTrue(splunk.setup(hass, config))
|
|
self.assertTrue(hass.bus.listen.called)
|
|
self.assertEqual(EVENT_STATE_CHANGED,
|
|
hass.bus.listen.call_args_list[0][0][0])
|
|
|
|
def _setup(self, mock_requests):
|
|
self.mock_post = mock_requests.post
|
|
self.mock_request_exception = Exception
|
|
mock_requests.exceptions.RequestException = self.mock_request_exception
|
|
config = {
|
|
'splunk': {
|
|
'host': 'host',
|
|
'token': 'secret',
|
|
}
|
|
}
|
|
self.hass = mock.MagicMock()
|
|
splunk.setup(self.hass, config)
|
|
self.handler_method = self.hass.bus.listen.call_args_list[0][0][1]
|
|
|
|
@mock.patch.object(splunk, 'requests')
|
|
@mock.patch('json.dumps')
|
|
def test_event_listener(self, mock_dump, mock_requests):
|
|
mock_dump.side_effect = lambda x: x
|
|
self._setup(mock_requests)
|
|
|
|
valid = {'1': 1,
|
|
'1.0': 1.0,
|
|
STATE_ON: 1,
|
|
STATE_OFF: 0,
|
|
'foo': 'foo'}
|
|
for in_, out in valid.items():
|
|
state = mock.MagicMock(state=in_,
|
|
domain='fake',
|
|
object_id='entity',
|
|
attributes={})
|
|
event = mock.MagicMock(data={'new_state': state},
|
|
time_fired=12345)
|
|
body = [{
|
|
'domain': 'fake',
|
|
'entity_id': 'entity',
|
|
'attributes': {},
|
|
'time': '12345',
|
|
'value': out,
|
|
}]
|
|
payload = {'host': 'http://host:8088/services/collector/event',
|
|
'event': body}
|
|
self.handler_method(event)
|
|
self.mock_post.assert_called_once_with(
|
|
payload['host'], data=payload,
|
|
headers={'Authorization': 'Splunk secret'})
|
|
self.mock_post.reset_mock()
|