2016-01-09 23:51:51 +00:00
|
|
|
"""
|
|
|
|
tests.helpers.test_service
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Test service helpers.
|
|
|
|
"""
|
|
|
|
import unittest
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
from homeassistant.const import SERVICE_TURN_ON
|
|
|
|
from homeassistant.helpers import service
|
|
|
|
|
|
|
|
from tests.common import get_test_home_assistant, mock_service
|
|
|
|
|
|
|
|
|
|
|
|
class TestServiceHelpers(unittest.TestCase):
|
|
|
|
"""
|
|
|
|
Tests the Home Assistant service helpers.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def setUp(self): # pylint: disable=invalid-name
|
|
|
|
""" things to be run when tests are started. """
|
|
|
|
self.hass = get_test_home_assistant()
|
|
|
|
self.calls = mock_service(self.hass, 'test_domain', 'test_service')
|
|
|
|
|
|
|
|
def tearDown(self): # pylint: disable=invalid-name
|
|
|
|
""" Stop down stuff we started. """
|
|
|
|
self.hass.stop()
|
|
|
|
|
|
|
|
def test_split_entity_string(self):
|
|
|
|
service.call_from_config(self.hass, {
|
|
|
|
'service': 'test_domain.test_service',
|
|
|
|
'entity_id': 'hello.world, sensor.beer'
|
|
|
|
})
|
|
|
|
self.hass.pool.block_till_done()
|
|
|
|
self.assertEqual(['hello.world', 'sensor.beer'],
|
|
|
|
self.calls[-1].data.get('entity_id'))
|
2016-01-10 00:01:27 +00:00
|
|
|
|
|
|
|
def test_not_mutate_input(self):
|
|
|
|
orig = {
|
|
|
|
'service': 'test_domain.test_service',
|
|
|
|
'entity_id': 'hello.world, sensor.beer',
|
|
|
|
'data': {
|
|
|
|
'hello': 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
service.call_from_config(self.hass, orig)
|
|
|
|
self.hass.pool.block_till_done()
|
|
|
|
self.assertEqual({
|
|
|
|
'service': 'test_domain.test_service',
|
|
|
|
'entity_id': 'hello.world, sensor.beer',
|
|
|
|
'data': {
|
|
|
|
'hello': 1,
|
|
|
|
},
|
|
|
|
}, orig)
|
|
|
|
|
|
|
|
@patch('homeassistant.helpers.service._LOGGER.error')
|
|
|
|
def test_fail_silently_if_no_service(self, mock_log):
|
|
|
|
service.call_from_config(self.hass, None)
|
|
|
|
self.assertEqual(1, mock_log.call_count)
|
|
|
|
|
|
|
|
service.call_from_config(self.hass, {})
|
|
|
|
self.assertEqual(2, mock_log.call_count)
|
|
|
|
|
|
|
|
service.call_from_config(self.hass, {
|
|
|
|
'service': 'invalid'
|
|
|
|
})
|
|
|
|
self.assertEqual(3, mock_log.call_count)
|