mirror of https://github.com/home-assistant/core
75 lines
2.4 KiB
Python
75 lines
2.4 KiB
Python
"""Tests for the Abode camera device."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant.components.abode.const import DOMAIN as ABODE_DOMAIN
|
|
from homeassistant.components.camera import DOMAIN as CAMERA_DOMAIN, CameraState
|
|
from homeassistant.const import ATTR_ENTITY_ID
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from .common import setup_platform
|
|
|
|
|
|
async def test_entity_registry(
|
|
hass: HomeAssistant, entity_registry: er.EntityRegistry
|
|
) -> None:
|
|
"""Tests that the devices are registered in the entity registry."""
|
|
await setup_platform(hass, CAMERA_DOMAIN)
|
|
|
|
entry = entity_registry.async_get("camera.test_cam")
|
|
assert entry.unique_id == "d0a3a1c316891ceb00c20118aae2a133"
|
|
|
|
|
|
async def test_attributes(hass: HomeAssistant) -> None:
|
|
"""Test the camera attributes are correct."""
|
|
await setup_platform(hass, CAMERA_DOMAIN)
|
|
|
|
state = hass.states.get("camera.test_cam")
|
|
assert state.state == CameraState.IDLE
|
|
|
|
|
|
async def test_capture_image(hass: HomeAssistant) -> None:
|
|
"""Test the camera capture image service."""
|
|
await setup_platform(hass, CAMERA_DOMAIN)
|
|
|
|
with patch("jaraco.abode.devices.camera.Camera.capture") as mock_capture:
|
|
await hass.services.async_call(
|
|
ABODE_DOMAIN,
|
|
"capture_image",
|
|
{ATTR_ENTITY_ID: "camera.test_cam"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
mock_capture.assert_called_once()
|
|
|
|
|
|
async def test_camera_on(hass: HomeAssistant) -> None:
|
|
"""Test the camera turn on service."""
|
|
await setup_platform(hass, CAMERA_DOMAIN)
|
|
|
|
with patch("jaraco.abode.devices.camera.Camera.privacy_mode") as mock_capture:
|
|
await hass.services.async_call(
|
|
CAMERA_DOMAIN,
|
|
"turn_on",
|
|
{ATTR_ENTITY_ID: "camera.test_cam"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
mock_capture.assert_called_once_with(False)
|
|
|
|
|
|
async def test_camera_off(hass: HomeAssistant) -> None:
|
|
"""Test the camera turn off service."""
|
|
await setup_platform(hass, CAMERA_DOMAIN)
|
|
|
|
with patch("jaraco.abode.devices.camera.Camera.privacy_mode") as mock_capture:
|
|
await hass.services.async_call(
|
|
CAMERA_DOMAIN,
|
|
"turn_off",
|
|
{ATTR_ENTITY_ID: "camera.test_cam"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
mock_capture.assert_called_once_with(True)
|