* Add webOS Smart TV config flow support (#53256) * Add Webostv config flow * Fix tests mocks and apply review comments * Apply review comments * Change config flow to use ssdp UDN as unique_id * Fix device info * More review comments * Fix _async_check_configured_entry * Remove turn on script * Add webOS Smart TV device triggers (#53752) * Add webOS Smart TV config flow support (#53256) * Add Webostv config flow * Fix tests mocks and apply review comments * Apply review comments * Change config flow to use ssdp UDN as unique_id * Fix device info * More review comments * Fix _async_check_configured_entry * Remove turn on script * Add webOS Smart TV device triggers (#53752) * Fix webOS Smart TV mypy and pylint errors (#62620) * Change webOS Smart TV PyPi aiopylgtv package to bscpylgtv (#62633) * Change webOS Smart TV PyPi aiopylgtv package to bscpylgtv * Update bscpylgtv to 0.2.8 (revised websockets requirment) * Change webOS Smart TV PyPi package to aiowebostv (#63759) * Change webOS Smart TV PyPi package to aiowebostv * Apply suggestions from code review Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * webOS TV check UUID for user added device (#63817) * webOS TV check uuid when for user added device * Apply suggestions from code review Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Add test for form abort and host update Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Rework webOS Smart TV device trigger to custom trigger platform (#63950) * Rework webOS Smart TV device trigger to custom trigger platform * Review comments and add tests * Fix webOS TV import from YAML (#63996) * Fix webOS TV import from YAML * Fix requirements * Migrate YAML entities unique id to UUID * Add backoff to migration task delay * Assert result data and unique_id * Apply suggestions from code review Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Add codeowner Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
93 lines
2.5 KiB
Python
93 lines
2.5 KiB
Python
"""The tests for the LG webOS media player platform."""
|
|
from homeassistant.components.media_player import DOMAIN as MP_DOMAIN
|
|
from homeassistant.components.media_player.const import (
|
|
ATTR_INPUT_SOURCE,
|
|
ATTR_MEDIA_VOLUME_MUTED,
|
|
SERVICE_SELECT_SOURCE,
|
|
)
|
|
from homeassistant.components.webostv.const import (
|
|
ATTR_BUTTON,
|
|
ATTR_PAYLOAD,
|
|
DOMAIN,
|
|
SERVICE_BUTTON,
|
|
SERVICE_COMMAND,
|
|
)
|
|
from homeassistant.const import ATTR_COMMAND, ATTR_ENTITY_ID, SERVICE_VOLUME_MUTE
|
|
|
|
from . import ENTITY_ID, setup_webostv
|
|
|
|
|
|
async def test_mute(hass, client):
|
|
"""Test simple service call."""
|
|
await setup_webostv(hass)
|
|
|
|
data = {
|
|
ATTR_ENTITY_ID: ENTITY_ID,
|
|
ATTR_MEDIA_VOLUME_MUTED: True,
|
|
}
|
|
|
|
assert await hass.services.async_call(MP_DOMAIN, SERVICE_VOLUME_MUTE, data, True)
|
|
await hass.async_block_till_done()
|
|
|
|
client.set_mute.assert_called_once()
|
|
|
|
|
|
async def test_select_source_with_empty_source_list(hass, client):
|
|
"""Ensure we don't call client methods when we don't have sources."""
|
|
await setup_webostv(hass)
|
|
|
|
data = {
|
|
ATTR_ENTITY_ID: ENTITY_ID,
|
|
ATTR_INPUT_SOURCE: "nonexistent",
|
|
}
|
|
await hass.services.async_call(MP_DOMAIN, SERVICE_SELECT_SOURCE, data)
|
|
await hass.async_block_till_done()
|
|
|
|
client.launch_app.assert_not_called()
|
|
client.set_input.assert_not_called()
|
|
|
|
|
|
async def test_button(hass, client):
|
|
"""Test generic button functionality."""
|
|
await setup_webostv(hass)
|
|
|
|
data = {
|
|
ATTR_ENTITY_ID: ENTITY_ID,
|
|
ATTR_BUTTON: "test",
|
|
}
|
|
await hass.services.async_call(DOMAIN, SERVICE_BUTTON, data)
|
|
await hass.async_block_till_done()
|
|
|
|
client.button.assert_called_once()
|
|
client.button.assert_called_with("test")
|
|
|
|
|
|
async def test_command(hass, client):
|
|
"""Test generic command functionality."""
|
|
await setup_webostv(hass)
|
|
|
|
data = {
|
|
ATTR_ENTITY_ID: ENTITY_ID,
|
|
ATTR_COMMAND: "test",
|
|
}
|
|
await hass.services.async_call(DOMAIN, SERVICE_COMMAND, data)
|
|
await hass.async_block_till_done()
|
|
|
|
client.request.assert_called_with("test", payload=None)
|
|
|
|
|
|
async def test_command_with_optional_arg(hass, client):
|
|
"""Test generic command functionality."""
|
|
await setup_webostv(hass)
|
|
|
|
data = {
|
|
ATTR_ENTITY_ID: ENTITY_ID,
|
|
ATTR_COMMAND: "test",
|
|
ATTR_PAYLOAD: {"target": "https://www.google.com"},
|
|
}
|
|
await hass.services.async_call(DOMAIN, SERVICE_COMMAND, data)
|
|
await hass.async_block_till_done()
|
|
|
|
client.request.assert_called_with(
|
|
"test", payload={"target": "https://www.google.com"}
|
|
)
|