mirror of
https://github.com/home-assistant/core.git
synced 2026-07-04 21:25:26 +01:00
112 lines
3.5 KiB
Python
112 lines
3.5 KiB
Python
"""Tests for Victron GX MQTT switches."""
|
|
|
|
from victron_mqtt import Hub as VictronVenusHub
|
|
from victron_mqtt.testing import finalize_injection, inject_message
|
|
|
|
from homeassistant.components.victron_gx.const import (
|
|
BINARY_SENSOR_OFF_ID,
|
|
BINARY_SENSOR_ON_ID,
|
|
DOMAIN,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from .const import MOCK_INSTALLATION_ID
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_victron_switch(
|
|
hass: HomeAssistant,
|
|
init_integration: tuple[VictronVenusHub, MockConfigEntry],
|
|
entity_registry: er.EntityRegistry,
|
|
device_registry: dr.DeviceRegistry,
|
|
) -> None:
|
|
"""Test SWITCH MetricKind - EV charger charge switch is created and updated."""
|
|
victron_hub, mock_config_entry = init_integration
|
|
|
|
await inject_message(
|
|
victron_hub,
|
|
f"N/{MOCK_INSTALLATION_ID}/evcharger/0/StartStop",
|
|
'{"value": 1}',
|
|
)
|
|
await finalize_injection(victron_hub)
|
|
await hass.async_block_till_done()
|
|
|
|
entities = er.async_entries_for_config_entry(
|
|
entity_registry, mock_config_entry.entry_id
|
|
)
|
|
|
|
assert len(entities) == 1
|
|
entity = entities[0]
|
|
assert entity.entity_id == "switch.ev_charging_station_ev_charging"
|
|
assert entity.unique_id == f"{MOCK_INSTALLATION_ID}_evcharger_0_evcharger_charge"
|
|
assert entity.translation_key == "evcharger_charge"
|
|
|
|
state = hass.states.get(entity.entity_id)
|
|
assert state is not None
|
|
assert state.state == BINARY_SENSOR_ON_ID
|
|
|
|
# Verify device info was registered correctly
|
|
device = device_registry.async_get_device(
|
|
identifiers={(DOMAIN, f"{MOCK_INSTALLATION_ID}_evcharger_0")}
|
|
)
|
|
assert device is not None
|
|
assert device.manufacturer == "Victron Energy"
|
|
|
|
# Update the metric to exercise the entity update callback path.
|
|
await inject_message(
|
|
victron_hub,
|
|
f"N/{MOCK_INSTALLATION_ID}/evcharger/0/StartStop",
|
|
'{"value": 0}',
|
|
)
|
|
await finalize_injection(victron_hub)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity.entity_id)
|
|
assert state is not None
|
|
assert state.state == BINARY_SENSOR_OFF_ID
|
|
|
|
|
|
async def test_victron_switch_actions(
|
|
hass: HomeAssistant,
|
|
init_integration: tuple[VictronVenusHub, MockConfigEntry],
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test switch turn_on and turn_off service calls update the entity state."""
|
|
victron_hub, mock_config_entry = init_integration
|
|
|
|
await inject_message(
|
|
victron_hub,
|
|
f"N/{MOCK_INSTALLATION_ID}/evcharger/0/StartStop",
|
|
'{"value": 0}',
|
|
)
|
|
await finalize_injection(victron_hub)
|
|
await hass.async_block_till_done()
|
|
|
|
entities = er.async_entries_for_config_entry(
|
|
entity_registry, mock_config_entry.entry_id
|
|
)
|
|
entity_id = entities[0].entity_id
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None
|
|
assert state.state == BINARY_SENSOR_OFF_ID
|
|
|
|
# Call turn_on and turn_off services and assert they update entity state
|
|
await hass.services.async_call(
|
|
"switch", "turn_on", {"entity_id": entity_id}, blocking=True
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None
|
|
assert state.state == BINARY_SENSOR_ON_ID
|
|
|
|
await hass.services.async_call(
|
|
"switch", "turn_off", {"entity_id": entity_id}, blocking=True
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None
|
|
assert state.state == BINARY_SENSOR_OFF_ID
|