X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fvf_kdm_test.cc;h=ff7c07b73ca86fdbf018589c28eb1e7dc9ee3608;hb=1ff553f6752469b940b5c59e2a619e71736e7611;hp=5b6b73ac7ba5862781ccb60f79b6dd260e75f291;hpb=5fda411ef3a01526c9d84d2cab0c3c28f00fa322;p=dcpomatic.git diff --git a/test/vf_kdm_test.cc b/test/vf_kdm_test.cc index 5b6b73ac7..ff7c07b73 100644 --- a/test/vf_kdm_test.cc +++ b/test/vf_kdm_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2017 Carl Hetherington + Copyright (C) 2017-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,6 +18,13 @@ */ + +/** @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,64 +34,95 @@ #include "lib/ffmpeg_content.h" #include "lib/config.h" #include "lib/cross.h" +#include "lib/screen.h" #include #include + +using std::make_shared; +using std::shared_ptr; +using std::string; using std::vector; -using boost::shared_ptr; -/** Make an encrypted DCP, import it and make a new unencrypted DCP */ + BOOST_AUTO_TEST_CASE (vf_kdm_test) { - shared_ptr A = new_test_film ("vf_kdm_test_ov"); + ConfigRestorer cr; + + /* Make an encrypted DCP from test.mp4 */ + + auto A = new_test_film ("vf_kdm_test_ov"); A->set_container (Ratio::from_id ("185")); A->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); A->set_name ("frobozz"); + A->set_interop (true); - shared_ptr c (new FFmpegContent (A, "test/data/test.mp4")); + auto c = make_shared("test/data/test.mp4"); A->examine_and_add_content (c); A->set_encrypted (true); - wait_for_jobs (); - A->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); + make_and_verify_dcp (A, {dcp::VerificationNote::Code::INVALID_STANDARD}); + + dcp::DCP A_dcp ("build/test/vf_kdm_test_ov/" + A->dcp_name()); + A_dcp.read (); + + Config::instance()->set_decryption_chain (make_shared(openssl_path(), CERTIFICATE_VALIDITY_PERIOD)); + + auto A_kdm = A->make_kdm ( + Config::instance()->decryption_chain()->leaf(), + vector(), + A_dcp.cpls().front()->file().get(), + 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 */ - shared_ptr B = new_test_film ("vf_kdm_test_vf"); - B->set_container (Ratio::from_id ("185")); - B->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); + auto B = new_test_film ("vf_kdm_test_vf"); + B->set_container (Ratio::from_id("185")); + B->set_dcp_content_type (DCPContentType::from_isdcf_name("TLR")); B->set_name ("frobozz"); + B->set_interop (true); - shared_ptr d (new DCPContent (B, "build/test/vf_kdm_test_ov/" + A->dcp_name())); + auto d = make_shared("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 (); - B->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); + make_and_verify_dcp (B, {dcp::VerificationNote::Code::INVALID_STANDARD, dcp::VerificationNote::Code::EXTERNAL_ASSET}); dcp::DCP B_dcp ("build/test/vf_kdm_test_vf/" + B->dcp_name()); B_dcp.read (); - Config::instance()->set_decryption_chain (shared_ptr (new dcp::CertificateChain (openssl_path ()))); - - dcp::EncryptedKDM kdm = B->make_kdm ( + auto 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 ); - shared_ptr C = new_test_film ("vf_kdm_test_check"); - B->set_container (Ratio::from_id ("185")); - B->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); - B->set_name ("frobozz"); + /* Import the OV and VF into a new project with the KDM that was created for the VF. + This KDM should decrypt assets from the OV too. + */ + + auto C = new_test_film ("vf_kdm_test_check"); + C->set_container (Ratio::from_id ("185")); + C->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); + C->set_name ("frobozz"); + C->set_interop (true); - shared_ptr e (new DCPContent (C, "build/test/vf_kdm_test_vf/" + B->dcp_name())); - e->add_kdm (kdm); + auto e = make_shared("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 (); - C->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); + make_and_verify_dcp (C, {dcp::VerificationNote::Code::INVALID_STANDARD}); /* 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());