diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-03-09 21:12:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-03-11 22:24:28 +0100 |
| commit | 83d63558045e9c7e2a9d33074af518043c0907e5 (patch) | |
| tree | 614a069971623c3f4dcf425d63013a3f4351b5a6 | |
| parent | 5ff6b15ef3c58a046fb9eec0273c5e7322988a14 (diff) | |
Add a (failing) test for reels created between two other
pieces of content.
| -rw-r--r-- | test/reels_test.cc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/reels_test.cc b/test/reels_test.cc index 8d15aba52..99f9d70c8 100644 --- a/test/reels_test.cc +++ b/test/reels_test.cc @@ -514,3 +514,30 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short1) BOOST_REQUIRE (dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd).empty()); } +/** Leaving less than 1 second's gap between two pieces of content with + * REELTYPE_BY_VIDEO_CONTENT should not make a <1s reel. + */ +BOOST_AUTO_TEST_CASE (reels_should_not_be_short2) +{ + shared_ptr<Film> film = new_test_film2 ("reels_should_not_be_short2"); + film->set_video_frame_rate (24); + film->set_reel_type (REELTYPE_BY_VIDEO_CONTENT); + + 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); + + shared_ptr<FFmpegContent> B(new FFmpegContent("test/data/flat_red.png")); + film->examine_and_add_content (B); + BOOST_REQUIRE (!wait_for_jobs()); + B->video->set_length (240); + B->set_position (film, DCPTime::from_seconds(10.2)); + + 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()); +} |
