Skip to content
Snippets Groups Projects
Unverified Commit 42cef177 authored by Allen Porter's avatar Allen Porter Committed by GitHub
Browse files

Update script scaffold templates for config_flow_oauth2 (#41181)

parent d3bc4efa
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ def _custom_tasks(template, info) -> None: ...@@ -153,7 +153,7 @@ def _custom_tasks(template, info) -> None:
) )
elif template == "config_flow_oauth2": elif template == "config_flow_oauth2":
info.update_manifest(config_flow=True) info.update_manifest(config_flow=True, dependencies=["http"])
info.update_strings( info.update_strings(
title=info.name, title=info.name,
config={ config={
......
...@@ -29,13 +29,13 @@ class ConfigEntryAuth(my_pypi_package.AbstractAuth): ...@@ -29,13 +29,13 @@ class ConfigEntryAuth(my_pypi_package.AbstractAuth):
) )
super().__init__(self.session.token) super().__init__(self.session.token)
def refresh_tokens(self) -> dict: def refresh_tokens(self) -> str:
"""Refresh and return new NEW_NAME tokens using Home Assistant OAuth2 session.""" """Refresh and return new NEW_NAME tokens using Home Assistant OAuth2 session."""
run_coroutine_threadsafe( run_coroutine_threadsafe(
self.session.async_ensure_token_valid(), self.hass.loop self.session.async_ensure_token_valid(), self.hass.loop
).result() ).result()
return self.session.token return self.session.token["access_token"]
class AsyncConfigEntryAuth(my_pypi_package.AbstractAuth): class AsyncConfigEntryAuth(my_pypi_package.AbstractAuth):
...@@ -50,9 +50,9 @@ class AsyncConfigEntryAuth(my_pypi_package.AbstractAuth): ...@@ -50,9 +50,9 @@ class AsyncConfigEntryAuth(my_pypi_package.AbstractAuth):
super().__init__(websession) super().__init__(websession)
self._oauth_session = oauth_session self._oauth_session = oauth_session
async def async_get_access_token(self): async def async_get_access_token(self) -> str:
"""Return a valid access token.""" """Return a valid access token."""
if not self._oauth_session.valid_token: if not self._oauth_session.valid_token:
await self._oauth_session.async_ensure_token_valid() await self._oauth_session.async_ensure_token_valid()
return self._oauth_session.token return self._oauth_session.token["access_token"]
...@@ -13,7 +13,7 @@ CLIENT_ID = "1234" ...@@ -13,7 +13,7 @@ CLIENT_ID = "1234"
CLIENT_SECRET = "5678" CLIENT_SECRET = "5678"
async def test_full_flow(hass, aiohttp_client, aioclient_mock): async def test_full_flow(hass, aiohttp_client, aioclient_mock, current_request):
"""Check full flow.""" """Check full flow."""
assert await setup.async_setup_component( assert await setup.async_setup_component(
hass, hass,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment