mirror of https://github.com/home-assistant/core
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
"""Test ReCollect Waste diagnostics."""
|
|
|
|
from homeassistant.components.diagnostics import REDACTED
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .conftest import TEST_SERVICE_ID
|
|
|
|
from tests.common import ANY
|
|
from tests.components.diagnostics import get_diagnostics_for_config_entry
|
|
from tests.typing import ClientSessionGenerator
|
|
|
|
|
|
async def test_entry_diagnostics(
|
|
hass: HomeAssistant,
|
|
config_entry,
|
|
hass_client: ClientSessionGenerator,
|
|
setup_config_entry,
|
|
) -> None:
|
|
"""Test config entry diagnostics."""
|
|
assert await get_diagnostics_for_config_entry(hass, hass_client, config_entry) == {
|
|
"entry": {
|
|
"entry_id": config_entry.entry_id,
|
|
"version": 2,
|
|
"minor_version": 1,
|
|
"domain": "recollect_waste",
|
|
"title": REDACTED,
|
|
"data": {"place_id": REDACTED, "service_id": TEST_SERVICE_ID},
|
|
"options": {},
|
|
"pref_disable_new_entities": False,
|
|
"pref_disable_polling": False,
|
|
"source": "user",
|
|
"unique_id": REDACTED,
|
|
"disabled_by": None,
|
|
"created_at": ANY,
|
|
"modified_at": ANY,
|
|
"discovery_keys": {},
|
|
},
|
|
"data": [
|
|
{
|
|
"date": {
|
|
"__type": "<class 'datetime.date'>",
|
|
"isoformat": "2022-01-23",
|
|
},
|
|
"pickup_types": [
|
|
{"name": "garbage", "friendly_name": "Trash Collection"}
|
|
],
|
|
"area_name": REDACTED,
|
|
}
|
|
],
|
|
}
|