1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-21 10:27:52 +00:00
Files
core/tests/components/lunatone/test_config_flow.py
2025-10-02 12:55:17 +01:00

185 lines
5.5 KiB
Python

"""Define tests for the Lunatone config flow."""
from unittest.mock import AsyncMock
import aiohttp
import pytest
from homeassistant.components.lunatone.const import DOMAIN
from homeassistant.config_entries import SOURCE_USER
from homeassistant.const import CONF_URL
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResultType
from . import BASE_URL, SERIAL_NUMBER
from tests.common import MockConfigEntry
async def test_full_flow(
hass: HomeAssistant, mock_lunatone_info: AsyncMock, mock_setup_entry: AsyncMock
) -> None:
"""Test full 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"],
{CONF_URL: BASE_URL},
)
assert result["type"] is FlowResultType.CREATE_ENTRY
assert result["title"] == f"Test {SERIAL_NUMBER}"
assert result["data"] == {CONF_URL: BASE_URL}
async def test_full_flow_fail_because_of_missing_device_infos(
hass: HomeAssistant,
mock_lunatone_info: AsyncMock,
) -> None:
"""Test full flow."""
mock_lunatone_info.data = None
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"],
{CONF_URL: BASE_URL},
)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "user"
assert result["errors"] == {"base": "missing_device_info"}
async def test_device_already_configured(
hass: HomeAssistant, mock_config_entry: MockConfigEntry
) -> None:
"""Test that the flow is aborted when the device is already configured."""
mock_config_entry.add_to_hass(hass)
result = await hass.config_entries.flow.async_init(
DOMAIN, context={"source": SOURCE_USER}
)
assert result.get("type") is FlowResultType.FORM
assert result.get("step_id") == "user"
result2 = await hass.config_entries.flow.async_configure(
result["flow_id"],
user_input={CONF_URL: BASE_URL},
)
assert result2.get("type") is FlowResultType.ABORT
assert result2.get("reason") == "already_configured"
@pytest.mark.parametrize(
("exception", "expected_error"),
[
(aiohttp.InvalidUrlClientError(BASE_URL), "invalid_url"),
(aiohttp.ClientConnectionError(), "cannot_connect"),
],
)
async def test_user_step_fail_with_error(
hass: HomeAssistant,
mock_lunatone_info: AsyncMock,
exception: Exception,
expected_error: str,
) -> None:
"""Test user step with an error."""
mock_lunatone_info.async_update.side_effect = exception
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"],
{CONF_URL: BASE_URL},
)
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": expected_error}
mock_lunatone_info.async_update.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_URL: BASE_URL},
)
assert result["type"] is FlowResultType.CREATE_ENTRY
assert result["title"] == f"Test {SERIAL_NUMBER}"
assert result["data"] == {CONF_URL: BASE_URL}
async def test_reconfigure(
hass: HomeAssistant,
mock_lunatone_info: AsyncMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test reconfigure flow."""
url = "http://10.0.0.100"
mock_config_entry.add_to_hass(hass)
result = await mock_config_entry.start_reconfigure_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "user"
result = await hass.config_entries.flow.async_configure(
result["flow_id"], {CONF_URL: url}
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reconfigure_successful"
assert mock_config_entry.data == {CONF_URL: url}
@pytest.mark.parametrize(
("exception", "expected_error"),
[
(aiohttp.InvalidUrlClientError(BASE_URL), "invalid_url"),
(aiohttp.ClientConnectionError(), "cannot_connect"),
],
)
async def test_reconfigure_fail_with_error(
hass: HomeAssistant,
mock_lunatone_info: AsyncMock,
mock_config_entry: MockConfigEntry,
exception: Exception,
expected_error: str,
) -> None:
"""Test reconfigure flow with an error."""
url = "http://10.0.0.100"
mock_lunatone_info.async_update.side_effect = exception
mock_config_entry.add_to_hass(hass)
result = await mock_config_entry.start_reconfigure_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "user"
result = await hass.config_entries.flow.async_configure(
result["flow_id"], {CONF_URL: url}
)
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": expected_error}
mock_lunatone_info.async_update.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"], {CONF_URL: url}
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reconfigure_successful"
assert mock_config_entry.data == {CONF_URL: url}