diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-08-30 00:56:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-08-30 00:56:39 +0100 |
| commit | d12cf77f25e6e39fbfd4b249690149309a21646e (patch) | |
| tree | 6033d96a614ff279b07525ae353f70ffd1f7cafa | |
| parent | 429094f009920a14353684e83b4628bfac323617 (diff) | |
New test.
| -rw-r--r-- | test/remake_with_subtitle_test.cc | 47 | ||||
| -rw-r--r-- | test/wscript | 1 |
2 files changed, 48 insertions, 0 deletions
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 <cth@carlh.net> + + 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 <http://www.gnu.org/licenses/>. + +*/ + +#include "lib/ffmpeg_content.h" +#include "lib/content_factory.h" +#include "lib/subtitle_content.h" +#include "lib/film.h" +#include "test.h" +#include <boost/test/unit_test.hpp> + +using boost::shared_ptr; +using boost::dynamic_pointer_cast; + +BOOST_AUTO_TEST_CASE (remake_with_subtitle_test) +{ + shared_ptr<Film> film = new_test_film2 ("remake_with_subtitle_test"); + shared_ptr<FFmpegContent> content = dynamic_pointer_cast<FFmpegContent>(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 |
