148 lines
5.0 KiB
Python
148 lines
5.0 KiB
Python
"""Test the Almond config flow."""
|
|
import asyncio
|
|
|
|
from asynctest import patch
|
|
|
|
from homeassistant import config_entries, data_entry_flow, setup
|
|
from homeassistant.components.almond import config_flow
|
|
from homeassistant.components.almond.const import DOMAIN
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
from tests.common import MockConfigEntry, mock_coro
|
|
|
|
CLIENT_ID_VALUE = "1234"
|
|
CLIENT_SECRET_VALUE = "5678"
|
|
|
|
|
|
async def test_import(hass):
|
|
"""Test that we can import a config entry."""
|
|
with patch("pyalmond.WebAlmondAPI.async_list_apps", side_effect=mock_coro):
|
|
assert await setup.async_setup_component(
|
|
hass,
|
|
"almond",
|
|
{"almond": {"type": "local", "host": "http://localhost:3000"}},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
entry = hass.config_entries.async_entries(DOMAIN)[0]
|
|
assert entry.data["type"] == "local"
|
|
assert entry.data["host"] == "http://localhost:3000"
|
|
|
|
|
|
async def test_import_cannot_connect(hass):
|
|
"""Test that we won't import a config entry if we cannot connect."""
|
|
with patch(
|
|
"pyalmond.WebAlmondAPI.async_list_apps", side_effect=asyncio.TimeoutError
|
|
):
|
|
assert await setup.async_setup_component(
|
|
hass,
|
|
"almond",
|
|
{"almond": {"type": "local", "host": "http://localhost:3000"}},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 0
|
|
|
|
|
|
async def test_hassio(hass):
|
|
"""Test that Hass.io can discover this integration."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": "hassio"},
|
|
data={"addon": "Almond add-on", "host": "almond-addon", "port": "1234"},
|
|
)
|
|
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
|
assert result["step_id"] == "hassio_confirm"
|
|
|
|
with patch(
|
|
"homeassistant.components.almond.async_setup_entry", return_value=True
|
|
) as mock_setup:
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], {})
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
assert result2["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
entry = hass.config_entries.async_entries(DOMAIN)[0]
|
|
assert entry.data["type"] == "local"
|
|
assert entry.data["host"] == "http://almond-addon:1234"
|
|
|
|
|
|
async def test_abort_if_existing_entry(hass):
|
|
"""Check flow abort when an entry already exist."""
|
|
MockConfigEntry(domain=DOMAIN).add_to_hass(hass)
|
|
|
|
flow = config_flow.AlmondFlowHandler()
|
|
flow.hass = hass
|
|
|
|
result = await flow.async_step_user()
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT
|
|
assert result["reason"] == "already_setup"
|
|
|
|
result = await flow.async_step_import()
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT
|
|
assert result["reason"] == "already_setup"
|
|
|
|
result = await flow.async_step_hassio()
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT
|
|
assert result["reason"] == "already_setup"
|
|
|
|
|
|
async def test_full_flow(hass, aiohttp_client, aioclient_mock):
|
|
"""Check full flow."""
|
|
assert await setup.async_setup_component(
|
|
hass,
|
|
"almond",
|
|
{
|
|
"almond": {
|
|
"type": "oauth2",
|
|
"client_id": CLIENT_ID_VALUE,
|
|
"client_secret": CLIENT_SECRET_VALUE,
|
|
},
|
|
"http": {"base_url": "https://example.com"},
|
|
},
|
|
)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
"almond", context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
state = config_entry_oauth2_flow._encode_jwt(hass, {"flow_id": result["flow_id"]})
|
|
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_EXTERNAL_STEP
|
|
assert result["url"] == (
|
|
"https://almond.stanford.edu/me/api/oauth2/authorize"
|
|
f"?response_type=code&client_id={CLIENT_ID_VALUE}"
|
|
"&redirect_uri=https://example.com/auth/external/callback"
|
|
f"&state={state}&scope=profile+user-read+user-read-results+user-exec-command"
|
|
)
|
|
|
|
client = await aiohttp_client(hass.http.app)
|
|
resp = await client.get(f"/auth/external/callback?code=abcd&state={state}")
|
|
assert resp.status == 200
|
|
assert resp.headers["content-type"] == "text/html; charset=utf-8"
|
|
|
|
aioclient_mock.post(
|
|
"https://almond.stanford.edu/me/api/oauth2/token",
|
|
json={
|
|
"refresh_token": "mock-refresh-token",
|
|
"access_token": "mock-access-token",
|
|
"type": "Bearer",
|
|
"expires_in": 60,
|
|
},
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.almond.async_setup_entry", return_value=True
|
|
) as mock_setup:
|
|
result = await hass.config_entries.flow.async_configure(result["flow_id"])
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
entry = hass.config_entries.async_entries(DOMAIN)[0]
|
|
assert entry.data["type"] == "oauth2"
|
|
assert entry.data["host"] == "https://almond.stanford.edu/me"
|