summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-04-17 16:20:35 +0100
committerCarl Hetherington <cth@carlh.net>2019-04-17 16:20:35 +0100
commit3c5060ce61d208a1752b63b3a13502ca51e75bdf (patch)
tree01bf07623a359e1c0c4c129da7b569043d861462
parentee83945f23b5d9c3ec06f0658a7ccca14a2c7890 (diff)
Add test for bug #1528.
m---------test/data0
-rw-r--r--test/vf_test.cc35
2 files changed, 35 insertions, 0 deletions
diff --git a/test/data b/test/data
-Subproject 14b0c5d2b85b94a5c3c4d4cb0c952a4c228f2eb
+Subproject aa4953ed0621b3867f490b6179662cd665940a6
diff --git a/test/vf_test.cc b/test/vf_test.cc
index b36cc6567..b82c3c889 100644
--- a/test/vf_test.cc
+++ b/test/vf_test.cc
@@ -301,3 +301,38 @@ BOOST_AUTO_TEST_CASE (vf_test5)
BOOST_CHECK (i->period == DCPTimePeriod(DCPTime(960000), DCPTime(1440000)));
++i;
}
+
+/** Test bug #1528 */
+BOOST_AUTO_TEST_CASE (vf_test6)
+{
+ /* Make the OV */
+ shared_ptr<Film> ov = new_test_film ("vf_test6_ov");
+ ov->set_dcp_content_type (DCPContentType::from_isdcf_name("TST"));
+ ov->set_reel_type (REELTYPE_BY_VIDEO_CONTENT);
+ shared_ptr<Content> video = content_factory("test/data/flat_red.png").front();
+ ov->examine_and_add_content (video);
+ BOOST_REQUIRE (!wait_for_jobs());
+ video->video->set_length (24 * 10);
+ ov->make_dcp ();
+ BOOST_REQUIRE (!wait_for_jobs());
+
+ /* Make the VF */
+ shared_ptr<Film> vf = new_test_film ("vf_test6_vf");
+ vf->set_name ("vf_test6_vf");
+ vf->set_dcp_content_type (DCPContentType::from_isdcf_name("TST"));
+ vf->set_reel_type (REELTYPE_BY_VIDEO_CONTENT);
+ vf->set_sequence (false);
+ shared_ptr<DCPContent> dcp (new DCPContent(ov->dir(ov->dcp_name())));
+ BOOST_REQUIRE (dcp);
+ vf->examine_and_add_content (dcp);
+ BOOST_REQUIRE (!wait_for_jobs());
+ dcp->set_reference_video (true);
+ dcp->set_reference_audio (true);
+
+ shared_ptr<Content> sub = content_factory("test/data/15s.srt").front();
+ vf->examine_and_add_content (sub);
+ BOOST_REQUIRE (!wait_for_jobs());
+
+ vf->make_dcp ();
+ BOOST_REQUIRE (!wait_for_jobs());
+}