1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 08:26:41 +01:00
Files
core/tests/components/zinvolt/test_config_flow.py
2026-02-23 15:55:15 +01:00

111 lines
3.1 KiB
Python

"""Test the Zinvolt config flow."""
from unittest.mock import AsyncMock
import pytest
from zinvolt.exceptions import ZinvoltAuthenticationError, ZinvoltError
from homeassistant.components.zinvolt.const import DOMAIN
from homeassistant.config_entries import SOURCE_USER
from homeassistant.const import CONF_ACCESS_TOKEN, CONF_EMAIL, CONF_PASSWORD
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResultType
from .const import TOKEN
from tests.common import MockConfigEntry
@pytest.mark.usefixtures("mock_zinvolt_client")
async def test_full_flow(hass: HomeAssistant, mock_setup_entry: AsyncMock) -> None:
"""Test the full flow."""
result = await hass.config_entries.flow.async_init(
DOMAIN, context={"source": SOURCE_USER}
)
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {}
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{
CONF_EMAIL: "test@test.com",
CONF_PASSWORD: "yes",
},
)
assert result["type"] is FlowResultType.CREATE_ENTRY
assert result["title"] == "test@test.com"
assert result["data"] == {CONF_ACCESS_TOKEN: TOKEN}
assert result["result"].unique_id == "a0226b8f-98fe-4524-b369-272b466b8797"
assert len(mock_setup_entry.mock_calls) == 1
@pytest.mark.parametrize(
("exception", "error"),
[
(ZinvoltAuthenticationError, "invalid_auth"),
(ZinvoltError, "cannot_connect"),
(Exception, "unknown"),
],
)
async def test_form_errors(
hass: HomeAssistant,
mock_zinvolt_client: AsyncMock,
mock_setup_entry: AsyncMock,
exception: Exception,
error: str,
) -> None:
"""Test we handle invalid auth."""
result = await hass.config_entries.flow.async_init(
DOMAIN, context={"source": SOURCE_USER}
)
mock_zinvolt_client.login.side_effect = exception
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{
CONF_EMAIL: "test@test.com",
CONF_PASSWORD: "yes",
},
)
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": error}
mock_zinvolt_client.login.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{
CONF_EMAIL: "test@test.com",
CONF_PASSWORD: "yes",
},
)
assert result["type"] is FlowResultType.CREATE_ENTRY
assert len(mock_setup_entry.mock_calls) == 1
@pytest.mark.usefixtures("mock_zinvolt_client")
async def test_duplicate_entry(
hass: HomeAssistant, mock_config_entry: MockConfigEntry
) -> None:
"""Test we handle duplicate entries."""
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_EMAIL: "test@test.com",
CONF_PASSWORD: "yes",
},
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "already_configured"