1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Camera Status and Motion record status (#44936)

This commit is contained in:
Ryan Fleming
2021-01-27 04:50:44 -05:00
committed by GitHub
parent 67b309394f
commit 459236fcdd
2 changed files with 55 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
"""The tests for UVC camera module."""
from datetime import datetime
import socket
import unittest
from unittest import mock
@@ -198,10 +199,14 @@ class TestUVC(unittest.TestCase):
self.nvr.get_camera.return_value = {
"model": "UVC Fake",
"uuid": "06e3ff29-8048-31c2-8574-0852d1bd0e03",
"recordingSettings": {"fullTimeRecordEnabled": True},
"recordingSettings": {
"fullTimeRecordEnabled": True,
"motionRecordEnabled": False,
},
"host": "host-a",
"internalHost": "host-b",
"username": "admin",
"lastRecordingStartTime": 1610070992367,
"channels": [
{
"id": "0",
@@ -241,6 +246,29 @@ class TestUVC(unittest.TestCase):
assert SUPPORT_STREAM == self.uvc.supported_features
assert "uuid" == self.uvc.unique_id
def test_motion_recording_mode_properties(self):
"""Test the properties."""
self.nvr.get_camera.return_value["recordingSettings"][
"fullTimeRecordEnabled"
] = False
self.nvr.get_camera.return_value["recordingSettings"][
"motionRecordEnabled"
] = True
assert not self.uvc.is_recording
assert (
datetime(2021, 1, 8, 1, 56, 32, 367000)
== self.uvc.state_attributes["last_recording_start_time"]
)
self.nvr.get_camera.return_value["recordingIndicator"] = "DISABLED"
assert not self.uvc.is_recording
self.nvr.get_camera.return_value["recordingIndicator"] = "MOTION_INPROGRESS"
assert self.uvc.is_recording
self.nvr.get_camera.return_value["recordingIndicator"] = "MOTION_FINISHED"
assert self.uvc.is_recording
def test_stream(self):
"""Test the RTSP stream URI."""
stream_source = yield from self.uvc.stream_source()