* Report non-awaited/non-locked config entry platform forwards Its currently possible for config entries to be reloaded while their platforms are being forwarded if platform forwards are not awaited or done after the config entry is setup since the lock will not be held in this case. In https://developers.home-assistant.io/blog/2022/07/08/config_entry_forwards we advised to await platform forwards to ensure this does not happen, however for sleeping devices and late discovered devices, platform forwards may happen later. If config platform forwards are happening during setup, they should be awaited If config entry platform forwards are not happening during setup, instead async_late_forward_entry_setups should be used which will hold the lock to prevent the config entry from being unloaded while its platforms are being setup * Report non-awaited/non-locked config entry platform forwards Its currently possible for config entries to be reloaded while their platforms are being forwarded if platform forwards are not awaited or done after the config entry is setup since the lock will not be held in this case. In https://developers.home-assistant.io/blog/2022/07/08/config_entry_forwards we advised to await platform forwards to ensure this does not happen, however for sleeping devices and late discovered devices, platform forwards may happen later. If config platform forwards are happening during setup, they should be awaited If config entry platform forwards are not happening during setup, instead async_late_forward_entry_setups should be used which will hold the lock to prevent the config entry from being unloaded while its platforms are being setup * run with error on to find them * cert_exp, hold lock * cert_exp, hold lock * shelly async_late_forward_entry_setups * compact * compact * found another * patch up mobileapp * patch up hue tests * patch up smartthings * fix mqtt * fix esphome * zwave_js * mqtt * rework * fixes * fix mocking * fix mocking * do not call async_forward_entry_setup directly * docstrings * docstrings * docstrings * add comments * doc strings * fixed all in core, turn off strict * coverage * coverage * missing * coverage
216 lines
6.9 KiB
Python
216 lines
6.9 KiB
Python
"""Test select entity."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.assist_pipeline import Pipeline
|
|
from homeassistant.components.assist_pipeline.pipeline import (
|
|
AssistDevice,
|
|
PipelineData,
|
|
PipelineStorageCollection,
|
|
)
|
|
from homeassistant.components.assist_pipeline.select import (
|
|
AssistPipelineSelect,
|
|
VadSensitivitySelect,
|
|
)
|
|
from homeassistant.components.assist_pipeline.vad import VadSensitivity
|
|
from homeassistant.config_entries import ConfigEntry, ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from tests.common import MockConfigEntry, MockPlatform, mock_platform
|
|
|
|
|
|
class SelectPlatform(MockPlatform):
|
|
"""Fake select platform."""
|
|
|
|
async def async_setup_entry(
|
|
self,
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up fake select platform."""
|
|
pipeline_entity = AssistPipelineSelect(hass, "test-domain", "test-prefix")
|
|
pipeline_entity._attr_device_info = DeviceInfo(
|
|
identifiers={("test", "test")},
|
|
)
|
|
sensitivity_entity = VadSensitivitySelect(hass, "test")
|
|
sensitivity_entity._attr_device_info = DeviceInfo(
|
|
identifiers={("test", "test")},
|
|
)
|
|
async_add_entities([pipeline_entity, sensitivity_entity])
|
|
|
|
|
|
@pytest.fixture
|
|
async def init_select(hass: HomeAssistant, init_components) -> ConfigEntry:
|
|
"""Initialize select entity."""
|
|
mock_platform(hass, "assist_pipeline.select", SelectPlatform())
|
|
config_entry = MockConfigEntry(
|
|
domain="assist_pipeline", state=ConfigEntryState.LOADED
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_late_forward_entry_setups(config_entry, ["select"])
|
|
return config_entry
|
|
|
|
|
|
@pytest.fixture
|
|
async def pipeline_1(
|
|
hass: HomeAssistant, init_select, pipeline_storage: PipelineStorageCollection
|
|
) -> Pipeline:
|
|
"""Create a pipeline."""
|
|
return await pipeline_storage.async_create_item(
|
|
{
|
|
"name": "Test 1",
|
|
"language": "en-US",
|
|
"conversation_engine": None,
|
|
"conversation_language": "en-US",
|
|
"tts_engine": None,
|
|
"tts_language": None,
|
|
"tts_voice": None,
|
|
"stt_engine": None,
|
|
"stt_language": None,
|
|
"wake_word_entity": None,
|
|
"wake_word_id": None,
|
|
}
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
async def pipeline_2(
|
|
hass: HomeAssistant, init_select, pipeline_storage: PipelineStorageCollection
|
|
) -> Pipeline:
|
|
"""Create a pipeline."""
|
|
return await pipeline_storage.async_create_item(
|
|
{
|
|
"name": "Test 2",
|
|
"language": "en-US",
|
|
"conversation_engine": None,
|
|
"conversation_language": "en-US",
|
|
"tts_engine": None,
|
|
"tts_language": None,
|
|
"tts_voice": None,
|
|
"stt_engine": None,
|
|
"stt_language": None,
|
|
"wake_word_entity": None,
|
|
"wake_word_id": None,
|
|
}
|
|
)
|
|
|
|
|
|
async def test_select_entity_registering_device(
|
|
hass: HomeAssistant,
|
|
init_select: ConfigEntry,
|
|
pipeline_data: PipelineData,
|
|
device_registry: dr.DeviceRegistry,
|
|
) -> None:
|
|
"""Test entity registering as an assist device."""
|
|
device = device_registry.async_get_device(identifiers={("test", "test")})
|
|
assert device is not None
|
|
|
|
# Test device is registered
|
|
assert pipeline_data.pipeline_devices == {
|
|
device.id: AssistDevice("test-domain", "test-prefix")
|
|
}
|
|
|
|
await hass.config_entries.async_remove(init_select.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
# Test device is removed
|
|
assert pipeline_data.pipeline_devices == {}
|
|
|
|
|
|
async def test_select_entity_changing_pipelines(
|
|
hass: HomeAssistant,
|
|
init_select: MockConfigEntry,
|
|
pipeline_1: Pipeline,
|
|
pipeline_2: Pipeline,
|
|
pipeline_storage: PipelineStorageCollection,
|
|
) -> None:
|
|
"""Test entity tracking pipeline changes."""
|
|
config_entry = init_select # nicer naming
|
|
config_entry.mock_state(hass, ConfigEntryState.LOADED)
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_prefix_pipeline")
|
|
assert state is not None
|
|
assert state.state == "preferred"
|
|
assert state.attributes["options"] == [
|
|
"preferred",
|
|
"Home Assistant",
|
|
pipeline_1.name,
|
|
pipeline_2.name,
|
|
]
|
|
|
|
# Change select to new pipeline
|
|
await hass.services.async_call(
|
|
"select",
|
|
"select_option",
|
|
{
|
|
"entity_id": "select.assist_pipeline_test_prefix_pipeline",
|
|
"option": pipeline_2.name,
|
|
},
|
|
blocking=True,
|
|
)
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_prefix_pipeline")
|
|
assert state is not None
|
|
assert state.state == pipeline_2.name
|
|
|
|
# Reload config entry to test selected option persists
|
|
assert await hass.config_entries.async_forward_entry_unload(config_entry, "select")
|
|
await hass.config_entries.async_late_forward_entry_setups(config_entry, ["select"])
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_prefix_pipeline")
|
|
assert state is not None
|
|
assert state.state == pipeline_2.name
|
|
|
|
# Remove selected pipeline
|
|
await pipeline_storage.async_delete_item(pipeline_2.id)
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_prefix_pipeline")
|
|
assert state is not None
|
|
assert state.state == "preferred"
|
|
assert state.attributes["options"] == [
|
|
"preferred",
|
|
"Home Assistant",
|
|
pipeline_1.name,
|
|
]
|
|
|
|
|
|
async def test_select_entity_changing_vad_sensitivity(
|
|
hass: HomeAssistant,
|
|
init_select: MockConfigEntry,
|
|
) -> None:
|
|
"""Test entity tracking pipeline changes."""
|
|
config_entry = init_select # nicer naming
|
|
config_entry.mock_state(hass, ConfigEntryState.LOADED)
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_vad_sensitivity")
|
|
assert state is not None
|
|
assert state.state == VadSensitivity.DEFAULT.value
|
|
|
|
# Change select to new pipeline
|
|
await hass.services.async_call(
|
|
"select",
|
|
"select_option",
|
|
{
|
|
"entity_id": "select.assist_pipeline_test_vad_sensitivity",
|
|
"option": VadSensitivity.AGGRESSIVE.value,
|
|
},
|
|
blocking=True,
|
|
)
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_vad_sensitivity")
|
|
assert state is not None
|
|
assert state.state == VadSensitivity.AGGRESSIVE.value
|
|
|
|
# Reload config entry to test selected option persists
|
|
assert await hass.config_entries.async_forward_entry_unload(config_entry, "select")
|
|
await hass.config_entries.async_late_forward_entry_setups(config_entry, ["select"])
|
|
|
|
state = hass.states.get("select.assist_pipeline_test_vad_sensitivity")
|
|
assert state is not None
|
|
assert state.state == VadSensitivity.AGGRESSIVE.value
|