1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-08 17:49:37 +01:00

Improved error handling for oauth2 configuration in withings integration (#156206)

This commit is contained in:
Will Moss
2025-11-09 12:50:47 -08:00
committed by GitHub
parent 69c5668b13
commit 4ca620e450
3 changed files with 35 additions and 1 deletions
@@ -37,8 +37,10 @@ from homeassistant.const import (
Platform,
)
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers.aiohttp_client import async_get_clientsession
from homeassistant.helpers.config_entry_oauth2_flow import (
ImplementationUnavailableError,
OAuth2Session,
async_get_config_entry_implementation,
)
@@ -104,7 +106,13 @@ async def async_setup_entry(hass: HomeAssistant, entry: WithingsConfigEntry) ->
)
session = async_get_clientsession(hass)
client = WithingsClient(session=session)
implementation = await async_get_config_entry_implementation(hass, entry)
try:
implementation = await async_get_config_entry_implementation(hass, entry)
except ImplementationUnavailableError as err:
raise ConfigEntryNotReady(
translation_domain=DOMAIN,
translation_key="oauth2_implementation_unavailable",
) from err
oauth_session = OAuth2Session(hass, entry, implementation)
refresh_lock = asyncio.Lock()
@@ -331,5 +331,10 @@
}
}
}
},
"exceptions": {
"oauth2_implementation_unavailable": {
"message": "OAuth2 implementation unavailable, will retry"
}
}
}
+21
View File
@@ -22,9 +22,13 @@ from homeassistant.components import cloud
from homeassistant.components.cloud import CloudNotAvailable
from homeassistant.components.webhook import async_generate_url
from homeassistant.components.withings.const import DOMAIN
from homeassistant.config_entries import ConfigEntryState
from homeassistant.const import CONF_WEBHOOK_ID
from homeassistant.core import HomeAssistant
from homeassistant.helpers import device_registry as dr
from homeassistant.helpers.config_entry_oauth2_flow import (
ImplementationUnavailableError,
)
from homeassistant.util import dt as dt_util
from . import call_webhook, prepare_webhook_setup, setup_integration
@@ -643,3 +647,20 @@ async def test_devices(
device = device_registry.async_get_device({(DOMAIN, device_id)})
assert device is not None
assert device == snapshot(name=device_id)
async def test_oauth_implementation_not_available(
hass: HomeAssistant,
webhook_config_entry: MockConfigEntry,
) -> None:
"""Test that unavailable OAuth implementation raises ConfigEntryNotReady."""
webhook_config_entry.add_to_hass(hass)
with patch(
"homeassistant.components.withings.async_get_config_entry_implementation",
side_effect=ImplementationUnavailableError,
):
await hass.config_entries.async_setup(webhook_config_entry.entry_id)
await hass.async_block_till_done()
assert webhook_config_entry.state is ConfigEntryState.SETUP_RETRY