BOOST_FOREACH.
[dcpomatic.git] / test / reels_test.cc
index c6fb21977ed108bffc7ec4ad7a6d8aacdedff1d2..c7b33d39417a81b3c03e85abf701ea54e918d5fb 100644 (file)
@@ -20,7 +20,7 @@
 
 /** @file  test/reels_test.cc
  *  @brief Check manipulation of reels in various ways.
- *  @ingroup specific
+ *  @ingroup feature
  */
 
 #include "lib/film.h"
 #include "lib/content_factory.h"
 #include "test.h"
 #include <boost/test/unit_test.hpp>
-#include <boost/foreach.hpp>
 #include <iostream>
 
 using std::list;
 using std::cout;
 using std::vector;
 using std::string;
-using boost::shared_ptr;
+using std::shared_ptr;
 using boost::function;
 using namespace dcpomatic;
 
@@ -59,13 +58,13 @@ BOOST_AUTO_TEST_CASE (reels_test1)
 
        film->set_reel_type (REELTYPE_SINGLE);
        list<DCPTimePeriod> r = film->reels ();
-       BOOST_CHECK_EQUAL (r.size(), 1);
+       BOOST_CHECK_EQUAL (r.size(), 1U);
        BOOST_CHECK_EQUAL (r.front().from.get(), 0);
        BOOST_CHECK_EQUAL (r.front().to.get(), 288000 * 2);
 
        film->set_reel_type (REELTYPE_BY_VIDEO_CONTENT);
        r = film->reels ();
-       BOOST_CHECK_EQUAL (r.size(), 2);
+       BOOST_CHECK_EQUAL (r.size(), 2U);
        BOOST_CHECK_EQUAL (r.front().from.get(), 0);
        BOOST_CHECK_EQUAL (r.front().to.get(), 288000);
        BOOST_CHECK_EQUAL (r.back().from.get(), 288000);
@@ -76,7 +75,7 @@ BOOST_AUTO_TEST_CASE (reels_test1)
        /* This is just over 2.5s at 100Mbit/s; should correspond to 60 frames */
        film->set_reel_length (31253154);
        r = film->reels ();
-       BOOST_CHECK_EQUAL (r.size(), 3);
+       BOOST_CHECK_EQUAL (r.size(), 3U);
        list<DCPTimePeriod>::const_iterator i = r.begin ();
        BOOST_CHECK_EQUAL (i->from.get(), 0);
        BOOST_CHECK_EQUAL (i->to.get(), DCPTime::from_frames(60, 24).get());
@@ -121,6 +120,7 @@ BOOST_AUTO_TEST_CASE (reels_test2)
        }
 
        film->set_reel_type (REELTYPE_BY_VIDEO_CONTENT);
+       BOOST_CHECK_EQUAL (film->reels().size(), 3U);
        BOOST_REQUIRE (!wait_for_jobs());
 
        film->make_dcp ();
@@ -139,7 +139,7 @@ BOOST_AUTO_TEST_CASE (reels_test2)
        BOOST_REQUIRE (!wait_for_jobs ());
 
        list<DCPTimePeriod> r = film2->reels ();
-       BOOST_CHECK_EQUAL (r.size(), 3);
+       BOOST_CHECK_EQUAL (r.size(), 3U);
        list<DCPTimePeriod>::const_iterator i = r.begin ();
        BOOST_CHECK_EQUAL (i->from.get(), 0);
        BOOST_CHECK_EQUAL (i->to.get(), 96000);
@@ -175,7 +175,7 @@ BOOST_AUTO_TEST_CASE (reels_test3)
        BOOST_REQUIRE (!wait_for_jobs());
 
        list<DCPTimePeriod> reels = film->reels();
-       BOOST_REQUIRE_EQUAL (reels.size(), 4);
+       BOOST_REQUIRE_EQUAL (reels.size(), 4U);
        list<DCPTimePeriod>::const_iterator i = reels.begin ();
        BOOST_CHECK_EQUAL (i->from.get(), 0);
        BOOST_CHECK_EQUAL (i->to.get(), 96000);
@@ -216,7 +216,7 @@ BOOST_AUTO_TEST_CASE (reels_test4)
        BOOST_REQUIRE (!wait_for_jobs());
 
        list<DCPTimePeriod> reels = film->reels();
-       BOOST_REQUIRE_EQUAL (reels.size(), 4);
+       BOOST_REQUIRE_EQUAL (reels.size(), 4U);
        list<DCPTimePeriod>::const_iterator i = reels.begin ();
        BOOST_CHECK_EQUAL (i->from.get(), 0);
        BOOST_CHECK_EQUAL (i->to.get(), 96000);
