mirror of https://github.com/home-assistant/core
81 lines
2.2 KiB
Python
81 lines
2.2 KiB
Python
"""Common fixtures for the Suez Water tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from pysuez import AggregatedData, PriceResult
|
|
from pysuez.const import ATTRIBUTION
|
|
import pytest
|
|
|
|
from homeassistant.components.suez_water.const import DOMAIN
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
MOCK_DATA = {
|
|
"username": "test-username",
|
|
"password": "test-password",
|
|
"counter_id": "test-counter",
|
|
}
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry() -> MockConfigEntry:
|
|
"""Create mock config_entry needed by suez_water integration."""
|
|
return MockConfigEntry(
|
|
unique_id=MOCK_DATA["username"],
|
|
domain=DOMAIN,
|
|
title="Suez mock device",
|
|
data=MOCK_DATA,
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Override async_setup_entry."""
|
|
with patch(
|
|
"homeassistant.components.suez_water.async_setup_entry", return_value=True
|
|
) as mock_setup_entry:
|
|
yield mock_setup_entry
|
|
|
|
|
|
@pytest.fixture(name="suez_client")
|
|
def mock_suez_client() -> Generator[AsyncMock]:
|
|
"""Create mock for suez_water external api."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.suez_water.coordinator.SuezClient", autospec=True
|
|
) as mock_client,
|
|
patch(
|
|
"homeassistant.components.suez_water.config_flow.SuezClient",
|
|
new=mock_client,
|
|
),
|
|
):
|
|
suez_client = mock_client.return_value
|
|
suez_client.check_credentials.return_value = True
|
|
|
|
result = AggregatedData(
|
|
value=160,
|
|
current_month={
|
|
"2024-01-01": 130,
|
|
"2024-01-02": 145,
|
|
},
|
|
previous_month={
|
|
"2024-12-01": 154,
|
|
"2024-12-02": 166,
|
|
},
|
|
current_year=1500,
|
|
previous_year=1000,
|
|
attribution=ATTRIBUTION,
|
|
highest_monthly_consumption=2558,
|
|
history={
|
|
"2024-01-01": 130,
|
|
"2024-01-02": 145,
|
|
"2024-12-01": 154,
|
|
"2024-12-02": 166,
|
|
},
|
|
)
|
|
|
|
suez_client.fetch_aggregated_data.return_value = result
|
|
suez_client.get_price.return_value = PriceResult("4.74")
|
|
yield suez_client
|