mirror of https://github.com/home-assistant/core
93 lines
2.8 KiB
Python
93 lines
2.8 KiB
Python
"""Test the Home Assistant fyta sensor module."""
|
|
|
|
from datetime import timedelta
|
|
from unittest.mock import AsyncMock
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
from fyta_cli.fyta_exceptions import FytaConnectionError, FytaPlantError
|
|
from fyta_cli.fyta_models import Plant
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.components.fyta.const import DOMAIN as FYTA_DOMAIN
|
|
from homeassistant.const import STATE_UNAVAILABLE, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import setup_platform
|
|
|
|
from tests.common import (
|
|
MockConfigEntry,
|
|
async_fire_time_changed,
|
|
load_json_object_fixture,
|
|
snapshot_platform,
|
|
)
|
|
|
|
|
|
async def test_all_entities(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
mock_fyta_connector: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test all entities."""
|
|
|
|
await setup_platform(hass, mock_config_entry, [Platform.SENSOR])
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"exception",
|
|
[
|
|
FytaConnectionError,
|
|
FytaPlantError,
|
|
],
|
|
)
|
|
async def test_connection_error(
|
|
hass: HomeAssistant,
|
|
exception: Exception,
|
|
mock_fyta_connector: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test connection error."""
|
|
await setup_platform(hass, mock_config_entry, [Platform.SENSOR])
|
|
|
|
mock_fyta_connector.update_all_plants.side_effect = exception
|
|
|
|
freezer.tick(delta=timedelta(hours=12))
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
assert hass.states.get("sensor.gummibaum_plant_state").state == STATE_UNAVAILABLE
|
|
|
|
|
|
async def test_add_remove_entities(
|
|
hass: HomeAssistant,
|
|
mock_fyta_connector: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test if entities are added and old are removed."""
|
|
await setup_platform(hass, mock_config_entry, [Platform.SENSOR])
|
|
|
|
assert hass.states.get("sensor.gummibaum_plant_state").state == "doing_great"
|
|
|
|
plants: dict[int, Plant] = {
|
|
0: Plant.from_dict(load_json_object_fixture("plant_status1.json", FYTA_DOMAIN)),
|
|
2: Plant.from_dict(load_json_object_fixture("plant_status3.json", FYTA_DOMAIN)),
|
|
}
|
|
mock_fyta_connector.update_all_plants.return_value = plants
|
|
mock_fyta_connector.plant_list = {
|
|
0: "Kautschukbaum",
|
|
2: "Tomatenpflanze",
|
|
}
|
|
|
|
freezer.tick(delta=timedelta(minutes=10))
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
assert hass.states.get("sensor.kakaobaum_plant_state") is None
|
|
assert hass.states.get("sensor.tomatenpflanze_plant_state").state == "doing_great"
|