2019-01-13 11:37:15 +00:00
|
|
|
"""
|
|
|
|
- Test Output classes.
|
|
|
|
- Integration tests (see conftest.py).
|
|
|
|
"""
|
2018-12-23 21:18:56 +00:00
|
|
|
import shutil
|
2018-11-25 12:43:43 +00:00
|
|
|
from fractions import Fraction
|
2018-08-27 11:55:36 +00:00
|
|
|
from pathlib import Path
|
2018-08-18 08:46:33 +00:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
|
|
import pytest
|
2018-08-18 09:16:01 +00:00
|
|
|
|
2018-12-20 10:31:55 +00:00
|
|
|
from corrscope.channel import ChannelConfig
|
2019-01-13 11:37:15 +00:00
|
|
|
from corrscope.corrscope import default_config, Config, CorrScope, Arguments
|
2019-01-03 08:57:30 +00:00
|
|
|
from corrscope.outputs import (
|
|
|
|
RGB_DEPTH,
|
|
|
|
FFmpegOutput,
|
|
|
|
FFmpegOutputConfig,
|
|
|
|
FFplayOutput,
|
|
|
|
FFplayOutputConfig,
|
|
|
|
)
|
2018-12-20 10:31:55 +00:00
|
|
|
from corrscope.renderer import RendererConfig, MatplotlibRenderer
|
2018-08-18 08:46:33 +00:00
|
|
|
from tests.test_renderer import WIDTH, HEIGHT, ALL_ZEROS
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
import pytest_mock
|
|
|
|
|
2018-12-23 21:18:56 +00:00
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
if not shutil.which("ffmpeg"):
|
|
|
|
pytestmark = pytest.mark.skip("Missing ffmpeg, skipping output tests")
|
2018-12-23 21:18:56 +00:00
|
|
|
|
|
|
|
|
2018-08-18 08:46:33 +00:00
|
|
|
CFG = default_config(render=RendererConfig(WIDTH, HEIGHT))
|
2019-01-03 08:57:30 +00:00
|
|
|
NULL_OUTPUT = FFmpegOutputConfig(None, "-f null")
|
2018-08-18 08:46:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_render_output():
|
|
|
|
""" Ensure rendering to output does not raise exceptions. """
|
2018-11-05 23:45:38 +00:00
|
|
|
renderer = MatplotlibRenderer(CFG.render, CFG.layout, nplots=1, channel_cfgs=None)
|
2018-11-25 12:43:43 +00:00
|
|
|
out: FFmpegOutput = NULL_OUTPUT(CFG)
|
2018-08-18 08:46:33 +00:00
|
|
|
|
|
|
|
renderer.render_frame([ALL_ZEROS])
|
|
|
|
out.write_frame(renderer.get_frame())
|
|
|
|
|
|
|
|
assert out.close() == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_output():
|
2018-11-25 12:43:43 +00:00
|
|
|
out: FFmpegOutput = NULL_OUTPUT(CFG)
|
2018-08-18 08:46:33 +00:00
|
|
|
|
|
|
|
frame = bytes(WIDTH * HEIGHT * RGB_DEPTH)
|
|
|
|
out.write_frame(frame)
|
|
|
|
|
|
|
|
assert out.close() == 0
|
2018-08-27 11:55:36 +00:00
|
|
|
# Ensure video is written to stdout, and not current directory.
|
2019-01-03 08:57:30 +00:00
|
|
|
assert not Path("-").exists()
|
2018-08-18 08:46:33 +00:00
|
|
|
|
|
|
|
|
2018-12-20 10:31:55 +00:00
|
|
|
# Ensure CorrScope closes pipe to output upon completion.
|
2019-01-03 08:57:30 +00:00
|
|
|
@pytest.mark.usefixtures("Popen")
|
2018-08-29 08:08:05 +00:00
|
|
|
def test_close_output(Popen):
|
|
|
|
""" FFplayOutput unit test: Ensure ffmpeg and ffplay are terminated when Python
|
|
|
|
exceptions occur.
|
|
|
|
"""
|
2018-08-18 08:46:33 +00:00
|
|
|
|
2018-08-29 08:08:05 +00:00
|
|
|
ffplay_cfg = FFplayOutputConfig()
|
|
|
|
output: FFplayOutput
|
|
|
|
with ffplay_cfg(CFG) as output:
|
|
|
|
pass
|
|
|
|
|
|
|
|
output._pipeline[0].stdin.close.assert_called()
|
|
|
|
for popen in output._pipeline:
|
|
|
|
popen.wait.assert_called() # Does wait() need to be called?
|
2018-08-18 08:46:33 +00:00
|
|
|
|
2018-08-29 08:08:05 +00:00
|
|
|
|
2018-12-20 10:31:55 +00:00
|
|
|
# Ensure CorrScope terminates FFplay upon exceptions.
|
2019-01-03 08:57:30 +00:00
|
|
|
@pytest.mark.usefixtures("Popen")
|
2018-08-18 08:46:33 +00:00
|
|
|
def test_terminate_ffplay(Popen):
|
|
|
|
""" FFplayOutput unit test: Ensure ffmpeg and ffplay are terminated when Python
|
|
|
|
exceptions occur.
|
|
|
|
"""
|
|
|
|
|
|
|
|
ffplay_cfg = FFplayOutputConfig()
|
|
|
|
try:
|
|
|
|
output: FFplayOutput
|
|
|
|
with ffplay_cfg(CFG) as output:
|
|
|
|
raise DummyException
|
|
|
|
|
|
|
|
except DummyException:
|
|
|
|
for popen in output._pipeline:
|
|
|
|
popen.terminate.assert_called()
|
|
|
|
|
|
|
|
|
2018-11-25 12:43:43 +00:00
|
|
|
def sine440_config():
|
|
|
|
cfg = default_config(
|
2019-01-03 08:57:30 +00:00
|
|
|
channels=[ChannelConfig("tests/sine440.wav")],
|
|
|
|
master_audio="tests/sine440.wav",
|
2018-11-25 12:43:43 +00:00
|
|
|
end_time=0.5, # Reduce test duration
|
|
|
|
)
|
|
|
|
return cfg
|
|
|
|
|
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
@pytest.mark.usefixtures("Popen")
|
|
|
|
def test_corr_terminate_ffplay(Popen, mocker: "pytest_mock.MockFixture"):
|
2018-12-20 10:31:55 +00:00
|
|
|
""" Integration test: Ensure corrscope calls terminate() on ffmpeg and ffplay when
|
2018-08-28 10:03:19 +00:00
|
|
|
Python exceptions occur. """
|
2018-08-18 08:46:33 +00:00
|
|
|
|
2018-11-25 12:43:43 +00:00
|
|
|
cfg = sine440_config()
|
2019-01-03 08:57:30 +00:00
|
|
|
corr = CorrScope(cfg, Arguments(".", [FFplayOutputConfig()]))
|
2018-08-18 09:16:01 +00:00
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
render_frame = mocker.patch.object(MatplotlibRenderer, "render_frame")
|
2018-08-18 09:16:01 +00:00
|
|
|
render_frame.side_effect = DummyException()
|
2018-08-18 08:46:33 +00:00
|
|
|
with pytest.raises(DummyException):
|
2018-12-20 10:31:55 +00:00
|
|
|
corr.play()
|
2018-08-18 08:46:33 +00:00
|
|
|
|
2018-12-20 10:31:55 +00:00
|
|
|
assert len(corr.outputs) == 1
|
|
|
|
output: FFplayOutput = corr.outputs[0]
|
2018-08-18 08:46:33 +00:00
|
|
|
|
|
|
|
for popen in output._pipeline:
|
|
|
|
popen.terminate.assert_called()
|
|
|
|
|
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
@pytest.mark.skip("Launches ffmpeg and ffplay processes, creating a ffplay window")
|
2018-12-20 10:31:55 +00:00
|
|
|
def test_corr_terminate_works():
|
2018-08-28 10:03:19 +00:00
|
|
|
""" Ensure that ffmpeg/ffplay terminate quickly after Python exceptions, when
|
|
|
|
`popen.terminate()` is called. """
|
|
|
|
|
2018-11-25 12:43:43 +00:00
|
|
|
cfg = sine440_config()
|
2019-01-03 08:57:30 +00:00
|
|
|
corr = CorrScope(cfg, Arguments(".", [FFplayOutputConfig()]))
|
2018-12-20 10:31:55 +00:00
|
|
|
corr.raise_on_teardown = DummyException
|
2018-08-28 10:03:19 +00:00
|
|
|
|
|
|
|
with pytest.raises(DummyException):
|
|
|
|
# Raises `subprocess.TimeoutExpired` if popen.terminate() doesn't work.
|
2018-12-20 10:31:55 +00:00
|
|
|
corr.play()
|
2018-08-28 10:03:19 +00:00
|
|
|
|
|
|
|
|
2018-12-20 10:31:55 +00:00
|
|
|
def test_corr_output_without_audio():
|
|
|
|
"""Ensure running CorrScope with FFmpeg output, with master audio disabled,
|
2018-11-25 12:43:43 +00:00
|
|
|
does not crash.
|
|
|
|
"""
|
|
|
|
cfg = sine440_config()
|
|
|
|
cfg.master_audio = None
|
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
corr = CorrScope(cfg, Arguments(".", [NULL_OUTPUT]))
|
2018-11-25 12:43:43 +00:00
|
|
|
# Should not raise exception.
|
2018-12-20 10:31:55 +00:00
|
|
|
corr.play()
|
2018-11-25 12:43:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_render_subfps_one():
|
|
|
|
""" Ensure video gets rendered when render_subfps=1.
|
|
|
|
This test fails if ceildiv is used to calculate `ahead`.
|
|
|
|
"""
|
2018-12-20 10:31:55 +00:00
|
|
|
from corrscope.outputs import IOutputConfig, Output, register_output
|
2018-11-25 12:43:43 +00:00
|
|
|
|
|
|
|
# region DummyOutput
|
|
|
|
class DummyOutputConfig(IOutputConfig):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@register_output(DummyOutputConfig)
|
|
|
|
class DummyOutput(Output):
|
|
|
|
frames_written = 0
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def write_frame(cls, frame: bytes) -> None:
|
|
|
|
cls.frames_written += 1
|
|
|
|
|
|
|
|
assert DummyOutput
|
|
|
|
# endregion
|
|
|
|
|
2018-12-20 10:31:55 +00:00
|
|
|
# Create CorrScope with render_subfps=1. Ensure multiple frames are outputted.
|
2018-11-25 12:43:43 +00:00
|
|
|
cfg = sine440_config()
|
|
|
|
cfg.render_subfps = 1
|
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
corr = CorrScope(cfg, Arguments(".", [DummyOutputConfig()]))
|
2018-12-20 10:31:55 +00:00
|
|
|
corr.play()
|
2018-11-25 12:43:43 +00:00
|
|
|
assert DummyOutput.frames_written >= 2
|
|
|
|
|
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
def test_render_subfps_non_integer(mocker: "pytest_mock.MockFixture"):
|
2018-11-25 12:43:43 +00:00
|
|
|
""" Ensure we output non-integer subfps as fractions,
|
|
|
|
and that ffmpeg doesn't crash.
|
|
|
|
TODO does ffmpeg understand decimals??
|
|
|
|
"""
|
|
|
|
|
|
|
|
cfg = sine440_config()
|
|
|
|
cfg.fps = 60
|
|
|
|
cfg.render_subfps = 7
|
|
|
|
|
|
|
|
# By default, we output render_fps (ffmpeg -framerate) as a fraction.
|
|
|
|
assert isinstance(cfg.render_fps, Fraction)
|
|
|
|
assert cfg.render_fps != int(cfg.render_fps)
|
|
|
|
assert Fraction(1) == int(1)
|
|
|
|
|
2019-01-03 08:57:30 +00:00
|
|
|
corr = CorrScope(cfg, Arguments(".", [NULL_OUTPUT]))
|
2018-12-20 10:31:55 +00:00
|
|
|
corr.play()
|
2018-11-25 12:43:43 +00:00
|
|
|
|
|
|
|
# But it seems FFmpeg actually allows decimal -framerate (although a bad idea).
|
2018-12-20 10:31:55 +00:00
|
|
|
# from corrscope.corrscope import Config
|
2018-11-25 12:43:43 +00:00
|
|
|
# render_fps = mocker.patch.object(Config, 'render_fps',
|
|
|
|
# new_callable=mocker.PropertyMock)
|
|
|
|
# render_fps.return_value = 60 / 7
|
|
|
|
# assert isinstance(cfg.render_fps, float)
|
2018-12-20 10:31:55 +00:00
|
|
|
# corr = CorrScope(cfg, '.', outputs=[NULL_OUTPUT])
|
|
|
|
# corr.play()
|
2018-11-25 12:43:43 +00:00
|
|
|
|
2018-08-24 08:21:05 +00:00
|
|
|
|
2018-11-25 12:43:43 +00:00
|
|
|
# Possibility: add a test to ensure that we render slightly ahead in time
|
|
|
|
# when subfps>1, to avoid frames lagging behind audio.
|
2018-08-24 08:21:05 +00:00
|
|
|
|
|
|
|
|
2018-08-18 08:46:33 +00:00
|
|
|
class DummyException(Exception):
|
|
|
|
pass
|
2019-01-13 11:36:44 +00:00
|
|
|
|
|
|
|
|
2019-01-13 11:37:15 +00:00
|
|
|
# Tests for Output-dependent performance options
|
|
|
|
|
|
|
|
|
|
|
|
def perf_cfg():
|
|
|
|
""" Return config which reduces rendering workload when previewing. """
|
|
|
|
cfg = sine440_config()
|
|
|
|
|
|
|
|
# Skip frames.
|
|
|
|
assert cfg.end_time == 0.5
|
|
|
|
cfg.render_subfps = 2
|
|
|
|
|
|
|
|
# Divide dimensions.
|
|
|
|
cfg.render.width = 192
|
|
|
|
cfg.render.height = 108
|
|
|
|
cfg.render.res_divisor = 1.5
|
|
|
|
|
|
|
|
return cfg
|
|
|
|
|
|
|
|
|
|
|
|
def previews_records(mocker):
|
|
|
|
configs = (Config, RendererConfig)
|
|
|
|
|
|
|
|
previews = [mocker.spy(cls, "before_preview") for cls in configs]
|
|
|
|
records = [mocker.spy(cls, "before_record") for cls in configs]
|
|
|
|
return previews, records
|
|
|
|
|
|
|
|
|
|
|
|
NO_FFMPEG = [[], [FFplayOutputConfig()]]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures("Popen") # Prevents FFplayOutput from launching processes.
|
|
|
|
@pytest.mark.parametrize("outputs", NO_FFMPEG)
|
|
|
|
def test_preview_performance(Popen, mocker: "pytest_mock.MockFixture", outputs):
|
|
|
|
""" Ensure performance optimizations enabled
|
|
|
|
if all outputs are FFplay or others. """
|
|
|
|
get_frame = mocker.spy(MatplotlibRenderer, "get_frame")
|
|
|
|
previews, records = previews_records(mocker)
|
|
|
|
|
|
|
|
cfg = perf_cfg()
|
|
|
|
corr = CorrScope(cfg, Arguments(".", outputs))
|
|
|
|
corr.play()
|
|
|
|
|
|
|
|
# Check that only before_preview() called.
|
|
|
|
for p in previews:
|
|
|
|
p.assert_called()
|
|
|
|
for r in records:
|
|
|
|
r.assert_not_called()
|
|
|
|
|
|
|
|
# Check renderer is 128x72
|
|
|
|
assert corr.renderer.cfg.width == 128
|
|
|
|
assert corr.renderer.cfg.height == 72
|
|
|
|
|
|
|
|
# Ensure subfps is enabled (only odd frames are rendered, 1..29).
|
|
|
|
# See CorrScope `should_render` variable.
|
|
|
|
assert (
|
|
|
|
get_frame.call_count == round(cfg.end_time * cfg.fps / cfg.render_subfps) == 15
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
YES_FFMPEG = [l + [FFmpegOutputConfig(None)] for l in NO_FFMPEG]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures("Popen")
|
|
|
|
@pytest.mark.parametrize("outputs", YES_FFMPEG)
|
|
|
|
def test_record_performance(Popen, mocker: "pytest_mock.MockFixture", outputs):
|
|
|
|
""" Ensure performance optimizations disabled
|
|
|
|
if any FFmpegOutputConfig is found. """
|
|
|
|
get_frame = mocker.spy(MatplotlibRenderer, "get_frame")
|
|
|
|
previews, records = previews_records(mocker)
|
|
|
|
|
|
|
|
cfg = perf_cfg()
|
|
|
|
corr = CorrScope(cfg, Arguments(".", outputs))
|
|
|
|
corr.play()
|
|
|
|
|
|
|
|
# Check that only before_record() called.
|
|
|
|
for p in previews:
|
|
|
|
p.assert_not_called()
|
|
|
|
for r in records:
|
|
|
|
r.assert_called()
|
|
|
|
|
|
|
|
# Check renderer is 192x108
|
|
|
|
assert corr.renderer.cfg.width == 192
|
|
|
|
assert corr.renderer.cfg.height == 108
|
|
|
|
|
|
|
|
# Ensure subfps is disabled.
|
|
|
|
assert get_frame.call_count == round(cfg.end_time * cfg.fps) + 1 == 31
|
|
|
|
|
2019-01-13 11:36:44 +00:00
|
|
|
|
|
|
|
# Moved to test_output.py from test_cli.py.
|
|
|
|
# Because test depends on ffmpeg (not available in Appveyor CI),
|
|
|
|
# and only test_output.py (not test_cli.py) is skipped in Appveyor.
|
|
|
|
def test_no_audio(mocker):
|
|
|
|
""" Corrscope Config without master audio should work. """
|
|
|
|
subdir = "tests"
|
|
|
|
wav = "sine440.wav"
|
|
|
|
|
|
|
|
channels = [ChannelConfig(wav)]
|
|
|
|
cfg = default_config(master_audio=None, channels=channels, begin_time=100)
|
|
|
|
# begin_time=100 skips all actual rendering.
|
|
|
|
|
|
|
|
output = FFmpegOutputConfig(None)
|
|
|
|
corr = CorrScope(cfg, Arguments(subdir, [output]))
|
2019-01-13 11:37:15 +00:00
|
|
|
corr.play()
|