"""Test the AirNow config flow.""" from unittest.mock import AsyncMock, patch from pyairnow.errors import AirNowError, EmptyResponseError, InvalidKeyError import pytest from homeassistant import config_entries, data_entry_flow 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 tests.common import MockConfigEntry async def test_form(hass: HomeAssistant, config, options, setup_airnow) -> None: """Test we get the form.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": config_entries.SOURCE_USER} ) assert result["type"] == data_entry_flow.FlowResultType.FORM assert result["errors"] == {} result2 = await hass.config_entries.flow.async_configure(result["flow_id"], config) assert result2["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY assert result2["data"] == config assert result2["options"] == options @pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=InvalidKeyError)]) async def test_form_invalid_auth(hass: HomeAssistant, config, setup_airnow) -> 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"] == "form" assert result2["errors"] == {"base": "invalid_auth"} @pytest.mark.parametrize("data", [{}]) async def test_form_invalid_location(hass: HomeAssistant, config, setup_airnow) -> 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"] == "form" assert result2["errors"] == {"base": "invalid_location"} @pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=AirNowError)]) async def test_form_cannot_connect(hass: HomeAssistant, config, setup_airnow) -> 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"] == "form" assert result2["errors"] == {"base": "cannot_connect"} @pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=EmptyResponseError)]) async def test_form_empty_result(hass: HomeAssistant, config, setup_airnow) -> 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"] == "form" assert result2["errors"] == {"base": "invalid_location"} @pytest.mark.parametrize("mock_api_get", [AsyncMock(side_effect=RuntimeError)]) async def test_form_unexpected(hass: HomeAssistant, config, setup_airnow) -> 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"] == "form" assert result2["errors"] == {"base": "unknown"} async def test_entry_already_exists(hass: HomeAssistant, config, config_entry) -> 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"] == "abort" assert result2["reason"] == "already_configured" async def test_config_migration_v2(hass: HomeAssistant, setup_airnow) -> 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 async def test_options_flow(hass: HomeAssistant, setup_airnow) -> 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"] == data_entry_flow.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"] == data_entry_flow.FlowResultType.CREATE_ENTRY assert config_entry.options == { CONF_RADIUS: 25, } assert len(mock_setup_entry.mock_calls) == 1