summaryrefslogtreecommitdiff
path: root/test/verify_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/verify_test.cc')
-rw-r--r--test/verify_test.cc37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc
index d744eff6..4d577a5a 100644
--- a/test/verify_test.cc
+++ b/test/verify_test.cc
@@ -735,3 +735,40 @@ BOOST_AUTO_TEST_CASE (verify_test21)
BOOST_CHECK_EQUAL (notes.back().code(), dcp::VerificationNote::XML_VALIDATION_ERROR);
}
+
+/* VF */
+BOOST_AUTO_TEST_CASE (verify_test22)
+{
+ boost::filesystem::path const ov_dir("build/test/verify_test22_ov");
+ boost::filesystem::remove_all (ov_dir);
+ boost::filesystem::create_directories (ov_dir);
+
+ shared_ptr<dcp::OpenJPEGImage> image = black_image ();
+ dcp::Data frame = dcp::compress_j2k (image, 100000000, 24, false, false);
+ BOOST_REQUIRE (frame.size() < 230000000 / (24 * 8));
+ dcp_from_frame (frame, ov_dir);
+
+ dcp::DCP ov (ov_dir);
+ ov.read ();
+
+ boost::filesystem::path const vf_dir("build/test/verify_test22_vf");
+ boost::filesystem::remove_all (vf_dir);
+ boost::filesystem::create_directories (vf_dir);
+
+ shared_ptr<dcp::Reel> reel(new dcp::Reel());
+ reel->add (ov.cpls().front()->reels().front()->main_picture());
+ shared_ptr<dcp::CPL> cpl(new dcp::CPL("hello", dcp::FEATURE));
+ cpl->add (reel);
+ dcp::DCP vf (vf_dir);
+ vf.add (cpl);
+ vf.write_xml (dcp::SMPTE);
+
+ vector<boost::filesystem::path> dirs;
+ dirs.push_back (vf_dir);
+ list<dcp::VerificationNote> notes = dcp::verify (dirs, &stage, &progress, "xsd");
+ dump_notes (notes);
+ BOOST_REQUIRE_EQUAL (notes.size(), 1);
+ BOOST_CHECK_EQUAL (notes.front().code(), dcp::VerificationNote::EXTERNAL_ASSET);
+}
+
+