mirror of https://github.com/home-assistant/core
36 lines
927 B
Python
36 lines
927 B
Python
"""Tests for the WebOS TV integration."""
|
|
|
|
from homeassistant.components.webostv.const import DOMAIN
|
|
from homeassistant.const import CONF_CLIENT_SECRET, CONF_HOST
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from .const import CLIENT_KEY, FAKE_UUID, HOST, TV_NAME
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def setup_webostv(
|
|
hass: HomeAssistant, unique_id: str | None = FAKE_UUID
|
|
) -> MockConfigEntry:
|
|
"""Initialize webostv and media_player for tests."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_HOST: HOST,
|
|
CONF_CLIENT_SECRET: CLIENT_KEY,
|
|
},
|
|
title=TV_NAME,
|
|
unique_id=unique_id,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
await async_setup_component(
|
|
hass,
|
|
DOMAIN,
|
|
{DOMAIN: {CONF_HOST: HOST}},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
return entry
|