mirror of https://github.com/home-assistant/core
133 lines
4.0 KiB
Python
133 lines
4.0 KiB
Python
"""Tests for the Twente Milieu config flow."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
from twentemilieu import TwenteMilieuAddressError, TwenteMilieuConnectionError
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.twentemilieu import config_flow
|
|
from homeassistant.components.twentemilieu.const import (
|
|
CONF_HOUSE_LETTER,
|
|
CONF_HOUSE_NUMBER,
|
|
CONF_POST_CODE,
|
|
DOMAIN,
|
|
)
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
pytestmark = pytest.mark.usefixtures("mock_setup_entry")
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_twentemilieu")
|
|
async def test_full_user_flow(hass: HomeAssistant, snapshot: SnapshotAssertion) -> None:
|
|
"""Test registering an integration and finishing flow works."""
|
|
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_POST_CODE: "1234AB",
|
|
CONF_HOUSE_NUMBER: "1",
|
|
CONF_HOUSE_LETTER: "A",
|
|
},
|
|
)
|
|
|
|
assert result2.get("type") is FlowResultType.CREATE_ENTRY
|
|
assert result2 == snapshot
|
|
|
|
|
|
async def test_invalid_address(
|
|
hass: HomeAssistant,
|
|
mock_twentemilieu: MagicMock,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test full user flow when the user enters an incorrect address.
|
|
|
|
This tests also tests if the user recovers from it by entering a valid
|
|
address in the second attempt.
|
|
"""
|
|
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"
|
|
|
|
mock_twentemilieu.unique_id.side_effect = TwenteMilieuAddressError
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_POST_CODE: "1234",
|
|
CONF_HOUSE_NUMBER: "1",
|
|
},
|
|
)
|
|
|
|
assert result2.get("type") is FlowResultType.FORM
|
|
assert result2.get("step_id") == "user"
|
|
assert result2.get("errors") == {"base": "invalid_address"}
|
|
|
|
mock_twentemilieu.unique_id.side_effect = None
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_POST_CODE: "1234AB",
|
|
CONF_HOUSE_NUMBER: "1",
|
|
},
|
|
)
|
|
|
|
assert result3.get("type") is FlowResultType.CREATE_ENTRY
|
|
assert result3 == snapshot
|
|
|
|
|
|
async def test_connection_error(
|
|
hass: HomeAssistant,
|
|
mock_twentemilieu: MagicMock,
|
|
) -> None:
|
|
"""Test we show user form on Twente Milieu connection error."""
|
|
mock_twentemilieu.unique_id.side_effect = TwenteMilieuConnectionError
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_POST_CODE: "1234AB",
|
|
CONF_HOUSE_NUMBER: "1",
|
|
CONF_HOUSE_LETTER: "A",
|
|
},
|
|
)
|
|
|
|
assert result.get("type") is FlowResultType.FORM
|
|
assert result.get("step_id") == "user"
|
|
assert result.get("errors") == {"base": "cannot_connect"}
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_twentemilieu")
|
|
async def test_address_already_set_up(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test we abort if address has already been set up."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
result = await hass.config_entries.flow.async_init(
|
|
config_flow.DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_POST_CODE: "1234AB",
|
|
CONF_HOUSE_NUMBER: "1",
|
|
CONF_HOUSE_LETTER: "A",
|
|
},
|
|
)
|
|
|
|
assert result.get("type") is FlowResultType.ABORT
|
|
assert result.get("reason") == "already_configured"
|