mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 18:38:17 +00:00
Co-authored-by: Norbert Rittel <norbert@rittel.de> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
"""Fixtures for the london_underground tests."""
|
|
|
|
from collections.abc import AsyncGenerator
|
|
import json
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from london_tube_status import parse_api_response
|
|
import pytest
|
|
|
|
from homeassistant.components.london_underground.const import CONF_LINE, DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry, async_load_fixture
|
|
from tests.conftest import AiohttpClientMocker
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry():
|
|
"""Prevent setup of integration during tests."""
|
|
with patch(
|
|
"homeassistant.components.london_underground.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup:
|
|
yield mock_setup
|
|
|
|
|
|
@pytest.fixture
|
|
async def mock_config_entry(hass: HomeAssistant) -> MockConfigEntry:
|
|
"""Mock the config entry."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={},
|
|
options={CONF_LINE: ["Metropolitan"]},
|
|
title="London Underground",
|
|
)
|
|
# Add and set up the entry
|
|
entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
return entry
|
|
|
|
|
|
@pytest.fixture
|
|
async def mock_london_underground_client(
|
|
hass: HomeAssistant,
|
|
aioclient_mock: AiohttpClientMocker,
|
|
) -> AsyncGenerator[AsyncMock]:
|
|
"""Mock a London Underground client."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.london_underground.TubeData",
|
|
autospec=True,
|
|
) as mock_client,
|
|
patch(
|
|
"homeassistant.components.london_underground.config_flow.TubeData",
|
|
new=mock_client,
|
|
),
|
|
):
|
|
client = mock_client.return_value
|
|
|
|
# Load the fixture text
|
|
fixture_text = await async_load_fixture(hass, "line_status.json", DOMAIN)
|
|
fixture_data = parse_api_response(json.loads(fixture_text))
|
|
client.data = fixture_data
|
|
|
|
yield client
|