mirror of
https://github.com/home-assistant/core.git
synced 2025-07-28 15:47:12 +00:00
Add binary_sensor for door status in Huum (#149135)
This commit is contained in:
parent
ca48b9e375
commit
44fec53bac
42
homeassistant/components/huum/binary_sensor.py
Normal file
42
homeassistant/components/huum/binary_sensor.py
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
"""Sensor for door state."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from homeassistant.components.binary_sensor import (
|
||||||
|
BinarySensorDeviceClass,
|
||||||
|
BinarySensorEntity,
|
||||||
|
)
|
||||||
|
from homeassistant.core import HomeAssistant
|
||||||
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
||||||
|
|
||||||
|
from .coordinator import HuumConfigEntry, HuumDataUpdateCoordinator
|
||||||
|
from .entity import HuumBaseEntity
|
||||||
|
|
||||||
|
|
||||||
|
async def async_setup_entry(
|
||||||
|
hass: HomeAssistant,
|
||||||
|
config_entry: HuumConfigEntry,
|
||||||
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
||||||
|
) -> None:
|
||||||
|
"""Set up door sensor."""
|
||||||
|
async_add_entities(
|
||||||
|
[HuumDoorSensor(config_entry.runtime_data)],
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class HuumDoorSensor(HuumBaseEntity, BinarySensorEntity):
|
||||||
|
"""Representation of a BinarySensor."""
|
||||||
|
|
||||||
|
_attr_name = "Door"
|
||||||
|
_attr_device_class = BinarySensorDeviceClass.DOOR
|
||||||
|
|
||||||
|
def __init__(self, coordinator: HuumDataUpdateCoordinator) -> None:
|
||||||
|
"""Initialize the BinarySensor."""
|
||||||
|
super().__init__(coordinator)
|
||||||
|
|
||||||
|
self._attr_unique_id = f"{coordinator.config_entry.entry_id}_door"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_on(self) -> bool | None:
|
||||||
|
"""Return the current value."""
|
||||||
|
return not self.coordinator.data.door_closed
|
@ -4,4 +4,4 @@ from homeassistant.const import Platform
|
|||||||
|
|
||||||
DOMAIN = "huum"
|
DOMAIN = "huum"
|
||||||
|
|
||||||
PLATFORMS = [Platform.CLIMATE]
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.CLIMATE]
|
||||||
|
50
tests/components/huum/snapshots/test_binary_sensor.ambr
Normal file
50
tests/components/huum/snapshots/test_binary_sensor.ambr
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# serializer version: 1
|
||||||
|
# name: test_binary_sensor[binary_sensor.huum_sauna_door-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': None,
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'binary_sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'binary_sensor.huum_sauna_door',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
}),
|
||||||
|
'original_device_class': <BinarySensorDeviceClass.DOOR: 'door'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Door',
|
||||||
|
'platform': 'huum',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'suggested_object_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': None,
|
||||||
|
'unique_id': 'AABBCC112233_door',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_binary_sensor[binary_sensor.huum_sauna_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Huum sauna Door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.huum_sauna_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
29
tests/components/huum/test_binary_sensor.py
Normal file
29
tests/components/huum/test_binary_sensor.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
"""Tests for the Huum climate entity."""
|
||||||
|
|
||||||
|
from unittest.mock import AsyncMock
|
||||||
|
|
||||||
|
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 setup_with_selected_platforms
|
||||||
|
|
||||||
|
from tests.common import MockConfigEntry, snapshot_platform
|
||||||
|
|
||||||
|
ENTITY_ID = "binary_sensor.huum_sauna_door"
|
||||||
|
|
||||||
|
|
||||||
|
async def test_binary_sensor(
|
||||||
|
hass: HomeAssistant,
|
||||||
|
mock_huum: AsyncMock,
|
||||||
|
mock_config_entry: MockConfigEntry,
|
||||||
|
snapshot: SnapshotAssertion,
|
||||||
|
entity_registry: er.EntityRegistry,
|
||||||
|
) -> None:
|
||||||
|
"""Test the initial parameters."""
|
||||||
|
await setup_with_selected_platforms(
|
||||||
|
hass, mock_config_entry, [Platform.BINARY_SENSOR]
|
||||||
|
)
|
||||||
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
Loading…
x
Reference in New Issue
Block a user