X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Freels_test.cc;h=8d15aba5291b28e30a5e661fd9c87d87dee244f4;hp=3d79017f0abdaec7be8024e313a2c6163a0aff88;hb=ffe35585f08d0a5aeccf3e32f9c4cd2a5a6f43f5;hpb=bc36ddea65fda2088f7e8fa98390e3feac07df84 diff --git a/test/reels_test.cc b/test/reels_test.cc index 3d79017f0..8d15aba52 100644 --- a/test/reels_test.cc +++ b/test/reels_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2015-2019 Carl Hetherington + Copyright (C) 2015-2020 Carl Hetherington This file is part of DCP-o-matic. @@ -39,7 +39,10 @@ using std::list; using std::cout; +using std::vector; +using std::string; using boost::shared_ptr; +using boost::function; using namespace dcpomatic; /** Test Film::reels() */ @@ -482,3 +485,32 @@ BOOST_AUTO_TEST_CASE (reels_test12) BOOST_CHECK_EQUAL (i->from.get(), DCPTime::from_seconds(14).get()); BOOST_CHECK_EQUAL (i->to.get(), DCPTime::from_seconds(19).get()); } + +static void +no_op () +{ + +} + + +/** Using less than 1 second's worth of content should not result in a reel + * of less than 1 second's duration. + */ +BOOST_AUTO_TEST_CASE (reels_should_not_be_short1) +{ + shared_ptr film = new_test_film2 ("reels_should_not_be_short1"); + film->set_video_frame_rate (24); + + shared_ptr A(new FFmpegContent("test/data/flat_red.png")); + film->examine_and_add_content (A); + BOOST_REQUIRE (!wait_for_jobs()); + A->video->set_length (23); + + film->make_dcp (); + BOOST_REQUIRE (!wait_for_jobs()); + + vector 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()); +} +