mirror of https://github.com/home-assistant/core
100 lines
2.6 KiB
Python
100 lines
2.6 KiB
Python
"""Fixtures for Stookwijzer integration tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.stookwijzer.const import DOMAIN
|
|
from homeassistant.const import CONF_LATITUDE, CONF_LOCATION, CONF_LONGITUDE
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry() -> MockConfigEntry:
|
|
"""Return the default mocked config entry."""
|
|
return MockConfigEntry(
|
|
title="Stookwijzer",
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_LATITUDE: 200000.1234567890,
|
|
CONF_LONGITUDE: 450000.1234567890,
|
|
},
|
|
version=2,
|
|
entry_id="12345",
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_v1_config_entry() -> MockConfigEntry:
|
|
"""Return the default mocked version 1 config entry."""
|
|
return MockConfigEntry(
|
|
title="Stookwijzer",
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_LOCATION: {
|
|
CONF_LATITUDE: 1.0,
|
|
CONF_LONGITUDE: 1.1,
|
|
},
|
|
},
|
|
version=1,
|
|
entry_id="12345",
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Mock setting up a config entry."""
|
|
with patch(
|
|
"homeassistant.components.stookwijzer.async_setup_entry", return_value=True
|
|
) as mock_setup:
|
|
yield mock_setup
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_stookwijzer() -> Generator[MagicMock]:
|
|
"""Return a mocked Stookwijzer client."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.stookwijzer.Stookwijzer",
|
|
autospec=True,
|
|
) as stookwijzer_mock,
|
|
patch(
|
|
"homeassistant.components.stookwijzer.coordinator.Stookwijzer",
|
|
new=stookwijzer_mock,
|
|
),
|
|
patch(
|
|
"homeassistant.components.stookwijzer.config_flow.Stookwijzer",
|
|
new=stookwijzer_mock,
|
|
),
|
|
):
|
|
stookwijzer_mock.async_transform_coordinates.return_value = (
|
|
200000.123456789,
|
|
450000.123456789,
|
|
)
|
|
|
|
client = stookwijzer_mock.return_value
|
|
client.lki = 2
|
|
client.windspeed_ms = 2.5
|
|
client.windspeed_bft = 2
|
|
client.advice = "code_yellow"
|
|
|
|
yield stookwijzer_mock
|
|
|
|
|
|
@pytest.fixture
|
|
async def init_integration(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_stookwijzer: MagicMock,
|
|
) -> MockConfigEntry:
|
|
"""Set up the Stookwijzer integration for testing."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
return mock_config_entry
|