mirror of https://github.com/home-assistant/core
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
"""Fixtures for Tankerkoenig integration tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.tankerkoenig import DOMAIN
|
|
from homeassistant.const import CONF_SHOW_ON_MAP
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from .const import CONFIG_DATA, NEARBY_STATIONS, PRICES, STATION
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture(name="tankerkoenig")
|
|
def mock_tankerkoenig() -> Generator[AsyncMock]:
|
|
"""Mock the aiotankerkoenig client."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.tankerkoenig.coordinator.Tankerkoenig",
|
|
autospec=True,
|
|
) as mock_tankerkoenig,
|
|
patch(
|
|
"homeassistant.components.tankerkoenig.config_flow.Tankerkoenig",
|
|
new=mock_tankerkoenig,
|
|
),
|
|
):
|
|
mock = mock_tankerkoenig.return_value
|
|
mock.station_details.return_value = STATION
|
|
mock.prices.return_value = PRICES
|
|
mock.nearby_stations.return_value = NEARBY_STATIONS
|
|
yield mock
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
async def mock_config_entry(hass: HomeAssistant) -> MockConfigEntry:
|
|
"""Return a MockConfigEntry for testing."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title="Mock Title",
|
|
unique_id="51.0_13.0",
|
|
entry_id="8036b4412f2fae6bb9dbab7fe8e37f87",
|
|
options={
|
|
CONF_SHOW_ON_MAP: True,
|
|
},
|
|
data=CONFIG_DATA,
|
|
)
|
|
|
|
|
|
@pytest.fixture(name="setup_integration")
|
|
async def mock_setup_integration(
|
|
hass: HomeAssistant, config_entry: MockConfigEntry, tankerkoenig: AsyncMock
|
|
) -> None:
|
|
"""Fixture for setting up the component."""
|
|
config_entry.add_to_hass(hass)
|
|
|
|
assert await async_setup_component(hass, DOMAIN, {})
|
|
await hass.async_block_till_done()
|