57 lines
2.0 KiB
Python
57 lines
2.0 KiB
Python
"""Configuration for Ring tests."""
|
|
import re
|
|
|
|
import pytest
|
|
import requests_mock
|
|
|
|
from tests.common import load_fixture
|
|
from tests.components.light.conftest import mock_light_profiles # noqa: F401
|
|
|
|
|
|
@pytest.fixture(name="requests_mock")
|
|
def requests_mock_fixture():
|
|
"""Fixture to provide a requests mocker."""
|
|
with requests_mock.mock() as mock:
|
|
# Note all devices have an id of 987652, but a different device_id.
|
|
# the device_id is used as our unique_id, but the id is what is sent
|
|
# to the APIs, which is why every mock uses that id.
|
|
|
|
# Mocks the response for authenticating
|
|
mock.post(
|
|
"https://oauth.ring.com/oauth/token",
|
|
text=load_fixture("oauth.json", "ring"),
|
|
)
|
|
# Mocks the response for getting the login session
|
|
mock.post(
|
|
"https://api.ring.com/clients_api/session",
|
|
text=load_fixture("session.json", "ring"),
|
|
)
|
|
# Mocks the response for getting all the devices
|
|
mock.get(
|
|
"https://api.ring.com/clients_api/ring_devices",
|
|
text=load_fixture("devices.json", "ring"),
|
|
)
|
|
mock.get(
|
|
"https://api.ring.com/clients_api/dings/active",
|
|
text=load_fixture("ding_active.json", "ring"),
|
|
)
|
|
# Mocks the response for getting the history of a device
|
|
mock.get(
|
|
re.compile(
|
|
r"https:\/\/api\.ring\.com\/clients_api\/doorbots\/\d+\/history"
|
|
),
|
|
text=load_fixture("doorbots.json", "ring"),
|
|
)
|
|
# Mocks the response for getting the health of a device
|
|
mock.get(
|
|
re.compile(r"https:\/\/api\.ring\.com\/clients_api\/doorbots\/\d+\/health"),
|
|
text=load_fixture("doorboot_health_attrs.json", "ring"),
|
|
)
|
|
# Mocks the response for getting a chimes health
|
|
mock.get(
|
|
re.compile(r"https:\/\/api\.ring\.com\/clients_api\/chimes\/\d+\/health"),
|
|
text=load_fixture("chime_health_attrs.json", "ring"),
|
|
)
|
|
|
|
yield mock
|