37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
"""The tests for the uptime sensor platform."""
|
|
import pytest
|
|
|
|
from homeassistant.components.sensor import SensorDeviceClass
|
|
from homeassistant.components.uptime.const import DOMAIN
|
|
from homeassistant.const import ATTR_DEVICE_CLASS
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.freeze_time("2022-03-01 00:00:00+00:00")
|
|
async def test_uptime_sensor(
|
|
hass: HomeAssistant,
|
|
init_integration: MockConfigEntry,
|
|
) -> None:
|
|
"""Test Uptime sensor."""
|
|
state = hass.states.get("sensor.uptime")
|
|
assert state
|
|
assert state.state == "2022-03-01T00:00:00+00:00"
|
|
assert state.attributes["friendly_name"] == "Uptime"
|
|
assert state.attributes[ATTR_DEVICE_CLASS] == SensorDeviceClass.TIMESTAMP
|
|
|
|
entity_registry = er.async_get(hass)
|
|
entry = entity_registry.async_get("sensor.uptime")
|
|
assert entry
|
|
assert entry.unique_id == init_integration.entry_id
|
|
|
|
device_registry = dr.async_get(hass)
|
|
assert entry.device_id
|
|
device_entry = device_registry.async_get(entry.device_id)
|
|
assert device_entry
|
|
assert device_entry.identifiers == {(DOMAIN, init_integration.entry_id)}
|
|
assert device_entry.name == init_integration.title
|
|
assert device_entry.entry_type == dr.DeviceEntryType.SERVICE
|