mirror of
https://github.com/home-assistant/core.git
synced 2025-11-15 14:00:24 +00:00
59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
"""Test the sma init file."""
|
|
|
|
from collections.abc import AsyncGenerator
|
|
from unittest.mock import MagicMock
|
|
|
|
from pysma import SmaAuthenticationException, SmaConnectionException, SmaReadException
|
|
import pytest
|
|
|
|
from homeassistant.components.sma.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import MOCK_DEVICE, MOCK_USER_INPUT, setup_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_migrate_entry_minor_version_1_2(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_sma_client: AsyncGenerator,
|
|
) -> None:
|
|
"""Test migrating a 1.1 config entry to 1.2."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title=MOCK_DEVICE.name,
|
|
unique_id=MOCK_DEVICE.serial,
|
|
data=MOCK_USER_INPUT,
|
|
source=SOURCE_IMPORT,
|
|
minor_version=1,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
assert entry.version == 1
|
|
assert entry.minor_version == 2
|
|
assert isinstance(MOCK_DEVICE.serial, str)
|
|
assert entry.unique_id == MOCK_DEVICE.serial
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "expected_state"),
|
|
[
|
|
(SmaConnectionException, ConfigEntryState.SETUP_RETRY),
|
|
(SmaAuthenticationException, ConfigEntryState.SETUP_ERROR),
|
|
(SmaReadException, ConfigEntryState.SETUP_RETRY),
|
|
],
|
|
)
|
|
async def test_setup_exceptions(
|
|
hass: HomeAssistant,
|
|
mock_sma_client: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
exception: Exception,
|
|
expected_state: ConfigEntryState,
|
|
) -> None:
|
|
"""Test the _async_setup."""
|
|
mock_sma_client.device_info.side_effect = exception
|
|
await setup_integration(hass, mock_config_entry)
|
|
assert mock_config_entry.state == expected_state
|