mirror of https://github.com/home-assistant/core
119 lines
3.3 KiB
Python
119 lines
3.3 KiB
Python
"""Tests for IPMA config flow."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import patch
|
|
|
|
from pyipma import IPMAException
|
|
import pytest
|
|
|
|
from homeassistant.components.ipma.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_NAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from . import MockLocation
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture(name="ipma_setup", autouse=True)
|
|
def ipma_setup_fixture() -> Generator[None]:
|
|
"""Patch ipma setup entry."""
|
|
with patch("homeassistant.components.ipma.async_setup_entry", return_value=True):
|
|
yield
|
|
|
|
|
|
async def test_config_flow(hass: HomeAssistant) -> None:
|
|
"""Test configuration form."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
test_data = {
|
|
CONF_LONGITUDE: 0,
|
|
CONF_LATITUDE: 0,
|
|
}
|
|
with patch(
|
|
"pyipma.location.Location.get",
|
|
return_value=MockLocation(),
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
test_data,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "HomeTown"
|
|
assert result["data"] == {
|
|
CONF_LONGITUDE: 0,
|
|
CONF_LATITUDE: 0,
|
|
}
|
|
|
|
|
|
async def test_config_flow_failures(hass: HomeAssistant) -> None:
|
|
"""Test config flow with failures."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
test_data = {
|
|
CONF_LONGITUDE: 0,
|
|
CONF_LATITUDE: 0,
|
|
}
|
|
with patch(
|
|
"pyipma.location.Location.get",
|
|
side_effect=IPMAException(),
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
test_data,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {"base": "unknown"}
|
|
with patch(
|
|
"pyipma.location.Location.get",
|
|
return_value=MockLocation(),
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
test_data,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "HomeTown"
|
|
assert result["data"] == {
|
|
CONF_LONGITUDE: 0,
|
|
CONF_LATITUDE: 0,
|
|
}
|
|
|
|
|
|
async def test_flow_entry_already_exists(
|
|
hass: HomeAssistant, init_integration: MockConfigEntry
|
|
) -> None:
|
|
"""Test user input for config_entry that already exists.
|
|
|
|
Test when the form should show when user puts existing location
|
|
in the config gui. Then the form should show with error.
|
|
"""
|
|
test_data = {
|
|
CONF_NAME: "Home",
|
|
CONF_LONGITUDE: 0,
|
|
CONF_LATITUDE: 0,
|
|
}
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}, data=test_data
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "already_configured"
|