mirror of https://github.com/home-assistant/core
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
"""Test homekit_controller diagnostics."""
|
|
|
|
from syrupy import SnapshotAssertion
|
|
from syrupy.filters import props
|
|
|
|
from homeassistant.components.homekit_controller.const import KNOWN_DEVICES
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr
|
|
|
|
from .common import setup_accessories_from_file, setup_test_accessories
|
|
|
|
from tests.components.diagnostics import (
|
|
get_diagnostics_for_config_entry,
|
|
get_diagnostics_for_device,
|
|
)
|
|
from tests.typing import ClientSessionGenerator
|
|
|
|
|
|
async def test_config_entry(
|
|
hass: HomeAssistant,
|
|
hass_client: ClientSessionGenerator,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test generating diagnostics for a config entry."""
|
|
accessories = await setup_accessories_from_file(hass, "koogeek_ls1.json")
|
|
config_entry, _ = await setup_test_accessories(hass, accessories)
|
|
|
|
diag = await get_diagnostics_for_config_entry(hass, hass_client, config_entry)
|
|
|
|
assert diag == snapshot(
|
|
exclude=props("last_changed", "last_reported", "last_updated")
|
|
)
|
|
|
|
|
|
async def test_device(
|
|
hass: HomeAssistant,
|
|
hass_client: ClientSessionGenerator,
|
|
device_registry: dr.DeviceRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test generating diagnostics for a device entry."""
|
|
accessories = await setup_accessories_from_file(hass, "koogeek_ls1.json")
|
|
config_entry, _ = await setup_test_accessories(hass, accessories)
|
|
|
|
connection = hass.data[KNOWN_DEVICES]["00:00:00:00:00:00"]
|
|
device = device_registry.async_get(connection.devices[1])
|
|
|
|
diag = await get_diagnostics_for_device(hass, hass_client, config_entry, device)
|
|
|
|
assert diag == snapshot(
|
|
exclude=props("last_changed", "last_reported", "last_updated")
|
|
)
|