@@ -249,7 +249,7 @@ BOOST_AUTO_TEST_CASE (reels_test5)
 
        {
                list<DCPTimePeriod> p = dcp->reels (film);
-               BOOST_REQUIRE_EQUAL (p.size(), 4);
+               BOOST_REQUIRE_EQUAL (p.size(), 4U);
                list<DCPTimePeriod>::const_iterator i = p.begin();
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 0), DCPTime(4000 + 96000)));
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 96000), DCPTime(4000 + 192000)));
@@ -260,7 +260,7 @@ BOOST_AUTO_TEST_CASE (reels_test5)
        {
                dcp->set_trim_start (ContentTime::from_seconds (0.5));
                list<DCPTimePeriod> p = dcp->reels (film);
-               BOOST_REQUIRE_EQUAL (p.size(), 4);
+               BOOST_REQUIRE_EQUAL (p.size(), 4U);
                list<DCPTimePeriod>::const_iterator i = p.begin();
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 0), DCPTime(4000 + 48000)));
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 48000), DCPTime(4000 + 144000)));
@@ -271,7 +271,7 @@ BOOST_AUTO_TEST_CASE (reels_test5)
        {
                dcp->set_trim_end (ContentTime::from_seconds (0.5));
                list<DCPTimePeriod> p = dcp->reels (film);
-               BOOST_REQUIRE_EQUAL (p.size(), 4);
+               BOOST_REQUIRE_EQUAL (p.size(), 4U);
                list<DCPTimePeriod>::const_iterator i = p.begin();
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 0), DCPTime(4000 + 48000)));
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 48000), DCPTime(4000 + 144000)));
@@ -282,7 +282,7 @@ BOOST_AUTO_TEST_CASE (reels_test5)
        {
                dcp->set_trim_start (ContentTime::from_seconds (1.5));
                list<DCPTimePeriod> p = dcp->reels (film);
-               BOOST_REQUIRE_EQUAL (p.size(), 3);
+               BOOST_REQUIRE_EQUAL (p.size(), 3U);
                list<DCPTimePeriod>::const_iterator i = p.begin();
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 0), DCPTime(4000 + 48000)));
                BOOST_CHECK (*i++ == DCPTimePeriod (DCPTime(4000 + 48000), DCPTime(4000 + 144000)));
@@ -325,12 +325,12 @@ BOOST_AUTO_TEST_CASE (reels_test7)
        film->examine_and_add_content (B);
        BOOST_REQUIRE (!wait_for_jobs ());
        film->set_video_frame_rate (24);
-       A->video->set_length (3 * 24);
+       A->video->set_length (2 * 24);
 
        film->set_reel_type (REELTYPE_BY_VIDEO_CONTENT);
-       BOOST_REQUIRE_EQUAL (film->reels().size(), 2);
-       BOOST_CHECK (film->reels().front() == DCPTimePeriod(DCPTime(0), DCPTime::from_frames(3 * 24, 24)));
-       BOOST_CHECK (film->reels().back() == DCPTimePeriod(DCPTime::from_frames(3 * 24, 24), DCPTime::from_frames(3 * 24 + 1, 24)));
+       BOOST_REQUIRE_EQUAL (film->reels().size(), 2U);
+       BOOST_CHECK (film->reels().front() == DCPTimePeriod(DCPTime(0), DCPTime::from_frames(2 * 24, 24)));
+       BOOST_CHECK (film->reels().back() == DCPTimePeriod(DCPTime::from_frames(2 * 24, 24), DCPTime::from_frames(3 * 24 + 1, 24)));
 
        film->make_dcp ();
        BOOST_REQUIRE (!wait_for_jobs ());
@@ -438,7 +438,7 @@ BOOST_AUTO_TEST_CASE (reels_test11)
        BOOST_CHECK_EQUAL (A->end(film).get(), DCPTime::from_seconds(1 + 10).get());
 
        list<DCPTimePeriod> r = film->reels ();
-       BOOST_CHECK_EQUAL (r.size(), 2);
+       BOOST_CHECK_EQUAL (r.size(), 2U);
        BOOST_CHECK_EQUAL (r.front().from.get(), 0);
        BOOST_CHECK_EQUAL (r.front().to.get(), DCPTime::from_seconds(1).get());
        BOOST_CHECK_EQUAL (r.back().from.get(), DCPTime::from_seconds(1).get());
@@ -470,7 +470,7 @@ BOOST_AUTO_TEST_CASE (reels_test12)
        B->set_position (film, DCPTime::from_seconds(14));
 
        list<DCPTimePeriod> r = film->reels ();
-       BOOST_REQUIRE_EQUAL (r.size(), 4);
+       BOOST_REQUIRE_EQUAL (r.size(), 4U);
        list<DCPTimePeriod>::const_iterator i = r.begin ();
 
        BOOST_CHECK_EQUAL (i->from.get(), 0);
@@ -492,6 +492,14 @@ no_op ()
 
 }
 
+static void
+dump_notes (list<dcp::VerificationNote> const & notes)
+{
+       for (auto i: notes) {
+               std::cout << dcp::note_to_string(i) << "\n";
+       }
+}
+
 
 /** Using less than 1 second's worth of content should not result in a reel
  *  of less than 1 second's duration.
@@ -506,12 +514,20 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short1)
        BOOST_REQUIRE (!wait_for_jobs());
        A->video->set_length (23);
 
+       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 (23);
+       B->set_position (film, DCPTime::from_frames(23, 24));
+
        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());
+       list<dcp::VerificationNote> const notes = dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd());
+       dump_notes (notes);
+       BOOST_REQUIRE (notes.empty());
 }
 
 /** Leaving less than 1 second's gap between two pieces of content with
@@ -539,7 +555,9 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short2)
 
        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());
+       list<dcp::VerificationNote> const notes = dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd());
+       dump_notes (notes);
+       BOOST_REQUIRE (notes.empty());
 }
 
 /** Setting REELTYPE_BY_LENGTH and using a small length value should not make
@@ -561,8 +579,9 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short3)
        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());
+       list<dcp::VerificationNote> const notes = dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd());
+       dump_notes (notes);
+       BOOST_REQUIRE (notes.empty());
 }
 
 /** Having one piece of content less than 1s long in REELTYPE_BY_VIDEO_CONTENT
@@ -590,6 +609,8 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short4)
 
        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());
+       list<dcp::VerificationNote> const notes = dcp::verify(dirs, boost::bind(&no_op), boost::bind(&no_op), TestPaths::xsd());
+       dump_notes (notes);
+       BOOST_REQUIRE (notes.empty());
 }