mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
"""Tests for the nuki sensors."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import requests_mock
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import init_integration
|
|
|
|
from tests.common import snapshot_platform
|
|
|
|
|
|
async def test_sensors(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
mock_nuki_requests: requests_mock.Mocker,
|
|
) -> None:
|
|
"""Test sensors."""
|
|
with patch("homeassistant.components.nuki.PLATFORMS", [Platform.SENSOR]):
|
|
entry = await init_integration(hass, mock_nuki_requests)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, entry.entry_id)
|
|
|
|
# Unload the config entry after taking a snapshot is required because the integration may cache
|
|
# DNS results or keep references to the original gethostbyname, so unloading ensures the patch
|
|
# is effective for subsequent tests and avoids DNS lookups
|
|
await hass.config_entries.async_unload(entry.entry_id)
|
|
await hass.async_block_till_done()
|