"""Axis switch platform tests.""" from unittest.mock import patch from axis.models.api import CONTEXT import pytest from syrupy import SnapshotAssertion from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN from homeassistant.const import ( ATTR_ENTITY_ID, SERVICE_TURN_OFF, SERVICE_TURN_ON, STATE_ON, Platform, ) from homeassistant.core import HomeAssistant from homeassistant.helpers import entity_registry as er from .conftest import ConfigEntryFactoryType, RtspEventMock from .const import API_DISCOVERY_PORT_MANAGEMENT, NAME from tests.common import snapshot_platform PORT_DATA = """root.IOPort.I0.Configurable=yes root.IOPort.I0.Direction=output root.IOPort.I0.Output.Name=Doorbell root.IOPort.I0.Output.Active=closed root.IOPort.I1.Configurable=yes root.IOPort.I1.Direction=output root.IOPort.I1.Output.Name= root.IOPort.I1.Output.Active=open """ PORT_MANAGEMENT_RESPONSE = { "apiVersion": "1.0", "method": "getPorts", "context": CONTEXT, "data": { "numberOfPorts": 2, "items": [ { "port": "0", "configurable": True, "usage": "", "name": "Doorbell", "direction": "output", "state": "open", "normalState": "open", }, { "port": "1", "configurable": True, "usage": "", "name": "", "direction": "output", "state": "open", "normalState": "open", }, ], }, } @pytest.mark.parametrize("param_ports_payload", [PORT_DATA]) async def test_switches_with_port_cgi( hass: HomeAssistant, entity_registry: er.EntityRegistry, config_entry_factory: ConfigEntryFactoryType, mock_rtsp_event: RtspEventMock, snapshot: SnapshotAssertion, ) -> None: """Test that switches are loaded properly using port.cgi.""" with patch("homeassistant.components.axis.PLATFORMS", [Platform.SWITCH]): config_entry = await config_entry_factory() mock_rtsp_event( topic="tns1:Device/Trigger/Relay", data_type="LogicalState", data_value="inactive", source_name="RelayToken", source_idx="0", ) mock_rtsp_event( topic="tns1:Device/Trigger/Relay", data_type="LogicalState", data_value="active", source_name="RelayToken", source_idx="1", ) await hass.async_block_till_done() await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id) entity_id = f"{SWITCH_DOMAIN}.{NAME}_doorbell" with patch("axis.interfaces.vapix.Ports.close") as mock_turn_on: await hass.services.async_call( SWITCH_DOMAIN, SERVICE_TURN_ON, {ATTR_ENTITY_ID: entity_id}, blocking=True, ) mock_turn_on.assert_called_once_with("0") with patch("axis.interfaces.vapix.Ports.open") as mock_turn_off: await hass.services.async_call( SWITCH_DOMAIN, SERVICE_TURN_OFF, {ATTR_ENTITY_ID: entity_id}, blocking=True, ) mock_turn_off.assert_called_once_with("0") @pytest.mark.parametrize("api_discovery_items", [API_DISCOVERY_PORT_MANAGEMENT]) @pytest.mark.parametrize("port_management_payload", [PORT_MANAGEMENT_RESPONSE]) async def test_switches_with_port_management( hass: HomeAssistant, entity_registry: er.EntityRegistry, config_entry_factory: ConfigEntryFactoryType, mock_rtsp_event: RtspEventMock, snapshot: SnapshotAssertion, ) -> None: """Test that switches are loaded properly using port management.""" with patch("homeassistant.components.axis.PLATFORMS", [Platform.SWITCH]): config_entry = await config_entry_factory() mock_rtsp_event( topic="tns1:Device/Trigger/Relay", data_type="LogicalState", data_value="inactive", source_name="RelayToken", source_idx="0", ) mock_rtsp_event( topic="tns1:Device/Trigger/Relay", data_type="LogicalState", data_value="active", source_name="RelayToken", source_idx="1", ) await hass.async_block_till_done() await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id) entity_id = f"{SWITCH_DOMAIN}.{NAME}_doorbell" with patch("axis.interfaces.vapix.IoPortManagement.close") as mock_turn_on: await hass.services.async_call( SWITCH_DOMAIN, SERVICE_TURN_ON, {ATTR_ENTITY_ID: entity_id}, blocking=True, ) mock_turn_on.assert_called_once_with("0") with patch("axis.interfaces.vapix.IoPortManagement.open") as mock_turn_off: await hass.services.async_call( SWITCH_DOMAIN, SERVICE_TURN_OFF, {ATTR_ENTITY_ID: entity_id}, blocking=True, ) mock_turn_off.assert_called_once_with("0") # State update mock_rtsp_event( topic="tns1:Device/Trigger/Relay", data_type="LogicalState", data_value="active", source_name="RelayToken", source_idx="0", ) await hass.async_block_till_done() assert hass.states.get(f"{SWITCH_DOMAIN}.{NAME}_relay_1").state == STATE_ON