mirror of
https://github.com/home-assistant/core.git
synced 2026-05-18 06:20:17 +01:00
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
"""Tests for the Fumis integration."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
from fumis import (
|
|
FumisAuthenticationError,
|
|
FumisConnectionError,
|
|
FumisError,
|
|
FumisStoveOfflineError,
|
|
)
|
|
import pytest
|
|
|
|
from homeassistant.components.fumis.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_REAUTH, ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_fumis")
|
|
async def test_load_unload_config_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test loading and unloading the integration."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.config_entries.async_unload(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("side_effect", "expected_log"),
|
|
[
|
|
(FumisConnectionError, "communicating with the Fumis online service"),
|
|
(FumisStoveOfflineError, "not connected to the internet"),
|
|
(FumisError, "communicating with the Fumis online service"),
|
|
],
|
|
)
|
|
async def test_config_entry_not_ready(
|
|
hass: HomeAssistant,
|
|
mock_fumis: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
caplog: pytest.LogCaptureFixture,
|
|
side_effect: type[Exception],
|
|
expected_log: str,
|
|
) -> None:
|
|
"""Test the config entry not ready."""
|
|
mock_fumis.update_info.side_effect = side_effect
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|
|
assert expected_log in caplog.text
|
|
|
|
|
|
async def test_config_entry_authentication_failed(
|
|
hass: HomeAssistant,
|
|
mock_fumis: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test the config entry authentication error triggers reauth."""
|
|
mock_fumis.update_info.side_effect = FumisAuthenticationError
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_ERROR
|
|
|
|
flows = hass.config_entries.flow.async_progress()
|
|
assert len(flows) == 1
|
|
|
|
flow = flows[0]
|
|
assert flow["step_id"] == "reauth_confirm"
|
|
assert flow["handler"] == DOMAIN
|
|
assert flow["context"].get("source") == SOURCE_REAUTH
|
|
assert flow["context"].get("entry_id") == mock_config_entry.entry_id
|