mirror of
https://github.com/home-assistant/core.git
synced 2026-05-28 19:26:11 +01:00
277daf2dba
Co-authored-by: home-assistant[bot] <78085893+home-assistant[bot]@users.noreply.github.com>
185 lines
6.1 KiB
Python
185 lines
6.1 KiB
Python
"""Fixtures for ViCare integration tests."""
|
|
|
|
from collections.abc import AsyncGenerator, Generator
|
|
from dataclasses import dataclass
|
|
import time
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
|
|
import pytest
|
|
from PyViCare.PyViCareDeviceConfig import PyViCareDeviceConfig
|
|
from PyViCare.PyViCareService import ViCareDeviceAccessor, readFeature
|
|
|
|
from homeassistant.components.application_credentials import (
|
|
ClientCredential,
|
|
async_import_client_credential,
|
|
)
|
|
from homeassistant.components.vicare.const import DOMAIN
|
|
from homeassistant.components.vicare.types import ViCareData, ViCareDevice
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from . import MODULE, setup_integration
|
|
|
|
from tests.common import MockConfigEntry, load_json_object_fixture
|
|
|
|
|
|
@dataclass
|
|
class Fixture:
|
|
"""Fixture representation with the assigned roles and dummy data location."""
|
|
|
|
roles: set[str]
|
|
data_file: str
|
|
|
|
|
|
class MockPyViCare:
|
|
"""Mocked PyVicare class based on a json dump."""
|
|
|
|
def __init__(self, fixtures: list[Fixture]) -> None:
|
|
"""Init a single device from json dump."""
|
|
self.devices = []
|
|
for idx, fixture in enumerate(fixtures):
|
|
self.devices.append(
|
|
PyViCareDeviceConfig(
|
|
MockViCareService(
|
|
f"installation{idx}", f"gateway{idx}", f"device{idx}", fixture
|
|
),
|
|
f"deviceId{idx}",
|
|
"Vitovalor"
|
|
if fixture.data_file.endswith("VitoValor.json")
|
|
else f"model{idx}",
|
|
"Online",
|
|
)
|
|
)
|
|
# Simulate a device with an unsupported deviceType that PyViCare's
|
|
# `devices` filter would drop but should still appear in `all_devices`
|
|
# (used by diagnostics).
|
|
self.all_devices = [
|
|
*self.devices,
|
|
PyViCareDeviceConfig(
|
|
MockViCareService(
|
|
"installation_unsupported",
|
|
"gateway_unsupported",
|
|
"device_unsupported",
|
|
Fixture(set(), "vicare/dummy-device-no-serial.json"),
|
|
),
|
|
"deviceId_unsupported",
|
|
"unsupported_model",
|
|
"Online",
|
|
),
|
|
]
|
|
|
|
def as_vicare_data(self) -> ViCareData:
|
|
"""Convert to ViCareData as returned by _setup_vicare_api."""
|
|
return ViCareData(
|
|
client=self,
|
|
devices=[
|
|
ViCareDevice(config=device, api=device.asAutoDetectDevice())
|
|
for device in self.devices
|
|
],
|
|
)
|
|
|
|
|
|
class MockViCareService:
|
|
"""PyVicareService mock using a json dump."""
|
|
|
|
def __init__(
|
|
self, installation_id: str, gateway_id: str, device_id: str, fixture: Fixture
|
|
) -> None:
|
|
"""Initialize the mock from a json dump."""
|
|
self._test_data = load_json_object_fixture(fixture.data_file)
|
|
self.fetch_all_features = Mock(return_value=self._test_data)
|
|
self.roles = fixture.roles
|
|
self.accessor = ViCareDeviceAccessor(installation_id, gateway_id, device_id)
|
|
|
|
def hasRoles(self, requested_roles: list[str]) -> bool:
|
|
"""Return true if requested roles are assigned."""
|
|
return requested_roles and set(requested_roles).issubset(self.roles)
|
|
|
|
def getProperty(self, property_name: str):
|
|
"""Read a property from json dump."""
|
|
return readFeature(self._test_data["data"], property_name)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def setup_credentials(hass: HomeAssistant) -> None:
|
|
"""Fixture to setup credentials."""
|
|
assert await async_setup_component(hass, "application_credentials", {})
|
|
await async_import_client_credential(
|
|
hass,
|
|
DOMAIN,
|
|
ClientCredential("mock-client-id", ""),
|
|
DOMAIN,
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry() -> MockConfigEntry:
|
|
"""Return the default mocked config entry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
unique_id="ViCare",
|
|
entry_id="1234",
|
|
version=2,
|
|
minor_version=1,
|
|
data={
|
|
"auth_implementation": DOMAIN,
|
|
"token": {
|
|
"access_token": "mock-access-token",
|
|
"refresh_token": "mock-refresh-token",
|
|
"expires_at": time.time() + 3600,
|
|
"scope": "IoT User offline_access",
|
|
"token_type": "Bearer",
|
|
},
|
|
},
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
async def mock_vicare_gas_boiler(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry
|
|
) -> AsyncGenerator[MockConfigEntry]:
|
|
"""Return a mocked ViCare API representing a single gas boiler device."""
|
|
fixtures: list[Fixture] = [Fixture({"type:boiler"}, "vicare/Vitodens300W.json")]
|
|
with (
|
|
patch(
|
|
"homeassistant.helpers.config_entry_oauth2_flow.OAuth2Session.async_ensure_token_valid",
|
|
),
|
|
patch(
|
|
f"{MODULE}._setup_vicare_api",
|
|
return_value=MockPyViCare(fixtures).as_vicare_data(),
|
|
),
|
|
):
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
yield mock_config_entry
|
|
|
|
|
|
@pytest.fixture
|
|
async def mock_vicare_room_sensors(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry
|
|
) -> AsyncGenerator[MockConfigEntry]:
|
|
"""Return a mocked ViCare API representing multiple room sensor devices."""
|
|
fixtures: list[Fixture] = [
|
|
Fixture({"type:climateSensor"}, "vicare/RoomSensor1.json"),
|
|
Fixture({"type:climateSensor"}, "vicare/RoomSensor2.json"),
|
|
]
|
|
with (
|
|
patch(
|
|
"homeassistant.helpers.config_entry_oauth2_flow.OAuth2Session.async_ensure_token_valid",
|
|
),
|
|
patch(
|
|
f"{MODULE}._setup_vicare_api",
|
|
return_value=MockPyViCare(fixtures).as_vicare_data(),
|
|
),
|
|
):
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
yield mock_config_entry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Mock setting up a config entry."""
|
|
with patch(f"{MODULE}.async_setup_entry", return_value=True) as mock_setup_entry:
|
|
yield mock_setup_entry
|