299 lines
9.4 KiB
Python
299 lines
9.4 KiB
Python
"""Test the Vallox integration config flow."""
|
|
from unittest.mock import patch
|
|
|
|
from vallox_websocket_api.exceptions import ValloxApiException
|
|
|
|
from homeassistant.components.vallox.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_IMPORT, SOURCE_USER
|
|
from homeassistant.const import CONF_HOST, 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_form_no_input(hass: HomeAssistant) -> None:
|
|
"""Test that the form is returned with no input."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["errors"] is None
|
|
|
|
|
|
async def test_form_create_entry(hass: HomeAssistant) -> None:
|
|
"""Test that an entry is created with valid input."""
|
|
init = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
assert init["type"] == RESULT_TYPE_FORM
|
|
assert init["errors"] is None
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
return_value=None,
|
|
), patch(
|
|
"homeassistant.components.vallox.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.flow.async_configure(
|
|
init["flow_id"],
|
|
{"host": "1.2.3.4"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_CREATE_ENTRY
|
|
assert result["title"] == "Vallox"
|
|
assert result["data"] == {"host": "1.2.3.4", "name": "Vallox"}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_form_invalid_ip(hass: HomeAssistant) -> None:
|
|
"""Test that invalid IP error is handled."""
|
|
init = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
init["flow_id"],
|
|
{"host": "test.host.com"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["errors"] == {"host": "invalid_host"}
|
|
|
|
|
|
async def test_form_vallox_api_exception_cannot_connect(hass: HomeAssistant) -> None:
|
|
"""Test that cannot connect error is handled."""
|
|
init = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
side_effect=ValloxApiException,
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
init["flow_id"],
|
|
{"host": "4.3.2.1"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["errors"] == {"host": "cannot_connect"}
|
|
|
|
|
|
async def test_form_os_error_cannot_connect(hass: HomeAssistant) -> None:
|
|
"""Test that cannot connect error is handled."""
|
|
init = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
side_effect=OSError,
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
init["flow_id"],
|
|
{"host": "5.6.7.8"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["errors"] == {"host": "cannot_connect"}
|
|
|
|
|
|
async def test_form_unknown_exception(hass: HomeAssistant) -> None:
|
|
"""Test that unknown exceptions are handled."""
|
|
init = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
side_effect=Exception,
|
|
):
|
|
result = await hass.config_entries.flow.async_configure(
|
|
init["flow_id"],
|
|
{"host": "54.12.31.41"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_FORM
|
|
assert result["errors"] == {"host": "unknown"}
|
|
|
|
|
|
async def test_form_already_configured(hass: HomeAssistant) -> None:
|
|
"""Test that already configured error is handled."""
|
|
init = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": SOURCE_USER}
|
|
)
|
|
|
|
mock_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_HOST: "20.40.10.30",
|
|
CONF_NAME: "Vallox 110 MV",
|
|
},
|
|
)
|
|
mock_entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
init["flow_id"],
|
|
{"host": "20.40.10.30"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_ABORT
|
|
assert result["reason"] == "already_configured"
|
|
|
|
|
|
async def test_import_with_custom_name(hass: HomeAssistant) -> None:
|
|
"""Test that import is handled."""
|
|
name = "Vallox 90 MV"
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
return_value=None,
|
|
), patch(
|
|
"homeassistant.components.vallox.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "1.2.3.4", "name": name},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_CREATE_ENTRY
|
|
assert result["title"] == name
|
|
assert result["data"] == {"host": "1.2.3.4", "name": "Vallox 90 MV"}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_import_without_custom_name(hass: HomeAssistant) -> None:
|
|
"""Test that import is handled."""
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
return_value=None,
|
|
), patch(
|
|
"homeassistant.components.vallox.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "1.2.3.4"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_CREATE_ENTRY
|
|
assert result["title"] == "Vallox"
|
|
assert result["data"] == {"host": "1.2.3.4", "name": "Vallox"}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_import_invalid_ip(hass: HomeAssistant) -> None:
|
|
"""Test that invalid IP error is handled during import."""
|
|
name = "Vallox 90 MV"
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "vallox90mv.host.name", "name": name},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_ABORT
|
|
assert result["reason"] == "invalid_host"
|
|
|
|
|
|
async def test_import_already_configured(hass: HomeAssistant) -> None:
|
|
"""Test that an already configured Vallox device is handled during import."""
|
|
name = "Vallox 145 MV"
|
|
|
|
mock_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_HOST: "40.10.20.30",
|
|
CONF_NAME: "Vallox 145 MV",
|
|
},
|
|
)
|
|
mock_entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "40.10.20.30", "name": name},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_ABORT
|
|
assert result["reason"] == "already_configured"
|
|
|
|
|
|
async def test_import_cannot_connect_os_error(hass: HomeAssistant) -> None:
|
|
"""Test that cannot connect error is handled."""
|
|
name = "Vallox 90 MV"
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
side_effect=OSError,
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "1.2.3.4", "name": name},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_ABORT
|
|
assert result["reason"] == "cannot_connect"
|
|
|
|
|
|
async def test_import_cannot_connect_vallox_api_exception(hass: HomeAssistant) -> None:
|
|
"""Test that cannot connect error is handled."""
|
|
name = "Vallox 90 MV"
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
side_effect=ValloxApiException,
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "5.6.3.1", "name": name},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_ABORT
|
|
assert result["reason"] == "cannot_connect"
|
|
|
|
|
|
async def test_import_unknown_exception(hass: HomeAssistant) -> None:
|
|
"""Test that unknown exceptions are handled."""
|
|
name = "Vallox 245 MV"
|
|
|
|
with patch(
|
|
"homeassistant.components.vallox.config_flow.Vallox.get_info",
|
|
side_effect=Exception,
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={"host": "1.2.3.4", "name": name},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == RESULT_TYPE_ABORT
|
|
assert result["reason"] == "unknown"
|