New test.
authorCarl Hetherington <cth@carlh.net>
Tue, 29 Aug 2017 23:56:39 +0000 (00:56 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 29 Aug 2017 23:56:39 +0000 (00:56 +0100)
test/remake_with_subtitle_test.cc [new file with mode: 0644]
test/wscript

diff --git a/test/remake_with_subtitle_test.cc b/test/remake_with_subtitle_test.cc
new file mode 100644 (file)
index 0000000..eb9ab56
--- /dev/null
@@ -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 ());
+}
index bf22575f39334a1ac7d6901c266971dc74915fbd..6340627cd04266d00a7c42dc77d68e219e1aa965 100644 (file)
@@ -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