From d12cf77f25e6e39fbfd4b249690149309a21646e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 30 Aug 2017 00:56:39 +0100 Subject: [PATCH 1/1] New test. --- test/remake_with_subtitle_test.cc | 47 +++++++++++++++++++++++++++++++ test/wscript | 1 + 2 files changed, 48 insertions(+) create mode 100644 test/remake_with_subtitle_test.cc diff --git a/test/remake_with_subtitle_test.cc b/test/remake_with_subtitle_test.cc new file mode 100644 index 000000000..eb9ab568c --- /dev/null +++ b/test/remake_with_subtitle_test.cc @@ -0,0 +1,47 @@ +/* + Copyright (C) 2017 Carl Hetherington + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see . + +*/ + +#include "lib/ffmpeg_content.h" +#include "lib/content_factory.h" +#include "lib/subtitle_content.h" +#include "lib/film.h" +#include "test.h" +#include + +using boost::shared_ptr; +using boost::dynamic_pointer_cast; + +BOOST_AUTO_TEST_CASE (remake_with_subtitle_test) +{ + shared_ptr film = new_test_film2 ("remake_with_subtitle_test"); + shared_ptr content = dynamic_pointer_cast(content_factory(film, private_data / "prophet_short_clip.mkv").front()); + film->examine_and_add_content (content); + BOOST_REQUIRE (!wait_for_jobs ()); + content->subtitle->set_burn (true); + content->subtitle->set_use (true); + film->make_dcp (); + BOOST_REQUIRE (!wait_for_jobs ()); + + boost::filesystem::remove_all (film->dir (film->dcp_name(), false)); + + content->subtitle->set_use (false); + film->make_dcp (); + BOOST_REQUIRE (!wait_for_jobs ()); +} diff --git a/test/wscript b/test/wscript index bf22575f3..6340627cd 100644 --- a/test/wscript +++ b/test/wscript @@ -87,6 +87,7 @@ def build(bld): rect_test.cc reels_test.cc required_disk_space_test.cc + remake_with_subtitle_test.cc render_subtitles_test.cc scaling_test.cc silence_padding_test.cc -- 2.30.2