"""Configuration for Abode tests.""" from collections.abc import Generator from unittest.mock import AsyncMock, patch from jaraco.abode.helpers import urls as URL import pytest from tests.common import load_fixture from tests.components.light.conftest import mock_light_profiles # noqa: F401 @pytest.fixture def mock_setup_entry() -> Generator[AsyncMock, None, None]: """Override async_setup_entry.""" with patch( "homeassistant.components.abode.async_setup_entry", return_value=True ) as mock_setup_entry: yield mock_setup_entry @pytest.fixture(autouse=True) def requests_mock_fixture(requests_mock) -> None: """Fixture to provide a requests mocker.""" # Mocks the login response for abodepy. requests_mock.post(URL.LOGIN, text=load_fixture("login.json", "abode")) # Mocks the logout response for abodepy. requests_mock.post(URL.LOGOUT, text=load_fixture("logout.json", "abode")) # Mocks the oauth claims response for abodepy. requests_mock.get(URL.OAUTH_TOKEN, text=load_fixture("oauth_claims.json", "abode")) # Mocks the panel response for abodepy. requests_mock.get(URL.PANEL, text=load_fixture("panel.json", "abode")) # Mocks the automations response for abodepy. requests_mock.get(URL.AUTOMATION, text=load_fixture("automation.json", "abode")) # Mocks the devices response for abodepy. requests_mock.get(URL.DEVICES, text=load_fixture("devices.json", "abode"))