2021-06-24 07:45:27 +02:00
|
|
|
import unittest
|
|
|
|
import numpy as np
|
|
|
|
from pydantic import ValidationError
|
|
|
|
from frigate.config import (
|
|
|
|
FrigateConfig,
|
|
|
|
DetectorTypeEnum,
|
|
|
|
)
|
2020-11-01 13:17:44 +01:00
|
|
|
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2021-06-24 07:45:27 +02:00
|
|
|
class TestConfig(unittest.TestCase):
|
2020-11-03 15:15:58 +01:00
|
|
|
def setUp(self):
|
|
|
|
self.minimal = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2021-06-24 07:45:27 +02:00
|
|
|
def test_config_class(self):
|
|
|
|
frigate_config = FrigateConfig(**self.minimal)
|
|
|
|
assert self.minimal == frigate_config.dict(exclude_unset=True)
|
2020-11-01 13:17:44 +01:00
|
|
|
|
2021-06-24 07:45:27 +02:00
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "coral" in runtime_config.detectors.keys()
|
|
|
|
assert runtime_config.detectors["coral"].type == DetectorTypeEnum.edgetpu
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2021-06-24 07:45:27 +02:00
|
|
|
def test_invalid_mqtt_config(self):
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt", "user": "test"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
self.assertRaises(ValidationError, lambda: FrigateConfig(**config))
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-03 15:15:58 +01:00
|
|
|
def test_inherit_tracked_objects(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"objects": {"track": ["person", "dog"]},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "dog" in runtime_config.cameras["back"].objects.track
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-03 15:15:58 +01:00
|
|
|
def test_override_tracked_objects(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"objects": {"track": ["person", "dog"]},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"objects": {"track": ["cat"]},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "cat" in runtime_config.cameras["back"].objects.track
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-03 15:15:58 +01:00
|
|
|
def test_default_object_filters(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"objects": {"track": ["person", "dog"]},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "dog" in runtime_config.cameras["back"].objects.filters
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-03 15:15:58 +01:00
|
|
|
def test_inherit_object_filters(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"objects": {
|
|
|
|
"track": ["person", "dog"],
|
|
|
|
"filters": {"dog": {"threshold": 0.7}},
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "dog" in runtime_config.cameras["back"].objects.filters
|
|
|
|
assert runtime_config.cameras["back"].objects.filters["dog"].threshold == 0.7
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-03 15:15:58 +01:00
|
|
|
def test_override_object_filters(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"objects": {
|
|
|
|
"track": ["person", "dog"],
|
|
|
|
"filters": {"dog": {"threshold": 0.7}},
|
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-03 15:15:58 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "dog" in runtime_config.cameras["back"].objects.filters
|
|
|
|
assert runtime_config.cameras["back"].objects.filters["dog"].threshold == 0.7
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2021-02-06 13:30:26 +01:00
|
|
|
def test_global_object_mask(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"objects": {"track": ["person", "dog"]},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2021-02-06 13:30:26 +01:00
|
|
|
]
|
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"objects": {
|
|
|
|
"mask": "0,0,1,1,0,1",
|
|
|
|
"filters": {"dog": {"mask": "1,1,1,1,1,1"}},
|
|
|
|
},
|
2021-02-06 13:30:26 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2021-02-06 13:30:26 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
back_camera = runtime_config.cameras["back"]
|
|
|
|
assert "dog" in back_camera.objects.filters
|
|
|
|
assert len(back_camera.objects.filters["dog"].raw_mask) == 2
|
|
|
|
assert len(back_camera.objects.filters["person"].raw_mask) == 1
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2021-07-10 03:21:35 +02:00
|
|
|
def test_default_input_args(self):
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "-rtsp_transport" in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
|
|
|
|
2021-02-05 14:22:33 +01:00
|
|
|
def test_ffmpeg_params_global(self):
|
2020-11-03 15:15:58 +01:00
|
|
|
config = {
|
2021-06-24 22:45:15 +02:00
|
|
|
"ffmpeg": {"input_args": "-re"},
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-03 15:15:58 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"objects": {
|
|
|
|
"track": ["person", "dog"],
|
|
|
|
"filters": {"dog": {"threshold": 0.7}},
|
|
|
|
},
|
2020-11-01 13:17:44 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-01 13:17:44 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "-re" in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
2021-02-05 14:22:33 +01:00
|
|
|
|
|
|
|
def test_ffmpeg_params_camera(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
2021-06-24 22:45:15 +02:00
|
|
|
"ffmpeg": {"input_args": ["test"]},
|
2021-02-17 14:23:32 +01:00
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2021-02-05 14:22:33 +01:00
|
|
|
],
|
2021-02-17 14:23:32 +01:00
|
|
|
"input_args": ["-re"],
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"objects": {
|
|
|
|
"track": ["person", "dog"],
|
|
|
|
"filters": {"dog": {"threshold": 0.7}},
|
2021-02-05 14:22:33 +01:00
|
|
|
},
|
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2021-02-05 14:22:33 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "-re" in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
2021-06-24 22:45:15 +02:00
|
|
|
assert "test" not in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
2021-02-05 14:22:33 +01:00
|
|
|
|
|
|
|
def test_ffmpeg_params_input(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
2021-06-24 22:45:15 +02:00
|
|
|
"ffmpeg": {"input_args": ["test2"]},
|
2021-02-17 14:23:32 +01:00
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
2021-06-24 22:45:15 +02:00
|
|
|
"input_args": "-re test",
|
2021-02-17 14:23:32 +01:00
|
|
|
}
|
2021-06-24 22:45:15 +02:00
|
|
|
],
|
|
|
|
"input_args": "test3",
|
2021-02-05 14:22:33 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"objects": {
|
|
|
|
"track": ["person", "dog"],
|
|
|
|
"filters": {"dog": {"threshold": 0.7}},
|
|
|
|
},
|
2021-02-05 14:22:33 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2021-02-05 14:22:33 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert "-re" in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
2021-06-24 22:45:15 +02:00
|
|
|
assert "test" in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
|
|
|
assert "test2" not in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
|
|
|
assert "test3" not in runtime_config.cameras["back"].ffmpeg_cmds[0]["cmd"]
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-12-23 14:16:37 +01:00
|
|
|
def test_inherit_clips_retention(self):
|
2020-11-23 15:25:46 +01:00
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"clips": {"retain": {"default": 20, "objects": {"person": 30}}},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
2020-11-23 15:25:46 +01:00
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-11-23 15:25:46 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-23 15:25:46 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert runtime_config.cameras["back"].clips.retain.objects["person"] == 30
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-29 22:55:53 +01:00
|
|
|
def test_roles_listed_twice_throws_error(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"clips": {"retain": {"default": 20, "objects": {"person": 30}}},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]},
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video2", "roles": ["detect"]},
|
2020-11-29 22:55:53 +01:00
|
|
|
]
|
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-11-29 22:55:53 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-29 22:55:53 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
self.assertRaises(ValidationError, lambda: FrigateConfig(**config))
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-11-30 02:00:46 +01:00
|
|
|
def test_zone_matching_camera_name_throws_error(self):
|
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"clips": {"retain": {"default": 20, "objects": {"person": 30}}},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-11-30 02:00:46 +01:00
|
|
|
]
|
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"zones": {"back": {"coordinates": "1,1,1,1,1,1"}},
|
2020-11-30 02:00:46 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-11-30 02:00:46 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
self.assertRaises(ValidationError, lambda: FrigateConfig(**config))
|
|
|
|
|
|
|
|
def test_zone_assigns_color_and_contour(self):
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"clips": {"retain": {"default": 20, "objects": {"person": 30}}},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"zones": {"test": {"coordinates": "1,1,1,1,1,1"}},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert isinstance(
|
|
|
|
runtime_config.cameras["back"].zones["test"].contour, np.ndarray
|
|
|
|
)
|
|
|
|
assert runtime_config.cameras["back"].zones["test"].color != (0, 0, 0)
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-12-23 14:16:37 +01:00
|
|
|
def test_clips_should_default_to_global_objects(self):
|
2020-12-04 13:59:03 +01:00
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"clips": {"retain": {"default": 20, "objects": {"person": 30}}},
|
|
|
|
"objects": {"track": ["person", "dog"]},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]}
|
2020-12-04 13:59:03 +01:00
|
|
|
]
|
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"clips": {"enabled": True},
|
2020-12-04 13:59:03 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-12-04 13:59:03 +01:00
|
|
|
}
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
back_camera = runtime_config.cameras["back"]
|
|
|
|
assert back_camera.clips.objects is None
|
|
|
|
assert back_camera.clips.retain.objects["person"] == 30
|
2021-02-17 14:23:32 +01:00
|
|
|
|
2020-12-07 15:07:35 +01:00
|
|
|
def test_role_assigned_but_not_enabled(self):
|
2021-06-24 07:45:27 +02:00
|
|
|
config = {
|
2021-02-17 14:23:32 +01:00
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect", "rtmp"],
|
|
|
|
},
|
|
|
|
{"path": "rtsp://10.0.0.1:554/record", "roles": ["record"]},
|
2020-12-07 15:07:35 +01:00
|
|
|
]
|
|
|
|
},
|
2021-02-17 14:23:32 +01:00
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
2020-12-07 15:07:35 +01:00
|
|
|
}
|
2021-02-17 14:23:32 +01:00
|
|
|
},
|
2020-12-07 15:07:35 +01:00
|
|
|
}
|
|
|
|
|
2021-06-24 07:45:27 +02:00
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
ffmpeg_cmds = runtime_config.cameras["back"].ffmpeg_cmds
|
2021-02-17 14:23:32 +01:00
|
|
|
assert len(ffmpeg_cmds) == 1
|
|
|
|
assert not "clips" in ffmpeg_cmds[0]["roles"]
|
2020-12-07 15:07:35 +01:00
|
|
|
|
2021-06-26 20:18:06 +02:00
|
|
|
def test_max_disappeared_default(self):
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
"detect": {"enabled": True},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert runtime_config.cameras["back"].detect.max_disappeared == 5 * 5
|
|
|
|
|
2021-07-01 14:47:22 +02:00
|
|
|
def test_motion_frame_height_wont_go_below_120(self):
|
2021-07-01 14:33:53 +02:00
|
|
|
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 480,
|
|
|
|
"width": 640,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
2021-07-01 14:47:22 +02:00
|
|
|
assert runtime_config.cameras["back"].motion.frame_height >= 120
|
|
|
|
|
|
|
|
def test_motion_contour_area_dynamic(self):
|
|
|
|
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
2021-07-08 05:01:59 +02:00
|
|
|
assert round(runtime_config.cameras["back"].motion.contour_area) == 99
|
2021-07-01 14:33:53 +02:00
|
|
|
|
2021-07-08 05:57:19 +02:00
|
|
|
def test_merge_labelmap(self):
|
|
|
|
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"model": {"labelmap": {7: "truck"}},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert runtime_config.model.merged_labelmap[7] == "truck"
|
|
|
|
|
|
|
|
def test_default_labelmap_empty(self):
|
|
|
|
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert runtime_config.model.merged_labelmap[0] == "person"
|
|
|
|
|
|
|
|
def test_default_labelmap(self):
|
|
|
|
|
|
|
|
config = {
|
|
|
|
"mqtt": {"host": "mqtt"},
|
|
|
|
"model": {"width": 320, "height": 320},
|
|
|
|
"cameras": {
|
|
|
|
"back": {
|
|
|
|
"ffmpeg": {
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"path": "rtsp://10.0.0.1:554/video",
|
|
|
|
"roles": ["detect"],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"height": 1080,
|
|
|
|
"width": 1920,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
frigate_config = FrigateConfig(**config)
|
|
|
|
assert config == frigate_config.dict(exclude_unset=True)
|
|
|
|
|
|
|
|
runtime_config = frigate_config.runtime_config
|
|
|
|
assert runtime_config.model.merged_labelmap[0] == "person"
|
|
|
|
|
2020-11-01 13:17:44 +01:00
|
|
|
|
2021-02-17 14:23:32 +01:00
|
|
|
if __name__ == "__main__":
|
2021-06-24 07:45:27 +02:00
|
|
|
unittest.main(verbosity=2)
|