* Add support for local (lan) panel integration * Fix merge conflicts * Remove executable flag from non-executable files * Fix tests * Update homeassistant/components/elmax/__init__.py Shorten comment Co-authored-by: Erik Montnemery <erik@montnemery.com> * Fix typehint * Rename DummyPanel into DirectPanel * Update homeassistant/components/elmax/__init__.py Rewording Co-authored-by: Erik Montnemery <erik@montnemery.com> * Update homeassistant/components/elmax/__init__.py Rewording Co-authored-by: Erik Montnemery <erik@montnemery.com> * Refactor option step into menu step * Change requirement statement * Refactor dictionary key entries to use existing constants * Align step names to new constants * Align step names to new constants amd align tests * Align step names to new constants amd align tests * Align step names to new constants * Simplify logic to handle entire entry instead of a portion of the state * Simplify working mode checks * Add data_description dictionary to better explain SSL and FOLLOW_MDSN options * Add support for local (lan) panel integration * Fix merge conflicts * Remove executable flag from non-executable files * Fix tests * Update homeassistant/components/elmax/__init__.py Shorten comment Co-authored-by: Erik Montnemery <erik@montnemery.com> * Fix typehint * Rename DummyPanel into DirectPanel * Update homeassistant/components/elmax/__init__.py Rewording Co-authored-by: Erik Montnemery <erik@montnemery.com> * Update homeassistant/components/elmax/__init__.py Rewording Co-authored-by: Erik Montnemery <erik@montnemery.com> * Refactor option step into menu step * Change requirement statement * Refactor dictionary key entries to use existing constants * Align step names to new constants * Align step names to new constants amd align tests * Align step names to new constants amd align tests * Align step names to new constants * Simplify logic to handle entire entry instead of a portion of the state * Simplify working mode checks * Add data_description dictionary to better explain SSL and FOLLOW_MDSN options * Add newline at end of file * Remove CONF_ELMAX_MODE_DIRECT_FOLLOW_MDNS option * Fix Ruff pre-check --------- Co-authored-by: Erik Montnemery <erik@montnemery.com>
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
"""Configuration for Elmax tests."""
|
|
import json
|
|
from unittest.mock import patch
|
|
|
|
from elmax_api.constants import (
|
|
BASE_URL,
|
|
ENDPOINT_DEVICES,
|
|
ENDPOINT_DISCOVERY,
|
|
ENDPOINT_LOGIN,
|
|
)
|
|
from httpx import Response
|
|
import pytest
|
|
import respx
|
|
|
|
from . import (
|
|
MOCK_DIRECT_HOST,
|
|
MOCK_DIRECT_PORT,
|
|
MOCK_DIRECT_SSL,
|
|
MOCK_PANEL_ID,
|
|
MOCK_PANEL_PIN,
|
|
)
|
|
|
|
from tests.common import load_fixture
|
|
|
|
MOCK_DIRECT_BASE_URI = (
|
|
f"{'https' if MOCK_DIRECT_SSL else 'http'}://{MOCK_DIRECT_HOST}:{MOCK_DIRECT_PORT}"
|
|
)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def httpx_mock_cloud_fixture(requests_mock):
|
|
"""Configure httpx fixture for cloud API communication."""
|
|
with respx.mock(base_url=BASE_URL, assert_all_called=False) as respx_mock:
|
|
# Mock Login POST.
|
|
login_route = respx_mock.post(f"/{ENDPOINT_LOGIN}", name="login")
|
|
login_route.return_value = Response(
|
|
200, json=json.loads(load_fixture("cloud/login.json", "elmax"))
|
|
)
|
|
|
|
# Mock Device list GET.
|
|
list_devices_route = respx_mock.get(f"/{ENDPOINT_DEVICES}", name="list_devices")
|
|
list_devices_route.return_value = Response(
|
|
200, json=json.loads(load_fixture("cloud/list_devices.json", "elmax"))
|
|
)
|
|
|
|
# Mock Panel GET.
|
|
get_panel_route = respx_mock.get(
|
|
f"/{ENDPOINT_DISCOVERY}/{MOCK_PANEL_ID}/{MOCK_PANEL_PIN}", name="get_panel"
|
|
)
|
|
get_panel_route.return_value = Response(
|
|
200, json=json.loads(load_fixture("cloud/get_panel.json", "elmax"))
|
|
)
|
|
|
|
yield respx_mock
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def httpx_mock_direct_fixture(requests_mock):
|
|
"""Configure httpx fixture for direct Panel-API communication."""
|
|
with respx.mock(
|
|
base_url=MOCK_DIRECT_BASE_URI, assert_all_called=False
|
|
) as respx_mock:
|
|
# Mock Login POST.
|
|
login_route = respx_mock.post(f"/api/v2/{ENDPOINT_LOGIN}", name="login")
|
|
login_route.return_value = Response(
|
|
200, json=json.loads(load_fixture("direct/login.json", "elmax"))
|
|
)
|
|
|
|
# Mock Device list GET.
|
|
list_devices_route = respx_mock.get(
|
|
f"/api/v2/{ENDPOINT_DISCOVERY}", name="discovery_panel"
|
|
)
|
|
list_devices_route.return_value = Response(
|
|
200, json=json.loads(load_fixture("direct/discovery_panel.json", "elmax"))
|
|
)
|
|
|
|
yield respx_mock
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def elmax_mock_direct_cert(requests_mock):
|
|
"""Patch elmax library to return a specific PEM for SSL communication."""
|
|
with patch(
|
|
"elmax_api.http.GenericElmax.retrieve_server_certificate",
|
|
return_value=load_fixture("direct/cert.pem", "elmax"),
|
|
) as patched_ssl_get_cert:
|
|
yield patched_ssl_get_cert
|