107 lines
3.4 KiB
Python
107 lines
3.4 KiB
Python
"""Tests for Climacell init."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.climacell.const import CONF_TIMESTEP, DOMAIN
|
|
from homeassistant.components.weather import DOMAIN as WEATHER_DOMAIN
|
|
from homeassistant.const import CONF_API_VERSION
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import API_V3_ENTRY_DATA
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_load_and_unload(
|
|
hass: HomeAssistant,
|
|
climacell_config_entry_update: pytest.fixture,
|
|
) -> None:
|
|
"""Test loading and unloading entry."""
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data=API_V3_ENTRY_DATA,
|
|
unique_id="test",
|
|
version=1,
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_entity_ids(WEATHER_DOMAIN)) == 1
|
|
|
|
assert await hass.config_entries.async_remove(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_entity_ids(WEATHER_DOMAIN)) == 0
|
|
|
|
|
|
async def test_v3_load_and_unload(
|
|
hass: HomeAssistant,
|
|
climacell_config_entry_update: pytest.fixture,
|
|
) -> None:
|
|
"""Test loading and unloading v3 entry."""
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={k: v for k, v in API_V3_ENTRY_DATA.items() if k != CONF_API_VERSION},
|
|
unique_id="test",
|
|
version=1,
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_entity_ids(WEATHER_DOMAIN)) == 1
|
|
|
|
assert await hass.config_entries.async_remove(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_entity_ids(WEATHER_DOMAIN)) == 0
|
|
|
|
|
|
async def test_v4_load_and_unload(
|
|
hass: HomeAssistant,
|
|
climacell_config_entry_update: pytest.fixture,
|
|
) -> None:
|
|
"""Test loading and unloading v3 entry."""
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_API_VERSION: 4,
|
|
**{k: v for k, v in API_V3_ENTRY_DATA.items() if k != CONF_API_VERSION},
|
|
},
|
|
unique_id="test",
|
|
version=1,
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
with patch(
|
|
"homeassistant.components.tomorrowio.async_setup_entry", return_value=True
|
|
):
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_entity_ids(WEATHER_DOMAIN)) == 0
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"old_timestep, new_timestep", [(2, 1), (7, 5), (20, 15), (21, 30)]
|
|
)
|
|
async def test_migrate_timestep(
|
|
hass: HomeAssistant,
|
|
climacell_config_entry_update: pytest.fixture,
|
|
old_timestep: int,
|
|
new_timestep: int,
|
|
) -> None:
|
|
"""Test migration to standardized timestep."""
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data=API_V3_ENTRY_DATA,
|
|
options={CONF_TIMESTEP: old_timestep},
|
|
unique_id="test",
|
|
version=1,
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert config_entry.version == 1
|
|
assert (
|
|
CONF_API_VERSION in config_entry.data
|
|
and config_entry.data[CONF_API_VERSION] == 3
|
|
)
|
|
assert config_entry.options[CONF_TIMESTEP] == new_timestep
|