Improve type hints in demo tests (#120387)
This commit is contained in:
parent
6fb400f76b
commit
7f20c1a489
8 changed files with 40 additions and 32 deletions
|
@ -3,6 +3,7 @@
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
|
|
||||||
from homeassistant.components.camera import (
|
from homeassistant.components.camera import (
|
||||||
DOMAIN as CAMERA_DOMAIN,
|
DOMAIN as CAMERA_DOMAIN,
|
||||||
|
@ -24,7 +25,7 @@ ENTITY_CAMERA = "camera.demo_camera"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def camera_only() -> None:
|
def camera_only() -> Generator[None]:
|
||||||
"""Enable only the button platform."""
|
"""Enable only the button platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -34,7 +35,7 @@ async def camera_only() -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
async def demo_camera(hass, camera_only):
|
async def demo_camera(hass: HomeAssistant, camera_only: None) -> None:
|
||||||
"""Initialize a demo camera platform."""
|
"""Initialize a demo camera platform."""
|
||||||
assert await async_setup_component(
|
assert await async_setup_component(
|
||||||
hass, CAMERA_DOMAIN, {CAMERA_DOMAIN: {"platform": DOMAIN}}
|
hass, CAMERA_DOMAIN, {CAMERA_DOMAIN: {"platform": DOMAIN}}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.climate import (
|
from homeassistant.components.climate import (
|
||||||
|
@ -50,7 +51,7 @@ ENTITY_HEATPUMP = "climate.heatpump"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def climate_only() -> None:
|
def climate_only() -> Generator[None]:
|
||||||
"""Enable only the climate platform."""
|
"""Enable only the climate platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -60,7 +61,7 @@ async def climate_only() -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
async def setup_demo_climate(hass, climate_only):
|
async def setup_demo_climate(hass: HomeAssistant, climate_only: None) -> None:
|
||||||
"""Initialize setup demo climate."""
|
"""Initialize setup demo climate."""
|
||||||
hass.config.units = METRIC_SYSTEM
|
hass.config.units = METRIC_SYSTEM
|
||||||
assert await async_setup_component(hass, DOMAIN, {"climate": {"platform": "demo"}})
|
assert await async_setup_component(hass, DOMAIN, {"climate": {"platform": "demo"}})
|
||||||
|
|
|
@ -4,6 +4,7 @@ from datetime import timedelta
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
|
|
||||||
from homeassistant.components.cover import (
|
from homeassistant.components.cover import (
|
||||||
ATTR_CURRENT_POSITION,
|
ATTR_CURRENT_POSITION,
|
||||||
|
@ -42,7 +43,7 @@ ENTITY_COVER = "cover.living_room_window"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def cover_only() -> None:
|
def cover_only() -> Generator[None]:
|
||||||
"""Enable only the climate platform."""
|
"""Enable only the climate platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -51,15 +52,15 @@ async def cover_only() -> None:
|
||||||
yield
|
yield
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture(autouse=True)
|
||||||
async def setup_comp(hass, cover_only):
|
async def setup_comp(hass: HomeAssistant, cover_only: None) -> None:
|
||||||
"""Set up demo cover component."""
|
"""Set up demo cover component."""
|
||||||
with assert_setup_component(1, DOMAIN):
|
with assert_setup_component(1, DOMAIN):
|
||||||
await async_setup_component(hass, DOMAIN, CONFIG)
|
await async_setup_component(hass, DOMAIN, CONFIG)
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
|
||||||
async def test_supported_features(hass: HomeAssistant, setup_comp) -> None:
|
async def test_supported_features(hass: HomeAssistant) -> None:
|
||||||
"""Test cover supported features."""
|
"""Test cover supported features."""
|
||||||
state = hass.states.get("cover.garage_door")
|
state = hass.states.get("cover.garage_door")
|
||||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == 3
|
assert state.attributes[ATTR_SUPPORTED_FEATURES] == 3
|
||||||
|
@ -71,7 +72,7 @@ async def test_supported_features(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == 255
|
assert state.attributes[ATTR_SUPPORTED_FEATURES] == 255
|
||||||
|
|
||||||
|
|
||||||
async def test_close_cover(hass: HomeAssistant, setup_comp) -> None:
|
async def test_close_cover(hass: HomeAssistant) -> None:
|
||||||
"""Test closing the cover."""
|
"""Test closing the cover."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.state == STATE_OPEN
|
assert state.state == STATE_OPEN
|
||||||
|
@ -92,7 +93,7 @@ async def test_close_cover(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 0
|
assert state.attributes[ATTR_CURRENT_POSITION] == 0
|
||||||
|
|
||||||
|
|
||||||
async def test_open_cover(hass: HomeAssistant, setup_comp) -> None:
|
async def test_open_cover(hass: HomeAssistant) -> None:
|
||||||
"""Test opening the cover."""
|
"""Test opening the cover."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.state == STATE_OPEN
|
assert state.state == STATE_OPEN
|
||||||
|
@ -112,7 +113,7 @@ async def test_open_cover(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 100
|
assert state.attributes[ATTR_CURRENT_POSITION] == 100
|
||||||
|
|
||||||
|
|
||||||
async def test_toggle_cover(hass: HomeAssistant, setup_comp) -> None:
|
async def test_toggle_cover(hass: HomeAssistant) -> None:
|
||||||
"""Test toggling the cover."""
|
"""Test toggling the cover."""
|
||||||
# Start open
|
# Start open
|
||||||
await hass.services.async_call(
|
await hass.services.async_call(
|
||||||
|
@ -152,7 +153,7 @@ async def test_toggle_cover(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 100
|
assert state.attributes[ATTR_CURRENT_POSITION] == 100
|
||||||
|
|
||||||
|
|
||||||
async def test_set_cover_position(hass: HomeAssistant, setup_comp) -> None:
|
async def test_set_cover_position(hass: HomeAssistant) -> None:
|
||||||
"""Test moving the cover to a specific position."""
|
"""Test moving the cover to a specific position."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 70
|
assert state.attributes[ATTR_CURRENT_POSITION] == 70
|
||||||
|
@ -171,7 +172,7 @@ async def test_set_cover_position(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 10
|
assert state.attributes[ATTR_CURRENT_POSITION] == 10
|
||||||
|
|
||||||
|
|
||||||
async def test_stop_cover(hass: HomeAssistant, setup_comp) -> None:
|
async def test_stop_cover(hass: HomeAssistant) -> None:
|
||||||
"""Test stopping the cover."""
|
"""Test stopping the cover."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 70
|
assert state.attributes[ATTR_CURRENT_POSITION] == 70
|
||||||
|
@ -190,7 +191,7 @@ async def test_stop_cover(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_POSITION] == 80
|
assert state.attributes[ATTR_CURRENT_POSITION] == 80
|
||||||
|
|
||||||
|
|
||||||
async def test_close_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
async def test_close_cover_tilt(hass: HomeAssistant) -> None:
|
||||||
"""Test closing the cover tilt."""
|
"""Test closing the cover tilt."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
||||||
|
@ -206,7 +207,7 @@ async def test_close_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 0
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 0
|
||||||
|
|
||||||
|
|
||||||
async def test_open_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
async def test_open_cover_tilt(hass: HomeAssistant) -> None:
|
||||||
"""Test opening the cover tilt."""
|
"""Test opening the cover tilt."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
||||||
|
@ -222,7 +223,7 @@ async def test_open_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 100
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 100
|
||||||
|
|
||||||
|
|
||||||
async def test_toggle_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
async def test_toggle_cover_tilt(hass: HomeAssistant) -> None:
|
||||||
"""Test toggling the cover tilt."""
|
"""Test toggling the cover tilt."""
|
||||||
# Start open
|
# Start open
|
||||||
await hass.services.async_call(
|
await hass.services.async_call(
|
||||||
|
@ -259,7 +260,7 @@ async def test_toggle_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 100
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 100
|
||||||
|
|
||||||
|
|
||||||
async def test_set_cover_tilt_position(hass: HomeAssistant, setup_comp) -> None:
|
async def test_set_cover_tilt_position(hass: HomeAssistant) -> None:
|
||||||
"""Test moving the cover til to a specific position."""
|
"""Test moving the cover til to a specific position."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
||||||
|
@ -278,7 +279,7 @@ async def test_set_cover_tilt_position(hass: HomeAssistant, setup_comp) -> None:
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 90
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 90
|
||||||
|
|
||||||
|
|
||||||
async def test_stop_cover_tilt(hass: HomeAssistant, setup_comp) -> None:
|
async def test_stop_cover_tilt(hass: HomeAssistant) -> None:
|
||||||
"""Test stopping the cover tilt."""
|
"""Test stopping the cover tilt."""
|
||||||
state = hass.states.get(ENTITY_COVER)
|
state = hass.states.get(ENTITY_COVER)
|
||||||
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
assert state.attributes[ATTR_CURRENT_TILT_POSITION] == 50
|
||||||
|
|
|
@ -4,6 +4,7 @@ import json
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
|
|
||||||
from homeassistant.components.demo import DOMAIN
|
from homeassistant.components.demo import DOMAIN
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
@ -12,19 +13,19 @@ from homeassistant.setup import async_setup_component
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def mock_history(hass):
|
def mock_history(hass: HomeAssistant) -> None:
|
||||||
"""Mock history component loaded."""
|
"""Mock history component loaded."""
|
||||||
hass.config.components.add("history")
|
hass.config.components.add("history")
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def mock_device_tracker_update_config():
|
def mock_device_tracker_update_config() -> Generator[None]:
|
||||||
"""Prevent device tracker from creating known devices file."""
|
"""Prevent device tracker from creating known devices file."""
|
||||||
with patch("homeassistant.components.device_tracker.legacy.update_config"):
|
with patch("homeassistant.components.device_tracker.legacy.update_config"):
|
||||||
yield
|
yield
|
||||||
|
|
||||||
|
|
||||||
async def test_setting_up_demo(mock_history, hass: HomeAssistant) -> None:
|
async def test_setting_up_demo(mock_history: None, hass: HomeAssistant) -> None:
|
||||||
"""Test if we can set up the demo and dump it to JSON."""
|
"""Test if we can set up the demo and dump it to JSON."""
|
||||||
assert await async_setup_component(hass, DOMAIN, {DOMAIN: {}})
|
assert await async_setup_component(hass, DOMAIN, {DOMAIN: {}})
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
|
|
||||||
from homeassistant.components.demo import DOMAIN
|
from homeassistant.components.demo import DOMAIN
|
||||||
from homeassistant.components.light import (
|
from homeassistant.components.light import (
|
||||||
|
@ -27,7 +28,7 @@ ENTITY_LIGHT = "light.bed_light"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def light_only() -> None:
|
def light_only() -> Generator[None]:
|
||||||
"""Enable only the light platform."""
|
"""Enable only the light platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -37,7 +38,7 @@ async def light_only() -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
async def setup_comp(hass, light_only):
|
async def setup_comp(hass: HomeAssistant, light_only: None) -> None:
|
||||||
"""Set up demo component."""
|
"""Set up demo component."""
|
||||||
assert await async_setup_component(
|
assert await async_setup_component(
|
||||||
hass, LIGHT_DOMAIN, {LIGHT_DOMAIN: {"platform": DOMAIN}}
|
hass, LIGHT_DOMAIN, {LIGHT_DOMAIN: {"platform": DOMAIN}}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.number import (
|
from homeassistant.components.number import (
|
||||||
|
@ -26,7 +27,7 @@ ENTITY_SMALL_RANGE = "number.small_range"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def number_only() -> None:
|
def number_only() -> Generator[None]:
|
||||||
"""Enable only the number platform."""
|
"""Enable only the number platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -36,7 +37,7 @@ async def number_only() -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
async def setup_demo_number(hass, number_only):
|
async def setup_demo_number(hass: HomeAssistant, number_only: None) -> None:
|
||||||
"""Initialize setup demo Number entity."""
|
"""Initialize setup demo Number entity."""
|
||||||
assert await async_setup_component(hass, DOMAIN, {"number": {"platform": "demo"}})
|
assert await async_setup_component(hass, DOMAIN, {"number": {"platform": "demo"}})
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
|
|
||||||
from homeassistant.components.demo import DOMAIN
|
from homeassistant.components.demo import DOMAIN
|
||||||
from homeassistant.components.switch import (
|
from homeassistant.components.switch import (
|
||||||
|
@ -18,7 +19,7 @@ SWITCH_ENTITY_IDS = ["switch.decorative_lights", "switch.ac"]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def switch_only() -> None:
|
def switch_only() -> Generator[None]:
|
||||||
"""Enable only the switch platform."""
|
"""Enable only the switch platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -28,7 +29,7 @@ async def switch_only() -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
async def setup_comp(hass, switch_only):
|
async def setup_comp(hass: HomeAssistant, switch_only: None) -> None:
|
||||||
"""Set up demo component."""
|
"""Set up demo component."""
|
||||||
assert await async_setup_component(
|
assert await async_setup_component(
|
||||||
hass, SWITCH_DOMAIN, {SWITCH_DOMAIN: {"platform": DOMAIN}}
|
hass, SWITCH_DOMAIN, {SWITCH_DOMAIN: {"platform": DOMAIN}}
|
||||||
|
@ -37,7 +38,7 @@ async def setup_comp(hass, switch_only):
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("switch_entity_id", SWITCH_ENTITY_IDS)
|
@pytest.mark.parametrize("switch_entity_id", SWITCH_ENTITY_IDS)
|
||||||
async def test_turn_on(hass: HomeAssistant, switch_entity_id) -> None:
|
async def test_turn_on(hass: HomeAssistant, switch_entity_id: str) -> None:
|
||||||
"""Test switch turn on method."""
|
"""Test switch turn on method."""
|
||||||
await hass.services.async_call(
|
await hass.services.async_call(
|
||||||
SWITCH_DOMAIN,
|
SWITCH_DOMAIN,
|
||||||
|
@ -61,7 +62,7 @@ async def test_turn_on(hass: HomeAssistant, switch_entity_id) -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("switch_entity_id", SWITCH_ENTITY_IDS)
|
@pytest.mark.parametrize("switch_entity_id", SWITCH_ENTITY_IDS)
|
||||||
async def test_turn_off(hass: HomeAssistant, switch_entity_id) -> None:
|
async def test_turn_off(hass: HomeAssistant, switch_entity_id: str) -> None:
|
||||||
"""Test switch turn off method."""
|
"""Test switch turn off method."""
|
||||||
await hass.services.async_call(
|
await hass.services.async_call(
|
||||||
SWITCH_DOMAIN,
|
SWITCH_DOMAIN,
|
||||||
|
@ -86,7 +87,7 @@ async def test_turn_off(hass: HomeAssistant, switch_entity_id) -> None:
|
||||||
|
|
||||||
@pytest.mark.parametrize("switch_entity_id", SWITCH_ENTITY_IDS)
|
@pytest.mark.parametrize("switch_entity_id", SWITCH_ENTITY_IDS)
|
||||||
async def test_turn_off_without_entity_id(
|
async def test_turn_off_without_entity_id(
|
||||||
hass: HomeAssistant, switch_entity_id
|
hass: HomeAssistant, switch_entity_id: str
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test switch turn off all switches."""
|
"""Test switch turn off all switches."""
|
||||||
await hass.services.async_call(
|
await hass.services.async_call(
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from typing_extensions import Generator
|
||||||
|
|
||||||
from homeassistant.components.text import (
|
from homeassistant.components.text import (
|
||||||
ATTR_MAX,
|
ATTR_MAX,
|
||||||
|
@ -25,7 +26,7 @@ ENTITY_TEXT = "text.text"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def text_only() -> None:
|
def text_only() -> Generator[None]:
|
||||||
"""Enable only the text platform."""
|
"""Enable only the text platform."""
|
||||||
with patch(
|
with patch(
|
||||||
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
||||||
|
@ -35,7 +36,7 @@ async def text_only() -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
async def setup_demo_text(hass, text_only):
|
async def setup_demo_text(hass: HomeAssistant, text_only: None) -> None:
|
||||||
"""Initialize setup demo text."""
|
"""Initialize setup demo text."""
|
||||||
assert await async_setup_component(hass, DOMAIN, {"text": {"platform": "demo"}})
|
assert await async_setup_component(hass, DOMAIN, {"text": {"platform": "demo"}})
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue