mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 10:29:27 +00:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
"""Tests for the IRM KMI integration."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from homeassistant.components.irm_kmi.const import DOMAIN
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_load_unload_config_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_irm_kmi_api: AsyncMock,
|
|
) -> None:
|
|
"""Test the IRM KMI configuration entry loading/unloading."""
|
|
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 not hass.data.get(DOMAIN)
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|
|
|
|
|
|
async def test_config_entry_not_ready(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_exception_irm_kmi_api: AsyncMock,
|
|
) -> None:
|
|
"""Test the IRM KMI configuration entry not ready."""
|
|
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_exception_irm_kmi_api.refresh_forecasts_coord.call_count == 1
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|