core/tests/helpers/test_entity_component.py

465 lines
15 KiB
Python
Raw Normal View History

2016-03-09 10:15:04 +00:00
"""The tests for the Entity component helper."""
# pylint: disable=protected-access
2016-01-31 02:55:52 +00:00
from collections import OrderedDict
from datetime import timedelta
import logging
from unittest.mock import Mock, patch
2016-01-31 02:55:52 +00:00
import asynctest
import pytest
from homeassistant.const import ENTITY_MATCH_ALL
import homeassistant.core as ha
from homeassistant.exceptions import PlatformNotReady
from homeassistant.helpers import discovery
from homeassistant.helpers.entity_component import EntityComponent
from homeassistant.setup import async_setup_component
2016-01-31 08:55:46 +00:00
import homeassistant.util.dt as dt_util
2016-01-31 02:55:52 +00:00
2016-01-31 08:55:46 +00:00
from tests.common import (
MockConfigEntry,
MockEntity,
2019-07-31 19:25:30 +00:00
MockModule,
MockPlatform,
2019-07-31 19:25:30 +00:00
async_fire_time_changed,
mock_coro,
2019-07-31 19:25:30 +00:00
mock_entity_platform,
mock_integration,
)
2016-01-31 02:55:52 +00:00
_LOGGER = logging.getLogger(__name__)
DOMAIN = "test_domain"
async def test_setting_up_group(hass):
"""Set up the setting of a group."""
2019-07-31 19:25:30 +00:00
assert await async_setup_component(hass, "group", {"group": {}})
component = EntityComponent(_LOGGER, DOMAIN, hass, group_name="everyone")
2016-01-31 02:55:52 +00:00
# No group after setup
assert len(hass.states.async_entity_ids()) == 0
2016-01-31 02:55:52 +00:00
await component.async_add_entities([MockEntity()])
await hass.async_block_till_done()
2016-01-31 02:55:52 +00:00
# group exists
assert len(hass.states.async_entity_ids()) == 2
2019-07-31 19:25:30 +00:00
assert hass.states.async_entity_ids("group") == ["group.everyone"]
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
grp = hass.states.get("group.everyone")
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
assert grp.attributes.get("entity_id") == ("test_domain.unnamed_device",)
2016-01-31 02:55:52 +00:00
# group extended
2019-07-31 19:25:30 +00:00
await component.async_add_entities([MockEntity(name="goodbye")])
await hass.async_block_till_done()
2016-01-31 02:55:52 +00:00
assert len(hass.states.async_entity_ids()) == 3
2019-07-31 19:25:30 +00:00
grp = hass.states.get("group.everyone")
2016-01-31 02:55:52 +00:00
# Ordered in order of added to the group
2019-07-31 19:25:30 +00:00
assert grp.attributes.get("entity_id") == (
"test_domain.goodbye",
"test_domain.unnamed_device",
)
2016-01-31 02:55:52 +00:00
async def test_setup_loads_platforms(hass):
"""Test the loading of the platforms."""
component_setup = Mock(return_value=True)
platform_setup = Mock(return_value=None)
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
mock_integration(hass, MockModule("test_component", setup=component_setup))
# mock the dependencies
2019-07-31 19:25:30 +00:00
mock_integration(hass, MockModule("mod2", dependencies=["test_component"]))
mock_entity_platform(hass, "test_domain.mod2", MockPlatform(platform_setup))
2016-01-31 02:55:52 +00:00
component = EntityComponent(_LOGGER, DOMAIN, hass)
Load requirements and dependencies from manifests. Fallback to current `REQUIREMENTS` and `DEPENDENCIES` (#22717) * Load dependencies from manifests. Fallback to current DEPENDENCIES * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Fix tests * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix light tests [skip ci] * Fix tests/common * Fix some mqtt tests [skip ci] * Fix tests and component manifests which have only one platform * Fix rflink tests * Fix more tests and manifests * Readability over shorthand format * Fix demo/notify tests * Load dependencies from manifests. Fallback to current DEPENDENCIES * Load requirements from manifests. Fallback to current REQUIREMENTS * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix tests and component manifests which have only one platform * Fix rflink tests * Readability over shorthand format * Clean up requirements * Use integration to resolve deps/reqs * Lint * Lint * revert a change * Revert a test change * Fix types * Fix types * Add back cache for load component * Fix test_component_not_found * Move light.test and device_tracker.test into test package instead with manifest to fix tests * Fix broken device_tracker tests * Add docstrings to __init__ * Fix all of the light tests that I broke earlier * Embed the test.switch platform to fix other tests * Embed and fix the test.imagimage_processing platform * Fix tests for nx584 * Add dependencies from platform file's DEPENDENCIES * Try to setup component when entity_platform is setting up Fix tests in helpers folder * Rewrite test_setup * Simplify * Lint * Disable demo component if running in test Temp workaround to unblock CI tests * Skip demo tests * Fix config entry test * Fix repeat test * Clarify doc * One extra guard * Fix import * Lint * Workaround google tts
2019-04-11 08:26:36 +00:00
assert not component_setup.called
assert not platform_setup.called
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
component.setup({DOMAIN: {"platform": "mod2"}})
2016-01-31 02:55:52 +00:00
await hass.async_block_till_done()
assert component_setup.called
assert platform_setup.called
2016-01-31 02:55:52 +00:00
async def test_setup_recovers_when_setup_raises(hass):
"""Test the setup if exceptions are happening."""
2019-07-31 19:25:30 +00:00
platform1_setup = Mock(side_effect=Exception("Broken"))
platform2_setup = Mock(return_value=None)
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
mock_entity_platform(hass, "test_domain.mod1", MockPlatform(platform1_setup))
mock_entity_platform(hass, "test_domain.mod2", MockPlatform(platform2_setup))
component = EntityComponent(_LOGGER, DOMAIN, hass)
2016-01-31 02:55:52 +00:00
assert not platform1_setup.called
assert not platform2_setup.called
2019-07-31 19:25:30 +00:00
component.setup(
OrderedDict(
[
(DOMAIN, {"platform": "mod1"}),
(f"{DOMAIN} 2", {"platform": "non_exist"}),
(f"{DOMAIN} 3", {"platform": "mod2"}),
2019-07-31 19:25:30 +00:00
]
)
)
await hass.async_block_till_done()
assert platform1_setup.called
assert platform2_setup.called
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
@asynctest.patch(
"homeassistant.helpers.entity_component.EntityComponent.async_setup_platform",
2019-07-31 19:25:30 +00:00
return_value=mock_coro(),
)
@asynctest.patch(
"homeassistant.setup.async_setup_component", return_value=mock_coro(True)
)
async def test_setup_does_discovery(mock_setup_component, mock_setup, hass):
"""Test setup for discovery."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2016-01-31 02:55:52 +00:00
component.setup({})
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
discovery.load_platform(
hass, DOMAIN, "platform_test", {"msg": "discovery_info"}, {DOMAIN: {}}
)
2016-01-31 02:55:52 +00:00
await hass.async_block_till_done()
2016-01-31 02:55:52 +00:00
assert mock_setup.called
2019-07-31 19:25:30 +00:00
assert ("platform_test", {}, {"msg": "discovery_info"}) == mock_setup.call_args[0]
2016-01-31 02:55:52 +00:00
@asynctest.patch("homeassistant.helpers.entity_platform.async_track_time_interval")
async def test_set_scan_interval_via_config(mock_track, hass):
"""Test the setting of the scan interval via configuration."""
2019-07-31 19:25:30 +00:00
def platform_setup(hass, config, add_entities, discovery_info=None):
"""Test the platform setup."""
add_entities([MockEntity(should_poll=True)])
2016-01-31 02:55:52 +00:00
2019-07-31 19:25:30 +00:00
mock_entity_platform(hass, "test_domain.platform", MockPlatform(platform_setup))
2016-01-31 08:55:46 +00:00
component = EntityComponent(_LOGGER, DOMAIN, hass)
2016-01-31 08:55:46 +00:00
2019-07-31 19:25:30 +00:00
component.setup(
{DOMAIN: {"platform": "platform", "scan_interval": timedelta(seconds=30)}}
)
2016-01-31 08:55:46 +00:00
await hass.async_block_till_done()
assert mock_track.called
assert timedelta(seconds=30) == mock_track.call_args[0][2]
2016-01-31 08:55:46 +00:00
async def test_set_entity_namespace_via_config(hass):
"""Test setting an entity namespace."""
2019-07-31 19:25:30 +00:00
def platform_setup(hass, config, add_entities, discovery_info=None):
"""Test the platform setup."""
2019-07-31 19:25:30 +00:00
add_entities([MockEntity(name="beer"), MockEntity(name=None)])
2016-01-31 08:55:46 +00:00
platform = MockPlatform(platform_setup)
2016-04-23 04:34:49 +00:00
2019-07-31 19:25:30 +00:00
mock_entity_platform(hass, "test_domain.platform", platform)
2016-04-23 04:34:49 +00:00
component = EntityComponent(_LOGGER, DOMAIN, hass)
2016-04-23 04:34:49 +00:00
2019-07-31 19:25:30 +00:00
component.setup({DOMAIN: {"platform": "platform", "entity_namespace": "yummy"}})
2016-04-23 04:34:49 +00:00
await hass.async_block_till_done()
2019-07-31 19:25:30 +00:00
assert sorted(hass.states.async_entity_ids()) == [
"test_domain.yummy_beer",
"test_domain.yummy_unnamed_device",
]
async def test_extract_from_service_available_device(hass):
"""Test the extraction of entity from service and device is available."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_add_entities(
[
MockEntity(name="test_1"),
MockEntity(name="test_2", available=False),
MockEntity(name="test_3"),
MockEntity(name="test_4", available=False),
]
)
call_1 = ha.ServiceCall("test", "service", data={"entity_id": ENTITY_MATCH_ALL})
2019-07-31 19:25:30 +00:00
assert ["test_domain.test_1", "test_domain.test_3"] == sorted(
ent.entity_id for ent in (await component.async_extract_from_service(call_1))
)
2019-07-31 19:25:30 +00:00
call_2 = ha.ServiceCall(
"test",
"service",
data={"entity_id": ["test_domain.test_3", "test_domain.test_4"]},
)
2019-07-31 19:25:30 +00:00
assert ["test_domain.test_3"] == sorted(
ent.entity_id for ent in (await component.async_extract_from_service(call_2))
)
async def test_platform_not_ready(hass):
"""Test that we retry when platform not ready."""
2019-07-31 19:25:30 +00:00
platform1_setup = Mock(side_effect=[PlatformNotReady, PlatformNotReady, None])
mock_integration(hass, MockModule("mod1"))
mock_entity_platform(hass, "test_domain.mod1", MockPlatform(platform1_setup))
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_setup({DOMAIN: {"platform": "mod1"}})
assert len(platform1_setup.mock_calls) == 1
2019-07-31 19:25:30 +00:00
assert "test_domain.mod1" not in hass.config.components
utcnow = dt_util.utcnow()
2019-07-31 19:25:30 +00:00
with patch("homeassistant.util.dt.utcnow", return_value=utcnow):
# Should not trigger attempt 2
async_fire_time_changed(hass, utcnow + timedelta(seconds=29))
await hass.async_block_till_done()
assert len(platform1_setup.mock_calls) == 1
# Should trigger attempt 2
async_fire_time_changed(hass, utcnow + timedelta(seconds=30))
await hass.async_block_till_done()
assert len(platform1_setup.mock_calls) == 2
2019-07-31 19:25:30 +00:00
assert "test_domain.mod1" not in hass.config.components
# This should not trigger attempt 3
async_fire_time_changed(hass, utcnow + timedelta(seconds=59))
await hass.async_block_till_done()
assert len(platform1_setup.mock_calls) == 2
# Trigger attempt 3, which succeeds
async_fire_time_changed(hass, utcnow + timedelta(seconds=60))
await hass.async_block_till_done()
assert len(platform1_setup.mock_calls) == 3
2019-07-31 19:25:30 +00:00
assert "test_domain.mod1" in hass.config.components
async def test_extract_from_service_fails_if_no_entity_id(hass):
"""Test the extraction of everything from service."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_add_entities(
[MockEntity(name="test_1"), MockEntity(name="test_2")]
)
2019-07-31 19:25:30 +00:00
call = ha.ServiceCall("test", "service")
assert [] == sorted(
2019-07-31 19:25:30 +00:00
ent.entity_id for ent in (await component.async_extract_from_service(call))
)
async def test_extract_from_service_filter_out_non_existing_entities(hass):
"""Test the extraction of non existing entities from service."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_add_entities(
[MockEntity(name="test_1"), MockEntity(name="test_2")]
)
2019-07-31 19:25:30 +00:00
call = ha.ServiceCall(
"test",
"service",
{"entity_id": ["test_domain.test_2", "test_domain.non_exist"]},
)
2019-07-31 19:25:30 +00:00
assert ["test_domain.test_2"] == [
ent.entity_id for ent in await component.async_extract_from_service(call)
]
async def test_extract_from_service_no_group_expand(hass):
"""Test not expanding a group."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
await component.async_add_entities([MockEntity(entity_id="group.test_group")])
2019-07-31 19:25:30 +00:00
call = ha.ServiceCall("test", "service", {"entity_id": ["group.test_group"]})
2019-07-31 19:25:30 +00:00
extracted = await component.async_extract_from_service(call, expand_group=False)
assert len(extracted) == 1
assert extracted[0].entity_id == "group.test_group"
2018-02-12 07:26:52 +00:00
async def test_setup_dependencies_platform(hass):
2018-02-12 07:26:52 +00:00
"""Test we setup the dependencies of a platform.
We're explictely testing that we process dependencies even if a component
with the same name has already been loaded.
"""
2019-07-31 19:25:30 +00:00
mock_integration(
hass, MockModule("test_component", dependencies=["test_component2"])
)
mock_integration(hass, MockModule("test_component2"))
mock_entity_platform(hass, "test_domain.test_component", MockPlatform())
2018-02-12 07:26:52 +00:00
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_setup({DOMAIN: {"platform": "test_component"}})
2018-02-12 07:26:52 +00:00
2019-07-31 19:25:30 +00:00
assert "test_component" in hass.config.components
assert "test_component2" in hass.config.components
assert "test_domain.test_component" in hass.config.components
async def test_setup_entry(hass):
"""Test setup entry calls async_setup_entry on platform."""
mock_setup_entry = Mock(return_value=mock_coro(True))
Load requirements and dependencies from manifests. Fallback to current `REQUIREMENTS` and `DEPENDENCIES` (#22717) * Load dependencies from manifests. Fallback to current DEPENDENCIES * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Fix tests * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix light tests [skip ci] * Fix tests/common * Fix some mqtt tests [skip ci] * Fix tests and component manifests which have only one platform * Fix rflink tests * Fix more tests and manifests * Readability over shorthand format * Fix demo/notify tests * Load dependencies from manifests. Fallback to current DEPENDENCIES * Load requirements from manifests. Fallback to current REQUIREMENTS * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix tests and component manifests which have only one platform * Fix rflink tests * Readability over shorthand format * Clean up requirements * Use integration to resolve deps/reqs * Lint * Lint * revert a change * Revert a test change * Fix types * Fix types * Add back cache for load component * Fix test_component_not_found * Move light.test and device_tracker.test into test package instead with manifest to fix tests * Fix broken device_tracker tests * Add docstrings to __init__ * Fix all of the light tests that I broke earlier * Embed the test.switch platform to fix other tests * Embed and fix the test.imagimage_processing platform * Fix tests for nx584 * Add dependencies from platform file's DEPENDENCIES * Try to setup component when entity_platform is setting up Fix tests in helpers folder * Rewrite test_setup * Simplify * Lint * Disable demo component if running in test Temp workaround to unblock CI tests * Skip demo tests * Fix config entry test * Fix repeat test * Clarify doc * One extra guard * Fix import * Lint * Workaround google tts
2019-04-11 08:26:36 +00:00
mock_entity_platform(
2019-07-31 19:25:30 +00:00
hass,
"test_domain.entry_domain",
MockPlatform(
async_setup_entry=mock_setup_entry, scan_interval=timedelta(seconds=5)
),
)
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
entry = MockConfigEntry(domain="entry_domain")
assert await component.async_setup_entry(entry)
assert len(mock_setup_entry.mock_calls) == 1
p_hass, p_entry, _ = mock_setup_entry.mock_calls[0][1]
assert p_hass is hass
assert p_entry is entry
2019-07-31 19:25:30 +00:00
assert component._platforms[entry.entry_id].scan_interval == timedelta(seconds=5)
async def test_setup_entry_platform_not_exist(hass):
"""Test setup entry fails if platform doesnt exist."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
entry = MockConfigEntry(domain="non_existing")
assert (await component.async_setup_entry(entry)) is False
async def test_setup_entry_fails_duplicate(hass):
"""Test we don't allow setting up a config entry twice."""
mock_setup_entry = Mock(return_value=mock_coro(True))
Load requirements and dependencies from manifests. Fallback to current `REQUIREMENTS` and `DEPENDENCIES` (#22717) * Load dependencies from manifests. Fallback to current DEPENDENCIES * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Fix tests * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix light tests [skip ci] * Fix tests/common * Fix some mqtt tests [skip ci] * Fix tests and component manifests which have only one platform * Fix rflink tests * Fix more tests and manifests * Readability over shorthand format * Fix demo/notify tests * Load dependencies from manifests. Fallback to current DEPENDENCIES * Load requirements from manifests. Fallback to current REQUIREMENTS * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix tests and component manifests which have only one platform * Fix rflink tests * Readability over shorthand format * Clean up requirements * Use integration to resolve deps/reqs * Lint * Lint * revert a change * Revert a test change * Fix types * Fix types * Add back cache for load component * Fix test_component_not_found * Move light.test and device_tracker.test into test package instead with manifest to fix tests * Fix broken device_tracker tests * Add docstrings to __init__ * Fix all of the light tests that I broke earlier * Embed the test.switch platform to fix other tests * Embed and fix the test.imagimage_processing platform * Fix tests for nx584 * Add dependencies from platform file's DEPENDENCIES * Try to setup component when entity_platform is setting up Fix tests in helpers folder * Rewrite test_setup * Simplify * Lint * Disable demo component if running in test Temp workaround to unblock CI tests * Skip demo tests * Fix config entry test * Fix repeat test * Clarify doc * One extra guard * Fix import * Lint * Workaround google tts
2019-04-11 08:26:36 +00:00
mock_entity_platform(
2019-07-31 19:25:30 +00:00
hass,
"test_domain.entry_domain",
MockPlatform(async_setup_entry=mock_setup_entry),
)
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
entry = MockConfigEntry(domain="entry_domain")
assert await component.async_setup_entry(entry)
with pytest.raises(ValueError):
await component.async_setup_entry(entry)
async def test_unload_entry_resets_platform(hass):
"""Test unloading an entry removes all entities."""
mock_setup_entry = Mock(return_value=mock_coro(True))
Load requirements and dependencies from manifests. Fallback to current `REQUIREMENTS` and `DEPENDENCIES` (#22717) * Load dependencies from manifests. Fallback to current DEPENDENCIES * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Fix tests * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix light tests [skip ci] * Fix tests/common * Fix some mqtt tests [skip ci] * Fix tests and component manifests which have only one platform * Fix rflink tests * Fix more tests and manifests * Readability over shorthand format * Fix demo/notify tests * Load dependencies from manifests. Fallback to current DEPENDENCIES * Load requirements from manifests. Fallback to current REQUIREMENTS * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix tests and component manifests which have only one platform * Fix rflink tests * Readability over shorthand format * Clean up requirements * Use integration to resolve deps/reqs * Lint * Lint * revert a change * Revert a test change * Fix types * Fix types * Add back cache for load component * Fix test_component_not_found * Move light.test and device_tracker.test into test package instead with manifest to fix tests * Fix broken device_tracker tests * Add docstrings to __init__ * Fix all of the light tests that I broke earlier * Embed the test.switch platform to fix other tests * Embed and fix the test.imagimage_processing platform * Fix tests for nx584 * Add dependencies from platform file's DEPENDENCIES * Try to setup component when entity_platform is setting up Fix tests in helpers folder * Rewrite test_setup * Simplify * Lint * Disable demo component if running in test Temp workaround to unblock CI tests * Skip demo tests * Fix config entry test * Fix repeat test * Clarify doc * One extra guard * Fix import * Lint * Workaround google tts
2019-04-11 08:26:36 +00:00
mock_entity_platform(
2019-07-31 19:25:30 +00:00
hass,
"test_domain.entry_domain",
MockPlatform(async_setup_entry=mock_setup_entry),
)
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
entry = MockConfigEntry(domain="entry_domain")
assert await component.async_setup_entry(entry)
assert len(mock_setup_entry.mock_calls) == 1
add_entities = mock_setup_entry.mock_calls[0][1][2]
add_entities([MockEntity()])
await hass.async_block_till_done()
assert len(hass.states.async_entity_ids()) == 1
assert await component.async_unload_entry(entry)
assert len(hass.states.async_entity_ids()) == 0
async def test_unload_entry_fails_if_never_loaded(hass):
"""."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
entry = MockConfigEntry(domain="entry_domain")
with pytest.raises(ValueError):
await component.async_unload_entry(entry)
2018-10-09 14:54:38 +00:00
async def test_update_entity(hass):
"""Test that we can update an entity with the helper."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
entity = MockEntity()
entity.async_update_ha_state = Mock(return_value=mock_coro())
await component.async_add_entities([entity])
# Called as part of async_add_entities
assert len(entity.async_update_ha_state.mock_calls) == 1
await hass.helpers.entity_component.async_update_entity(entity.entity_id)
assert len(entity.async_update_ha_state.mock_calls) == 2
assert entity.async_update_ha_state.mock_calls[-1][1][0] is True
async def test_set_service_race(hass):
"""Test race condition on setting service."""
exception = False
def async_loop_exception_handler(_, _2) -> None:
"""Handle all exception inside the core loop."""
nonlocal exception
exception = True
hass.loop.set_exception_handler(async_loop_exception_handler)
2019-07-31 19:25:30 +00:00
await async_setup_component(hass, "group", {})
component = EntityComponent(_LOGGER, DOMAIN, hass, group_name="yo")
for _ in range(2):
hass.async_create_task(component.async_add_entities([MockEntity()]))
await hass.async_block_till_done()
assert not exception
async def test_extract_all_omit_entity_id(hass, caplog):
"""Test extract all with None and *."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_add_entities(
[MockEntity(name="test_1"), MockEntity(name="test_2")]
)
2019-07-31 19:25:30 +00:00
call = ha.ServiceCall("test", "service")
assert [] == sorted(
2019-07-31 19:25:30 +00:00
ent.entity_id for ent in await component.async_extract_from_service(call)
)
async def test_extract_all_use_match_all(hass, caplog):
"""Test extract all with None and *."""
component = EntityComponent(_LOGGER, DOMAIN, hass)
2019-07-31 19:25:30 +00:00
await component.async_add_entities(
[MockEntity(name="test_1"), MockEntity(name="test_2")]
)
call = ha.ServiceCall("test", "service", {"entity_id": "all"})
assert ["test_domain.test_1", "test_domain.test_2"] == sorted(
ent.entity_id for ent in await component.async_extract_from_service(call)
)
assert (
"Not passing an entity ID to a service to target all entities is deprecated"
2019-07-31 19:25:30 +00:00
) not in caplog.text