mirror of
https://github.com/home-assistant/core.git
synced 2026-04-17 15:44:52 +01:00
166 lines
5.1 KiB
Python
166 lines
5.1 KiB
Python
"""Test the Uhoo config flow."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
import pytest
|
|
from uhooapi.errors import ForbiddenError, UhooError, UnauthorizedError
|
|
|
|
from homeassistant.components.uhoo.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_API_KEY
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_user_flow(
|
|
hass: HomeAssistant, mock_uhoo_client: AsyncMock, mock_setup_entry: AsyncMock
|
|
) -> None:
|
|
"""Test a complete user flow."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], user_input={CONF_API_KEY: "valid-api-key-12345"}
|
|
)
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "uHoo (12345)"
|
|
assert result["data"] == {CONF_API_KEY: "valid-api-key-12345"}
|
|
|
|
mock_setup_entry.assert_called_once()
|
|
|
|
|
|
async def test_user_duplicate_entry(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry
|
|
) -> None:
|
|
"""Test duplicate entry aborts."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], {CONF_API_KEY: "valid-api-key-12345"}
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "already_configured"
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "error_type"),
|
|
[
|
|
(UhooError("asd"), "cannot_connect"),
|
|
(UnauthorizedError("Invalid credentials"), "invalid_auth"),
|
|
(ForbiddenError("Forbidden"), "invalid_auth"),
|
|
(Exception(), "unknown"),
|
|
],
|
|
)
|
|
async def test_user_flow_exceptions(
|
|
hass: HomeAssistant,
|
|
mock_uhoo_client: AsyncMock,
|
|
exception: Exception,
|
|
error_type: str,
|
|
) -> None:
|
|
"""Test form when client raises various exceptions."""
|
|
mock_uhoo_client.login.side_effect = exception
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
assert result["type"] == FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert not result["errors"]
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], {CONF_API_KEY: "test-api-key"}
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {"base": error_type}
|
|
|
|
mock_uhoo_client.login.assert_called_once()
|
|
mock_uhoo_client.login.side_effect = None
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{CONF_API_KEY: "test-api-key"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
|
|
async def test_reauth_flow(
|
|
hass: HomeAssistant,
|
|
mock_uhoo_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test reauthentication flow."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reauth_flow(hass)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reauth_confirm"
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_API_KEY: "new-api-key-67890"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "reauth_successful"
|
|
assert mock_config_entry.data[CONF_API_KEY] == "new-api-key-67890"
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "error_type"),
|
|
[
|
|
(UnauthorizedError("Invalid credentials"), "invalid_auth"),
|
|
(ForbiddenError("Forbidden"), "invalid_auth"),
|
|
(UhooError("asd"), "cannot_connect"),
|
|
(Exception(), "unknown"),
|
|
],
|
|
)
|
|
async def test_reauth_flow_errors(
|
|
hass: HomeAssistant,
|
|
mock_uhoo_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
exception: Exception,
|
|
error_type: str,
|
|
) -> None:
|
|
"""Test reauthentication flow with errors and recovery."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reauth_flow(hass)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reauth_confirm"
|
|
|
|
mock_uhoo_client.login.side_effect = exception
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_API_KEY: "new-api-key-67890"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reauth_confirm"
|
|
assert result["errors"] == {"base": error_type}
|
|
|
|
mock_uhoo_client.login.side_effect = None
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_API_KEY: "new-api-key-67890"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "reauth_successful"
|
|
assert mock_config_entry.data[CONF_API_KEY] == "new-api-key-67890"
|