mirror of https://github.com/home-assistant/core
75 lines
2.4 KiB
Python
75 lines
2.4 KiB
Python
"""Test button of ONVIF integration."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from homeassistant.components.button import DOMAIN as BUTTON_DOMAIN, ButtonDeviceClass
|
|
from homeassistant.const import ATTR_DEVICE_CLASS, ATTR_ENTITY_ID, STATE_UNKNOWN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import MAC, setup_onvif_integration
|
|
|
|
|
|
async def test_reboot_button(
|
|
hass: HomeAssistant, entity_registry: er.EntityRegistry
|
|
) -> None:
|
|
"""Test states of the Reboot button."""
|
|
await setup_onvif_integration(hass)
|
|
|
|
state = hass.states.get("button.testcamera_reboot")
|
|
assert state
|
|
assert state.state == STATE_UNKNOWN
|
|
assert state.attributes.get(ATTR_DEVICE_CLASS) == ButtonDeviceClass.RESTART
|
|
|
|
entry = entity_registry.async_get("button.testcamera_reboot")
|
|
assert entry
|
|
assert entry.unique_id == f"{MAC}_reboot"
|
|
|
|
|
|
async def test_reboot_button_press(hass: HomeAssistant) -> None:
|
|
"""Test Reboot button press."""
|
|
_, camera, _ = await setup_onvif_integration(hass)
|
|
devicemgmt = await camera.create_devicemgmt_service()
|
|
devicemgmt.SystemReboot = AsyncMock(return_value=True)
|
|
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
"press",
|
|
{ATTR_ENTITY_ID: "button.testcamera_reboot"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
devicemgmt.SystemReboot.assert_called_once()
|
|
|
|
|
|
async def test_set_dateandtime_button(
|
|
hass: HomeAssistant, entity_registry: er.EntityRegistry
|
|
) -> None:
|
|
"""Test states of the SetDateAndTime button."""
|
|
await setup_onvif_integration(hass)
|
|
|
|
state = hass.states.get("button.testcamera_set_system_date_and_time")
|
|
assert state
|
|
assert state.state == STATE_UNKNOWN
|
|
|
|
entry = entity_registry.async_get("button.testcamera_set_system_date_and_time")
|
|
assert entry
|
|
assert entry.unique_id == f"{MAC}_setsystemdatetime"
|
|
|
|
|
|
async def test_set_dateandtime_button_press(hass: HomeAssistant) -> None:
|
|
"""Test SetDateAndTime button press."""
|
|
_, camera, device = await setup_onvif_integration(hass)
|
|
device.async_manually_set_date_and_time = AsyncMock(return_value=True)
|
|
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
"press",
|
|
{ATTR_ENTITY_ID: "button.testcamera_set_system_date_and_time"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
device.async_manually_set_date_and_time.assert_called_once()
|