mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
151 lines
4.8 KiB
Python
151 lines
4.8 KiB
Python
"""Test the WebDAV config flow."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from aiowebdav2.exceptions import MethodNotSupportedError, UnauthorizedError
|
|
import pytest
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.webdav.const import CONF_BACKUP_PATH, DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_PASSWORD, CONF_URL, CONF_USERNAME, CONF_VERIFY_SSL
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_setup_entry")
|
|
async def test_form(hass: HomeAssistant, webdav_client: AsyncMock) -> None:
|
|
"""Test we get the form and create a entry on success."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {}
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
CONF_BACKUP_PATH: "/backups",
|
|
CONF_VERIFY_SSL: False,
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "user@webdav.demo"
|
|
assert result["data"] == {
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
CONF_BACKUP_PATH: "/backups",
|
|
CONF_VERIFY_SSL: False,
|
|
}
|
|
assert len(webdav_client.mock_calls) == 1
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_setup_entry")
|
|
async def test_form_fail(hass: HomeAssistant, webdav_client: AsyncMock) -> None:
|
|
"""Test to handle exceptions."""
|
|
webdav_client.check.return_value = False
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {"base": "cannot_connect"}
|
|
|
|
# reset and test for success
|
|
webdav_client.check.return_value = True
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "user@webdav.demo"
|
|
assert "errors" not in result
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "expected_error"),
|
|
[
|
|
(UnauthorizedError("https://webdav.demo"), "invalid_auth"),
|
|
(MethodNotSupportedError("check", "https://webdav.demo"), "invalid_method"),
|
|
(Exception("Unexpected error"), "unknown"),
|
|
],
|
|
)
|
|
async def test_form_unauthorized(
|
|
hass: HomeAssistant,
|
|
webdav_client: AsyncMock,
|
|
exception: Exception,
|
|
expected_error: str,
|
|
) -> None:
|
|
"""Test to handle unauthorized."""
|
|
webdav_client.check.side_effect = exception
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
assert result["errors"] == {"base": expected_error}
|
|
|
|
# reset and test for success
|
|
webdav_client.check.side_effect = None
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "user@webdav.demo"
|
|
assert "errors" not in result
|
|
|
|
|
|
async def test_duplicate_entry(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry, webdav_client: AsyncMock
|
|
) -> None:
|
|
"""Test we get the form and create a entry on success."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_URL: "https://webdav.demo",
|
|
CONF_USERNAME: "user",
|
|
CONF_PASSWORD: "supersecretpassword",
|
|
},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "already_configured"
|