mirror of https://github.com/home-assistant/core
83 lines
2.3 KiB
Python
83 lines
2.3 KiB
Python
"""Tests for the Habitica calendar platform."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
from tests.typing import ClientSessionGenerator
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def calendar_only() -> Generator[None]:
|
|
"""Enable only the calendar platform."""
|
|
with patch(
|
|
"homeassistant.components.habitica.PLATFORMS",
|
|
[Platform.CALENDAR],
|
|
):
|
|
yield
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def set_tz(hass: HomeAssistant) -> None:
|
|
"""Fixture to set timezone."""
|
|
await hass.config.async_set_time_zone("Europe/Berlin")
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_habitica")
|
|
@pytest.mark.freeze_time("2024-09-20T22:00:00.000Z")
|
|
async def test_calendar_platform(
|
|
hass: HomeAssistant,
|
|
config_entry: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test setup of the Habitica calendar platform."""
|
|
|
|
config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert config_entry.state is ConfigEntryState.LOADED
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("entity"),
|
|
[
|
|
"calendar.test_user_to_do_s",
|
|
"calendar.test_user_dailies",
|
|
"calendar.test_user_daily_reminders",
|
|
"calendar.test_user_to_do_reminders",
|
|
],
|
|
)
|
|
@pytest.mark.freeze_time("2024-09-20T22:00:00.000Z")
|
|
@pytest.mark.usefixtures("mock_habitica")
|
|
async def test_api_events(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
config_entry: MockConfigEntry,
|
|
hass_client: ClientSessionGenerator,
|
|
entity: str,
|
|
) -> None:
|
|
"""Test calendar event."""
|
|
|
|
config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
client = await hass_client()
|
|
response = await client.get(
|
|
f"/api/calendars/{entity}?start=2024-08-29&end=2024-10-08"
|
|
)
|
|
|
|
assert await response.json() == snapshot
|