mirror of https://github.com/home-assistant/core
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
"""Tests for the Nina integration."""
|
|
|
|
import json
|
|
from typing import Any
|
|
|
|
from tests.common import load_fixture
|
|
|
|
|
|
def mocked_request_function(url: str) -> dict[str, Any]:
|
|
"""Mock of the request function."""
|
|
dummy_response: dict[str, Any] = json.loads(
|
|
load_fixture("sample_warnings.json", "nina")
|
|
)
|
|
|
|
dummy_response_details: dict[str, Any] = json.loads(
|
|
load_fixture("sample_warning_details.json", "nina")
|
|
)
|
|
|
|
dummy_response_regions: dict[str, Any] = json.loads(
|
|
load_fixture("sample_regions.json", "nina")
|
|
)
|
|
|
|
dummy_response_labels: dict[str, Any] = json.loads(
|
|
load_fixture("sample_labels.json", "nina")
|
|
)
|
|
|
|
if "https://warnung.bund.de/api31/dashboard/" in url: # codespell:ignore bund
|
|
return dummy_response
|
|
|
|
if (
|
|
"https://warnung.bund.de/api/appdata/gsb/labels/de_labels.json" # codespell:ignore bund
|
|
in url
|
|
):
|
|
return dummy_response_labels
|
|
|
|
if (
|
|
url
|
|
== "https://www.xrepository.de/api/xrepository/urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs_2021-07-31/download/Regionalschl_ssel_2021-07-31.json" # codespell:ignore bund
|
|
):
|
|
return dummy_response_regions
|
|
|
|
warning_id = url.replace(
|
|
"https://warnung.bund.de/api31/warnings/", # codespell:ignore bund
|
|
"",
|
|
).replace(".json", "")
|
|
|
|
return dummy_response_details[warning_id]
|