73 lines
2.0 KiB
Python
73 lines
2.0 KiB
Python
"""Tests for the Uptime config flow."""
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.uptime.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_IMPORT, SOURCE_USER
|
|
from homeassistant.const import 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: MagicMock,
|
|
) -> 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={},
|
|
)
|
|
|
|
assert result2.get("type") == RESULT_TYPE_CREATE_ENTRY
|
|
assert result2.get("title") == "Uptime"
|
|
assert result2.get("data") == {}
|
|
|
|
|
|
@pytest.mark.parametrize("source", [SOURCE_USER, SOURCE_IMPORT])
|
|
async def test_single_instance_allowed(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
source: str,
|
|
) -> None:
|
|
"""Test we abort if already setup."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": source}
|
|
)
|
|
|
|
assert result.get("type") == RESULT_TYPE_ABORT
|
|
assert result.get("reason") == "single_instance_allowed"
|
|
|
|
|
|
async def test_import_flow(
|
|
hass: HomeAssistant,
|
|
mock_setup_entry: MagicMock,
|
|
) -> None:
|
|
"""Test the import configuration flow."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={CONF_NAME: "My Uptime"},
|
|
)
|
|
|
|
assert result.get("type") == RESULT_TYPE_CREATE_ENTRY
|
|
assert result.get("title") == "My Uptime"
|
|
assert result.get("data") == {}
|