mirror of
https://github.com/home-assistant/core.git
synced 2026-09-14 20:48:32 +01:00
104 lines
3.3 KiB
Python
104 lines
3.3 KiB
Python
"""Tests for the Abode switch device."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.abode.const import DOMAIN
|
|
from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN
|
|
from homeassistant.const import ATTR_ENTITY_ID, SERVICE_TURN_OFF, SERVICE_TURN_ON
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from .common import setup_platform
|
|
|
|
from tests.common import snapshot_platform
|
|
|
|
AUTOMATION_ID = "switch.test_automation"
|
|
DEVICE_ID = "switch.test_switch"
|
|
|
|
|
|
async def test_all_entities(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test all entities."""
|
|
config_entry = await setup_platform(hass, SWITCH_DOMAIN)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|
|
|
|
|
|
async def test_switch_on(hass: HomeAssistant) -> None:
|
|
"""Test the switch can be turned on."""
|
|
await setup_platform(hass, SWITCH_DOMAIN)
|
|
|
|
with patch("jaraco.abode.devices.switch.Switch.switch_on") as mock_switch_on:
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN, SERVICE_TURN_ON, {ATTR_ENTITY_ID: DEVICE_ID}, blocking=True
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_switch_on.assert_called_once()
|
|
|
|
|
|
async def test_switch_off(hass: HomeAssistant) -> None:
|
|
"""Test the switch can be turned off."""
|
|
await setup_platform(hass, SWITCH_DOMAIN)
|
|
|
|
with patch("jaraco.abode.devices.switch.Switch.switch_off") as mock_switch_off:
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN, SERVICE_TURN_OFF, {ATTR_ENTITY_ID: DEVICE_ID}, blocking=True
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_switch_off.assert_called_once()
|
|
|
|
|
|
async def test_turn_automation_off(hass: HomeAssistant) -> None:
|
|
"""Test the automation can be turned off."""
|
|
with patch("jaraco.abode.automation.Automation.enable") as mock_trigger:
|
|
await setup_platform(hass, SWITCH_DOMAIN)
|
|
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: AUTOMATION_ID},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_trigger.assert_called_once_with(False)
|
|
|
|
|
|
async def test_turn_automation_on(hass: HomeAssistant) -> None:
|
|
"""Test the automation can be turned on."""
|
|
with patch("jaraco.abode.automation.Automation.enable") as mock_trigger:
|
|
await setup_platform(hass, SWITCH_DOMAIN)
|
|
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: AUTOMATION_ID},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_trigger.assert_called_once_with(True)
|
|
|
|
|
|
async def test_trigger_automation(hass: HomeAssistant) -> None:
|
|
"""Test the trigger automation service."""
|
|
await setup_platform(hass, SWITCH_DOMAIN)
|
|
|
|
with patch("jaraco.abode.automation.Automation.trigger") as mock:
|
|
await hass.services.async_call(
|
|
DOMAIN,
|
|
"trigger_automation",
|
|
{ATTR_ENTITY_ID: AUTOMATION_ID},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
mock.assert_called_once()
|