X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fvf_kdm_test.cc;h=9b987a703eb9e3847f12002933325634fe639628;hb=1dc6582928b72c151c2ba5c3b8e9b9fd16905e3e;hp=c7b0669c959e2fe42eb24e5da041a9fb44b5e849;hpb=133b7998c72f6d3dd520423810ed6219e40d2552;p=dcpomatic.git diff --git a/test/vf_kdm_test.cc b/test/vf_kdm_test.cc index c7b0669c9..9b987a703 100644 --- a/test/vf_kdm_test.cc +++ b/test/vf_kdm_test.cc @@ -18,6 +18,11 @@ */ +/** @file test/vf_kdm_test.cc + * @brief Test encrypted VF creation and import + * @ingroup feature + */ + #include "test.h" #include "lib/film.h" #include "lib/dcp_subtitle_content.h" @@ -27,11 +32,13 @@ #include "lib/ffmpeg_content.h" #include "lib/config.h" #include "lib/cross.h" +#include "lib/screen.h" #include #include using std::vector; -using boost::shared_ptr; +using std::string; +using std::shared_ptr; BOOST_AUTO_TEST_CASE (vf_kdm_test) { @@ -43,12 +50,12 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) A->set_name ("frobozz"); A->set_interop (true); - shared_ptr c (new FFmpegContent (A, "test/data/test.mp4")); + shared_ptr c (new FFmpegContent("test/data/test.mp4")); A->examine_and_add_content (c); A->set_encrypted (true); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); A->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); dcp::DCP A_dcp ("build/test/vf_kdm_test_ov/" + A->dcp_name()); A_dcp.read (); @@ -57,11 +64,12 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) dcp::EncryptedKDM A_kdm = A->make_kdm ( Config::instance()->decryption_chain()->leaf (), - vector (), + vector(), A_dcp.cpls().front()->file().get(), - dcp::LocalTime ("2014-07-21T00:00:00+00:00"), - dcp::LocalTime ("2024-07-21T00:00:00+00:00"), - dcp::MODIFIED_TRANSITIONAL_1 + dcp::LocalTime ("2030-07-21T00:00:00+00:00"), + dcp::LocalTime ("2031-07-21T00:00:00+00:00"), + dcp::Formulation::MODIFIED_TRANSITIONAL_1, + true, 0 ); /* Import A into a new project, with the required KDM, and make a VF that refers to it */ @@ -72,25 +80,26 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) B->set_name ("frobozz"); B->set_interop (true); - shared_ptr d (new DCPContent (B, "build/test/vf_kdm_test_ov/" + A->dcp_name())); + shared_ptr d (new DCPContent ("build/test/vf_kdm_test_ov/" + A->dcp_name())); d->add_kdm (A_kdm); d->set_reference_video (true); B->examine_and_add_content (d); B->set_encrypted (true); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); B->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); dcp::DCP B_dcp ("build/test/vf_kdm_test_vf/" + B->dcp_name()); B_dcp.read (); dcp::EncryptedKDM B_kdm = B->make_kdm ( Config::instance()->decryption_chain()->leaf (), - vector (), + vector(), B_dcp.cpls().front()->file().get(), - dcp::LocalTime ("2014-07-21T00:00:00+00:00"), - dcp::LocalTime ("2024-07-21T00:00:00+00:00"), - dcp::MODIFIED_TRANSITIONAL_1 + dcp::LocalTime ("2030-07-21T00:00:00+00:00"), + dcp::LocalTime ("2031-07-21T00:00:00+00:00"), + dcp::Formulation::MODIFIED_TRANSITIONAL_1, + true, 0 ); /* Import the OV and VF into a new project with the KDM that was created for the VF. @@ -103,13 +112,13 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) C->set_name ("frobozz"); C->set_interop (true); - shared_ptr e (new DCPContent (C, "build/test/vf_kdm_test_vf/" + B->dcp_name())); + shared_ptr e (new DCPContent ("build/test/vf_kdm_test_vf/" + B->dcp_name())); e->add_kdm (B_kdm); e->add_ov ("build/test/vf_kdm_test_ov/" + A->dcp_name()); C->examine_and_add_content (e); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); C->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); /* Should be 1s red, 1s green, 1s blue */ check_dcp ("test/data/vf_kdm_test_check", "build/test/vf_kdm_test_check/" + C->dcp_name());