mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 13:44:32 +01:00
308 lines
9.5 KiB
Python
308 lines
9.5 KiB
Python
"""Tests for the PVOutput config flow."""
|
|
|
|
from unittest.mock import AsyncMock, MagicMock
|
|
|
|
from pvo import PVOutputAuthenticationError, PVOutputConnectionError
|
|
import pytest
|
|
|
|
from homeassistant.components.pvoutput.const import CONF_SYSTEM_ID, DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_API_KEY
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_full_user_flow(
|
|
hass: HomeAssistant,
|
|
mock_pvoutput: MagicMock,
|
|
mock_setup_entry: AsyncMock,
|
|
) -> None:
|
|
"""Test the full user configuration flow."""
|
|
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_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "tadaaa",
|
|
},
|
|
)
|
|
|
|
assert result2.get("type") is FlowResultType.CREATE_ENTRY
|
|
assert result2.get("title") == "12345"
|
|
assert result2.get("data") == {
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "tadaaa",
|
|
}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
assert len(mock_pvoutput.system.mock_calls) == 1
|
|
|
|
|
|
async def test_full_flow_with_authentication_error(
|
|
hass: HomeAssistant,
|
|
mock_pvoutput: MagicMock,
|
|
mock_setup_entry: AsyncMock,
|
|
) -> None:
|
|
"""Test the full user configuration flow with incorrect API key.
|
|
|
|
This tests tests a full config flow, with a case the user enters an invalid
|
|
PVOutput API key, but recovers by entering the correct one.
|
|
"""
|
|
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_pvoutput.system.side_effect = PVOutputAuthenticationError
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "invalid",
|
|
},
|
|
)
|
|
|
|
assert result2.get("type") is FlowResultType.FORM
|
|
assert result2.get("step_id") == "user"
|
|
assert result2.get("errors") == {"base": "invalid_auth"}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 0
|
|
assert len(mock_pvoutput.system.mock_calls) == 1
|
|
|
|
mock_pvoutput.system.side_effect = None
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
user_input={
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "tadaaa",
|
|
},
|
|
)
|
|
|
|
assert result3.get("type") is FlowResultType.CREATE_ENTRY
|
|
assert result3.get("title") == "12345"
|
|
assert result3.get("data") == {
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "tadaaa",
|
|
}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
assert len(mock_pvoutput.system.mock_calls) == 2
|
|
|
|
|
|
async def test_connection_error(hass: HomeAssistant, mock_pvoutput: MagicMock) -> None:
|
|
"""Test API connection error."""
|
|
mock_pvoutput.system.side_effect = PVOutputConnectionError
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "tadaaa",
|
|
},
|
|
)
|
|
|
|
assert result.get("type") is FlowResultType.FORM
|
|
assert result.get("errors") == {"base": "cannot_connect"}
|
|
|
|
assert len(mock_pvoutput.system.mock_calls) == 1
|
|
|
|
|
|
async def test_already_configured(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_pvoutput: MagicMock,
|
|
) -> None:
|
|
"""Test we abort if the PVOutput system is already configured."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "tadaaa",
|
|
},
|
|
)
|
|
|
|
assert result2.get("type") is FlowResultType.ABORT
|
|
assert result2.get("reason") == "already_configured"
|
|
|
|
|
|
async def test_reauth_flow(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_pvoutput: MagicMock,
|
|
mock_setup_entry: AsyncMock,
|
|
) -> None:
|
|
"""Test the reauthentication configuration flow."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reauth_flow(hass)
|
|
assert result.get("type") is FlowResultType.FORM
|
|
assert result.get("step_id") == "reauth_confirm"
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{CONF_API_KEY: "some_new_key"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2.get("type") is FlowResultType.ABORT
|
|
assert result2.get("reason") == "reauth_successful"
|
|
assert mock_config_entry.data == {
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "some_new_key",
|
|
}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
assert len(mock_pvoutput.system.mock_calls) == 1
|
|
|
|
|
|
async def test_reauth_with_authentication_error(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_pvoutput: MagicMock,
|
|
mock_setup_entry: AsyncMock,
|
|
) -> None:
|
|
"""Test the reauthentication configuration flow with an authentication error.
|
|
|
|
This tests tests a reauth flow, with a case the user enters an invalid
|
|
API key, but recover by entering the correct one.
|
|
"""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reauth_flow(hass)
|
|
assert result.get("type") is FlowResultType.FORM
|
|
assert result.get("step_id") == "reauth_confirm"
|
|
|
|
mock_pvoutput.system.side_effect = PVOutputAuthenticationError
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{CONF_API_KEY: "invalid_key"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2.get("type") is FlowResultType.FORM
|
|
assert result2.get("step_id") == "reauth_confirm"
|
|
assert result2.get("errors") == {"base": "invalid_auth"}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 0
|
|
assert len(mock_pvoutput.system.mock_calls) == 1
|
|
|
|
mock_pvoutput.system.side_effect = None
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
user_input={CONF_API_KEY: "valid_key"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result3.get("type") is FlowResultType.ABORT
|
|
assert result3.get("reason") == "reauth_successful"
|
|
assert mock_config_entry.data == {
|
|
CONF_SYSTEM_ID: 12345,
|
|
CONF_API_KEY: "valid_key",
|
|
}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
assert len(mock_pvoutput.system.mock_calls) == 2
|
|
|
|
|
|
async def test_reauth_api_error(
|
|
hass: HomeAssistant,
|
|
mock_pvoutput: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test API error during reauthentication."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reauth_flow(hass)
|
|
assert result.get("type") is FlowResultType.FORM
|
|
assert result.get("step_id") == "reauth_confirm"
|
|
|
|
mock_pvoutput.system.side_effect = PVOutputConnectionError
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{CONF_API_KEY: "some_new_key"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2.get("type") is FlowResultType.FORM
|
|
assert result2.get("step_id") == "reauth_confirm"
|
|
assert result2.get("errors") == {"base": "cannot_connect"}
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_pvoutput")
|
|
async def test_reconfigure_flow(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test reconfiguring an existing PVOutput entry."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reconfigure_flow(hass)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reconfigure"
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_API_KEY: "new-api-key"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "reconfigure_successful"
|
|
assert mock_config_entry.data[CONF_API_KEY] == "new-api-key"
|
|
assert mock_config_entry.data[CONF_SYSTEM_ID] == 12345
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("side_effect", "expected_error"),
|
|
[
|
|
(PVOutputAuthenticationError, {"base": "invalid_auth"}),
|
|
(PVOutputConnectionError, {"base": "cannot_connect"}),
|
|
],
|
|
)
|
|
async def test_reconfigure_flow_errors(
|
|
hass: HomeAssistant,
|
|
mock_pvoutput: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
side_effect: type[Exception],
|
|
expected_error: dict[str, str],
|
|
) -> None:
|
|
"""Test reconfigure flow recovers from errors."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await mock_config_entry.start_reconfigure_flow(hass)
|
|
|
|
mock_pvoutput.system.side_effect = side_effect
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_API_KEY: "new-api-key"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reconfigure"
|
|
assert result["errors"] == expected_error
|
|
|
|
mock_pvoutput.system.side_effect = None
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_API_KEY: "new-api-key"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "reconfigure_successful"
|