81 lines
2.3 KiB
Python
81 lines
2.3 KiB
Python
"""Tests for the Whois config flow."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from homeassistant.components.whois.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_IMPORT, SOURCE_USER
|
|
from homeassistant.const import CONF_DOMAIN, CONF_NAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import (
|
|
RESULT_TYPE_ABORT,
|
|
RESULT_TYPE_CREATE_ENTRY,
|
|
RESULT_TYPE_FORM,
|
|
)
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_full_user_flow(
|
|
hass: HomeAssistant,
|
|
mock_setup_entry: AsyncMock,
|
|
) -> None:
|
|
"""Test the full user configuration flow."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
assert result.get("type") == RESULT_TYPE_FORM
|
|
assert result.get("step_id") == SOURCE_USER
|
|
assert "flow_id" in result
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_DOMAIN: "Example.com"},
|
|
)
|
|
|
|
assert result2.get("type") == RESULT_TYPE_CREATE_ENTRY
|
|
assert result2.get("title") == "Example.com"
|
|
assert result2.get("data") == {CONF_DOMAIN: "example.com"}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_already_configured(
|
|
hass: HomeAssistant,
|
|
mock_setup_entry: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test we abort if already configured."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={CONF_DOMAIN: "HOME-Assistant.io"},
|
|
)
|
|
|
|
assert result.get("type") == RESULT_TYPE_ABORT
|
|
assert result.get("reason") == "already_configured"
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 0
|
|
|
|
|
|
async def test_import_flow(
|
|
hass: HomeAssistant,
|
|
mock_setup_entry: AsyncMock,
|
|
) -> None:
|
|
"""Test the import configuration flow."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={CONF_DOMAIN: "Example.com", CONF_NAME: "My Example Domain"},
|
|
)
|
|
|
|
assert result.get("type") == RESULT_TYPE_CREATE_ENTRY
|
|
assert result.get("title") == "My Example Domain"
|
|
assert result.get("data") == {
|
|
CONF_DOMAIN: "example.com",
|
|
}
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|