178 lines
6.5 KiB
Python
178 lines
6.5 KiB
Python
"""Test the AirNow config flow."""
|
|
|
|
from typing import Any
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from pyairnow.errors import AirNowError, EmptyResponseError, InvalidKeyError
|
|
import pytest
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.airnow.const import DOMAIN
|
|
from homeassistant.const import CONF_API_KEY, CONF_LATITUDE, CONF_LONGITUDE, CONF_RADIUS
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_form(
|
|
hass: HomeAssistant, config: dict[str, Any], options: dict[str, Any]
|
|
) -> None:
|
|
"""Test we get the form."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {}
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result2["data"] == config
|
|
assert result2["options"] == options
|
|
|
|
|
|
@pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=InvalidKeyError)])
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_form_invalid_auth(hass: HomeAssistant, config: dict[str, Any]) -> None:
|
|
"""Test we handle invalid auth."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "invalid_auth"}
|
|
|
|
|
|
@pytest.mark.parametrize("data", [{}])
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_form_invalid_location(
|
|
hass: HomeAssistant, config: dict[str, Any]
|
|
) -> None:
|
|
"""Test we handle invalid location."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "invalid_location"}
|
|
|
|
|
|
@pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=AirNowError)])
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_form_cannot_connect(hass: HomeAssistant, config: dict[str, Any]) -> None:
|
|
"""Test we handle cannot connect error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
|
|
|
|
@pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=EmptyResponseError)])
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_form_empty_result(hass: HomeAssistant, config: dict[str, Any]) -> None:
|
|
"""Test we handle empty response error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "invalid_location"}
|
|
|
|
|
|
@pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=RuntimeError)])
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_form_unexpected(hass: HomeAssistant, config: dict[str, Any]) -> None:
|
|
"""Test we handle an unexpected error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "unknown"}
|
|
|
|
|
|
@pytest.mark.usefixtures("config_entry")
|
|
async def test_entry_already_exists(
|
|
hass: HomeAssistant, config: dict[str, Any]
|
|
) -> None:
|
|
"""Test that the form aborts if the Lat/Lng is already configured."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config)
|
|
assert result2["type"] is FlowResultType.ABORT
|
|
assert result2["reason"] == "already_configured"
|
|
|
|
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_config_migration_v2(hass: HomeAssistant) -> None:
|
|
"""Test that the config migration from Version 1 to Version 2 works."""
|
|
config_entry = MockConfigEntry(
|
|
version=1,
|
|
domain=DOMAIN,
|
|
title="AirNow",
|
|
data={
|
|
CONF_API_KEY: "1234",
|
|
CONF_LATITUDE: 33.6,
|
|
CONF_LONGITUDE: -118.1,
|
|
CONF_RADIUS: 25,
|
|
},
|
|
source=config_entries.SOURCE_USER,
|
|
options={CONF_RADIUS: 10},
|
|
unique_id="1234",
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert config_entry.version == 2
|
|
assert not config_entry.data.get(CONF_RADIUS)
|
|
assert config_entry.options.get(CONF_RADIUS) == 25
|
|
|
|
|
|
@pytest.mark.usefixtures("setup_airnow")
|
|
async def test_options_flow(hass: HomeAssistant) -> None:
|
|
"""Test that the options flow works."""
|
|
config_entry = MockConfigEntry(
|
|
version=2,
|
|
domain=DOMAIN,
|
|
title="AirNow",
|
|
data={
|
|
CONF_API_KEY: "1234",
|
|
CONF_LATITUDE: 33.6,
|
|
CONF_LONGITUDE: -118.1,
|
|
},
|
|
source=config_entries.SOURCE_USER,
|
|
options={CONF_RADIUS: 10},
|
|
unique_id="1234",
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
result = await hass.config_entries.options.async_init(config_entry.entry_id)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "init"
|
|
|
|
with patch(
|
|
"homeassistant.components.airnow.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.options.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_RADIUS: 25},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert config_entry.options == {
|
|
CONF_RADIUS: 25,
|
|
}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|