Add my-PV reauth flow (#181674)

Co-authored-by: Robert Resch <robert@resch.dev>
Co-authored-by: Simon Lamon <32477463+silamon@users.noreply.github.com>
This commit is contained in:
rrooggiieerr
2026-09-16 06:05:29 +02:00
committed by GitHub
co-authored by Robert Resch Simon Lamon
parent 3dc80136e7
commit a09f39b521
4 changed files with 164 additions and 3 deletions
@@ -1,5 +1,6 @@
"""Config flow for the my-PV integration."""
from collections.abc import Mapping
import logging
from typing import Any, Final, override
@@ -213,3 +214,49 @@ class MyPVConfigFlow(ConfigFlow, domain=DOMAIN):
errors=errors,
description_placeholders=self.context["title_placeholders"],
)
async def async_step_reauth(
self, entry_data: Mapping[str, Any]
) -> ConfigFlowResult:
"""Perform reauth upon an authentication error."""
return await self.async_step_reauth_confirm()
async def async_step_reauth_confirm(
self, user_input: dict[str, str] | None = None
) -> ConfigFlowResult:
"""Confirm reauth dialog."""
errors: dict[str, str] = {}
reauth_entry = self._get_reauth_entry()
if user_input is not None:
user_input = {**reauth_entry.data, **user_input}
host = user_input[CONF_HOST]
password = user_input[CONF_PASSWORD]
device = MyPVLocalDevice(host, password)
try:
if not await device.connect():
errors[CONF_BASE] = "cannot_connect"
except MyPVAuthenticationError:
errors[CONF_PASSWORD] = "invalid_password"
finally:
await device.disconnect()
if not errors:
await self.async_set_unique_id(device.serial_number)
self._abort_if_unique_id_mismatch()
data = {
CONF_PASSWORD: password,
}
return self.async_update_reload_and_abort(
reauth_entry, data_updates=data
)
data_schema = self.add_suggested_values_to_schema(AUTH_SCHEMA, user_input or {})
return self.async_show_form(
step_id="reauth_confirm",
data_schema=data_schema,
errors=errors,
description_placeholders=self.context["title_placeholders"],
)
@@ -42,7 +42,7 @@ rules:
integration-owner: done
log-when-unavailable: todo
parallel-updates: todo
reauthentication-flow: todo
reauthentication-flow: done
test-coverage: todo
# Gold tier rules
+12 -2
View File
@@ -6,7 +6,8 @@
"config": {
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]"
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"unique_id_mismatch": "The device serial number does not match the original device."
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
@@ -36,6 +37,15 @@
"description": "[%key:component::my_pv::common::discovery_description%]",
"title": "{name}"
},
"reauth_confirm": {
"data": {
"password": "[%key:common::config_flow::data::password%]"
},
"data_description": {
"password": "[%key:component::my_pv::common::password_description%]"
},
"title": "{name} password"
},
"user": {
"data": {
"host": "[%key:common::config_flow::data::host%]"
@@ -49,7 +59,7 @@
},
"exceptions": {
"auth_error": {
"message": "Authentication failed. Remove and add the integration again with the current device password."
"message": "Authentication failed, please reauthenticate."
},
"cannot_connect": {
"message": "[%key:common::config_flow::error::cannot_connect%]"
+104
View File
@@ -442,3 +442,107 @@ async def test_step_discovery_auth_wrong_password(
CONF_PASSWORD: "test-password",
}
assert result["result"].unique_id == ELWA2_SERIAL_NUMBER
@pytest.mark.usefixtures("mock_setup_entry")
async def test_step_reauth(
hass: HomeAssistant,
mock_my_pv_client: AsyncMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test for reauth."""
mock_config_entry.add_to_hass(hass)
result = await mock_config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
assert not result["errors"]
result = await hass.config_entries.flow.async_configure(
result["flow_id"], {CONF_PASSWORD: "new-password"}
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
updated_entry = hass.config_entries.async_get_entry(mock_config_entry.entry_id)
assert updated_entry.data[CONF_PASSWORD] == "new-password"
@pytest.mark.usefixtures("mock_setup_entry")
async def test_step_reauth_wrong_password(
hass: HomeAssistant,
mock_my_pv_client: AsyncMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test for reauth with an incorrect password."""
mock_config_entry.add_to_hass(hass)
result = await mock_config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
assert not result["errors"]
mock_my_pv_client.connect.side_effect = MyPVAuthenticationError()
result = await hass.config_entries.flow.async_configure(
result["flow_id"], {CONF_PASSWORD: "wrong-password"}
)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
assert result["errors"]["password"] == "invalid_password"
mock_my_pv_client.connect.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_PASSWORD: "new-password"},
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
updated_entry = hass.config_entries.async_get_entry(mock_config_entry.entry_id)
assert updated_entry.data[CONF_PASSWORD] == "new-password"
@pytest.mark.usefixtures("mock_setup_entry")
async def test_step_reauth_cannot_connect(
hass: HomeAssistant,
mock_my_pv_client: AsyncMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test for reauth if we can not connect to device."""
mock_config_entry.add_to_hass(hass)
result = await mock_config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
assert not result["errors"]
mock_my_pv_client.connect.return_value = False
result = await hass.config_entries.flow.async_configure(
result["flow_id"], {CONF_PASSWORD: "new-password"}
)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
assert result["errors"]["base"] == "cannot_connect"
mock_my_pv_client.connect.return_value = True
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_PASSWORD: "new-password"},
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
updated_entry = hass.config_entries.async_get_entry(mock_config_entry.entry_id)
assert updated_entry.data[CONF_PASSWORD] == "new-password"