mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
Add additional license plate test coverage to unifiprotect (#120125)
This commit is contained in:
parent
c3ab72a1f9
commit
4d11dd6739
@ -17,7 +17,10 @@ from uiprotect.data import (
|
|||||||
)
|
)
|
||||||
from uiprotect.data.nvr import EventMetadata, LicensePlateMetadata
|
from uiprotect.data.nvr import EventMetadata, LicensePlateMetadata
|
||||||
|
|
||||||
from homeassistant.components.unifiprotect.const import DEFAULT_ATTRIBUTION
|
from homeassistant.components.unifiprotect.const import (
|
||||||
|
ATTR_EVENT_SCORE,
|
||||||
|
DEFAULT_ATTRIBUTION,
|
||||||
|
)
|
||||||
from homeassistant.components.unifiprotect.sensor import (
|
from homeassistant.components.unifiprotect.sensor import (
|
||||||
ALL_DEVICES_SENSORS,
|
ALL_DEVICES_SENSORS,
|
||||||
CAMERA_DISABLED_SENSORS,
|
CAMERA_DISABLED_SENSORS,
|
||||||
@ -713,6 +716,129 @@ async def test_camera_update_license_plate_changes_number_during_detect(
|
|||||||
assert state.state == "none"
|
assert state.state == "none"
|
||||||
|
|
||||||
|
|
||||||
|
async def test_camera_update_license_plate_multiple_updates(
|
||||||
|
hass: HomeAssistant, ufp: MockUFPFixture, camera: Camera, fixed_now: datetime
|
||||||
|
) -> None:
|
||||||
|
"""Test license plate sensor that updates multiple times."""
|
||||||
|
|
||||||
|
camera.feature_flags.smart_detect_types.append(SmartDetectObjectType.LICENSE_PLATE)
|
||||||
|
camera.feature_flags.has_smart_detect = True
|
||||||
|
camera.smart_detect_settings.object_types.append(
|
||||||
|
SmartDetectObjectType.LICENSE_PLATE
|
||||||
|
)
|
||||||
|
|
||||||
|
await init_entry(hass, ufp, [camera])
|
||||||
|
assert_entity_counts(hass, Platform.SENSOR, 23, 13)
|
||||||
|
|
||||||
|
_, entity_id = ids_from_device_description(
|
||||||
|
Platform.SENSOR, camera, LICENSE_PLATE_EVENT_SENSORS[0]
|
||||||
|
)
|
||||||
|
|
||||||
|
event_metadata = EventMetadata(
|
||||||
|
license_plate=LicensePlateMetadata(name="ABCD1234", confidence_level=95)
|
||||||
|
)
|
||||||
|
event = Event(
|
||||||
|
model=ModelType.EVENT,
|
||||||
|
id="test_event_id",
|
||||||
|
type=EventType.SMART_DETECT,
|
||||||
|
start=fixed_now - timedelta(seconds=1),
|
||||||
|
end=None,
|
||||||
|
score=100,
|
||||||
|
smart_detect_types=[SmartDetectObjectType.LICENSE_PLATE],
|
||||||
|
smart_detect_event_ids=[],
|
||||||
|
metadata=event_metadata,
|
||||||
|
api=ufp.api,
|
||||||
|
)
|
||||||
|
|
||||||
|
new_camera = camera.copy()
|
||||||
|
new_camera.is_smart_detected = True
|
||||||
|
new_camera.last_smart_detect_event_ids[SmartDetectObjectType.LICENSE_PLATE] = (
|
||||||
|
event.id
|
||||||
|
)
|
||||||
|
|
||||||
|
mock_msg = Mock()
|
||||||
|
mock_msg.changed_data = {}
|
||||||
|
mock_msg.new_obj = new_camera
|
||||||
|
|
||||||
|
ufp.api.bootstrap.cameras = {new_camera.id: new_camera}
|
||||||
|
ufp.api.bootstrap.events = {event.id: event}
|
||||||
|
|
||||||
|
state_changes: list[HAEvent[EventStateChangedData]] = async_capture_events(
|
||||||
|
hass, EVENT_STATE_CHANGED
|
||||||
|
)
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
state = hass.states.get(entity_id)
|
||||||
|
assert state
|
||||||
|
assert state.state == "ABCD1234"
|
||||||
|
assert state.attributes[ATTR_EVENT_SCORE] == 100
|
||||||
|
|
||||||
|
assert len(state_changes) == 1
|
||||||
|
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(state_changes) == 1
|
||||||
|
|
||||||
|
# Now mutate the original event so the score changes
|
||||||
|
event.score = 99
|
||||||
|
event_metadata.license_plate.name = "DCBA4321"
|
||||||
|
ufp.api.bootstrap.events = {event.id: event}
|
||||||
|
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(state_changes) == 2
|
||||||
|
state = hass.states.get(entity_id)
|
||||||
|
assert state
|
||||||
|
assert state.state == "DCBA4321"
|
||||||
|
assert state.attributes[ATTR_EVENT_SCORE] == 99
|
||||||
|
|
||||||
|
# Now mutate the original event so the score changes again
|
||||||
|
event.score = 40
|
||||||
|
ufp.api.bootstrap.events = {event.id: event}
|
||||||
|
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(state_changes) == 3
|
||||||
|
state = hass.states.get(entity_id)
|
||||||
|
assert state
|
||||||
|
assert state.state == "DCBA4321"
|
||||||
|
assert state.attributes[ATTR_EVENT_SCORE] == 40
|
||||||
|
|
||||||
|
# Now send the event again
|
||||||
|
ufp.api.bootstrap.events = {event.id: event}
|
||||||
|
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(state_changes) == 3
|
||||||
|
state = hass.states.get(entity_id)
|
||||||
|
assert state
|
||||||
|
assert state.state == "DCBA4321"
|
||||||
|
assert state.attributes[ATTR_EVENT_SCORE] == 40
|
||||||
|
|
||||||
|
# Now mutate the original event to add an end time
|
||||||
|
event.end = fixed_now + timedelta(seconds=1)
|
||||||
|
ufp.api.bootstrap.events = {event.id: event}
|
||||||
|
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(state_changes) == 4
|
||||||
|
state = hass.states.get(entity_id)
|
||||||
|
assert state
|
||||||
|
assert state.state == "none"
|
||||||
|
|
||||||
|
# Now send the event again
|
||||||
|
event.end = fixed_now + timedelta(seconds=1)
|
||||||
|
ufp.api.bootstrap.events = {event.id: event}
|
||||||
|
|
||||||
|
ufp.ws_msg(mock_msg)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(state_changes) == 4
|
||||||
|
state = hass.states.get(entity_id)
|
||||||
|
assert state
|
||||||
|
assert state.state == "none"
|
||||||
|
|
||||||
|
|
||||||
async def test_sensor_precision(
|
async def test_sensor_precision(
|
||||||
hass: HomeAssistant, ufp: MockUFPFixture, sensor_all: Sensor, fixed_now: datetime
|
hass: HomeAssistant, ufp: MockUFPFixture, sensor_all: Sensor, fixed_now: datetime
|
||||||
) -> None:
|
) -> None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user