core/tests/components/elgato/test_config_flow.py

243 lines
7.7 KiB
Python
Raw Normal View History

"""Tests for the Elgato Key Light config flow."""
2022-01-14 16:16:59 +00:00
from unittest.mock import AsyncMock, MagicMock
from elgato import ElgatoConnectionError
from homeassistant.components import zeroconf
from homeassistant.components.elgato.const import DOMAIN
from homeassistant.config_entries import SOURCE_USER, SOURCE_ZEROCONF
from homeassistant.const import CONF_HOST, CONF_MAC, CONF_PORT, CONF_SOURCE
from homeassistant.core import HomeAssistant
2022-01-14 16:16:59 +00:00
from homeassistant.data_entry_flow import (
RESULT_TYPE_ABORT,
RESULT_TYPE_CREATE_ENTRY,
RESULT_TYPE_FORM,
)
2022-01-14 16:16:59 +00:00
from tests.common import MockConfigEntry
2021-02-13 22:50:25 +00:00
async def test_full_user_flow_implementation(
2022-01-14 16:16:59 +00:00
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
mock_setup_entry: AsyncMock,
2021-02-13 22:50:25 +00:00
) -> None:
"""Test the full manual user flow from start to finish."""
result = await hass.config_entries.flow.async_init(
2021-02-13 22:50:25 +00:00
DOMAIN,
2022-01-14 16:16:59 +00:00
context={"source": SOURCE_USER},
)
2022-01-14 16:16:59 +00:00
assert result.get("type") == RESULT_TYPE_FORM
assert result.get("step_id") == SOURCE_USER
assert "flow_id" in result
2022-01-14 16:16:59 +00:00
result2 = await hass.config_entries.flow.async_configure(
2021-02-13 22:50:25 +00:00
result["flow_id"], user_input={CONF_HOST: "127.0.0.1", CONF_PORT: 9123}
)
2022-01-14 16:16:59 +00:00
assert result2.get("type") == RESULT_TYPE_CREATE_ENTRY
assert result2.get("title") == "CN11A1A00001"
assert result2.get("data") == {
CONF_HOST: "127.0.0.1",
CONF_MAC: None,
2022-01-14 16:16:59 +00:00
CONF_PORT: 9123,
}
assert "result" in result2
assert result2["result"].unique_id == "CN11A1A00001"
2022-01-14 16:16:59 +00:00
assert len(mock_setup_entry.mock_calls) == 1
assert len(mock_elgato_config_flow.info.mock_calls) == 1
2021-02-13 22:50:25 +00:00
async def test_full_zeroconf_flow_implementation(
2022-01-14 16:16:59 +00:00
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
mock_setup_entry: AsyncMock,
) -> None:
2021-02-13 22:50:25 +00:00
"""Test the zeroconf flow from start to finish."""
result = await hass.config_entries.flow.async_init(
DOMAIN,
2022-01-14 16:16:59 +00:00
context={"source": SOURCE_ZEROCONF},
data=zeroconf.ZeroconfServiceInfo(
host="127.0.0.1",
addresses=["127.0.0.1"],
hostname="example.local.",
name="mock_name",
port=9123,
properties={"id": "AA:BB:CC:DD:EE:FF"},
type="mock_type",
),
2021-02-13 22:50:25 +00:00
)
2022-01-14 16:16:59 +00:00
assert result.get("description_placeholders") == {"serial_number": "CN11A1A00001"}
assert result.get("step_id") == "zeroconf_confirm"
assert result.get("type") == RESULT_TYPE_FORM
assert "flow_id" in result
2021-03-10 00:53:00 +00:00
progress = hass.config_entries.flow.async_progress()
assert len(progress) == 1
2022-01-14 16:16:59 +00:00
assert progress[0].get("flow_id") == result["flow_id"]
assert "context" in progress[0]
assert progress[0]["context"].get("confirm_only") is True
2021-03-10 00:53:00 +00:00
2022-01-14 16:16:59 +00:00
result2 = await hass.config_entries.flow.async_configure(
2021-02-13 22:50:25 +00:00
result["flow_id"], user_input={}
)
2022-01-14 16:16:59 +00:00
assert result2.get("type") == RESULT_TYPE_CREATE_ENTRY
assert result2.get("title") == "CN11A1A00001"
assert result2.get("data") == {
CONF_HOST: "127.0.0.1",
CONF_MAC: "AA:BB:CC:DD:EE:FF",
2022-01-14 16:16:59 +00:00
CONF_PORT: 9123,
}
assert "result" in result2
assert result2["result"].unique_id == "CN11A1A00001"
assert len(mock_setup_entry.mock_calls) == 1
assert len(mock_elgato_config_flow.info.mock_calls) == 1
2021-02-13 22:50:25 +00:00
async def test_connection_error(
2022-01-14 16:16:59 +00:00
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
) -> None:
"""Test we show user form on Elgato Key Light connection error."""
2022-01-14 16:16:59 +00:00
mock_elgato_config_flow.info.side_effect = ElgatoConnectionError
result = await hass.config_entries.flow.async_init(
2021-02-13 22:50:25 +00:00
DOMAIN,
2022-01-14 16:16:59 +00:00
context={"source": SOURCE_USER},
2021-02-13 22:50:25 +00:00
data={CONF_HOST: "127.0.0.1", CONF_PORT: 9123},
)
2022-01-14 16:16:59 +00:00
assert result.get("type") == RESULT_TYPE_FORM
assert result.get("errors") == {"base": "cannot_connect"}
assert result.get("step_id") == "user"
async def test_zeroconf_connection_error(
2022-01-14 16:16:59 +00:00
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
) -> None:
"""Test we abort zeroconf flow on Elgato Key Light connection error."""
2022-01-14 16:16:59 +00:00
mock_elgato_config_flow.info.side_effect = ElgatoConnectionError
result = await hass.config_entries.flow.async_init(
2021-02-13 22:50:25 +00:00
DOMAIN,
context={"source": SOURCE_ZEROCONF},
data=zeroconf.ZeroconfServiceInfo(
host="127.0.0.1",
addresses=["127.0.0.1"],
hostname="mock_hostname",
name="mock_name",
port=9123,
properties={},
type="mock_type",
),
)
2022-01-14 16:16:59 +00:00
assert result.get("reason") == "cannot_connect"
assert result.get("type") == RESULT_TYPE_ABORT
async def test_user_device_exists_abort(
2022-01-14 16:16:59 +00:00
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test we abort zeroconf flow if Elgato Key Light device already configured."""
2022-01-14 16:16:59 +00:00
mock_config_entry.add_to_hass(hass)
result = await hass.config_entries.flow.async_init(
2021-02-13 22:50:25 +00:00
DOMAIN,
2022-01-14 16:16:59 +00:00
context={"source": SOURCE_USER},
2021-02-13 22:50:25 +00:00
data={CONF_HOST: "127.0.0.1", CONF_PORT: 9123},
)
2022-01-14 16:16:59 +00:00
assert result.get("type") == RESULT_TYPE_ABORT
assert result.get("reason") == "already_configured"
async def test_zeroconf_device_exists_abort(
2022-01-14 16:16:59 +00:00
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test we abort zeroconf flow if Elgato Key Light device already configured."""
2022-01-14 16:16:59 +00:00
mock_config_entry.add_to_hass(hass)
result = await hass.config_entries.flow.async_init(
2021-02-13 22:50:25 +00:00
DOMAIN,
context={CONF_SOURCE: SOURCE_ZEROCONF},
data=zeroconf.ZeroconfServiceInfo(
host="127.0.0.1",
addresses=["127.0.0.1"],
hostname="mock_hostname",
name="mock_name",
port=9123,
properties={},
type="mock_type",
),
)
2022-01-14 16:16:59 +00:00
assert result.get("type") == RESULT_TYPE_ABORT
assert result.get("reason") == "already_configured"
entries = hass.config_entries.async_entries(DOMAIN)
assert entries[0].data[CONF_HOST] == "127.0.0.1"
2022-01-14 16:16:59 +00:00
# Check the host updates on discovery
result = await hass.config_entries.flow.async_init(
2021-02-13 22:50:25 +00:00
DOMAIN,
context={CONF_SOURCE: SOURCE_ZEROCONF},
data=zeroconf.ZeroconfServiceInfo(
host="127.0.0.2",
addresses=["127.0.0.2"],
hostname="mock_hostname",
name="mock_name",
port=9123,
properties={},
type="mock_type",
),
)
2022-01-14 16:16:59 +00:00
assert result.get("type") == RESULT_TYPE_ABORT
assert result.get("reason") == "already_configured"
2021-02-13 22:50:25 +00:00
entries = hass.config_entries.async_entries(DOMAIN)
assert entries[0].data[CONF_HOST] == "127.0.0.2"
2022-06-22 20:37:25 +00:00
async def test_zeroconf_during_onboarding(
hass: HomeAssistant,
mock_elgato_config_flow: MagicMock,
mock_setup_entry: AsyncMock,
mock_onboarding: MagicMock,
) -> None:
"""Test the zeroconf creates an entry during onboarding."""
result = await hass.config_entries.flow.async_init(
DOMAIN,
context={"source": SOURCE_ZEROCONF},
data=zeroconf.ZeroconfServiceInfo(
host="127.0.0.1",
addresses=["127.0.0.1"],
hostname="example.local.",
name="mock_name",
port=9123,
properties={"id": "AA:BB:CC:DD:EE:FF"},
type="mock_type",
),
)
assert result.get("type") == RESULT_TYPE_CREATE_ENTRY
assert result.get("title") == "CN11A1A00001"
assert result.get("data") == {
CONF_HOST: "127.0.0.1",
CONF_MAC: "AA:BB:CC:DD:EE:FF",
CONF_PORT: 9123,
}
assert "result" in result
assert result["result"].unique_id == "CN11A1A00001"
assert len(mock_setup_entry.mock_calls) == 1
assert len(mock_elgato_config_flow.info.mock_calls) == 1
assert len(mock_onboarding.mock_calls) == 1