264 lines
7.1 KiB
Python
264 lines
7.1 KiB
Python
"""Test sending commands to the Harmony Hub remote."""
|
|
|
|
from aioharmony.const import SendCommandDevice
|
|
|
|
from homeassistant.components.harmony.const import (
|
|
DOMAIN,
|
|
SERVICE_CHANGE_CHANNEL,
|
|
SERVICE_SYNC,
|
|
)
|
|
from homeassistant.components.harmony.remote import ATTR_CHANNEL, ATTR_DELAY_SECS
|
|
from homeassistant.components.remote import (
|
|
ATTR_COMMAND,
|
|
ATTR_DEVICE,
|
|
ATTR_NUM_REPEATS,
|
|
DEFAULT_DELAY_SECS,
|
|
DEFAULT_HOLD_SECS,
|
|
DOMAIN as REMOTE_DOMAIN,
|
|
SERVICE_SEND_COMMAND,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, CONF_HOST, CONF_NAME
|
|
|
|
from .conftest import TV_DEVICE_ID, TV_DEVICE_NAME
|
|
from .const import ENTITY_REMOTE, HUB_NAME
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
PLAY_COMMAND = "Play"
|
|
STOP_COMMAND = "Stop"
|
|
|
|
|
|
async def test_async_send_command(mock_hc, hass, mock_write_config):
|
|
"""Ensure calls to send remote commands properly propagate to devices."""
|
|
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()
|
|
|
|
data = hass.data[DOMAIN][entry.entry_id]
|
|
send_commands_mock = data._client.send_commands
|
|
|
|
# No device provided
|
|
await _send_commands_and_wait(
|
|
hass, {ATTR_ENTITY_ID: ENTITY_REMOTE, ATTR_COMMAND: PLAY_COMMAND}
|
|
)
|
|
send_commands_mock.assert_not_awaited()
|
|
|
|
# Tell the TV to play by id
|
|
await _send_commands_and_wait(
|
|
hass,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_REMOTE,
|
|
ATTR_COMMAND: PLAY_COMMAND,
|
|
ATTR_DEVICE: TV_DEVICE_ID,
|
|
},
|
|
)
|
|
|
|
send_commands_mock.assert_awaited_once_with(
|
|
[
|
|
SendCommandDevice(
|
|
device=str(TV_DEVICE_ID),
|
|
command=PLAY_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS,
|
|
]
|
|
)
|
|
send_commands_mock.reset_mock()
|
|
|
|
# Tell the TV to play by name
|
|
await _send_commands_and_wait(
|
|
hass,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_REMOTE,
|
|
ATTR_COMMAND: PLAY_COMMAND,
|
|
ATTR_DEVICE: TV_DEVICE_NAME,
|
|
},
|
|
)
|
|
|
|
send_commands_mock.assert_awaited_once_with(
|
|
[
|
|
SendCommandDevice(
|
|
device=TV_DEVICE_ID,
|
|
command=PLAY_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS,
|
|
]
|
|
)
|
|
send_commands_mock.reset_mock()
|
|
|
|
# Tell the TV to play and stop by name
|
|
await _send_commands_and_wait(
|
|
hass,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_REMOTE,
|
|
ATTR_COMMAND: [PLAY_COMMAND, STOP_COMMAND],
|
|
ATTR_DEVICE: TV_DEVICE_NAME,
|
|
},
|
|
)
|
|
|
|
send_commands_mock.assert_awaited_once_with(
|
|
[
|
|
SendCommandDevice(
|
|
device=TV_DEVICE_ID,
|
|
command=PLAY_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS,
|
|
SendCommandDevice(
|
|
device=TV_DEVICE_ID,
|
|
command=STOP_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS,
|
|
]
|
|
)
|
|
send_commands_mock.reset_mock()
|
|
|
|
# Tell the TV to play by name multiple times
|
|
await _send_commands_and_wait(
|
|
hass,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_REMOTE,
|
|
ATTR_COMMAND: PLAY_COMMAND,
|
|
ATTR_DEVICE: TV_DEVICE_NAME,
|
|
ATTR_NUM_REPEATS: 2,
|
|
},
|
|
)
|
|
|
|
send_commands_mock.assert_awaited_once_with(
|
|
[
|
|
SendCommandDevice(
|
|
device=TV_DEVICE_ID,
|
|
command=PLAY_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS,
|
|
SendCommandDevice(
|
|
device=TV_DEVICE_ID,
|
|
command=PLAY_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS,
|
|
]
|
|
)
|
|
send_commands_mock.reset_mock()
|
|
|
|
# Send commands to an unknown device
|
|
await _send_commands_and_wait(
|
|
hass,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_REMOTE,
|
|
ATTR_COMMAND: PLAY_COMMAND,
|
|
ATTR_DEVICE: "no-such-device",
|
|
},
|
|
)
|
|
send_commands_mock.assert_not_awaited()
|
|
send_commands_mock.reset_mock()
|
|
|
|
|
|
async def test_async_send_command_custom_delay(mock_hc, hass, mock_write_config):
|
|
"""Ensure calls to send remote commands properly propagate to devices with custom delays."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_HOST: "192.0.2.0",
|
|
CONF_NAME: HUB_NAME,
|
|
ATTR_DELAY_SECS: DEFAULT_DELAY_SECS + 2,
|
|
},
|
|
)
|
|
|
|
entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
data = hass.data[DOMAIN][entry.entry_id]
|
|
send_commands_mock = data._client.send_commands
|
|
|
|
# Tell the TV to play by id
|
|
await _send_commands_and_wait(
|
|
hass,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_REMOTE,
|
|
ATTR_COMMAND: PLAY_COMMAND,
|
|
ATTR_DEVICE: TV_DEVICE_ID,
|
|
},
|
|
)
|
|
|
|
send_commands_mock.assert_awaited_once_with(
|
|
[
|
|
SendCommandDevice(
|
|
device=str(TV_DEVICE_ID),
|
|
command=PLAY_COMMAND,
|
|
delay=float(DEFAULT_HOLD_SECS),
|
|
),
|
|
DEFAULT_DELAY_SECS + 2,
|
|
]
|
|
)
|
|
send_commands_mock.reset_mock()
|
|
|
|
|
|
async def test_change_channel(mock_hc, hass, mock_write_config):
|
|
"""Test change channel commands."""
|
|
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()
|
|
|
|
data = hass.data[DOMAIN][entry.entry_id]
|
|
change_channel_mock = data._client.change_channel
|
|
|
|
# Tell the remote to change channels
|
|
await hass.services.async_call(
|
|
DOMAIN,
|
|
SERVICE_CHANGE_CHANNEL,
|
|
{ATTR_ENTITY_ID: ENTITY_REMOTE, ATTR_CHANNEL: 100},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
change_channel_mock.assert_awaited_once_with(100)
|
|
|
|
|
|
async def test_sync(mock_hc, mock_write_config, hass):
|
|
"""Test the sync command."""
|
|
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()
|
|
|
|
data = hass.data[DOMAIN][entry.entry_id]
|
|
sync_mock = data._client.sync
|
|
|
|
# Tell the remote to change channels
|
|
await hass.services.async_call(
|
|
DOMAIN,
|
|
SERVICE_SYNC,
|
|
{ATTR_ENTITY_ID: ENTITY_REMOTE},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
sync_mock.assert_awaited_once()
|
|
mock_write_config.assert_called()
|
|
|
|
|
|
async def _send_commands_and_wait(hass, service_data):
|
|
await hass.services.async_call(
|
|
REMOTE_DOMAIN,
|
|
SERVICE_SEND_COMMAND,
|
|
service_data,
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|