2019-03-30 04:10:00 +00:00
|
|
|
"""Tests for the Heos Media Player platform."""
|
2019-04-01 16:58:52 +00:00
|
|
|
import asyncio
|
|
|
|
|
2019-04-22 19:10:55 +00:00
|
|
|
from pyheos import CommandError, const
|
2019-03-30 04:10:00 +00:00
|
|
|
|
|
|
|
from homeassistant.components.heos import media_player
|
2019-04-01 16:58:52 +00:00
|
|
|
from homeassistant.components.heos.const import (
|
|
|
|
DATA_SOURCE_MANAGER, DOMAIN, SIGNAL_HEOS_SOURCES_UPDATED)
|
2019-03-30 04:10:00 +00:00
|
|
|
from homeassistant.components.media_player.const import (
|
2019-04-01 16:58:52 +00:00
|
|
|
ATTR_INPUT_SOURCE, ATTR_INPUT_SOURCE_LIST, ATTR_MEDIA_ALBUM_NAME,
|
|
|
|
ATTR_MEDIA_ARTIST, ATTR_MEDIA_CONTENT_ID, ATTR_MEDIA_CONTENT_TYPE,
|
|
|
|
ATTR_MEDIA_DURATION, ATTR_MEDIA_POSITION, ATTR_MEDIA_POSITION_UPDATED_AT,
|
|
|
|
ATTR_MEDIA_SHUFFLE, ATTR_MEDIA_TITLE, ATTR_MEDIA_VOLUME_LEVEL,
|
|
|
|
ATTR_MEDIA_VOLUME_MUTED, DOMAIN as MEDIA_PLAYER_DOMAIN, MEDIA_TYPE_MUSIC,
|
2019-04-22 19:10:55 +00:00
|
|
|
MEDIA_TYPE_URL, SERVICE_CLEAR_PLAYLIST, SERVICE_PLAY_MEDIA,
|
|
|
|
SERVICE_SELECT_SOURCE, SUPPORT_NEXT_TRACK, SUPPORT_PAUSE, SUPPORT_PLAY,
|
|
|
|
SUPPORT_PREVIOUS_TRACK, SUPPORT_STOP)
|
2019-03-30 04:10:00 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
ATTR_ENTITY_ID, ATTR_FRIENDLY_NAME, ATTR_SUPPORTED_FEATURES,
|
|
|
|
SERVICE_MEDIA_NEXT_TRACK, SERVICE_MEDIA_PAUSE, SERVICE_MEDIA_PLAY,
|
|
|
|
SERVICE_MEDIA_PREVIOUS_TRACK, SERVICE_MEDIA_STOP, SERVICE_SHUFFLE_SET,
|
|
|
|
SERVICE_VOLUME_MUTE, SERVICE_VOLUME_SET, STATE_IDLE, STATE_PLAYING,
|
|
|
|
STATE_UNAVAILABLE)
|
|
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
|
|
|
|
|
|
async def setup_platform(hass, config_entry, config):
|
|
|
|
"""Set up the media player platform for testing."""
|
|
|
|
config_entry.add_to_hass(hass)
|
|
|
|
assert await async_setup_component(hass, DOMAIN, config)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
|
|
|
|
async def test_async_setup_platform():
|
|
|
|
"""Test setup platform does nothing (it uses config entries)."""
|
|
|
|
await media_player.async_setup_platform(None, None, None)
|
|
|
|
|
|
|
|
|
|
|
|
async def test_state_attributes(hass, config_entry, config, controller):
|
|
|
|
"""Tests the state attributes."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.state == STATE_IDLE
|
|
|
|
assert state.attributes[ATTR_MEDIA_VOLUME_LEVEL] == 0.25
|
|
|
|
assert not state.attributes[ATTR_MEDIA_VOLUME_MUTED]
|
|
|
|
assert state.attributes[ATTR_MEDIA_CONTENT_ID] == "1"
|
|
|
|
assert state.attributes[ATTR_MEDIA_CONTENT_TYPE] == MEDIA_TYPE_MUSIC
|
|
|
|
assert ATTR_MEDIA_DURATION not in state.attributes
|
|
|
|
assert ATTR_MEDIA_POSITION not in state.attributes
|
|
|
|
assert state.attributes[ATTR_MEDIA_TITLE] == "Song"
|
|
|
|
assert state.attributes[ATTR_MEDIA_ARTIST] == "Artist"
|
|
|
|
assert state.attributes[ATTR_MEDIA_ALBUM_NAME] == "Album"
|
|
|
|
assert not state.attributes[ATTR_MEDIA_SHUFFLE]
|
|
|
|
assert state.attributes['media_album_id'] == 1
|
|
|
|
assert state.attributes['media_queue_id'] == 1
|
|
|
|
assert state.attributes['media_source_id'] == 1
|
|
|
|
assert state.attributes['media_station'] == "Station Name"
|
|
|
|
assert state.attributes['media_type'] == "Station"
|
|
|
|
assert state.attributes[ATTR_FRIENDLY_NAME] == "Test Player"
|
|
|
|
assert state.attributes[ATTR_SUPPORTED_FEATURES] == \
|
|
|
|
SUPPORT_PLAY | SUPPORT_PAUSE | SUPPORT_STOP | SUPPORT_NEXT_TRACK | \
|
|
|
|
SUPPORT_PREVIOUS_TRACK | media_player.BASE_SUPPORTED_FEATURES
|
2019-04-01 16:58:52 +00:00
|
|
|
assert ATTR_INPUT_SOURCE not in state.attributes
|
|
|
|
assert state.attributes[ATTR_INPUT_SOURCE_LIST] == \
|
|
|
|
hass.data[DOMAIN][DATA_SOURCE_MANAGER].source_list
|
2019-03-30 04:10:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_updates_start_from_signals(
|
2019-04-01 16:58:52 +00:00
|
|
|
hass, config_entry, config, controller, favorites):
|
2019-03-30 04:10:00 +00:00
|
|
|
"""Tests dispatched signals update player."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
|
|
|
|
# Test player does not update for other players
|
|
|
|
player.state = const.PLAY_STATE_PLAY
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_PLAYER_EVENT, 2,
|
|
|
|
const.EVENT_PLAYER_STATE_CHANGED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.state == STATE_IDLE
|
|
|
|
|
|
|
|
# Test player_update standard events
|
|
|
|
player.state = const.PLAY_STATE_PLAY
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_PLAYER_EVENT, player.player_id,
|
|
|
|
const.EVENT_PLAYER_STATE_CHANGED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.state == STATE_PLAYING
|
|
|
|
|
|
|
|
# Test player_update progress events
|
|
|
|
player.now_playing_media.duration = 360000
|
|
|
|
player.now_playing_media.current_position = 1000
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_PLAYER_EVENT, player.player_id,
|
|
|
|
const.EVENT_PLAYER_NOW_PLAYING_PROGRESS)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.attributes[ATTR_MEDIA_POSITION_UPDATED_AT] is not None
|
|
|
|
assert state.attributes[ATTR_MEDIA_DURATION] == 360
|
|
|
|
assert state.attributes[ATTR_MEDIA_POSITION] == 1
|
|
|
|
|
|
|
|
# Test controller player change updates
|
|
|
|
player.available = False
|
|
|
|
player.heos.dispatcher.send(
|
2019-05-02 05:39:59 +00:00
|
|
|
const.SIGNAL_CONTROLLER_EVENT, const.EVENT_PLAYERS_CHANGED, {})
|
2019-03-30 04:10:00 +00:00
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
|
2019-04-25 04:31:32 +00:00
|
|
|
|
|
|
|
async def test_updates_from_connection_event(
|
|
|
|
hass, config_entry, config, controller, input_sources, caplog):
|
|
|
|
"""Tests player updates from connection event after connection failure."""
|
|
|
|
# Connected
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
2019-03-30 04:10:00 +00:00
|
|
|
player.available = True
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_HEOS_EVENT, const.EVENT_CONNECTED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
2019-04-25 04:31:32 +00:00
|
|
|
assert state.state == STATE_IDLE
|
|
|
|
assert player.refresh.call_count == 1
|
|
|
|
|
|
|
|
# Connected handles refresh failure
|
|
|
|
player.reset_mock()
|
|
|
|
player.refresh.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_HEOS_EVENT, const.EVENT_CONNECTED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert player.refresh.call_count == 1
|
|
|
|
assert "Unable to refresh player" in caplog.text
|
|
|
|
|
|
|
|
# Disconnected
|
|
|
|
player.reset_mock()
|
|
|
|
player.available = False
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_HEOS_EVENT, const.EVENT_DISCONNECTED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
assert player.refresh.call_count == 0
|
2019-03-30 04:10:00 +00:00
|
|
|
|
2019-04-09 16:21:00 +00:00
|
|
|
|
|
|
|
async def test_updates_from_sources_updated(
|
|
|
|
hass, config_entry, config, controller, input_sources):
|
|
|
|
"""Tests player updates from changes in sources list."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
2019-04-01 16:58:52 +00:00
|
|
|
event = asyncio.Event()
|
|
|
|
|
|
|
|
async def set_signal():
|
|
|
|
event.set()
|
|
|
|
hass.helpers.dispatcher.async_dispatcher_connect(
|
|
|
|
SIGNAL_HEOS_SOURCES_UPDATED, set_signal)
|
|
|
|
|
2019-04-09 16:21:00 +00:00
|
|
|
input_sources.clear()
|
2019-04-01 16:58:52 +00:00
|
|
|
player.heos.dispatcher.send(
|
2019-05-02 05:39:59 +00:00
|
|
|
const.SIGNAL_CONTROLLER_EVENT, const.EVENT_SOURCES_CHANGED, {})
|
2019-04-01 16:58:52 +00:00
|
|
|
await event.wait()
|
|
|
|
source_list = hass.data[DOMAIN][DATA_SOURCE_MANAGER].source_list
|
2019-04-09 16:21:00 +00:00
|
|
|
assert len(source_list) == 2
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.attributes[ATTR_INPUT_SOURCE_LIST] == source_list
|
|
|
|
|
|
|
|
|
|
|
|
async def test_updates_from_user_changed(
|
|
|
|
hass, config_entry, config, controller):
|
|
|
|
"""Tests player updates from changes in user."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
event = asyncio.Event()
|
|
|
|
|
|
|
|
async def set_signal():
|
|
|
|
event.set()
|
|
|
|
hass.helpers.dispatcher.async_dispatcher_connect(
|
|
|
|
SIGNAL_HEOS_SOURCES_UPDATED, set_signal)
|
|
|
|
|
|
|
|
controller.is_signed_in = False
|
|
|
|
controller.signed_in_username = None
|
|
|
|
player.heos.dispatcher.send(
|
2019-05-02 05:39:59 +00:00
|
|
|
const.SIGNAL_CONTROLLER_EVENT, const.EVENT_USER_CHANGED, None)
|
2019-04-09 16:21:00 +00:00
|
|
|
await event.wait()
|
|
|
|
source_list = hass.data[DOMAIN][DATA_SOURCE_MANAGER].source_list
|
2019-04-01 16:58:52 +00:00
|
|
|
assert len(source_list) == 1
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.attributes[ATTR_INPUT_SOURCE_LIST] == source_list
|
|
|
|
|
2019-03-30 04:10:00 +00:00
|
|
|
|
2019-04-20 02:22:40 +00:00
|
|
|
async def test_clear_playlist(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the clear playlist service."""
|
2019-03-30 04:10:00 +00:00
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
2019-04-20 02:22:40 +00:00
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_CLEAR_PLAYLIST,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player'}, blocking=True)
|
|
|
|
assert player.clear_queue.call_count == 1
|
|
|
|
player.clear_queue.reset_mock()
|
|
|
|
player.clear_queue.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to clear playlist: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_pause(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the pause service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_MEDIA_PAUSE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player'}, blocking=True)
|
|
|
|
assert player.pause.call_count == 1
|
|
|
|
player.pause.reset_mock()
|
|
|
|
player.pause.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to pause: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_play(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the play service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_MEDIA_PLAY,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player'}, blocking=True)
|
|
|
|
assert player.play.call_count == 1
|
|
|
|
player.play.reset_mock()
|
|
|
|
player.play.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to play: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_previous_track(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the previous track service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_MEDIA_PREVIOUS_TRACK,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player'}, blocking=True)
|
|
|
|
assert player.play_previous.call_count == 1
|
|
|
|
player.play_previous.reset_mock()
|
|
|
|
player.play_previous.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to move to previous track: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_next_track(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the next track service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_MEDIA_NEXT_TRACK,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player'}, blocking=True)
|
|
|
|
assert player.play_next.call_count == 1
|
|
|
|
player.play_next.reset_mock()
|
|
|
|
player.play_next.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to move to next track: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_stop(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the stop service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_MEDIA_STOP,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player'}, blocking=True)
|
|
|
|
assert player.stop.call_count == 1
|
|
|
|
player.stop.reset_mock()
|
|
|
|
player.stop.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to stop: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_volume_mute(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the volume mute service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_VOLUME_MUTE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_MEDIA_VOLUME_MUTED: True}, blocking=True)
|
|
|
|
assert player.set_mute.call_count == 1
|
|
|
|
player.set_mute.reset_mock()
|
|
|
|
player.set_mute.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to set mute: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_shuffle_set(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the shuffle set service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SHUFFLE_SET,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_MEDIA_SHUFFLE: True}, blocking=True)
|
|
|
|
player.set_play_mode.assert_called_once_with(player.repeat, True)
|
|
|
|
player.set_play_mode.reset_mock()
|
|
|
|
player.set_play_mode.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to set shuffle: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_volume_set(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the volume set service."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_VOLUME_SET,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_MEDIA_VOLUME_LEVEL: 1}, blocking=True)
|
|
|
|
player.set_volume.assert_called_once_with(100)
|
|
|
|
player.set_volume.reset_mock()
|
|
|
|
player.set_volume.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to set volume level: Failure (1)" in caplog.text
|
2019-03-30 04:10:00 +00:00
|
|
|
|
|
|
|
|
2019-04-01 16:58:52 +00:00
|
|
|
async def test_select_favorite(
|
|
|
|
hass, config_entry, config, controller, favorites):
|
|
|
|
"""Tests selecting a music service favorite and state."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# Test set music service preset
|
|
|
|
favorite = favorites[1]
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SELECT_SOURCE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_INPUT_SOURCE: favorite.name}, blocking=True)
|
|
|
|
player.play_favorite.assert_called_once_with(1)
|
|
|
|
# Test state is matched by station name
|
|
|
|
player.now_playing_media.station = favorite.name
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_PLAYER_EVENT, player.player_id,
|
|
|
|
const.EVENT_PLAYER_STATE_CHANGED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.attributes[ATTR_INPUT_SOURCE] == favorite.name
|
|
|
|
|
|
|
|
|
|
|
|
async def test_select_radio_favorite(
|
|
|
|
hass, config_entry, config, controller, favorites):
|
|
|
|
"""Tests selecting a radio favorite and state."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# Test set radio preset
|
|
|
|
favorite = favorites[2]
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SELECT_SOURCE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_INPUT_SOURCE: favorite.name}, blocking=True)
|
|
|
|
player.play_favorite.assert_called_once_with(2)
|
|
|
|
# Test state is matched by album id
|
|
|
|
player.now_playing_media.station = "Classical"
|
|
|
|
player.now_playing_media.album_id = favorite.media_id
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_PLAYER_EVENT, player.player_id,
|
|
|
|
const.EVENT_PLAYER_STATE_CHANGED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.attributes[ATTR_INPUT_SOURCE] == favorite.name
|
|
|
|
|
|
|
|
|
2019-04-20 02:22:40 +00:00
|
|
|
async def test_select_radio_favorite_command_error(
|
|
|
|
hass, config_entry, config, controller, favorites, caplog):
|
|
|
|
"""Tests command error loged when playing favorite."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# Test set radio preset
|
|
|
|
favorite = favorites[2]
|
|
|
|
player.play_favorite.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SELECT_SOURCE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_INPUT_SOURCE: favorite.name}, blocking=True)
|
|
|
|
player.play_favorite.assert_called_once_with(2)
|
|
|
|
assert "Unable to select source: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
2019-04-01 16:58:52 +00:00
|
|
|
async def test_select_input_source(
|
|
|
|
hass, config_entry, config, controller, input_sources):
|
|
|
|
"""Tests selecting input source and state."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
# Test proper service called
|
|
|
|
input_source = input_sources[0]
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SELECT_SOURCE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_INPUT_SOURCE: input_source.name}, blocking=True)
|
|
|
|
player.play_input_source.assert_called_once_with(input_source)
|
|
|
|
# Test state is matched by media id
|
|
|
|
player.now_playing_media.source_id = const.MUSIC_SOURCE_AUX_INPUT
|
|
|
|
player.now_playing_media.media_id = const.INPUT_AUX_IN_1
|
|
|
|
player.heos.dispatcher.send(
|
|
|
|
const.SIGNAL_PLAYER_EVENT, player.player_id,
|
|
|
|
const.EVENT_PLAYER_STATE_CHANGED)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get('media_player.test_player')
|
|
|
|
assert state.attributes[ATTR_INPUT_SOURCE] == input_source.name
|
|
|
|
|
|
|
|
|
|
|
|
async def test_select_input_unknown(
|
|
|
|
hass, config_entry, config, controller, caplog):
|
|
|
|
"""Tests selecting an unknown input."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SELECT_SOURCE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_INPUT_SOURCE: "Unknown"}, blocking=True)
|
|
|
|
assert "Unknown source: Unknown" in caplog.text
|
|
|
|
|
|
|
|
|
2019-04-20 02:22:40 +00:00
|
|
|
async def test_select_input_command_error(
|
|
|
|
hass, config_entry, config, controller, caplog, input_sources):
|
|
|
|
"""Tests selecting an unknown input."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
input_source = input_sources[0]
|
|
|
|
player.play_input_source.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_SELECT_SOURCE,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_INPUT_SOURCE: input_source.name}, blocking=True)
|
|
|
|
player.play_input_source.assert_called_once_with(input_source)
|
|
|
|
assert "Unable to select source: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
2019-03-30 04:10:00 +00:00
|
|
|
async def test_unload_config_entry(hass, config_entry, config, controller):
|
|
|
|
"""Test the player is removed when the config entry is unloaded."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
await config_entry.async_unload(hass)
|
|
|
|
assert not hass.states.get('media_player.test_player')
|
2019-04-22 19:10:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_play_media_url(hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the play media service with type url."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
player = controller.players[1]
|
|
|
|
url = "http://news/podcast.mp3"
|
|
|
|
# First pass completes successfully, second pass raises command error
|
|
|
|
for _ in range(2):
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_PLAY_MEDIA,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_MEDIA_CONTENT_TYPE: MEDIA_TYPE_URL,
|
|
|
|
ATTR_MEDIA_CONTENT_ID: url}, blocking=True)
|
|
|
|
player.play_url.assert_called_once_with(url)
|
|
|
|
player.play_url.reset_mock()
|
|
|
|
player.play_url.side_effect = CommandError(None, "Failure", 1)
|
|
|
|
assert "Unable to play media: Failure (1)" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_play_media_invalid_type(
|
|
|
|
hass, config_entry, config, controller, caplog):
|
|
|
|
"""Test the play media service with an invalid type."""
|
|
|
|
await setup_platform(hass, config_entry, config)
|
|
|
|
await hass.services.async_call(
|
|
|
|
MEDIA_PLAYER_DOMAIN, SERVICE_PLAY_MEDIA,
|
|
|
|
{ATTR_ENTITY_ID: 'media_player.test_player',
|
|
|
|
ATTR_MEDIA_CONTENT_TYPE: "Other",
|
|
|
|
ATTR_MEDIA_CONTENT_ID: ""}, blocking=True)
|
|
|
|
assert "Unable to play media: Unsupported media type 'Other'" \
|
|
|
|
in caplog.text
|