mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Axis - Improve tests (#30415)
This commit is contained in:
@@ -2,11 +2,12 @@
|
||||
|
||||
from unittest.mock import Mock, call as mock_call
|
||||
|
||||
from homeassistant import config_entries
|
||||
from homeassistant.components import axis
|
||||
import homeassistant.components.switch as switch
|
||||
from homeassistant.setup import async_setup_component
|
||||
|
||||
from .test_device import NAME, setup_axis_integration
|
||||
|
||||
EVENTS = [
|
||||
{
|
||||
"operation": "Initialized",
|
||||
@@ -26,52 +27,6 @@ EVENTS = [
|
||||
},
|
||||
]
|
||||
|
||||
ENTRY_CONFIG = {
|
||||
axis.CONF_DEVICE: {
|
||||
axis.config_flow.CONF_HOST: "1.2.3.4",
|
||||
axis.config_flow.CONF_USERNAME: "user",
|
||||
axis.config_flow.CONF_PASSWORD: "pass",
|
||||
axis.config_flow.CONF_PORT: 80,
|
||||
},
|
||||
axis.config_flow.CONF_MAC: "1234ABCD",
|
||||
axis.config_flow.CONF_MODEL: "model",
|
||||
axis.config_flow.CONF_NAME: "model 0",
|
||||
}
|
||||
|
||||
ENTRY_OPTIONS = {
|
||||
axis.CONF_CAMERA: False,
|
||||
axis.CONF_EVENTS: True,
|
||||
axis.CONF_TRIGGER_TIME: 0,
|
||||
}
|
||||
|
||||
|
||||
async def setup_device(hass):
|
||||
"""Load the Axis switch platform."""
|
||||
from axis import AxisDevice
|
||||
|
||||
loop = Mock()
|
||||
|
||||
config_entry = config_entries.ConfigEntry(
|
||||
1,
|
||||
axis.DOMAIN,
|
||||
"Mock Title",
|
||||
ENTRY_CONFIG,
|
||||
"test",
|
||||
config_entries.CONN_CLASS_LOCAL_PUSH,
|
||||
system_options={},
|
||||
options=ENTRY_OPTIONS,
|
||||
)
|
||||
device = axis.AxisNetworkDevice(hass, config_entry)
|
||||
device.api = AxisDevice(loop=loop, **config_entry.data[axis.CONF_DEVICE])
|
||||
hass.data[axis.DOMAIN] = {device.serial: device}
|
||||
device.api.enable_events(event_callback=device.async_event_callback)
|
||||
|
||||
await hass.config_entries.async_forward_entry_setup(config_entry, "switch")
|
||||
# To flush out the service call to update the group
|
||||
await hass.async_block_till_done()
|
||||
|
||||
return device
|
||||
|
||||
|
||||
async def test_platform_manually_configured(hass):
|
||||
"""Test that nothing happens when platform is manually configured."""
|
||||
@@ -84,14 +39,15 @@ async def test_platform_manually_configured(hass):
|
||||
|
||||
async def test_no_switches(hass):
|
||||
"""Test that no output events in Axis results in no switch entities."""
|
||||
await setup_device(hass)
|
||||
await setup_axis_integration(hass)
|
||||
|
||||
assert not hass.states.async_entity_ids("switch")
|
||||
|
||||
|
||||
async def test_switches(hass):
|
||||
"""Test that switches are loaded properly."""
|
||||
device = await setup_device(hass)
|
||||
device = await setup_axis_integration(hass)
|
||||
|
||||
device.api.vapix.ports = {"0": Mock(), "1": Mock()}
|
||||
device.api.vapix.ports["0"].name = "Doorbell"
|
||||
device.api.vapix.ports["1"].name = ""
|
||||
@@ -100,24 +56,24 @@ async def test_switches(hass):
|
||||
device.api.stream.event.manage_event(event)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
assert len(hass.states.async_all()) == 3
|
||||
assert len(hass.states.async_entity_ids("switch")) == 2
|
||||
|
||||
relay_0 = hass.states.get("switch.model_0_doorbell")
|
||||
relay_0 = hass.states.get(f"switch.{NAME}_doorbell")
|
||||
assert relay_0.state == "off"
|
||||
assert relay_0.name == "model 0 Doorbell"
|
||||
assert relay_0.name == f"{NAME} Doorbell"
|
||||
|
||||
relay_1 = hass.states.get("switch.model_0_relay_1")
|
||||
relay_1 = hass.states.get(f"switch.{NAME}_relay_1")
|
||||
assert relay_1.state == "on"
|
||||
assert relay_1.name == "model 0 Relay 1"
|
||||
assert relay_1.name == f"{NAME} Relay 1"
|
||||
|
||||
device.api.vapix.ports["0"].action = Mock()
|
||||
|
||||
await hass.services.async_call(
|
||||
"switch", "turn_on", {"entity_id": "switch.model_0_doorbell"}, blocking=True
|
||||
"switch", "turn_on", {"entity_id": f"switch.{NAME}_doorbell"}, blocking=True
|
||||
)
|
||||
|
||||
await hass.services.async_call(
|
||||
"switch", "turn_off", {"entity_id": "switch.model_0_doorbell"}, blocking=True
|
||||
"switch", "turn_off", {"entity_id": f"switch.{NAME}_doorbell"}, blocking=True
|
||||
)
|
||||
|
||||
assert device.api.vapix.ports["0"].action.call_args_list == [
|
||||
|
||||
Reference in New Issue
Block a user