mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 03:36:05 +01:00
70a54d333c
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
"""Test the Hypontech Cloud init."""
|
|
|
|
from typing import cast
|
|
from unittest.mock import AsyncMock, Mock
|
|
|
|
from hyponcloud import AuthenticationError, RequestError
|
|
import pytest
|
|
|
|
from homeassistant.components.hypontech.const import CONF_OEM, DOMAIN
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import setup_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("side_effect", "expected_state"),
|
|
[
|
|
(TimeoutError, ConfigEntryState.SETUP_RETRY),
|
|
(AuthenticationError, ConfigEntryState.SETUP_ERROR),
|
|
(RequestError, ConfigEntryState.SETUP_RETRY),
|
|
],
|
|
)
|
|
async def test_setup_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_hyponcloud: AsyncMock,
|
|
side_effect: Exception,
|
|
expected_state: ConfigEntryState,
|
|
) -> None:
|
|
"""Test setup entry with timeout error."""
|
|
mock_hyponcloud.connect.side_effect = side_effect
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
assert mock_config_entry.state is expected_state
|
|
|
|
|
|
async def test_setup_entry_uses_oem(
|
|
hass: HomeAssistant,
|
|
mock_hyponcloud: AsyncMock,
|
|
) -> None:
|
|
"""Test setup entry passes the stored OEM to the API."""
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_USERNAME: "test@example.com",
|
|
CONF_PASSWORD: "test-password",
|
|
CONF_OEM: 4,
|
|
},
|
|
unique_id="4:2123456789123456789",
|
|
)
|
|
|
|
await setup_integration(hass, config_entry)
|
|
|
|
assert config_entry.state is ConfigEntryState.LOADED
|
|
hyponcloud_class = cast(Mock, mock_hyponcloud.hyponcloud_class)
|
|
assert hyponcloud_class.call_args.kwargs["oem"] == 4
|
|
|
|
|
|
async def test_setup_and_unload_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_hyponcloud: AsyncMock,
|
|
) -> None:
|
|
"""Test setup and unload of config entry."""
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
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
|