mirror of https://github.com/home-assistant/core
65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
"""Test for the LCN scene platform."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from pypck.lcn_defs import OutputPort, RelayPort
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.scene import DOMAIN as DOMAIN_SCENE
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
SERVICE_TURN_ON,
|
|
STATE_UNAVAILABLE,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from .conftest import MockConfigEntry, MockModuleConnection, init_integration
|
|
|
|
from tests.common import snapshot_platform
|
|
|
|
|
|
async def test_setup_lcn_scene(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
entry: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test the setup of switch."""
|
|
with patch("homeassistant.components.lcn.PLATFORMS", [Platform.SCENE]):
|
|
await init_integration(hass, entry)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, entry.entry_id)
|
|
|
|
|
|
async def test_scene_activate(
|
|
hass: HomeAssistant,
|
|
entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test the scene is activated."""
|
|
await init_integration(hass, entry)
|
|
with patch.object(MockModuleConnection, "activate_scene") as activate_scene:
|
|
await hass.services.async_call(
|
|
DOMAIN_SCENE,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: "scene.romantic"},
|
|
blocking=True,
|
|
)
|
|
|
|
state = hass.states.get("scene.romantic")
|
|
assert state is not None
|
|
|
|
activate_scene.assert_awaited_with(
|
|
0, 0, [OutputPort.OUTPUT1, OutputPort.OUTPUT2], [RelayPort.RELAY1], 0.0
|
|
)
|
|
|
|
|
|
async def test_unload_config_entry(hass: HomeAssistant, entry: MockConfigEntry) -> None:
|
|
"""Test the scene is removed when the config entry is unloaded."""
|
|
await init_integration(hass, entry)
|
|
|
|
await hass.config_entries.async_unload(entry.entry_id)
|
|
state = hass.states.get("scene.romantic")
|
|
assert state.state == STATE_UNAVAILABLE
|