29 lines
947 B
Python
29 lines
947 B
Python
"""Fixtures for Met Office weather integration tests."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
# All tests are marked as disabled, as the integration is disabled in the
|
|
# integration manifest. `datapoint` isn't compatible with Python 3.12
|
|
#
|
|
# from datapoint.exceptions import APIException
|
|
APIException = Exception
|
|
collect_ignore_glob = ["test_*.py"]
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_simple_manager_fail():
|
|
"""Mock datapoint Manager with default values for testing in config_flow."""
|
|
with patch("datapoint.Manager") as mock_manager:
|
|
instance = mock_manager.return_value
|
|
instance.get_nearest_forecast_site.side_effect = APIException()
|
|
instance.get_forecast_for_site.side_effect = APIException()
|
|
instance.latitude = None
|
|
instance.longitude = None
|
|
instance.site = None
|
|
instance.site_id = None
|
|
instance.site_name = None
|
|
instance.now = None
|
|
|
|
yield mock_manager
|