summaryrefslogtreecommitdiff
path: root/test/reels_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-09 21:15:47 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-11 22:24:28 +0100
commit83bda33c161b267ae35e474f0bfb16a1bb7ad281 (patch)
tree2a493f52ce1375099362bc90f97b650015e0bc5f /test/reels_test.cc
parent83d63558045e9c7e2a9d33074af518043c0907e5 (diff)
Failing test for reels with a short length (in bytes) specified.
Diffstat (limited to 'test/reels_test.cc')
-rw-r--r--test/reels_test.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/reels_test.cc b/test/reels_test.cc
index 99f9d70c8..bf40aa3a1 100644
--- a/test/reels_test.cc
+++ b/test/reels_test.cc
@@ -541,3 +541,27 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short2)
dirs.push_back (film->dir(film->dcp_name(false)));
BOOST_REQUIRE (dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd).empty());
}
+
+/** Setting REELTYPE_BY_LENGTH and using a small length value should not make
+ * <1s reels.
+ */
+BOOST_AUTO_TEST_CASE (reels_should_not_be_short3)
+{
+ shared_ptr<Film> film = new_test_film2 ("reels_should_not_be_short3");
+ film->set_video_frame_rate (24);
+ film->set_reel_type (REELTYPE_BY_LENGTH);
+ film->set_reel_length (1024 * 1024 * 10);
+
+ shared_ptr<FFmpegContent> A(new FFmpegContent("test/data/flat_red.png"));
+ film->examine_and_add_content (A);
+ BOOST_REQUIRE (!wait_for_jobs());
+ A->video->set_length (240);
+
+ film->make_dcp ();
+ BOOST_REQUIRE (!wait_for_jobs());
+
+ vector<boost::filesystem::path> dirs;
+ dirs.push_back (film->dir(film->dcp_name(false)));
+ BOOST_REQUIRE (dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd).empty());
+}
+