2016-03-09 09:25:50 +00:00
|
|
|
"""Test to verify that we can load components."""
|
2017-07-16 16:23:06 +00:00
|
|
|
import asyncio
|
2014-11-23 17:51:16 +00:00
|
|
|
|
2017-07-16 16:23:06 +00:00
|
|
|
import pytest
|
|
|
|
|
2014-11-23 17:51:16 +00:00
|
|
|
import homeassistant.loader as loader
|
|
|
|
import homeassistant.components.http as http
|
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
from tests.common import MockModule, async_mock_service
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2014-11-23 17:51:16 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
def test_set_component(hass):
|
|
|
|
"""Test if set_component works."""
|
|
|
|
comp = object()
|
|
|
|
loader.set_component(hass, 'switch.test_set', comp)
|
2016-03-09 09:25:50 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
assert loader.get_component(hass, 'switch.test_set') is comp
|
2014-11-23 17:51:16 +00:00
|
|
|
|
2014-11-23 20:57:29 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
def test_get_component(hass):
|
|
|
|
"""Test if get_component works."""
|
|
|
|
assert http == loader.get_component(hass, 'http')
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
def test_component_dependencies(hass):
|
|
|
|
"""Test if we can get the proper load order of components."""
|
|
|
|
loader.set_component(hass, 'mod1', MockModule('mod1'))
|
|
|
|
loader.set_component(hass, 'mod2', MockModule('mod2', ['mod1']))
|
|
|
|
loader.set_component(hass, 'mod3', MockModule('mod3', ['mod2']))
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
assert {'mod1', 'mod2', 'mod3'} == \
|
|
|
|
loader.component_dependencies(hass, 'mod3')
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
# Create circular dependency
|
|
|
|
loader.set_component(hass, 'mod1', MockModule('mod1', ['mod3']))
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
with pytest.raises(loader.CircularDependency):
|
|
|
|
print(loader.component_dependencies(hass, 'mod3'))
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
# Depend on non-existing component
|
|
|
|
loader.set_component(hass, 'mod1',
|
|
|
|
MockModule('mod1', ['nonexisting']))
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
with pytest.raises(loader.ComponentNotFound):
|
|
|
|
print(loader.component_dependencies(hass, 'mod1'))
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2019-02-07 21:56:40 +00:00
|
|
|
# Try to get dependencies for non-existing component
|
|
|
|
with pytest.raises(loader.ComponentNotFound):
|
|
|
|
print(loader.component_dependencies(hass, 'nonexisting'))
|
2017-07-16 16:23:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_component_loader(hass):
|
|
|
|
"""Test loading components."""
|
|
|
|
components = loader.Components(hass)
|
|
|
|
assert components.http.CONFIG_SCHEMA is http.CONFIG_SCHEMA
|
|
|
|
assert hass.components.http.CONFIG_SCHEMA is http.CONFIG_SCHEMA
|
|
|
|
|
|
|
|
|
|
|
|
def test_component_loader_non_existing(hass):
|
|
|
|
"""Test loading components."""
|
|
|
|
components = loader.Components(hass)
|
|
|
|
with pytest.raises(ImportError):
|
|
|
|
components.non_existing
|
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def test_component_wrapper(hass):
|
|
|
|
"""Test component wrapper."""
|
2018-09-27 21:13:11 +00:00
|
|
|
calls = async_mock_service(hass, 'persistent_notification', 'create')
|
2017-07-16 16:23:06 +00:00
|
|
|
|
|
|
|
components = loader.Components(hass)
|
2018-09-27 21:13:11 +00:00
|
|
|
components.persistent_notification.async_create('message')
|
2017-07-16 16:23:06 +00:00
|
|
|
yield from hass.async_block_till_done()
|
|
|
|
|
|
|
|
assert len(calls) == 1
|
2017-10-08 15:17:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def test_helpers_wrapper(hass):
|
|
|
|
"""Test helpers wrapper."""
|
|
|
|
helpers = loader.Helpers(hass)
|
|
|
|
|
|
|
|
result = []
|
|
|
|
|
|
|
|
def discovery_callback(service, discovered):
|
|
|
|
"""Handle discovery callback."""
|
|
|
|
result.append(discovered)
|
|
|
|
|
|
|
|
helpers.discovery.async_listen('service_name', discovery_callback)
|
|
|
|
|
|
|
|
yield from helpers.discovery.async_discover('service_name', 'hello')
|
|
|
|
yield from hass.async_block_till_done()
|
|
|
|
|
|
|
|
assert result == ['hello']
|
2018-05-07 00:54:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_custom_component_name(hass):
|
|
|
|
"""Test the name attribte of custom components."""
|
|
|
|
comp = loader.get_component(hass, 'test_standalone')
|
|
|
|
assert comp.__name__ == 'custom_components.test_standalone'
|
|
|
|
assert comp.__package__ == 'custom_components'
|
|
|
|
|
|
|
|
comp = loader.get_component(hass, 'test_package')
|
|
|
|
assert comp.__name__ == 'custom_components.test_package'
|
|
|
|
assert comp.__package__ == 'custom_components.test_package'
|
|
|
|
|
|
|
|
comp = loader.get_component(hass, 'light.test')
|
|
|
|
assert comp.__name__ == 'custom_components.light.test'
|
|
|
|
assert comp.__package__ == 'custom_components.light'
|
2018-05-07 09:25:48 +00:00
|
|
|
|
|
|
|
# Test custom components is mounted
|
|
|
|
from custom_components.test_package import TEST
|
|
|
|
assert TEST == 5
|
2018-06-27 19:21:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_log_warning_custom_component(hass, caplog):
|
|
|
|
"""Test that we log a warning when loading a custom component."""
|
|
|
|
loader.get_component(hass, 'test_standalone')
|
|
|
|
assert \
|
|
|
|
'You are using a custom component for test_standalone' in caplog.text
|
|
|
|
|
|
|
|
loader.get_component(hass, 'light.test')
|
|
|
|
assert 'You are using a custom component for light.test' in caplog.text
|
2019-02-07 21:33:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_get_platform(hass, caplog):
|
|
|
|
"""Test get_platform."""
|
|
|
|
# Test we prefer embedded over normal platforms."""
|
|
|
|
embedded_platform = loader.get_platform(hass, 'switch', 'test_embedded')
|
|
|
|
assert embedded_platform.__name__ == \
|
|
|
|
'custom_components.test_embedded.switch'
|
|
|
|
|
|
|
|
caplog.clear()
|
|
|
|
|
|
|
|
legacy_platform = loader.get_platform(hass, 'switch', 'test')
|
|
|
|
assert legacy_platform.__name__ == 'custom_components.switch.test'
|
|
|
|
assert 'Integrations need to be in their own folder.' in caplog.text
|