core/tests/components/ohme/test_config_flow.py

185 lines
5.3 KiB
Python

"""Tests for the config flow."""
from unittest.mock import AsyncMock, MagicMock
from ohme import ApiException, AuthException
import pytest
from homeassistant.components.ohme.const import DOMAIN
from homeassistant.config_entries import SOURCE_USER
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResultType
from tests.common import MockConfigEntry
async def test_config_flow_success(
hass: HomeAssistant, mock_setup_entry: AsyncMock, mock_client: MagicMock
) -> None:
"""Test config flow."""
# Initial form load
result = await hass.config_entries.flow.async_init(
DOMAIN, context={"source": SOURCE_USER}
)
assert result["type"] is FlowResultType.FORM
assert not result["errors"]
# Successful login
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_EMAIL: "test@example.com", CONF_PASSWORD: "hunter2"},
)
assert result["type"] is FlowResultType.CREATE_ENTRY
assert result["title"] == "test@example.com"
assert result["data"] == {
CONF_EMAIL: "test@example.com",
CONF_PASSWORD: "hunter2",
}
@pytest.mark.parametrize(
("test_exception", "expected_error"),
[(AuthException, "invalid_auth"), (ApiException, "unknown")],
)
async def test_config_flow_fail(
hass: HomeAssistant,
mock_setup_entry: AsyncMock,
mock_client: MagicMock,
test_exception: Exception,
expected_error: str,
) -> None:
"""Test config flow errors."""
# Initial form load
result = await hass.config_entries.flow.async_init(
DOMAIN, context={"source": SOURCE_USER}
)
assert result["type"] is FlowResultType.FORM
assert not result["errors"]
# Failed login
mock_client.async_login.side_effect = test_exception
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_EMAIL: "test@example.com", CONF_PASSWORD: "hunter1"},
)
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": expected_error}
# End with CREATE_ENTRY
mock_client.async_login.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_EMAIL: "test@example.com", CONF_PASSWORD: "hunter1"},
)
assert result["type"] is FlowResultType.CREATE_ENTRY
assert result["title"] == "test@example.com"
assert result["data"] == {
CONF_EMAIL: "test@example.com",
CONF_PASSWORD: "hunter1",
}
async def test_already_configured(
hass: HomeAssistant, mock_config_entry: MockConfigEntry
) -> None:
"""Ensure we can't add the same account twice."""
mock_config_entry.add_to_hass(hass)
result = await hass.config_entries.flow.async_init(
DOMAIN, context={"source": SOURCE_USER}
)
assert result["type"] is FlowResultType.FORM
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{
CONF_EMAIL: "test@example.com",
CONF_PASSWORD: "hunter3",
},
)
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "already_configured"
async def test_reauth_form(hass: HomeAssistant, mock_client: MagicMock) -> None:
"""Test reauth form."""
entry = MockConfigEntry(
domain=DOMAIN,
data={
CONF_EMAIL: "test@example.com",
CONF_PASSWORD: "hunter1",
},
)
entry.add_to_hass(hass)
result = await entry.start_reauth_flow(hass)
assert result["type"] is FlowResultType.FORM
assert result["step_id"] == "reauth_confirm"
assert not result["errors"]
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_PASSWORD: "hunter2"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"
@pytest.mark.parametrize(
("test_exception", "expected_error"),
[(AuthException, "invalid_auth"), (ApiException, "unknown")],
)
async def test_reauth_fail(
hass: HomeAssistant,
mock_client: MagicMock,
test_exception: Exception,
expected_error: str,
) -> None:
"""Test reauth errors."""
entry = MockConfigEntry(
domain=DOMAIN,
data={
CONF_EMAIL: "test@example.com",
CONF_PASSWORD: "hunter1",
},
)
entry.add_to_hass(hass)
# Initial form load
result = await entry.start_reauth_flow(hass)
assert result["step_id"] == "reauth_confirm"
assert result["type"] is FlowResultType.FORM
assert not result["errors"]
# Failed login
mock_client.async_login.side_effect = test_exception
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_PASSWORD: "hunter1"},
)
assert result["type"] is FlowResultType.FORM
assert result["errors"] == {"base": expected_error}
# End with success
mock_client.async_login.side_effect = None
result = await hass.config_entries.flow.async_configure(
result["flow_id"],
{CONF_PASSWORD: "hunter2"},
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful"