mirror of https://github.com/home-assistant/core
100 lines
2.8 KiB
Python
100 lines
2.8 KiB
Python
"""GeniusHub tests configuration."""
|
|
|
|
from collections.abc import Generator
|
|
from typing import Any
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
from geniushubclient import GeniusDevice, GeniusZone
|
|
import pytest
|
|
|
|
from homeassistant.components.geniushub.const import DOMAIN
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_TOKEN, CONF_USERNAME
|
|
|
|
from tests.common import MockConfigEntry, load_json_array_fixture
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Override async_setup_entry."""
|
|
with patch(
|
|
"homeassistant.components.geniushub.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
yield mock_setup_entry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_geniushub_client() -> Generator[AsyncMock]:
|
|
"""Mock a GeniusHub client."""
|
|
with patch(
|
|
"homeassistant.components.geniushub.config_flow.GeniusService",
|
|
autospec=True,
|
|
) as mock_client:
|
|
client = mock_client.return_value
|
|
client.request.return_value = {
|
|
"data": {
|
|
"UID": "aa:bb:cc:dd:ee:ff",
|
|
}
|
|
}
|
|
yield client
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def zones() -> list[dict[str, Any]]:
|
|
"""Return a list of zones."""
|
|
return load_json_array_fixture("zones_cloud_test_data.json", DOMAIN)
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def devices() -> list[dict[str, Any]]:
|
|
"""Return a list of devices."""
|
|
return load_json_array_fixture("devices_cloud_test_data.json", DOMAIN)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_geniushub_cloud(
|
|
zones: list[dict[str, Any]], devices: list[dict[str, Any]]
|
|
) -> Generator[MagicMock]:
|
|
"""Mock a GeniusHub."""
|
|
with patch(
|
|
"homeassistant.components.geniushub.GeniusHub",
|
|
autospec=True,
|
|
) as mock_client:
|
|
client = mock_client.return_value
|
|
genius_zones = [GeniusZone(z["id"], z, client) for z in zones]
|
|
client.zone_objs = genius_zones
|
|
client._zones = genius_zones
|
|
genius_devices = [GeniusDevice(d["id"], d, client) for d in devices]
|
|
client.device_objs = genius_devices
|
|
client._devices = genius_devices
|
|
client.api_version = 1
|
|
yield client
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_local_config_entry() -> MockConfigEntry:
|
|
"""Mock a local config entry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title="aa:bb:cc:dd:ee:ff",
|
|
data={
|
|
CONF_HOST: "10.0.0.131",
|
|
CONF_USERNAME: "test-username",
|
|
CONF_PASSWORD: "test-password",
|
|
},
|
|
unique_id="aa:bb:cc:dd:ee:ff",
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_cloud_config_entry() -> MockConfigEntry:
|
|
"""Mock a cloud config entry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title="Genius hub",
|
|
data={
|
|
CONF_TOKEN: "abcdef",
|
|
},
|
|
entry_id="01J71MQF0EC62D620DGYNG2R8H",
|
|
)
|