Files
core/tests/components/zimi/test_switch.py
2025-08-04 20:41:05 +02:00

61 lines
1.5 KiB
Python

"""Test the Zimi switch entity."""
from unittest.mock import MagicMock
from syrupy.assertion import SnapshotAssertion
from homeassistant.const import SERVICE_TURN_OFF, SERVICE_TURN_ON, Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers import entity_registry as er
from .common import ENTITY_INFO, mock_api_device, setup_platform
async def test_switch_entity(
hass: HomeAssistant,
entity_registry: er.EntityRegistry,
mock_api: MagicMock,
snapshot: SnapshotAssertion,
) -> None:
"""Tests switch entity."""
device_name = "Switch Controller"
entity_key = "switch.switch_controller_test_entity_name"
entity_type = "switch"
mock_api.outlets = [
mock_api_device(device_name=device_name, entity_type=entity_type)
]
await setup_platform(hass, Platform.SWITCH)
entity = entity_registry.entities[entity_key]
assert entity.unique_id == ENTITY_INFO["id"]
state = hass.states.get(entity_key)
assert state == snapshot
services = hass.services.async_services()
assert SERVICE_TURN_ON in services[entity_type]
await hass.services.async_call(
entity_type,
SERVICE_TURN_ON,
{"entity_id": entity_key},
blocking=True,
)
assert mock_api.outlets[0].turn_on.called
assert SERVICE_TURN_OFF in services[entity_type]
await hass.services.async_call(
entity_type,
SERVICE_TURN_OFF,
{"entity_id": entity_key},
blocking=True,
)
assert mock_api.outlets[0].turn_off.called