2020-06-17 11:28:28 +00:00
|
|
|
"""Test the Smappee config flow."""
|
2020-06-26 17:46:14 +00:00
|
|
|
from homeassistant import config_entries, setup
|
2020-06-17 11:28:28 +00:00
|
|
|
from homeassistant.components.smappee.const import AUTHORIZE_URL, DOMAIN, TOKEN_URL
|
|
|
|
from homeassistant.const import CONF_CLIENT_ID, CONF_CLIENT_SECRET
|
|
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
|
|
|
|
from tests.async_mock import patch
|
|
|
|
|
|
|
|
CLIENT_ID = "1234"
|
|
|
|
CLIENT_SECRET = "5678"
|
|
|
|
|
|
|
|
|
|
|
|
async def test_full_flow(hass, aiohttp_client, aioclient_mock):
|
|
|
|
"""Check full flow."""
|
|
|
|
assert await setup.async_setup_component(
|
|
|
|
hass,
|
|
|
|
DOMAIN,
|
|
|
|
{
|
|
|
|
DOMAIN: {CONF_CLIENT_ID: CLIENT_ID, CONF_CLIENT_SECRET: CLIENT_SECRET},
|
|
|
|
"http": {"base_url": "https://example.com"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
state = config_entry_oauth2_flow._encode_jwt(hass, {"flow_id": result["flow_id"]})
|
|
|
|
|
|
|
|
assert result["url"] == (
|
2020-06-26 17:46:14 +00:00
|
|
|
f"{AUTHORIZE_URL['PRODUCTION']}?response_type=code&client_id={CLIENT_ID}"
|
2020-06-17 11:28:28 +00:00
|
|
|
"&redirect_uri=https://example.com/auth/external/callback"
|
|
|
|
f"&state={state}"
|
|
|
|
)
|
|
|
|
|
|
|
|
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(
|
2020-06-26 17:46:14 +00:00
|
|
|
TOKEN_URL["PRODUCTION"],
|
2020-06-17 11:28:28 +00:00
|
|
|
json={
|
|
|
|
"refresh_token": "mock-refresh-token",
|
|
|
|
"access_token": "mock-access-token",
|
|
|
|
"type": "Bearer",
|
|
|
|
"expires_in": 60,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
with patch(
|
|
|
|
"homeassistant.components.smappee.async_setup_entry", return_value=True
|
|
|
|
) as mock_setup:
|
|
|
|
await hass.config_entries.flow.async_configure(result["flow_id"])
|
|
|
|
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|