-
-
Notifications
You must be signed in to change notification settings - Fork 31.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add binary platform and tip connected detection to IronOS
- Loading branch information
Showing
9 changed files
with
257 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
"""Binary sensor platform for IronOS integration.""" | ||
|
||
from __future__ import annotations | ||
|
||
from enum import StrEnum | ||
|
||
from homeassistant.components.binary_sensor import ( | ||
BinarySensorDeviceClass, | ||
BinarySensorEntity, | ||
BinarySensorEntityDescription, | ||
) | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.helpers.entity_platform import AddEntitiesCallback | ||
|
||
from . import IronOSConfigEntry | ||
from .coordinator import IronOSLiveDataCoordinator | ||
from .entity import IronOSBaseEntity | ||
|
||
|
||
class PinecilBinarySensor(StrEnum): | ||
"""Pinecil Binary Sensors.""" | ||
|
||
TIP_CONNECTED = "tip_connected" | ||
|
||
|
||
async def async_setup_entry( | ||
hass: HomeAssistant, | ||
entry: IronOSConfigEntry, | ||
async_add_entities: AddEntitiesCallback, | ||
) -> None: | ||
"""Set up binary sensors from a config entry.""" | ||
coordinator = entry.runtime_data | ||
|
||
async_add_entities([IronOSBinarySensorEntity(coordinator)]) | ||
|
||
|
||
class IronOSBinarySensorEntity(IronOSBaseEntity, BinarySensorEntity): | ||
"""Representation of a IronOS binary sensor entity.""" | ||
|
||
entity_description = BinarySensorEntityDescription( | ||
key=PinecilBinarySensor.TIP_CONNECTED, | ||
translation_key=PinecilBinarySensor.TIP_CONNECTED, | ||
device_class=BinarySensorDeviceClass.CONNECTIVITY, | ||
) | ||
|
||
def __init__(self, coordinator: IronOSLiveDataCoordinator) -> None: | ||
"""Initialize the entity.""" | ||
super().__init__(coordinator, self.entity_description) | ||
|
||
@property | ||
def is_on(self) -> bool | None: | ||
"""Return true if the binary sensor is on.""" | ||
return self.coordinator.has_tip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
tests/components/iron_os/snapshots/test_binary_sensor.ambr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# serializer version: 1 | ||
# name: test_sensors[binary_sensor.pinecil_soldering_tip-entry] | ||
EntityRegistryEntrySnapshot({ | ||
'aliases': set({ | ||
}), | ||
'area_id': None, | ||
'capabilities': None, | ||
'config_entry_id': <ANY>, | ||
'device_class': None, | ||
'device_id': <ANY>, | ||
'disabled_by': None, | ||
'domain': 'binary_sensor', | ||
'entity_category': None, | ||
'entity_id': 'binary_sensor.pinecil_soldering_tip', | ||
'has_entity_name': True, | ||
'hidden_by': None, | ||
'icon': None, | ||
'id': <ANY>, | ||
'labels': set({ | ||
}), | ||
'name': None, | ||
'options': dict({ | ||
}), | ||
'original_device_class': <BinarySensorDeviceClass.CONNECTIVITY: 'connectivity'>, | ||
'original_icon': None, | ||
'original_name': 'Soldering tip', | ||
'platform': 'iron_os', | ||
'previous_unique_id': None, | ||
'supported_features': 0, | ||
'translation_key': <PinecilBinarySensor.TIP_CONNECTED: 'tip_connected'>, | ||
'unique_id': 'c0:ff:ee:c0:ff:ee_tip_connected', | ||
'unit_of_measurement': None, | ||
}) | ||
# --- | ||
# name: test_sensors[binary_sensor.pinecil_soldering_tip-state] | ||
StateSnapshot({ | ||
'attributes': ReadOnlyDict({ | ||
'device_class': 'connectivity', | ||
'friendly_name': 'Pinecil Soldering tip', | ||
}), | ||
'context': <ANY>, | ||
'entity_id': 'binary_sensor.pinecil_soldering_tip', | ||
'last_changed': <ANY>, | ||
'last_reported': <ANY>, | ||
'last_updated': <ANY>, | ||
'state': 'on', | ||
}) | ||
# --- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
"""Tests for the Pinecil Binary Sensors.""" | ||
|
||
from collections.abc import AsyncGenerator | ||
from datetime import timedelta | ||
from unittest.mock import AsyncMock, patch | ||
|
||
from pynecil import LiveDataResponse | ||
import pytest | ||
from syrupy.assertion import SnapshotAssertion | ||
|
||
from homeassistant.components.binary_sensor import STATE_OFF, STATE_ON | ||
from homeassistant.config_entries import ConfigEntryState | ||
from homeassistant.const import Platform | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.helpers import entity_registry as er | ||
import homeassistant.util.dt as dt_util | ||
|
||
from tests.common import MockConfigEntry, async_fire_time_changed, snapshot_platform | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
async def binary_sensor_only() -> AsyncGenerator[None]: | ||
"""Enable only the binary sensor platform.""" | ||
with patch( | ||
"homeassistant.components.iron_os.PLATFORMS", | ||
[Platform.BINARY_SENSOR], | ||
): | ||
yield | ||
|
||
|
||
@pytest.mark.usefixtures( | ||
"entity_registry_enabled_by_default", "mock_pynecil", "ble_device" | ||
) | ||
async def test_sensors( | ||
hass: HomeAssistant, | ||
config_entry: MockConfigEntry, | ||
snapshot: SnapshotAssertion, | ||
entity_registry: er.EntityRegistry, | ||
) -> None: | ||
"""Test the Pinecil binary sensor platform.""" | ||
config_entry.add_to_hass(hass) | ||
await hass.config_entries.async_setup(config_entry.entry_id) | ||
await hass.async_block_till_done() | ||
|
||
assert config_entry.state is ConfigEntryState.LOADED | ||
|
||
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id) | ||
|
||
|
||
@pytest.mark.usefixtures( | ||
"entity_registry_enabled_by_default", "ble_device", "mock_pynecil" | ||
) | ||
async def test_tip_on_off( | ||
hass: HomeAssistant, | ||
config_entry: MockConfigEntry, | ||
mock_pynecil: AsyncMock, | ||
) -> None: | ||
"""Test tip_connected binary sensor on/off states.""" | ||
|
||
config_entry.add_to_hass(hass) | ||
await hass.config_entries.async_setup(config_entry.entry_id) | ||
await hass.async_block_till_done() | ||
|
||
assert config_entry.state is ConfigEntryState.LOADED | ||
|
||
assert hass.states.get("binary_sensor.pinecil_soldering_tip").state == STATE_ON | ||
|
||
mock_pynecil.get_live_data.return_value = LiveDataResponse( | ||
live_temp=479, | ||
max_tip_temp_ability=460, | ||
) | ||
async_fire_time_changed(hass, dt_util.utcnow() + timedelta(seconds=5)) | ||
|
||
assert hass.states.get("binary_sensor.pinecil_soldering_tip").state == STATE_OFF |
Oops, something went wrong.