From 91ac4c4cee9ad18b00da5e51eb7e2cf2e3cc089d Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 14 Oct 2023 06:47:23 -0500 Subject: [PATCH] define detect resolution to speed up tests --- frigate/test/test_config.py | 110 ++++++++++++++++++++++++++++++++++-- 1 file changed, 105 insertions(+), 5 deletions(-) diff --git a/frigate/test/test_config.py b/frigate/test/test_config.py index ba6ecdcf5..ac3c11866 100644 --- a/frigate/test/test_config.py +++ b/frigate/test/test_config.py @@ -1027,7 +1027,12 @@ class TestConfig(unittest.TestCase): "roles": ["detect"], }, ] - } + }, + "detect": { + "height": 720, + "width": 1280, + "fps": 5, + }, } }, } @@ -1082,6 +1087,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "snapshots": { "height": 100, }, @@ -1107,7 +1117,12 @@ class TestConfig(unittest.TestCase): "roles": ["detect"], }, ] - } + }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1132,6 +1147,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "snapshots": { "height": 150, "enabled": True, @@ -1160,6 +1180,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1181,7 +1206,12 @@ class TestConfig(unittest.TestCase): "roles": ["detect"], }, ] - } + }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1205,6 +1235,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "rtmp": { "enabled": True, }, @@ -1234,6 +1269,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1257,6 +1297,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1278,7 +1323,12 @@ class TestConfig(unittest.TestCase): "roles": ["detect"], }, ] - } + }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1302,6 +1352,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "live": { "quality": 7, }, @@ -1329,6 +1384,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1350,7 +1410,12 @@ class TestConfig(unittest.TestCase): "roles": ["detect"], }, ] - } + }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1375,6 +1440,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "timestamp_style": {"position": "bl", "thickness": 4}, } }, @@ -1400,6 +1470,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1423,6 +1498,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1450,6 +1530,11 @@ class TestConfig(unittest.TestCase): }, ], }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, } }, } @@ -1475,6 +1560,11 @@ class TestConfig(unittest.TestCase): }, ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "zones": { "steps": { "coordinates": "0,0,0,0", @@ -1546,6 +1636,11 @@ class TestConfig(unittest.TestCase): {"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]} ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "onvif": {"autotracking": {"movement_weights": "1.23, 2.34, 0.50"}}, } }, @@ -1569,6 +1664,11 @@ class TestConfig(unittest.TestCase): {"path": "rtsp://10.0.0.1:554/video", "roles": ["detect"]} ] }, + "detect": { + "height": 1080, + "width": 1920, + "fps": 5, + }, "onvif": {"autotracking": {"movement_weights": "1.234, 2.345a"}}, } },