feat: make sure max_video_quality setting is working

This commit is contained in:
2026-05-16 16:07:52 +03:00
parent 4cd6255b0f
commit 1928f70928
9 changed files with 118 additions and 18 deletions
+15
View File
@@ -0,0 +1,15 @@
from __future__ import annotations
from src.app.core.download.downloader import Downloader
def test_build_format_defaults_to_best_mp4():
fmt = Downloader.build_format(None)
assert "height<=" not in fmt
assert "best[ext=mp4]" in fmt
def test_build_format_applies_height_cap():
fmt = Downloader.build_format("720p")
assert "height<=720" in fmt