mirror of https://github.com/home-assistant/core
56 lines
1.4 KiB
Python
56 lines
1.4 KiB
Python
"""Common fixtures for the Aurora tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.aurora.const import CONF_THRESHOLD, DOMAIN
|
|
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Override async_setup_entry."""
|
|
with patch(
|
|
"homeassistant.components.aurora.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
yield mock_setup_entry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_aurora_client() -> Generator[AsyncMock]:
|
|
"""Mock a Homeassistant Analytics client."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.aurora.coordinator.AuroraForecast",
|
|
autospec=True,
|
|
) as mock_client,
|
|
patch(
|
|
"homeassistant.components.aurora.config_flow.AuroraForecast",
|
|
new=mock_client,
|
|
),
|
|
):
|
|
client = mock_client.return_value
|
|
client.get_forecast_data.return_value = 42
|
|
yield client
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry() -> MockConfigEntry:
|
|
"""Mock a config entry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title="Aurora visibility",
|
|
data={
|
|
CONF_LATITUDE: -10,
|
|
CONF_LONGITUDE: 10.2,
|
|
},
|
|
options={
|
|
CONF_THRESHOLD: 75,
|
|
},
|
|
)
|