102 lines
3.4 KiB
Python
102 lines
3.4 KiB
Python
"""Tests for Renault sensors."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from .const import MOCK_VEHICLES
|
|
|
|
from tests.common import snapshot_platform
|
|
|
|
pytestmark = pytest.mark.usefixtures("patch_renault_account", "patch_get_vehicles")
|
|
|
|
# Zoe 40 does not expose GPS information
|
|
_TEST_VEHICLES = [v for v in MOCK_VEHICLES if v != "zoe_40"]
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def override_platforms() -> Generator[None]:
|
|
"""Override PLATFORMS."""
|
|
with patch("homeassistant.components.renault.PLATFORMS", [Platform.DEVICE_TRACKER]):
|
|
yield
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_data")
|
|
@pytest.mark.parametrize("vehicle_type", _TEST_VEHICLES, indirect=True)
|
|
async def test_device_trackers(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test for Renault device trackers."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_no_data")
|
|
@pytest.mark.parametrize("vehicle_type", ["zoe_50"], indirect=True)
|
|
async def test_device_tracker_empty(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test for Renault device trackers with empty data from Renault."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_invalid_upstream_exception")
|
|
@pytest.mark.parametrize("vehicle_type", ["zoe_50"], indirect=True)
|
|
async def test_device_tracker_errors(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test for Renault device trackers with temporary failure."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_access_denied_exception")
|
|
@pytest.mark.parametrize("vehicle_type", ["zoe_50"], indirect=True)
|
|
async def test_device_tracker_access_denied(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test for Renault device trackers with access denied failure."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(entity_registry.entities) == 0
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_not_supported_exception")
|
|
@pytest.mark.parametrize("vehicle_type", ["zoe_50"], indirect=True)
|
|
async def test_device_tracker_not_supported(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test for Renault device trackers with not supported failure."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(entity_registry.entities) == 0
|