core/tests/components/anova/test_init.py

94 lines
2.9 KiB
Python

"""Test init for Anova."""
from unittest.mock import patch
from anova_wifi import AnovaApi
from homeassistant.components.anova.const import DOMAIN
from homeassistant.config_entries import ConfigEntryState
from homeassistant.const import CONF_DEVICES, CONF_PASSWORD, CONF_USERNAME
from homeassistant.core import HomeAssistant
from . import async_init_integration, create_entry
from tests.common import MockConfigEntry
async def test_async_setup_entry(hass: HomeAssistant, anova_api: AnovaApi) -> None:
"""Test a successful setup entry."""
await async_init_integration(hass)
state = hass.states.get("sensor.anova_precision_cooker_mode")
assert state is not None
assert state.state == "idle"
async def test_wrong_login(
hass: HomeAssistant, anova_api_wrong_login: AnovaApi
) -> None:
"""Test for setup failure if connection to Anova is missing."""
entry = create_entry(hass)
await hass.config_entries.async_setup(entry.entry_id)
assert entry.state is ConfigEntryState.SETUP_ERROR
async def test_unload_entry(hass: HomeAssistant, anova_api: AnovaApi) -> None:
"""Test successful unload of entry."""
entry = await async_init_integration(hass)
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
assert entry.state is ConfigEntryState.LOADED
assert await hass.config_entries.async_unload(entry.entry_id)
await hass.async_block_till_done()
assert entry.state is ConfigEntryState.NOT_LOADED
async def test_no_devices_found(
hass: HomeAssistant,
anova_api_no_devices: AnovaApi,
) -> None:
"""Test when there don't seem to be any devices on the account."""
entry = await async_init_integration(hass)
assert entry.state is ConfigEntryState.SETUP_RETRY
async def test_websocket_failure(
hass: HomeAssistant,
anova_api_websocket_failure: AnovaApi,
) -> None:
"""Test that we successfully handle a websocket failure on setup."""
entry = await async_init_integration(hass)
assert entry.state is ConfigEntryState.SETUP_RETRY
async def test_migration_removing_devices_in_config_entry(
hass: HomeAssistant, anova_api: AnovaApi
) -> None:
"""Test a successful setup entry."""
entry = MockConfigEntry(
domain=DOMAIN,
title="Anova",
data={
CONF_USERNAME: "sample@gmail.com",
CONF_PASSWORD: "sample",
CONF_DEVICES: [],
},
unique_id="sample@gmail.com",
version=1,
minor_version=1,
)
entry.add_to_hass(hass)
with patch("homeassistant.components.anova.AnovaApi.authenticate"):
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()
state = hass.states.get("sensor.anova_precision_cooker_mode")
assert state is not None
assert state.state == "idle"
assert entry.version == 1
assert entry.minor_version == 2
assert CONF_DEVICES not in entry.data