83 lines
1.9 KiB
Python
83 lines
1.9 KiB
Python
"""Test fixtures for Tasmota component."""
|
|
from unittest.mock import patch
|
|
|
|
from hatasmota.discovery import get_status_sensor_entities
|
|
import pytest
|
|
|
|
from homeassistant.components.tasmota.const import (
|
|
CONF_DISCOVERY_PREFIX,
|
|
DEFAULT_PREFIX,
|
|
DOMAIN,
|
|
)
|
|
|
|
from tests.common import (
|
|
MockConfigEntry,
|
|
async_mock_service,
|
|
mock_device_registry,
|
|
mock_registry,
|
|
)
|
|
from tests.components.light.conftest import mock_light_profiles # noqa: F401
|
|
|
|
|
|
@pytest.fixture
|
|
def device_reg(hass):
|
|
"""Return an empty, loaded, registry."""
|
|
return mock_device_registry(hass)
|
|
|
|
|
|
@pytest.fixture
|
|
def entity_reg(hass):
|
|
"""Return an empty, loaded, registry."""
|
|
return mock_registry(hass)
|
|
|
|
|
|
@pytest.fixture
|
|
def calls(hass):
|
|
"""Track calls to a mock service."""
|
|
return async_mock_service(hass, "test", "automation")
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def disable_debounce():
|
|
"""Set MQTT debounce timer to zero."""
|
|
with patch("hatasmota.mqtt.DEBOUNCE_TIMEOUT", 0):
|
|
yield
|
|
|
|
|
|
@pytest.fixture
|
|
def status_sensor_disabled():
|
|
"""Fixture to allow overriding MQTT config."""
|
|
return True
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def disable_status_sensor(status_sensor_disabled):
|
|
"""Disable Tasmota status sensor."""
|
|
wraps = None if status_sensor_disabled else get_status_sensor_entities
|
|
with patch("hatasmota.discovery.get_status_sensor_entities", wraps=wraps):
|
|
yield
|
|
|
|
|
|
async def setup_tasmota_helper(hass):
|
|
"""Set up Tasmota."""
|
|
hass.config.components.add("tasmota")
|
|
|
|
entry = MockConfigEntry(
|
|
data={CONF_DISCOVERY_PREFIX: DEFAULT_PREFIX},
|
|
domain=DOMAIN,
|
|
title="Tasmota",
|
|
)
|
|
|
|
entry.add_to_hass(hass)
|
|
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert "tasmota" in hass.config.components
|
|
|
|
|
|
@pytest.fixture
|
|
async def setup_tasmota(hass):
|
|
"""Set up Tasmota."""
|
|
await setup_tasmota_helper(hass)
|