* add first data driven tests * remove unused mock * test unique_id migration * test errors during setup * test error during data update * test update entity * system_versionis always available * make use of snapshot_platform helper * use parametrize test for coordinator update errors * apply suggestions * don't touch internals on coordinator tests * rework to use async_get_or_create instead of mock_registry
31 lines
939 B
Python
31 lines
939 B
Python
"""Tests for the Nextcloud sensors."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import init_integration
|
|
from .const import NC_DATA, VALID_CONFIG
|
|
|
|
from tests.common import snapshot_platform
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
async def test_async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test a successful setup entry."""
|
|
with patch("homeassistant.components.nextcloud.PLATFORMS", [Platform.SENSOR]):
|
|
entry = await init_integration(hass, VALID_CONFIG, NC_DATA)
|
|
|
|
states = hass.states.async_all()
|
|
assert len(states) == 80
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, entry.entry_id)
|