video-processor/tests/unit/test_ffmpeg_utils.py
Ryan Malloy bcd37ba55f Implement comprehensive 360° video processing system (Phase 4)
This milestone completes the video processor with full 360° video support:

## New Features
- Complete 360° video analysis and processing pipeline
- Multi-projection support (equirectangular, cubemap, EAC, stereographic, fisheye)
- Viewport extraction and animated viewport tracking
- Spatial audio processing (ambisonic, binaural, object-based)
- 360° adaptive streaming with tiled encoding
- AI-enhanced 360° content analysis integration
- Comprehensive test infrastructure with synthetic video generation

## Core Components
- Video360Processor: Complete 360° analysis and processing
- ProjectionConverter: Batch conversion between projections
- SpatialAudioProcessor: Advanced spatial audio handling
- Video360StreamProcessor: Viewport-adaptive streaming
- Comprehensive data models and validation

## Test Infrastructure
- 360° video downloader with curated test sources
- Synthetic 360° video generator for CI/CD
- Integration tests covering full processing pipeline
- Performance benchmarks for parallel processing

## Documentation & Examples
- Complete 360° processing examples and workflows
- Comprehensive development summary documentation
- Integration guides for all four processing phases

This completes the roadmap: AI analysis, advanced codecs, streaming, and 360° video processing.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-06 08:42:44 -06:00

144 lines
5.0 KiB
Python

"""Test FFmpeg utilities."""
import subprocess
from unittest.mock import Mock, patch
import pytest
from video_processor.exceptions import FFmpegError
from video_processor.utils.ffmpeg import FFmpegUtils
class TestFFmpegUtils:
"""Test FFmpeg utility functions."""
def test_ffmpeg_detection(self):
"""Test FFmpeg binary detection."""
# Test with default path
available = FFmpegUtils.check_ffmpeg_available()
if not available:
pytest.skip("FFmpeg not available on system")
assert available is True
@patch("subprocess.run")
def test_ffmpeg_not_found(self, mock_run):
"""Test handling when FFmpeg is not found."""
mock_run.side_effect = FileNotFoundError()
available = FFmpegUtils.check_ffmpeg_available("/nonexistent/ffmpeg")
assert available is False
@patch("subprocess.run")
def test_ffmpeg_timeout(self, mock_run):
"""Test FFmpeg timeout handling."""
mock_run.side_effect = subprocess.TimeoutExpired(cmd=["ffmpeg"], timeout=10)
available = FFmpegUtils.check_ffmpeg_available()
assert available is False
@patch("subprocess.run")
def test_get_ffmpeg_version(self, mock_run):
"""Test getting FFmpeg version."""
mock_run.return_value = Mock(
returncode=0, stdout="ffmpeg version 4.4.2-0ubuntu0.22.04.1"
)
version = FFmpegUtils.get_ffmpeg_version()
assert version == "4.4.2-0ubuntu0.22.04.1"
@patch("subprocess.run")
def test_get_ffmpeg_version_failure(self, mock_run):
"""Test getting FFmpeg version when it fails."""
mock_run.return_value = Mock(returncode=1)
version = FFmpegUtils.get_ffmpeg_version()
assert version is None
def test_validate_input_file_exists(self, valid_video):
"""Test validating existing input file."""
# This should not raise an exception
try:
FFmpegUtils.validate_input_file(valid_video)
except FFmpegError:
pytest.skip("ffmpeg-python not available for file validation")
def test_validate_input_file_missing(self, temp_dir):
"""Test validating missing input file."""
missing_file = temp_dir / "missing.mp4"
with pytest.raises(FFmpegError) as exc_info:
FFmpegUtils.validate_input_file(missing_file)
assert "does not exist" in str(exc_info.value)
def test_validate_input_file_directory(self, temp_dir):
"""Test validating directory instead of file."""
with pytest.raises(FFmpegError) as exc_info:
FFmpegUtils.validate_input_file(temp_dir)
assert "not a file" in str(exc_info.value)
def test_estimate_processing_time_basic(self, temp_dir):
"""Test basic processing time estimation."""
# Create a dummy file for testing
dummy_file = temp_dir / "dummy.mp4"
dummy_file.touch()
try:
estimate = FFmpegUtils.estimate_processing_time(
input_file=dummy_file, output_formats=["mp4"], quality_preset="medium"
)
# Should return at least the minimum time
assert estimate >= 60
except Exception:
# If ffmpeg-python not available, skip
pytest.skip("ffmpeg-python not available for estimation")
@pytest.mark.parametrize("quality_preset", ["low", "medium", "high", "ultra"])
def test_estimate_processing_time_quality_presets(self, quality_preset, temp_dir):
"""Test processing time estimates for different quality presets."""
dummy_file = temp_dir / "dummy.mp4"
dummy_file.touch()
try:
estimate = FFmpegUtils.estimate_processing_time(
input_file=dummy_file,
output_formats=["mp4"],
quality_preset=quality_preset,
)
assert estimate >= 60
except Exception:
pytest.skip("ffmpeg-python not available for estimation")
@pytest.mark.parametrize(
"formats",
[
["mp4"],
["mp4", "webm"],
["mp4", "webm", "ogv"],
],
)
def test_estimate_processing_time_formats(self, formats, temp_dir):
"""Test processing time estimates for different format combinations."""
dummy_file = temp_dir / "dummy.mp4"
dummy_file.touch()
try:
estimate = FFmpegUtils.estimate_processing_time(
input_file=dummy_file, output_formats=formats, quality_preset="medium"
)
assert estimate >= 60
# More formats should take longer
if len(formats) > 1:
single_format_estimate = FFmpegUtils.estimate_processing_time(
input_file=dummy_file,
output_formats=formats[:1],
quality_preset="medium",
)
assert estimate >= single_format_estimate
except Exception:
pytest.skip("ffmpeg-python not available for estimation")