hass-core/tests/components/caldav/test_init.py
Allen Porter a95aa4e15f
Add config flow to CalDAV (#103215)
* Initial caldav config flow with broken calendar platform

* Set up calendar entities

* Remove separate caldav entity

* Update tests after merge

* Readbility improvements

* Address lint issues

* Apply suggestions from code review

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>

* Add checking for duplicate configuration entries

* Use verify SSL as input into caldav and simplify test setup

---------

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2023-11-02 19:48:56 -07:00

69 lines
2.2 KiB
Python

"""Unit tests for the CalDav integration."""
from collections.abc import Awaitable, Callable
from unittest.mock import patch
from caldav.lib.error import AuthorizationError, DAVError
import pytest
import requests
from homeassistant.config_entries import ConfigEntryState
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def test_load_unload(
hass: HomeAssistant,
setup_integration: Callable[[], Awaitable[bool]],
config_entry: MockConfigEntry,
) -> None:
"""Test loading and unloading of the config entry."""
assert config_entry.state == ConfigEntryState.NOT_LOADED
with patch("homeassistant.components.caldav.config_flow.caldav.DAVClient"):
assert await setup_integration()
assert config_entry.state == ConfigEntryState.LOADED
assert await hass.config_entries.async_unload(config_entry.entry_id)
assert config_entry.state == ConfigEntryState.NOT_LOADED
@pytest.mark.parametrize(
("side_effect", "expected_state", "expected_flows"),
[
(Exception(), ConfigEntryState.SETUP_ERROR, []),
(requests.ConnectionError(), ConfigEntryState.SETUP_RETRY, []),
(DAVError(), ConfigEntryState.SETUP_RETRY, []),
(
AuthorizationError(reason="Unauthorized"),
ConfigEntryState.SETUP_ERROR,
["reauth_confirm"],
),
(AuthorizationError(reason="Other"), ConfigEntryState.SETUP_ERROR, []),
],
)
async def test_client_failure(
hass: HomeAssistant,
setup_integration: Callable[[], Awaitable[bool]],
config_entry: MockConfigEntry | None,
side_effect: Exception,
expected_state: ConfigEntryState,
expected_flows: list[str],
) -> None:
"""Test CalDAV client failures in setup."""
assert config_entry.state == ConfigEntryState.NOT_LOADED
with patch(
"homeassistant.components.caldav.config_flow.caldav.DAVClient"
) as mock_client:
mock_client.return_value.principal.side_effect = side_effect
assert not await setup_integration()
assert config_entry.state == expected_state
flows = hass.config_entries.flow.async_progress()
assert [flow.get("step_id") for flow in flows] == expected_flows