mirror of https://github.com/home-assistant/core
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
"""Test the Teslemetry sensor platform."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.teslemetry.coordinator import VEHICLE_INTERVAL
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import assert_entities, assert_entities_alt, setup_platform
|
|
from .const import VEHICLE_DATA_ALT
|
|
|
|
from tests.common import async_fire_time_changed
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
async def test_sensors(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
freezer: FrozenDateTimeFactory,
|
|
mock_vehicle_data: AsyncMock,
|
|
) -> None:
|
|
"""Tests that the sensor entities are correct."""
|
|
|
|
freezer.move_to("2024-01-01 00:00:00+00:00")
|
|
|
|
entry = await setup_platform(hass, [Platform.SENSOR])
|
|
|
|
assert_entities(hass, entry.entry_id, entity_registry, snapshot)
|
|
|
|
# Coordinator refresh
|
|
mock_vehicle_data.return_value = VEHICLE_DATA_ALT
|
|
freezer.tick(VEHICLE_INTERVAL)
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
assert_entities_alt(hass, entry.entry_id, entity_registry, snapshot)
|