mirror of
https://github.com/home-assistant/core.git
synced 2026-08-06 21:35:13 +01:00
64 lines
1.8 KiB
Python
64 lines
1.8 KiB
Python
"""Test the Melnor integration setup."""
|
|
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.melnor.const import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr
|
|
|
|
from .conftest import (
|
|
FAKE_ADDRESS_1,
|
|
mock_config_entry,
|
|
patch_async_ble_device_from_address,
|
|
patch_async_register_callback,
|
|
patch_melnor_device,
|
|
)
|
|
|
|
|
|
async def test_device_registry(
|
|
hass: HomeAssistant,
|
|
device_registry: dr.DeviceRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test the device registry entry, including the Bluetooth connection."""
|
|
entry = mock_config_entry(hass)
|
|
|
|
with (
|
|
patch_async_ble_device_from_address(),
|
|
patch_melnor_device(),
|
|
patch_async_register_callback(),
|
|
):
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
device_entry = device_registry.async_get_device(
|
|
identifiers={(DOMAIN, FAKE_ADDRESS_1)}
|
|
)
|
|
assert device_entry == snapshot
|
|
|
|
|
|
async def test_zone_device_via_device(
|
|
hass: HomeAssistant,
|
|
device_registry: dr.DeviceRegistry,
|
|
) -> None:
|
|
"""Test that zone devices link to the parent device via via_device_id."""
|
|
entry = mock_config_entry(hass)
|
|
|
|
with (
|
|
patch_async_ble_device_from_address(),
|
|
patch_melnor_device(),
|
|
patch_async_register_callback(),
|
|
):
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
|
|
parent_device = device_registry.async_get_device_by_identifier(
|
|
(DOMAIN, FAKE_ADDRESS_1), entry.entry_id
|
|
)
|
|
zone_device = device_registry.async_get_device_by_identifier(
|
|
(DOMAIN, f"{FAKE_ADDRESS_1}-zone0"), entry.entry_id
|
|
)
|
|
|
|
assert parent_device is not None
|
|
assert zone_device is not None
|
|
assert zone_device.via_device_id == parent_device.id
|