mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Address post merge review of flipr binary sensor (#55983)
This commit is contained in:
parent
80fd330479
commit
065e858a03
@ -20,7 +20,7 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
SCAN_INTERVAL = timedelta(minutes=60)
|
SCAN_INTERVAL = timedelta(minutes=60)
|
||||||
|
|
||||||
|
|
||||||
PLATFORMS = ["sensor", "binary_sensor"]
|
PLATFORMS = ["binary_sensor", "sensor"]
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||||
|
@ -51,7 +51,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
|||||||
coordinator = hass.data[DOMAIN][config_entry.entry_id]
|
coordinator = hass.data[DOMAIN][config_entry.entry_id]
|
||||||
|
|
||||||
sensors = [FliprSensor(coordinator, description) for description in SENSOR_TYPES]
|
sensors = [FliprSensor(coordinator, description) for description in SENSOR_TYPES]
|
||||||
async_add_entities(sensors, True)
|
async_add_entities(sensors)
|
||||||
|
|
||||||
|
|
||||||
class FliprSensor(FliprEntity, SensorEntity):
|
class FliprSensor(FliprEntity, SensorEntity):
|
||||||
|
58
tests/components/flipr/test_binary_sensor.py
Normal file
58
tests/components/flipr/test_binary_sensor.py
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
"""Test the Flipr binary sensor."""
|
||||||
|
from datetime import datetime
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
from homeassistant.components.flipr.const import CONF_FLIPR_ID, DOMAIN
|
||||||
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
||||||
|
from homeassistant.core import HomeAssistant
|
||||||
|
from homeassistant.util import dt as dt_util
|
||||||
|
|
||||||
|
from tests.common import MockConfigEntry
|
||||||
|
|
||||||
|
# Data for the mocked object returned via flipr_api client.
|
||||||
|
MOCK_DATE_TIME = datetime(2021, 2, 15, 9, 10, 32, tzinfo=dt_util.UTC)
|
||||||
|
MOCK_FLIPR_MEASURE = {
|
||||||
|
"temperature": 10.5,
|
||||||
|
"ph": 7.03,
|
||||||
|
"chlorine": 0.23654886,
|
||||||
|
"red_ox": 657.58,
|
||||||
|
"date_time": MOCK_DATE_TIME,
|
||||||
|
"ph_status": "TooLow",
|
||||||
|
"chlorine_status": "Medium",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async def test_sensors(hass: HomeAssistant) -> None:
|
||||||
|
"""Test the creation and values of the Flipr binary sensors."""
|
||||||
|
entry = MockConfigEntry(
|
||||||
|
domain=DOMAIN,
|
||||||
|
unique_id="test_entry_unique_id",
|
||||||
|
data={
|
||||||
|
CONF_EMAIL: "toto@toto.com",
|
||||||
|
CONF_PASSWORD: "myPassword",
|
||||||
|
CONF_FLIPR_ID: "myfliprid",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
entry.add_to_hass(hass)
|
||||||
|
|
||||||
|
registry = await hass.helpers.entity_registry.async_get_registry()
|
||||||
|
|
||||||
|
with patch(
|
||||||
|
"flipr_api.FliprAPIRestClient.get_pool_measure_latest",
|
||||||
|
return_value=MOCK_FLIPR_MEASURE,
|
||||||
|
):
|
||||||
|
await hass.config_entries.async_setup(entry.entry_id)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
# Check entity unique_id value that is generated in FliprEntity base class.
|
||||||
|
entity = registry.async_get("binary_sensor.flipr_myfliprid_ph_status")
|
||||||
|
assert entity.unique_id == "myfliprid-ph_status"
|
||||||
|
|
||||||
|
state = hass.states.get("binary_sensor.flipr_myfliprid_ph_status")
|
||||||
|
assert state
|
||||||
|
assert state.state == "on" # Alert is on for binary sensor
|
||||||
|
|
||||||
|
state = hass.states.get("binary_sensor.flipr_myfliprid_chlorine_status")
|
||||||
|
assert state
|
||||||
|
assert state.state == "off"
|
@ -1,4 +1,4 @@
|
|||||||
"""Test the Flipr sensor and binary sensor."""
|
"""Test the Flipr sensor."""
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
@ -84,11 +84,3 @@ async def test_sensors(hass: HomeAssistant) -> None:
|
|||||||
assert state.attributes.get(ATTR_ICON) == "mdi:pool"
|
assert state.attributes.get(ATTR_ICON) == "mdi:pool"
|
||||||
assert state.attributes.get(ATTR_UNIT_OF_MEASUREMENT) == "mV"
|
assert state.attributes.get(ATTR_UNIT_OF_MEASUREMENT) == "mV"
|
||||||
assert state.state == "0.23654886"
|
assert state.state == "0.23654886"
|
||||||
|
|
||||||
state = hass.states.get("binary_sensor.flipr_myfliprid_ph_status")
|
|
||||||
assert state
|
|
||||||
assert state.state == "on" # Alert is on for binary sensor
|
|
||||||
|
|
||||||
state = hass.states.get("binary_sensor.flipr_myfliprid_chlorine_status")
|
|
||||||
assert state
|
|
||||||
assert state.state == "off"
|
|
Loading…
x
Reference in New Issue
Block a user