#1: add tests for ffmpeg.run with cmd list

This commit is contained in:
Karl Kroening 2017-05-27 17:31:13 -10:00
parent a51cfe7f1c
commit cfe2995bac
2 changed files with 22 additions and 4 deletions

View File

@ -106,10 +106,10 @@ def get_args(node):
def run(node, cmd='ffmpeg'):
"""Run ffmpeg on node graph."""
if isinstance(cmd, basestring):
args = [cmd]
cmd = [cmd]
elif type(cmd) != list:
args = list(cmd)
args += node.get_args()
cmd = list(cmd)
args = cmd + node.get_args()
_subprocess.check_call(args)

View File

@ -1,5 +1,6 @@
import ffmpeg
import os
import pytest
import subprocess
@ -118,4 +119,21 @@ def test_get_args_complex_filter():
def test_run():
ffmpeg.run(_get_complex_filter_example())
node = _get_complex_filter_example()
ffmpeg.run(node)
def test_run_dummy_cmd():
node = _get_complex_filter_example()
ffmpeg.run(node, cmd='true')
def test_run_dummy_cmd_list():
node = _get_complex_filter_example()
ffmpeg.run(node, cmd=['true', 'ignored'])
def test_run_failing_cmd():
node = _get_complex_filter_example()
with pytest.raises(subprocess.CalledProcessError):
ffmpeg.run(node, cmd='false')