Support for V2 sock added
### Feature * Support added for V2 sock * Added tests for binary sensors ### Fix * Bumping pyowletapi to 2023.11.4 to allow V2 support * Refactoring * Corrected spelling of sock disconnected sensor
This commit is contained in:
+1
-1
@@ -1052,4 +1052,4 @@
|
||||
"expiry": 200,
|
||||
"refresh": "new_refresh_token"
|
||||
}
|
||||
}
|
||||
}
|
||||
+1211
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,188 @@
|
||||
"""Test Owlet Sensor."""
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from . import async_init_integration
|
||||
|
||||
|
||||
async def test_sensors_asleep(hass: HomeAssistant) -> None:
|
||||
"""Test sensor values."""
|
||||
await async_init_integration(
|
||||
hass, properties_fixture="update_properties_asleep.json"
|
||||
)
|
||||
|
||||
assert len(hass.states.async_all("binary_sensor")) == 10
|
||||
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_charging").state == "off"
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_high_heart_rate_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_heart_rate_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_high_oxygen_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_oxygen_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_battery_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_lost_power_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_sock_disconnected_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_sock_off").state == "off"
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_awake").state == "off"
|
||||
|
||||
|
||||
async def test_sensors_awake(hass: HomeAssistant) -> None:
|
||||
"""Test sensor values."""
|
||||
await async_init_integration(
|
||||
hass, properties_fixture="update_properties_awake.json"
|
||||
)
|
||||
|
||||
assert len(hass.states.async_all("binary_sensor")) == 10
|
||||
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_charging").state == "off"
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_high_heart_rate_alert"
|
||||
).state
|
||||
== "on"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_heart_rate_alert").state
|
||||
== "on"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_high_oxygen_alert").state
|
||||
== "on"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_oxygen_alert").state
|
||||
== "on"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_battery_alert").state
|
||||
== "on"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_lost_power_alert").state
|
||||
== "on"
|
||||
)
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_sock_disconnected_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_sock_off").state == "off"
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_awake").state == "on"
|
||||
|
||||
|
||||
async def test_sensors_charging(hass: HomeAssistant) -> None:
|
||||
"""Test sensor values."""
|
||||
await async_init_integration(
|
||||
hass, properties_fixture="update_properties_charging.json"
|
||||
)
|
||||
|
||||
assert len(hass.states.async_all("binary_sensor")) == 10
|
||||
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_charging").state == "on"
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_high_heart_rate_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_heart_rate_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_high_oxygen_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_oxygen_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_battery_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_lost_power_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_sock_disconnected_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_sock_off").state == "off"
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_awake").state == "unknown"
|
||||
)
|
||||
|
||||
|
||||
async def test_sensors_v2(hass: HomeAssistant) -> None:
|
||||
"""Test sensor values."""
|
||||
await async_init_integration(hass, properties_fixture="update_properties_v2.json")
|
||||
assert len(hass.states.async_all("binary_sensor")) == 9
|
||||
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_charging").state == "off"
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_high_heart_rate_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_heart_rate_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_oxygen_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get("binary_sensor.owlet_baby_care_sock_low_battery_alert").state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_critical_battery_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_critical_oxygen_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert (
|
||||
hass.states.get(
|
||||
"binary_sensor.owlet_baby_care_sock_sock_disconnected_alert"
|
||||
).state
|
||||
== "off"
|
||||
)
|
||||
assert hass.states.get("binary_sensor.owlet_baby_care_sock_sock_off").state == "off"
|
||||
@@ -70,7 +70,7 @@ async def test_flow_wrong_password(hass: HomeAssistant) -> None:
|
||||
user_input=CONF_INPUT,
|
||||
)
|
||||
assert result["type"] == FlowResultType.FORM
|
||||
assert result["errors"] == {"base": "invalid_password"}
|
||||
assert result["errors"] == {"password": "invalid_password"}
|
||||
|
||||
|
||||
async def test_flow_wrong_email(hass: HomeAssistant) -> None:
|
||||
@@ -88,7 +88,7 @@ async def test_flow_wrong_email(hass: HomeAssistant) -> None:
|
||||
user_input=CONF_INPUT,
|
||||
)
|
||||
assert result["type"] == FlowResultType.FORM
|
||||
assert result["errors"] == {"base": "invalid_email"}
|
||||
assert result["errors"] == {"username": "invalid_email"}
|
||||
|
||||
|
||||
async def test_flow_credentials_error(hass: HomeAssistant) -> None:
|
||||
@@ -193,7 +193,7 @@ async def test_reauth_invalid_password(hass: HomeAssistant) -> None:
|
||||
|
||||
assert result["type"] == FlowResultType.FORM
|
||||
assert result["step_id"] == "reauth_confirm"
|
||||
assert result["errors"] == {"base": "invalid_password"}
|
||||
assert result["errors"] == {"password": "invalid_password"}
|
||||
|
||||
|
||||
async def test_reauth_unknown_error(hass: HomeAssistant) -> None:
|
||||
|
||||
+1
-1
@@ -43,7 +43,7 @@ async def test_async_setup_entry(hass: HomeAssistant) -> None:
|
||||
|
||||
entities = er.async_entries_for_device(entity_registry, device_entry.id)
|
||||
|
||||
assert len(entities) == 8
|
||||
assert len(entities) == 18
|
||||
|
||||
await entry.async_unload(hass)
|
||||
|
||||
|
||||
@@ -107,3 +107,20 @@ async def test_sensors_charging(hass: HomeAssistant) -> None:
|
||||
== "unknown"
|
||||
)
|
||||
assert hass.states.get("sensor.owlet_baby_care_sock_sleep_state").state == "unknown"
|
||||
|
||||
|
||||
async def test_sensors_v2(hass: HomeAssistant) -> None:
|
||||
"""Test sensor values."""
|
||||
await async_init_integration(hass, properties_fixture="update_properties_v2.json")
|
||||
assert len(hass.states.async_all("sensor")) == 4
|
||||
|
||||
assert (
|
||||
hass.states.get("sensor.owlet_baby_care_sock_battery_percentage").state == "29"
|
||||
)
|
||||
assert hass.states.get("sensor.owlet_baby_care_sock_heart_rate").state == "145"
|
||||
assert hass.states.get("sensor.owlet_baby_care_sock_o2_saturation").state == "99"
|
||||
|
||||
assert (
|
||||
hass.states.get("sensor.owlet_baby_care_sock_signal_strength").state == "98.0"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user