mirror of https://github.com/home-assistant/core
181 lines
5.8 KiB
Python
181 lines
5.8 KiB
Python
"""Test the Apple WeatherKit config flow."""
|
|
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from apple_weatherkit import DataSetType
|
|
from apple_weatherkit.client import (
|
|
WeatherKitApiClientAuthenticationError,
|
|
WeatherKitApiClientCommunicationError,
|
|
WeatherKitApiClientError,
|
|
)
|
|
import pytest
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.weatherkit.config_flow import (
|
|
WeatherKitUnsupportedLocationError,
|
|
)
|
|
from homeassistant.components.weatherkit.const import (
|
|
CONF_KEY_ID,
|
|
CONF_KEY_PEM,
|
|
CONF_SERVICE_ID,
|
|
CONF_TEAM_ID,
|
|
DOMAIN,
|
|
)
|
|
from homeassistant.const import CONF_LATITUDE, CONF_LOCATION, CONF_LONGITUDE
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from . import EXAMPLE_CONFIG_DATA
|
|
|
|
pytestmark = pytest.mark.usefixtures("mock_setup_entry")
|
|
|
|
EXAMPLE_USER_INPUT = {
|
|
CONF_LOCATION: {
|
|
CONF_LATITUDE: 35.4690101707532,
|
|
CONF_LONGITUDE: 135.74817234593166,
|
|
},
|
|
CONF_KEY_ID: "QABCDEFG123",
|
|
CONF_SERVICE_ID: "io.home-assistant.testing",
|
|
CONF_TEAM_ID: "ABCD123456",
|
|
CONF_KEY_PEM: "-----BEGIN PRIVATE KEY-----\nwhateverkey\n-----END PRIVATE KEY-----",
|
|
}
|
|
|
|
|
|
async def test_form(hass: HomeAssistant, mock_setup_entry: AsyncMock) -> None:
|
|
"""Test we get the form and create an entry."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {}
|
|
|
|
with patch(
|
|
"homeassistant.components.weatherkit.WeatherKitApiClient.get_availability",
|
|
return_value=[DataSetType.CURRENT_WEATHER],
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
EXAMPLE_USER_INPUT,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
location = EXAMPLE_USER_INPUT[CONF_LOCATION]
|
|
assert result["title"] == f"{location[CONF_LATITUDE]}, {location[CONF_LONGITUDE]}"
|
|
|
|
assert result["data"] == EXAMPLE_CONFIG_DATA
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "expected_error"),
|
|
[
|
|
(WeatherKitApiClientAuthenticationError, "invalid_auth"),
|
|
(WeatherKitApiClientCommunicationError, "cannot_connect"),
|
|
(WeatherKitUnsupportedLocationError, "unsupported_location"),
|
|
(WeatherKitApiClientError, "unknown"),
|
|
],
|
|
)
|
|
async def test_error_handling(
|
|
hass: HomeAssistant, exception: Exception, expected_error: str
|
|
) -> None:
|
|
"""Test that we handle various exceptions and generate appropriate errors."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.weatherkit.WeatherKitApiClient.get_availability",
|
|
side_effect=exception,
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
EXAMPLE_USER_INPUT,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {"base": expected_error}
|
|
|
|
|
|
async def test_form_unsupported_location(hass: HomeAssistant) -> None:
|
|
"""Test we handle when WeatherKit does not support the location."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.weatherkit.WeatherKitApiClient.get_availability",
|
|
return_value=[],
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
EXAMPLE_USER_INPUT,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {"base": "unsupported_location"}
|
|
|
|
# Test that we can recover from this error by changing the location
|
|
with patch(
|
|
"homeassistant.components.weatherkit.WeatherKitApiClient.get_availability",
|
|
return_value=[DataSetType.CURRENT_WEATHER],
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
EXAMPLE_USER_INPUT,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("input_header"),
|
|
[
|
|
"-----BEGIN PRIVATE KEY-----\n",
|
|
"",
|
|
" \n\n-----BEGIN PRIVATE KEY-----\n",
|
|
"—---BEGIN PRIVATE KEY-----\n",
|
|
],
|
|
ids=["Correct header", "No header", "Leading characters", "Em dash in header"],
|
|
)
|
|
@pytest.mark.parametrize(
|
|
("input_footer"),
|
|
[
|
|
"\n-----END PRIVATE KEY-----",
|
|
"",
|
|
"\n-----END PRIVATE KEY-----\n\n ",
|
|
"\n—---END PRIVATE KEY-----",
|
|
],
|
|
ids=["Correct footer", "No footer", "Trailing characters", "Em dash in footer"],
|
|
)
|
|
async def test_auto_fix_key_input(
|
|
hass: HomeAssistant,
|
|
mock_setup_entry: AsyncMock,
|
|
input_header: str,
|
|
input_footer: str,
|
|
) -> None:
|
|
"""Test that we fix common user errors in key input."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {}
|
|
|
|
with patch(
|
|
"homeassistant.components.weatherkit.WeatherKitApiClient.get_availability",
|
|
return_value=[DataSetType.CURRENT_WEATHER],
|
|
):
|
|
user_input = EXAMPLE_USER_INPUT.copy()
|
|
user_input[CONF_KEY_PEM] = f"{input_header}whateverkey{input_footer}"
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
assert result["data"][CONF_KEY_PEM] == EXAMPLE_CONFIG_DATA[CONF_KEY_PEM]
|
|
assert len(mock_setup_entry.mock_calls) == 1
|