mirror of
https://github.com/home-assistant/core.git
synced 2026-02-26 21:05:18 +00:00
82 lines
2.2 KiB
Python
82 lines
2.2 KiB
Python
"""Tests for the Trane Local switch platform."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from steamloop import HoldType
|
|
from syrupy.assertion 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_OFF,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
@pytest.fixture
|
|
def platforms() -> list[Platform]:
|
|
"""Platforms, which should be loaded during the test."""
|
|
return [Platform.SWITCH]
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
async def test_switch_entities(
|
|
hass: HomeAssistant,
|
|
init_integration: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Snapshot all switch entities."""
|
|
await snapshot_platform(hass, entity_registry, snapshot, init_integration.entry_id)
|
|
|
|
|
|
async def test_hold_switch_off(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_connection: MagicMock,
|
|
) -> None:
|
|
"""Test hold switch reports off when following schedule."""
|
|
mock_connection.state.zones["1"].hold_type = HoldType.SCHEDULE
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("switch.living_room_hold")
|
|
assert state is not None
|
|
assert state.state == STATE_OFF
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("service", "expected_hold_type"),
|
|
[
|
|
(SERVICE_TURN_ON, HoldType.MANUAL),
|
|
(SERVICE_TURN_OFF, HoldType.SCHEDULE),
|
|
],
|
|
)
|
|
async def test_hold_switch_service(
|
|
hass: HomeAssistant,
|
|
init_integration: MockConfigEntry,
|
|
mock_connection: MagicMock,
|
|
service: str,
|
|
expected_hold_type: HoldType,
|
|
) -> None:
|
|
"""Test turning on and off the hold switch."""
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN,
|
|
service,
|
|
{ATTR_ENTITY_ID: "switch.living_room_hold"},
|
|
blocking=True,
|
|
)
|
|
|
|
mock_connection.set_temperature_setpoint.assert_called_once_with(
|
|
"1", hold_type=expected_hold_type
|
|
)
|