57 lines
1.6 KiB
Python
57 lines
1.6 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
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
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, 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
|