Add reauth flow to PlayStation Network integration (#147397)

* Add reauth flow to psn integration

* changes

* catch auth error in coordinator
This commit is contained in:
Manu
2025-06-24 12:20:08 +02:00
committed by GitHub
parent 02e33c3551
commit 38c7eaf70a
6 changed files with 243 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ from homeassistant.components.playstation_network.config_flow import (
PSNAWPNotFoundError,
)
from homeassistant.components.playstation_network.const import CONF_NPSSO, DOMAIN
from homeassistant.config_entries import SOURCE_USER
from homeassistant.config_entries import SOURCE_USER, ConfigEntryState
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResultType
@@ -138,3 +138,161 @@ async def test_parse_npsso_token_failures(
assert result["data"] == {
CONF_NPSSO: NPSSO_TOKEN,
}
@pytest.mark.usefixtures("mock_psnawpapi")
async def test_flow_reauth(
hass: HomeAssistant,
config_entry: MockConfigEntry,
) -> None:
"""Test reauth flow."""
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.state is ConfigEntryState.LOADED
result = await config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_NPSSO: "NEW_NPSSO_TOKEN"},
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
assert config_entry.data[CONF_NPSSO] == "NEW_NPSSO_TOKEN"
assert len(hass.config_entries.async_entries()) == 1
@pytest.mark.parametrize(
("raise_error", "text_error"),
[
(PSNAWPNotFoundError(), "invalid_account"),
(PSNAWPAuthenticationError(), "invalid_auth"),
(PSNAWPError(), "cannot_connect"),
(Exception(), "unknown"),
],
)
async def test_flow_reauth_errors(
hass: HomeAssistant,
mock_psnawpapi: MagicMock,
config_entry: MockConfigEntry,
raise_error: Exception,
text_error: str,
) -> None:
"""Test reauth flow errors."""
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.state is ConfigEntryState.LOADED
mock_psnawpapi.user.side_effect = raise_error
result = await config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_NPSSO: "NEW_NPSSO_TOKEN"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": text_error}
mock_psnawpapi.user.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_NPSSO: "NEW_NPSSO_TOKEN"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
assert config_entry.data[CONF_NPSSO] == "NEW_NPSSO_TOKEN"
assert len(hass.config_entries.async_entries()) == 1
@pytest.mark.usefixtures("mock_psnawpapi")
async def test_flow_reauth_token_error(
hass: HomeAssistant,
mock_psnawp_npsso: MagicMock,
config_entry: MockConfigEntry,
) -> None:
"""Test reauth flow token error."""
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.state is ConfigEntryState.LOADED
mock_psnawp_npsso.side_effect = PSNAWPInvalidTokenError
result = await config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_NPSSO: "NEW_NPSSO_TOKEN"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": "invalid_account"}
mock_psnawp_npsso.side_effect = lambda token: token
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_NPSSO: "NEW_NPSSO_TOKEN"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
assert config_entry.data[CONF_NPSSO] == "NEW_NPSSO_TOKEN"
assert len(hass.config_entries.async_entries()) == 1
@pytest.mark.usefixtures("mock_psnawpapi")
async def test_flow_reauth_account_mismatch(
hass: HomeAssistant,
config_entry: MockConfigEntry,
mock_user: MagicMock,
) -> None:
"""Test reauth flow unique_id mismatch."""
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.state is ConfigEntryState.LOADED
mock_user.account_id = "other_account"
result = await config_entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_NPSSO: "NEW_NPSSO_TOKEN"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "unique_id_mismatch"