mirror of https://github.com/home-assistant/core
76 lines
2.2 KiB
Python
76 lines
2.2 KiB
Python
"""Fixtures for the Nord Pool integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import datetime
|
|
import json
|
|
from typing import Any
|
|
from unittest.mock import patch
|
|
|
|
from pynordpool import NordPoolClient
|
|
from pynordpool.const import Currency
|
|
from pynordpool.model import DeliveryPeriodData
|
|
import pytest
|
|
|
|
from homeassistant.components.nordpool.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.util import dt as dt_util
|
|
|
|
from . import ENTRY_CONFIG
|
|
|
|
from tests.common import MockConfigEntry, load_fixture
|
|
from tests.test_util.aiohttp import AiohttpClientMocker
|
|
|
|
|
|
@pytest.fixture
|
|
async def load_int(
|
|
hass: HomeAssistant, get_data: DeliveryPeriodData
|
|
) -> MockConfigEntry:
|
|
"""Set up the Nord Pool integration in Home Assistant."""
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
source=SOURCE_USER,
|
|
data=ENTRY_CONFIG,
|
|
)
|
|
|
|
config_entry.add_to_hass(hass)
|
|
|
|
with (
|
|
patch(
|
|
"homeassistant.components.nordpool.coordinator.NordPoolClient.async_get_delivery_period",
|
|
return_value=get_data,
|
|
),
|
|
):
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
return config_entry
|
|
|
|
|
|
@pytest.fixture(name="get_data")
|
|
async def get_data_from_library(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker, load_json: dict[str, Any]
|
|
) -> DeliveryPeriodData:
|
|
"""Retrieve data from Nord Pool library."""
|
|
|
|
client = NordPoolClient(aioclient_mock.create_session(hass.loop))
|
|
with patch("pynordpool.NordPoolClient._get", return_value=load_json):
|
|
output = await client.async_get_delivery_period(
|
|
datetime(2024, 11, 5, 13, tzinfo=dt_util.UTC), Currency.SEK, ["SE3", "SE4"]
|
|
)
|
|
await client._session.close()
|
|
return output
|
|
|
|
|
|
@pytest.fixture(name="load_json")
|
|
def load_json_from_fixture(load_data: str) -> dict[str, Any]:
|
|
"""Load fixture with json data and return."""
|
|
return json.loads(load_data)
|
|
|
|
|
|
@pytest.fixture(name="load_data", scope="package")
|
|
def load_data_from_fixture() -> str:
|
|
"""Load fixture with fixture data and return."""
|
|
return load_fixture("delivery_period.json", DOMAIN)
|