mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 17:49:37 +01:00
c35a6dc044
Co-authored-by: Joostlek <joostlek@outlook.com>
186 lines
5.4 KiB
Python
186 lines
5.4 KiB
Python
"""Test the QNAP config flow."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from requests.exceptions import ConnectTimeout
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.qnap import const
|
|
from homeassistant.const import (
|
|
CONF_HOST,
|
|
CONF_PASSWORD,
|
|
CONF_PORT,
|
|
CONF_SSL,
|
|
CONF_USERNAME,
|
|
CONF_VERIFY_SSL,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from .conftest import TEST_HOST, TEST_PASSWORD, TEST_SERIAL, TEST_USERNAME
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
STANDARD_CONFIG = {
|
|
CONF_USERNAME: TEST_USERNAME,
|
|
CONF_PASSWORD: TEST_PASSWORD,
|
|
CONF_HOST: TEST_HOST,
|
|
}
|
|
|
|
ENTRY_DATA = {
|
|
CONF_HOST: TEST_HOST,
|
|
CONF_USERNAME: TEST_USERNAME,
|
|
CONF_PASSWORD: TEST_PASSWORD,
|
|
CONF_SSL: const.DEFAULT_SSL,
|
|
CONF_VERIFY_SSL: const.DEFAULT_VERIFY_SSL,
|
|
CONF_PORT: const.DEFAULT_PORT,
|
|
}
|
|
|
|
|
|
pytestmark = pytest.mark.usefixtures("mock_setup_entry", "qnap_connect")
|
|
|
|
|
|
async def test_config_flow(hass: HomeAssistant, qnap_connect: MagicMock) -> None:
|
|
"""Config flow manually initialized by the user."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
const.DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {}
|
|
|
|
qnap_connect.get_system_stats.side_effect = ConnectTimeout("Test error")
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {"base": "cannot_connect"}
|
|
|
|
qnap_connect.get_system_stats.side_effect = TypeError("Test error")
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {"base": "invalid_auth"}
|
|
|
|
qnap_connect.get_system_stats.side_effect = Exception("Test error")
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {"base": "unknown"}
|
|
|
|
qnap_connect.get_system_stats.side_effect = None
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "Test NAS name"
|
|
assert result["data"] == ENTRY_DATA
|
|
|
|
|
|
async def test_reconfigure_flow(hass: HomeAssistant, qnap_connect: MagicMock) -> None:
|
|
"""Test reconfigure flow updates the config entry."""
|
|
entry = MockConfigEntry(
|
|
domain=const.DOMAIN,
|
|
unique_id=TEST_SERIAL,
|
|
data=ENTRY_DATA,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
result = await entry.start_reconfigure_flow(hass)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reconfigure"
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{**STANDARD_CONFIG, CONF_HOST: "5.6.7.8"},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "reconfigure_successful"
|
|
assert entry.data[CONF_HOST] == "5.6.7.8"
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("side_effect", "error"),
|
|
[
|
|
(ConnectTimeout("Test error"), "cannot_connect"),
|
|
(TypeError("Test error"), "invalid_auth"),
|
|
(Exception("Test error"), "unknown"),
|
|
],
|
|
)
|
|
async def test_reconfigure_errors(
|
|
hass: HomeAssistant,
|
|
qnap_connect: MagicMock,
|
|
side_effect: Exception,
|
|
error: str,
|
|
) -> None:
|
|
"""Test reconfigure flow shows error on various exceptions."""
|
|
entry = MockConfigEntry(
|
|
domain=const.DOMAIN,
|
|
unique_id=TEST_SERIAL,
|
|
data=ENTRY_DATA,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
result = await entry.start_reconfigure_flow(hass)
|
|
|
|
qnap_connect.get_system_stats.side_effect = side_effect
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reconfigure"
|
|
assert result["errors"] == {"base": error}
|
|
|
|
qnap_connect.get_system_stats.side_effect = None
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "reconfigure_successful"
|
|
|
|
|
|
async def test_reconfigure_unique_id_mismatch(
|
|
hass: HomeAssistant, qnap_connect: MagicMock
|
|
) -> None:
|
|
"""Test reconfigure aborts when serial number doesn't match."""
|
|
entry = MockConfigEntry(
|
|
domain=const.DOMAIN,
|
|
unique_id=TEST_SERIAL,
|
|
data=ENTRY_DATA,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
qnap_connect.get_system_stats.return_value = {
|
|
"system": {"serial_number": "DIFFERENT_SERIAL", "name": "Other NAS"}
|
|
}
|
|
|
|
result = await entry.start_reconfigure_flow(hass)
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
STANDARD_CONFIG,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "unique_id_mismatch"
|
|
assert entry.data[CONF_HOST] == TEST_HOST
|