mirror of https://github.com/home-assistant/core
67 lines
1.7 KiB
Python
67 lines
1.7 KiB
Python
"""The tests for the demo text component."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.text import (
|
|
ATTR_MAX,
|
|
ATTR_MIN,
|
|
ATTR_PATTERN,
|
|
ATTR_VALUE,
|
|
DOMAIN as TEXT_DOMAIN,
|
|
SERVICE_SET_VALUE,
|
|
)
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
ATTR_MODE,
|
|
MAX_LENGTH_STATE_STATE,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
ENTITY_TEXT = "text.text"
|
|
|
|
|
|
@pytest.fixture
|
|
def text_only() -> Generator[None]:
|
|
"""Enable only the text platform."""
|
|
with patch(
|
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
|
[Platform.TEXT],
|
|
):
|
|
yield
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def setup_demo_text(hass: HomeAssistant, text_only: None) -> None:
|
|
"""Initialize setup demo text."""
|
|
assert await async_setup_component(
|
|
hass, TEXT_DOMAIN, {"text": {"platform": "demo"}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
def test_setup_params(hass: HomeAssistant) -> None:
|
|
"""Test the initial parameters."""
|
|
state = hass.states.get(ENTITY_TEXT)
|
|
assert state.state == "Hello world"
|
|
assert state.attributes[ATTR_MIN] == 0
|
|
assert state.attributes[ATTR_MAX] == MAX_LENGTH_STATE_STATE
|
|
assert state.attributes[ATTR_PATTERN] is None
|
|
assert state.attributes[ATTR_MODE] == "text"
|
|
|
|
|
|
async def test_set_value(hass: HomeAssistant) -> None:
|
|
"""Test set value service."""
|
|
await hass.services.async_call(
|
|
TEXT_DOMAIN,
|
|
SERVICE_SET_VALUE,
|
|
{ATTR_ENTITY_ID: ENTITY_TEXT, ATTR_VALUE: "new"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get(ENTITY_TEXT)
|
|
assert state.state == "new"
|