2023-04-22 23:05:14 +00:00
|
|
|
"""Tests for the Anova integration."""
|
2024-03-22 23:27:57 +00:00
|
|
|
|
2023-04-22 23:05:14 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
2023-05-01 09:15:29 +00:00
|
|
|
from anova_wifi import AnovaPrecisionCooker, APCUpdate, APCUpdateBinary, APCUpdateSensor
|
2023-04-22 23:05:14 +00:00
|
|
|
|
|
|
|
from homeassistant.components.anova.const import DOMAIN
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
|
|
DEVICE_UNIQUE_ID = "abc123def"
|
|
|
|
|
|
|
|
CONF_INPUT = {CONF_USERNAME: "sample@gmail.com", CONF_PASSWORD: "sample"}
|
|
|
|
|
2023-05-01 09:15:29 +00:00
|
|
|
ONLINE_UPDATE = APCUpdate(
|
|
|
|
sensor=APCUpdateSensor(
|
|
|
|
0, "Low water", "No state", 23.33, 0, "2.2.0", 20.87, 21.79, 21.33
|
|
|
|
),
|
|
|
|
binary_sensor=APCUpdateBinary(False, False, False, True, False, True, False),
|
|
|
|
)
|
2023-04-22 23:05:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
def create_entry(hass: HomeAssistant, device_id: str = DEVICE_UNIQUE_ID) -> ConfigEntry:
|
|
|
|
"""Add config entry in Home Assistant."""
|
|
|
|
entry = MockConfigEntry(
|
|
|
|
domain=DOMAIN,
|
|
|
|
title="Anova",
|
|
|
|
data={
|
|
|
|
CONF_USERNAME: "sample@gmail.com",
|
|
|
|
CONF_PASSWORD: "sample",
|
|
|
|
"devices": [(device_id, "type_sample")],
|
|
|
|
},
|
|
|
|
unique_id="sample@gmail.com",
|
|
|
|
)
|
|
|
|
entry.add_to_hass(hass)
|
|
|
|
return entry
|
|
|
|
|
|
|
|
|
|
|
|
async def async_init_integration(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
skip_setup: bool = False,
|
|
|
|
error: str | None = None,
|
|
|
|
) -> ConfigEntry:
|
|
|
|
"""Set up the Anova integration in Home Assistant."""
|
2024-03-25 23:02:16 +00:00
|
|
|
with (
|
|
|
|
patch(
|
|
|
|
"homeassistant.components.anova.coordinator.AnovaPrecisionCooker.update"
|
|
|
|
) as update_patch,
|
|
|
|
patch("homeassistant.components.anova.AnovaApi.authenticate"),
|
|
|
|
patch(
|
|
|
|
"homeassistant.components.anova.AnovaApi.get_devices",
|
|
|
|
) as device_patch,
|
|
|
|
):
|
2023-04-22 23:05:14 +00:00
|
|
|
update_patch.return_value = ONLINE_UPDATE
|
|
|
|
device_patch.return_value = [
|
|
|
|
AnovaPrecisionCooker(None, DEVICE_UNIQUE_ID, "type_sample", None)
|
|
|
|
]
|
|
|
|
|
|
|
|
entry = create_entry(hass)
|
|
|
|
|
|
|
|
if not skip_setup:
|
|
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
return entry
|