mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 20:57:51 +00:00

* Adding Energy * Adding Energy * Work in progress * Add fixtures * Add product info * Add sensors * Add icons * Update metadata * Use SensorEntityDescription for Energy * Use ENERGY_STORAGE * Add tests * Fix coverage * Update wall connector precision and units * Change devices * Fix serial number * Add icons and VIN to wall connector * Fix serial number again * Update snapshots * Use timestamp for minutes to arrival * Cleanup snapshot * Improvements * Update fixture * Add "code" to translations * Add "code" to snapshot * Use async_add_entities once * Disable a bunch of sensors * Ruff * Improve fixture and test coverage * Regen Snapshots * Add init to coordinator
129 lines
4.0 KiB
Python
129 lines
4.0 KiB
Python
"""Test the Tessie init."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
from tesla_fleet_api.exceptions import (
|
|
InvalidToken,
|
|
PaymentRequired,
|
|
TeslaFleetError,
|
|
VehicleOffline,
|
|
)
|
|
|
|
from homeassistant.components.teslemetry.coordinator import SYNC_INTERVAL
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import setup_platform
|
|
from .const import WAKE_UP_ASLEEP, WAKE_UP_ONLINE
|
|
|
|
from tests.common import async_fire_time_changed
|
|
|
|
|
|
async def test_load_unload(hass: HomeAssistant) -> None:
|
|
"""Test load and unload."""
|
|
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
assert await hass.config_entries.async_unload(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert entry.state is ConfigEntryState.NOT_LOADED
|
|
|
|
|
|
async def test_auth_failure(hass: HomeAssistant, mock_products) -> None:
|
|
"""Test init with an authentication error."""
|
|
|
|
mock_products.side_effect = InvalidToken
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_ERROR
|
|
|
|
|
|
async def test_subscription_failure(hass: HomeAssistant, mock_products) -> None:
|
|
"""Test init with an client response error."""
|
|
|
|
mock_products.side_effect = PaymentRequired
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_ERROR
|
|
|
|
|
|
async def test_other_failure(hass: HomeAssistant, mock_products) -> None:
|
|
"""Test init with an client response error."""
|
|
|
|
mock_products.side_effect = TeslaFleetError
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
# Vehicle Coordinator
|
|
|
|
|
|
async def test_vehicle_first_refresh(
|
|
hass: HomeAssistant,
|
|
mock_wake_up,
|
|
mock_vehicle_data,
|
|
mock_products,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test first coordinator refresh but vehicle is asleep."""
|
|
|
|
# Mock vehicle is asleep
|
|
mock_wake_up.return_value = WAKE_UP_ASLEEP
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_RETRY
|
|
mock_wake_up.assert_called_once()
|
|
|
|
# Reset mock and set vehicle to online
|
|
mock_wake_up.reset_mock()
|
|
mock_wake_up.return_value = WAKE_UP_ONLINE
|
|
|
|
# Wait for the retry
|
|
freezer.tick(timedelta(seconds=60))
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
# Verify we have loaded
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
mock_wake_up.assert_called_once()
|
|
mock_vehicle_data.assert_called_once()
|
|
|
|
|
|
async def test_vehicle_first_refresh_error(hass: HomeAssistant, mock_wake_up) -> None:
|
|
"""Test first coordinator refresh with an error."""
|
|
mock_wake_up.side_effect = TeslaFleetError
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
async def test_vehicle_refresh_offline(
|
|
hass: HomeAssistant, mock_vehicle_data, freezer: FrozenDateTimeFactory
|
|
) -> None:
|
|
"""Test coordinator refresh with an error."""
|
|
entry = await setup_platform(hass, [Platform.CLIMATE])
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
mock_vehicle_data.assert_called_once()
|
|
mock_vehicle_data.reset_mock()
|
|
|
|
mock_vehicle_data.side_effect = VehicleOffline
|
|
freezer.tick(timedelta(seconds=SYNC_INTERVAL))
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
mock_vehicle_data.assert_called_once()
|
|
|
|
|
|
async def test_vehicle_refresh_error(hass: HomeAssistant, mock_vehicle_data) -> None:
|
|
"""Test coordinator refresh with an error."""
|
|
mock_vehicle_data.side_effect = TeslaFleetError
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
# Test Energy Coordinator
|
|
|
|
|
|
async def test_energy_refresh_error(hass: HomeAssistant, mock_live_status) -> None:
|
|
"""Test coordinator refresh with an error."""
|
|
mock_live_status.side_effect = TeslaFleetError
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is ConfigEntryState.SETUP_RETRY
|