114 lines
3.4 KiB
Python
114 lines
3.4 KiB
Python
"""Test the Logitech Harmony Hub activity select."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.components.harmony.const import DOMAIN
|
|
from homeassistant.components.select import (
|
|
ATTR_OPTION,
|
|
DOMAIN as SELECT_DOMAIN,
|
|
SERVICE_SELECT_OPTION,
|
|
)
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
CONF_HOST,
|
|
CONF_NAME,
|
|
STATE_OFF,
|
|
STATE_ON,
|
|
STATE_UNAVAILABLE,
|
|
)
|
|
from homeassistant.util import utcnow
|
|
|
|
from .const import ENTITY_REMOTE, ENTITY_SELECT, HUB_NAME
|
|
|
|
from tests.common import MockConfigEntry, async_fire_time_changed
|
|
|
|
|
|
async def test_connection_state_changes(
|
|
harmony_client, mock_hc, hass, mock_write_config
|
|
):
|
|
"""Ensure connection changes are reflected in the switch states."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN, data={CONF_HOST: "192.0.2.0", CONF_NAME: HUB_NAME}
|
|
)
|
|
|
|
entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
# mocks start with current activity == Watch TV
|
|
assert hass.states.is_state(ENTITY_SELECT, "Watch TV")
|
|
|
|
harmony_client.mock_disconnection()
|
|
await hass.async_block_till_done()
|
|
|
|
# Entities do not immediately show as unavailable
|
|
assert hass.states.is_state(ENTITY_SELECT, "Watch TV")
|
|
|
|
future_time = utcnow() + timedelta(seconds=10)
|
|
async_fire_time_changed(hass, future_time)
|
|
await hass.async_block_till_done()
|
|
assert hass.states.is_state(ENTITY_SELECT, STATE_UNAVAILABLE)
|
|
|
|
harmony_client.mock_reconnection()
|
|
await hass.async_block_till_done()
|
|
|
|
assert hass.states.is_state(ENTITY_SELECT, "Watch TV")
|
|
|
|
|
|
async def test_options(mock_hc, hass, mock_write_config):
|
|
"""Ensure calls to the switch modify the harmony state."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN, data={CONF_HOST: "192.0.2.0", CONF_NAME: HUB_NAME}
|
|
)
|
|
|
|
entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
# assert we have all options
|
|
state = hass.states.get(ENTITY_SELECT)
|
|
assert state.attributes.get("options") == [
|
|
"PowerOff",
|
|
"Nile-TV",
|
|
"Play Music",
|
|
"Watch TV",
|
|
]
|
|
|
|
|
|
async def test_select_option(mock_hc, hass, mock_write_config):
|
|
"""Ensure calls to the switch modify the harmony state."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN, data={CONF_HOST: "192.0.2.0", CONF_NAME: HUB_NAME}
|
|
)
|
|
|
|
entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
# mocks start with current activity == Watch TV
|
|
assert hass.states.is_state(ENTITY_REMOTE, STATE_ON)
|
|
assert hass.states.is_state(ENTITY_SELECT, "Watch TV")
|
|
|
|
# launch Play Music activity
|
|
await _select_option_and_wait(hass, ENTITY_SELECT, "Play Music")
|
|
assert hass.states.is_state(ENTITY_REMOTE, STATE_ON)
|
|
assert hass.states.is_state(ENTITY_SELECT, "Play Music")
|
|
|
|
# turn off harmony by selecting PowerOff activity
|
|
await _select_option_and_wait(hass, ENTITY_SELECT, "PowerOff")
|
|
assert hass.states.is_state(ENTITY_REMOTE, STATE_OFF)
|
|
assert hass.states.is_state(ENTITY_SELECT, "PowerOff")
|
|
|
|
|
|
async def _select_option_and_wait(hass, entity, option):
|
|
await hass.services.async_call(
|
|
SELECT_DOMAIN,
|
|
SERVICE_SELECT_OPTION,
|
|
{
|
|
ATTR_ENTITY_ID: entity,
|
|
ATTR_OPTION: option,
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|