128 lines
4.3 KiB
Python
128 lines
4.3 KiB
Python
"""Tests for Renault sensors."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import STATE_UNKNOWN, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import (
|
|
check_device_registry,
|
|
check_entities,
|
|
check_entities_no_data,
|
|
check_entities_unavailable,
|
|
)
|
|
from .const import MOCK_VEHICLES
|
|
|
|
from tests.common import mock_device_registry, mock_registry
|
|
|
|
pytestmark = pytest.mark.usefixtures("patch_renault_account", "patch_get_vehicles")
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def override_platforms():
|
|
"""Override PLATFORMS."""
|
|
with patch("homeassistant.components.renault.PLATFORMS", [Platform.DEVICE_TRACKER]):
|
|
yield
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_data")
|
|
async def test_device_trackers(
|
|
hass: HomeAssistant, config_entry: ConfigEntry, vehicle_type: str
|
|
):
|
|
"""Test for Renault device trackers."""
|
|
|
|
entity_registry = mock_registry(hass)
|
|
device_registry = mock_device_registry(hass)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_vehicle = MOCK_VEHICLES[vehicle_type]
|
|
check_device_registry(device_registry, mock_vehicle["expected_device"])
|
|
|
|
expected_entities = mock_vehicle[Platform.DEVICE_TRACKER]
|
|
assert len(entity_registry.entities) == len(expected_entities)
|
|
|
|
check_entities(hass, entity_registry, expected_entities)
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_no_data")
|
|
async def test_device_tracker_empty(
|
|
hass: HomeAssistant, config_entry: ConfigEntry, vehicle_type: str
|
|
):
|
|
"""Test for Renault device trackers with empty data from Renault."""
|
|
|
|
entity_registry = mock_registry(hass)
|
|
device_registry = mock_device_registry(hass)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_vehicle = MOCK_VEHICLES[vehicle_type]
|
|
check_device_registry(device_registry, mock_vehicle["expected_device"])
|
|
|
|
expected_entities = mock_vehicle[Platform.DEVICE_TRACKER]
|
|
assert len(entity_registry.entities) == len(expected_entities)
|
|
check_entities_no_data(hass, entity_registry, expected_entities, STATE_UNKNOWN)
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_invalid_upstream_exception")
|
|
async def test_device_tracker_errors(
|
|
hass: HomeAssistant, config_entry: ConfigEntry, vehicle_type: str
|
|
):
|
|
"""Test for Renault device trackers with temporary failure."""
|
|
|
|
entity_registry = mock_registry(hass)
|
|
device_registry = mock_device_registry(hass)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_vehicle = MOCK_VEHICLES[vehicle_type]
|
|
check_device_registry(device_registry, mock_vehicle["expected_device"])
|
|
|
|
expected_entities = mock_vehicle[Platform.DEVICE_TRACKER]
|
|
assert len(entity_registry.entities) == len(expected_entities)
|
|
|
|
check_entities_unavailable(hass, entity_registry, expected_entities)
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_access_denied_exception")
|
|
@pytest.mark.parametrize("vehicle_type", ["zoe_40"], indirect=True)
|
|
async def test_device_tracker_access_denied(
|
|
hass: HomeAssistant, config_entry: ConfigEntry, vehicle_type: str
|
|
):
|
|
"""Test for Renault device trackers with access denied failure."""
|
|
|
|
entity_registry = mock_registry(hass)
|
|
device_registry = mock_device_registry(hass)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_vehicle = MOCK_VEHICLES[vehicle_type]
|
|
check_device_registry(device_registry, mock_vehicle["expected_device"])
|
|
|
|
assert len(entity_registry.entities) == 0
|
|
|
|
|
|
@pytest.mark.usefixtures("fixtures_with_not_supported_exception")
|
|
@pytest.mark.parametrize("vehicle_type", ["zoe_40"], indirect=True)
|
|
async def test_device_tracker_not_supported(
|
|
hass: HomeAssistant, config_entry: ConfigEntry, vehicle_type: str
|
|
):
|
|
"""Test for Renault device trackers with not supported failure."""
|
|
|
|
entity_registry = mock_registry(hass)
|
|
device_registry = mock_device_registry(hass)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_vehicle = MOCK_VEHICLES[vehicle_type]
|
|
check_device_registry(device_registry, mock_vehicle["expected_device"])
|
|
|
|
assert len(entity_registry.entities) == 0
|