core/tests/components/axis/test_switch.py

168 lines
5.0 KiB
Python
Raw Normal View History

"""Axis switch platform tests."""
from copy import deepcopy
2021-01-01 21:31:56 +00:00
from unittest.mock import AsyncMock, patch
from homeassistant.components.axis.const import DOMAIN as AXIS_DOMAIN
from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN
2020-10-22 07:29:53 +00:00
from homeassistant.const import (
ATTR_ENTITY_ID,
SERVICE_TURN_OFF,
SERVICE_TURN_ON,
STATE_OFF,
STATE_ON,
)
from homeassistant.setup import async_setup_component
from .conftest import NAME
from .test_device import (
API_DISCOVERY_PORT_MANAGEMENT,
API_DISCOVERY_RESPONSE,
setup_axis_integration,
)
2020-01-02 23:02:59 +00:00
async def test_platform_manually_configured(hass):
"""Test that nothing happens when platform is manually configured."""
2019-07-31 19:25:30 +00:00
assert await async_setup_component(
hass, SWITCH_DOMAIN, {SWITCH_DOMAIN: {"platform": AXIS_DOMAIN}}
2019-07-31 19:25:30 +00:00
)
assert AXIS_DOMAIN not in hass.data
async def test_no_switches(hass, config_entry):
"""Test that no output events in Axis results in no switch entities."""
await setup_axis_integration(hass, config_entry)
assert not hass.states.async_entity_ids(SWITCH_DOMAIN)
async def test_switches_with_port_cgi(hass, config_entry, mock_rtsp_event):
"""Test that switches are loaded properly using port.cgi."""
await setup_axis_integration(hass, config_entry)
device = hass.data[AXIS_DOMAIN][config_entry.entry_id]
2020-01-02 23:02:59 +00:00
device.api.vapix.ports = {"0": AsyncMock(), "1": AsyncMock()}
2019-07-31 19:25:30 +00:00
device.api.vapix.ports["0"].name = "Doorbell"
device.api.vapix.ports["0"].open = AsyncMock()
device.api.vapix.ports["0"].close = AsyncMock()
2019-07-31 19:25:30 +00:00
device.api.vapix.ports["1"].name = ""
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()
assert len(hass.states.async_entity_ids(SWITCH_DOMAIN)) == 2
2020-10-22 07:29:53 +00:00
relay_1 = hass.states.get(f"{SWITCH_DOMAIN}.{NAME}_relay_1")
assert relay_1.state == STATE_ON
2020-01-02 23:02:59 +00:00
assert relay_1.name == f"{NAME} Relay 1"
2020-10-22 07:29:53 +00:00
entity_id = f"{SWITCH_DOMAIN}.{NAME}_doorbell"
relay_0 = hass.states.get(entity_id)
assert relay_0.state == STATE_OFF
assert relay_0.name == f"{NAME} Doorbell"
2019-07-31 19:25:30 +00:00
await hass.services.async_call(
SWITCH_DOMAIN,
2020-10-22 07:29:53 +00:00
SERVICE_TURN_ON,
{ATTR_ENTITY_ID: entity_id},
blocking=True,
2019-07-31 19:25:30 +00:00
)
device.api.vapix.ports["0"].close.assert_called_once()
2019-07-31 19:25:30 +00:00
await hass.services.async_call(
SWITCH_DOMAIN,
2020-10-22 07:29:53 +00:00
SERVICE_TURN_OFF,
{ATTR_ENTITY_ID: entity_id},
blocking=True,
2019-07-31 19:25:30 +00:00
)
device.api.vapix.ports["0"].open.assert_called_once()
async def test_switches_with_port_management(hass, config_entry, mock_rtsp_event):
"""Test that switches are loaded properly using port management."""
api_discovery = deepcopy(API_DISCOVERY_RESPONSE)
api_discovery["data"]["apiList"].append(API_DISCOVERY_PORT_MANAGEMENT)
with patch.dict(API_DISCOVERY_RESPONSE, api_discovery):
await setup_axis_integration(hass, config_entry)
device = hass.data[AXIS_DOMAIN][config_entry.entry_id]
device.api.vapix.ports = {"0": AsyncMock(), "1": AsyncMock()}
device.api.vapix.ports["0"].name = "Doorbell"
device.api.vapix.ports["0"].open = AsyncMock()
device.api.vapix.ports["0"].close = AsyncMock()
device.api.vapix.ports["1"].name = ""
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()
assert len(hass.states.async_entity_ids(SWITCH_DOMAIN)) == 2
2020-10-22 07:29:53 +00:00
relay_1 = hass.states.get(f"{SWITCH_DOMAIN}.{NAME}_relay_1")
assert relay_1.state == STATE_ON
assert relay_1.name == f"{NAME} Relay 1"
2020-10-22 07:29:53 +00:00
entity_id = f"{SWITCH_DOMAIN}.{NAME}_doorbell"
relay_0 = hass.states.get(entity_id)
assert relay_0.state == STATE_OFF
assert relay_0.name == f"{NAME} Doorbell"
# 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
await hass.services.async_call(
SWITCH_DOMAIN,
2020-10-22 07:29:53 +00:00
SERVICE_TURN_ON,
{ATTR_ENTITY_ID: entity_id},
blocking=True,
)
device.api.vapix.ports["0"].close.assert_called_once()
await hass.services.async_call(
SWITCH_DOMAIN,
2020-10-22 07:29:53 +00:00
SERVICE_TURN_OFF,
{ATTR_ENTITY_ID: entity_id},
blocking=True,
)
device.api.vapix.ports["0"].open.assert_called_once()