mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 19:26:31 +01:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
"""Test the Helty Flow setup."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from pyhelty import HeltyConnectionError, HeltyResponseError
|
|
import pytest
|
|
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import setup_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_setup_and_unload(
|
|
hass: HomeAssistant,
|
|
mock_helty_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test a config entry sets up and tears down cleanly."""
|
|
await setup_integration(hass, mock_config_entry)
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
assert 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", [HeltyConnectionError, HeltyResponseError])
|
|
async def test_setup_error(
|
|
hass: HomeAssistant,
|
|
mock_helty_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
side_effect: type[Exception],
|
|
) -> None:
|
|
"""Test an error talking to the unit during setup leads to a retry."""
|
|
mock_helty_client.async_get_data.side_effect = side_effect
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
assert not 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
|