108 lines
3.6 KiB
Python
108 lines
3.6 KiB
Python
"""Tests for the TOLO Sauna config flow."""
|
|
from unittest.mock import Mock, patch
|
|
|
|
import pytest
|
|
from tololib.errors import ResponseTimedOutError
|
|
|
|
from homeassistant.components import dhcp
|
|
from homeassistant.components.tolo.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_DHCP, SOURCE_USER
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import (
|
|
RESULT_TYPE_ABORT,
|
|
RESULT_TYPE_CREATE_ENTRY,
|
|
RESULT_TYPE_FORM,
|
|
)
|
|
|
|
MOCK_DHCP_DATA = dhcp.DhcpServiceInfo(
|
|
ip="127.0.0.2", macaddress="00:11:22:33:44:55", hostname="mock_hostname"
|
|
)
|
|
|
|
|
|
@pytest.fixture(name="toloclient")
|
|
def toloclient_fixture() -> Mock:
|
|
"""Patch libraries."""
|
|
with patch("homeassistant.components.tolo.config_flow.ToloClient") as toloclient:
|
|
yield toloclient
|
|
|
|
|
|
async def test_user_with_timed_out_host(hass: HomeAssistant, toloclient: Mock):
|
|
"""Test a user initiated config flow with provided host which times out."""
|
|
toloclient().get_status_info.side_effect = ResponseTimedOutError()
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={CONF_HOST: "127.0.0.1"},
|
|
)
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["step_id"] == SOURCE_USER
|
|
assert result["errors"] == {"base": "cannot_connect"}
|
|
|
|
|
|
async def test_user_walkthrough(hass: HomeAssistant, toloclient: Mock):
|
|
"""Test complete user flow with first wrong and then correct host."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["step_id"] == SOURCE_USER
|
|
assert "flow_id" in result
|
|
|
|
toloclient().get_status_info.side_effect = lambda *args, **kwargs: None
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_HOST: "127.0.0.2"},
|
|
)
|
|
|
|
assert result2["type"] == RESULT_TYPE_FORM
|
|
assert result2["step_id"] == SOURCE_USER
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
assert "flow_id" in result2
|
|
|
|
toloclient().get_status_info.side_effect = lambda *args, **kwargs: object()
|
|
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_HOST: "127.0.0.1"},
|
|
)
|
|
|
|
assert result3["type"] == RESULT_TYPE_CREATE_ENTRY
|
|
assert result3["title"] == "TOLO Sauna"
|
|
assert result3["data"][CONF_HOST] == "127.0.0.1"
|
|
|
|
|
|
async def test_dhcp(hass: HomeAssistant, toloclient: Mock):
|
|
"""Test starting a flow from discovery."""
|
|
toloclient().get_status_info.side_effect = lambda *args, **kwargs: object()
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_DHCP}, data=MOCK_DHCP_DATA
|
|
)
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["step_id"] == "confirm"
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={},
|
|
)
|
|
|
|
assert result["type"] == RESULT_TYPE_CREATE_ENTRY
|
|
assert result["title"] == "TOLO Sauna"
|
|
assert result["data"][CONF_HOST] == "127.0.0.2"
|
|
assert result["result"].unique_id == "00:11:22:33:44:55"
|
|
|
|
|
|
async def test_dhcp_invalid_device(hass: HomeAssistant, toloclient: Mock):
|
|
"""Test starting a flow from discovery."""
|
|
toloclient().get_status_info.side_effect = lambda *args, **kwargs: None
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_DHCP}, data=MOCK_DHCP_DATA
|
|
)
|
|
assert result["type"] == RESULT_TYPE_ABORT
|