132 lines
3.9 KiB
Python
132 lines
3.9 KiB
Python
"""Test the Tessie init."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
import pytest
|
|
from tesla_fleet_api.exceptions import (
|
|
InvalidToken,
|
|
SubscriptionRequired,
|
|
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
|
|
|
|
ERRORS = [
|
|
(InvalidToken, ConfigEntryState.SETUP_ERROR),
|
|
(SubscriptionRequired, ConfigEntryState.SETUP_ERROR),
|
|
(TeslaFleetError, ConfigEntryState.SETUP_RETRY),
|
|
]
|
|
|
|
|
|
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
|
|
|
|
|
|
@pytest.mark.parametrize(("side_effect", "state"), ERRORS)
|
|
async def test_init_error(
|
|
hass: HomeAssistant, mock_products, side_effect, state
|
|
) -> None:
|
|
"""Test init with errors."""
|
|
|
|
mock_products.side_effect = side_effect
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is state
|
|
|
|
|
|
# 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()
|
|
|
|
|
|
@pytest.mark.parametrize(("side_effect", "state"), ERRORS)
|
|
async def test_vehicle_first_refresh_error(
|
|
hass: HomeAssistant, mock_wake_up, side_effect, state
|
|
) -> None:
|
|
"""Test first coordinator refresh with an error."""
|
|
mock_wake_up.side_effect = side_effect
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is state
|
|
|
|
|
|
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()
|
|
|
|
|
|
@pytest.mark.parametrize(("side_effect", "state"), ERRORS)
|
|
async def test_vehicle_refresh_error(
|
|
hass: HomeAssistant, mock_vehicle_data, side_effect, state
|
|
) -> None:
|
|
"""Test coordinator refresh with an error."""
|
|
mock_vehicle_data.side_effect = side_effect
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is state
|
|
|
|
|
|
# Test Energy Coordinator
|
|
|
|
|
|
@pytest.mark.parametrize(("side_effect", "state"), ERRORS)
|
|
async def test_energy_refresh_error(
|
|
hass: HomeAssistant, mock_live_status, side_effect, state
|
|
) -> None:
|
|
"""Test coordinator refresh with an error."""
|
|
mock_live_status.side_effect = side_effect
|
|
entry = await setup_platform(hass)
|
|
assert entry.state is state
|