"""Tests for config flow.""" from unittest.mock import AsyncMock, patch from microBeesPy import MicroBeesException import pytest from homeassistant.components.microbees.const import DOMAIN from homeassistant.config_entries import SOURCE_REAUTH, SOURCE_USER from homeassistant.core import HomeAssistant from homeassistant.data_entry_flow import FlowResultType from homeassistant.helpers import config_entry_oauth2_flow from . import setup_integration from .conftest import CLIENT_ID, MICROBEES_AUTH_URI, MICROBEES_TOKEN_URI, SCOPES from tests.common import MockConfigEntry from tests.test_util.aiohttp import AiohttpClientMocker from tests.typing import ClientSessionGenerator async def test_full_flow( hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator, current_request_with_host: None, aioclient_mock: AiohttpClientMocker, microbees: AsyncMock, ) -> None: """Check full flow.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": SOURCE_USER} ) state = config_entry_oauth2_flow._encode_jwt( hass, { "flow_id": result["flow_id"], "redirect_uri": "https://example.com/auth/external/callback", }, ) assert result["type"] == FlowResultType.EXTERNAL_STEP assert result["url"] == ( f"{MICROBEES_AUTH_URI}?" f"response_type=code&client_id={CLIENT_ID}&" "redirect_uri=https://example.com/auth/external/callback&" f"state={state}" f"&scope={'+'.join(SCOPES)}" ) client = await hass_client_no_auth() 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.clear_requests() aioclient_mock.post( MICROBEES_TOKEN_URI, json={ "access_token": "mock-access-token", "token_type": "bearer", "refresh_token": "mock-refresh-token", "expires_in": 99999, "scope": " ".join(SCOPES), "client_id": CLIENT_ID, }, ) with patch( "homeassistant.components.microbees.async_setup_entry", return_value=True ) as mock_setup: result = 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 assert result["type"] == FlowResultType.CREATE_ENTRY assert result["title"] == "test@microbees.com" assert "result" in result assert result["result"].unique_id == 54321 assert "token" in result["result"].data assert result["result"].data["token"]["access_token"] == "mock-access-token" assert result["result"].data["token"]["refresh_token"] == "mock-refresh-token" async def test_config_non_unique_profile( hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator, current_request_with_host: None, microbees: AsyncMock, config_entry: MockConfigEntry, aioclient_mock: AiohttpClientMocker, ) -> None: """Test setup a non-unique profile.""" await setup_integration(hass, config_entry) result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": SOURCE_USER} ) state = config_entry_oauth2_flow._encode_jwt( hass, { "flow_id": result["flow_id"], "redirect_uri": "https://example.com/auth/external/callback", }, ) assert result["type"] == FlowResultType.EXTERNAL_STEP assert result["url"] == ( f"{MICROBEES_AUTH_URI}?" f"response_type=code&client_id={CLIENT_ID}&" "redirect_uri=https://example.com/auth/external/callback&" f"state={state}" f"&scope={'+'.join(SCOPES)}" ) client = await hass_client_no_auth() 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.clear_requests() aioclient_mock.post( MICROBEES_TOKEN_URI, json={ "access_token": "mock-access-token", "token_type": "bearer", "refresh_token": "mock-refresh-token", "expires_in": 99999, "scope": " ".join(SCOPES), "client_id": CLIENT_ID, }, ) result = await hass.config_entries.flow.async_configure(result["flow_id"]) assert result["type"] == FlowResultType.ABORT assert result["reason"] == "already_configured" async def test_config_reauth_profile( hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator, aioclient_mock: AiohttpClientMocker, config_entry: MockConfigEntry, microbees: AsyncMock, current_request_with_host, ) -> None: """Test reauth an existing profile reauthenticates the config entry.""" await setup_integration(hass, config_entry) result = await hass.config_entries.flow.async_init( DOMAIN, context={ "source": SOURCE_REAUTH, "entry_id": config_entry.entry_id, }, data=config_entry.data, ) assert result["type"] == "form" assert result["step_id"] == "reauth_confirm" result = await hass.config_entries.flow.async_configure(result["flow_id"], {}) state = config_entry_oauth2_flow._encode_jwt( hass, { "flow_id": result["flow_id"], "redirect_uri": "https://example.com/auth/external/callback", }, ) assert result["url"] == ( f"{MICROBEES_AUTH_URI}?" f"response_type=code&client_id={CLIENT_ID}&" "redirect_uri=https://example.com/auth/external/callback&" f"state={state}" f"&scope={'+'.join(SCOPES)}" ) client = await hass_client_no_auth() 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.clear_requests() aioclient_mock.post( MICROBEES_TOKEN_URI, json={ "access_token": "mock-access-token", "token_type": "bearer", "refresh_token": "mock-refresh-token", "expires_in": 99999, "scope": " ".join(SCOPES), "client_id": CLIENT_ID, }, ) result = await hass.config_entries.flow.async_configure(result["flow_id"]) assert result assert result["type"] == FlowResultType.ABORT assert result["reason"] == "reauth_successful" async def test_config_reauth_wrong_account( hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator, aioclient_mock: AiohttpClientMocker, config_entry: MockConfigEntry, microbees: AsyncMock, current_request_with_host, ) -> None: """Test reauth with wrong account.""" await setup_integration(hass, config_entry) microbees.return_value.getMyProfile.return_value.id = 12345 result = await hass.config_entries.flow.async_init( DOMAIN, context={ "source": SOURCE_REAUTH, "entry_id": config_entry.entry_id, }, data=config_entry.data, ) assert result["type"] == "form" assert result["step_id"] == "reauth_confirm" result = await hass.config_entries.flow.async_configure(result["flow_id"], {}) state = config_entry_oauth2_flow._encode_jwt( hass, { "flow_id": result["flow_id"], "redirect_uri": "https://example.com/auth/external/callback", }, ) assert result["url"] == ( f"{MICROBEES_AUTH_URI}?" f"response_type=code&client_id={CLIENT_ID}&" "redirect_uri=https://example.com/auth/external/callback&" f"state={state}" f"&scope={'+'.join(SCOPES)}" ) client = await hass_client_no_auth() 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.clear_requests() aioclient_mock.post( MICROBEES_TOKEN_URI, json={ "access_token": "mock-access-token", "token_type": "bearer", "refresh_token": "mock-refresh-token", "expires_in": 99999, "scope": " ".join(SCOPES), "client_id": CLIENT_ID, }, ) result = await hass.config_entries.flow.async_configure(result["flow_id"]) assert result assert result["type"] == FlowResultType.ABORT assert result["reason"] == "wrong_account" async def test_config_flow_with_invalid_credentials( hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator, aioclient_mock: AiohttpClientMocker, microbees: AsyncMock, current_request_with_host, ) -> None: """Test flow with invalid credentials.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": SOURCE_USER} ) state = config_entry_oauth2_flow._encode_jwt( hass, { "flow_id": result["flow_id"], "redirect_uri": "https://example.com/auth/external/callback", }, ) assert result["type"] == FlowResultType.EXTERNAL_STEP assert result["url"] == ( f"{MICROBEES_AUTH_URI}?" f"response_type=code&client_id={CLIENT_ID}&" "redirect_uri=https://example.com/auth/external/callback&" f"state={state}" f"&scope={'+'.join(SCOPES)}" ) client = await hass_client_no_auth() 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.clear_requests() aioclient_mock.post( MICROBEES_TOKEN_URI, json={ "status": 401, "error": "Invalid Params: invalid client id/secret", }, ) result = await hass.config_entries.flow.async_configure(result["flow_id"]) assert result assert result["type"] == FlowResultType.ABORT assert result["reason"] == "oauth_error" @pytest.mark.parametrize( ("exception", "error"), [ (MicroBeesException("Invalid auth"), "invalid_auth"), (Exception("Unexpected error"), "unknown"), ], ) async def test_unexpected_exceptions( hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator, aioclient_mock: AiohttpClientMocker, config_entry: MockConfigEntry, microbees: AsyncMock, exception: Exception, error: str, current_request_with_host, ) -> None: """Test unknown error from server.""" await setup_integration(hass, config_entry) microbees.return_value.getMyProfile.side_effect = exception result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": SOURCE_USER} ) state = config_entry_oauth2_flow._encode_jwt( hass, { "flow_id": result["flow_id"], "redirect_uri": "https://example.com/auth/external/callback", }, ) assert result["type"] == FlowResultType.EXTERNAL_STEP assert result["url"] == ( f"{MICROBEES_AUTH_URI}?" f"response_type=code&client_id={CLIENT_ID}&" "redirect_uri=https://example.com/auth/external/callback&" f"state={state}" f"&scope={'+'.join(SCOPES)}" ) client = await hass_client_no_auth() 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.clear_requests() aioclient_mock.post( MICROBEES_TOKEN_URI, json={ "access_token": "mock-access-token", "token_type": "bearer", "refresh_token": "mock-refresh-token", "expires_in": 99999, "scope": " ".join(SCOPES), "client_id": CLIENT_ID, }, ) result = await hass.config_entries.flow.async_configure(result["flow_id"]) assert result assert result["type"] == FlowResultType.ABORT assert result["reason"] == error