mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 02:18:47 +00:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
"""Fixtures for Meteo.lt integration tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from meteo_lt import Forecast, MeteoLtAPI, Place
|
|
import pytest
|
|
|
|
from homeassistant.components.meteo_lt.const import CONF_PLACE_CODE, DOMAIN
|
|
|
|
from tests.common import (
|
|
MockConfigEntry,
|
|
load_json_array_fixture,
|
|
load_json_object_fixture,
|
|
)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_meteo_lt_api() -> Generator[AsyncMock]:
|
|
"""Mock MeteoLtAPI with fixture data."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.meteo_lt.coordinator.MeteoLtAPI",
|
|
autospec=True,
|
|
) as mock_api_class,
|
|
patch(
|
|
"homeassistant.components.meteo_lt.config_flow.MeteoLtAPI",
|
|
new=mock_api_class,
|
|
),
|
|
):
|
|
mock_api = AsyncMock(spec=MeteoLtAPI)
|
|
mock_api_class.return_value = mock_api
|
|
|
|
places_data = load_json_array_fixture("places.json", DOMAIN)
|
|
forecast_data = load_json_object_fixture("forecast.json", DOMAIN)
|
|
|
|
mock_places = [Place.from_dict(place_data) for place_data in places_data]
|
|
mock_api.places = mock_places
|
|
mock_api.fetch_places.return_value = None
|
|
|
|
mock_forecast = Forecast.from_dict(forecast_data)
|
|
|
|
mock_api.get_forecast.return_value = mock_forecast
|
|
|
|
# Mock get_nearest_place to return Vilnius
|
|
mock_api.get_nearest_place.return_value = mock_places[0]
|
|
|
|
yield mock_api
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Override async_setup_entry."""
|
|
with patch(
|
|
"homeassistant.components.meteo_lt.async_setup_entry", return_value=True
|
|
) as mock_setup_entry:
|
|
yield mock_setup_entry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry() -> MockConfigEntry:
|
|
"""Return the default mocked config entry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title="Vilnius",
|
|
data={CONF_PLACE_CODE: "vilnius"},
|
|
unique_id="vilnius",
|
|
)
|