/* Copyright (C) 2013 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "kdm.h" #include "KM_util.h" #include "metadata.h" #include "certificates.h" #include "dcp.h" #include "signer.h" #include "cpl.h" #include "mono_picture_asset.h" #include "sound_asset.h" #include "reel.h" #include "test.h" #include "signer_chain.h" using boost::shared_ptr; /* Load a certificate chain from build/test/data/ *.pem and then build an encrypted DCP and a KDM using it. */ BOOST_AUTO_TEST_CASE (encryption) { boost::filesystem::remove_all ("build/test/signer"); boost::filesystem::create_directory ("build/test/signer"); libdcp::make_signer_chain ("build/test/signer"); Kumu::libdcp_test = true; libdcp::MXFMetadata mxf_metadata; mxf_metadata.company_name = "OpenDCP"; mxf_metadata.product_name = "OpenDCP"; mxf_metadata.product_version = "0.0.25"; libdcp::XMLMetadata xml_metadata; xml_metadata.issuer = "OpenDCP 0.0.25"; xml_metadata.creator = "OpenDCP 0.0.25"; xml_metadata.issue_date = "2012-07-17T04:45:18+00:00"; boost::filesystem::remove_all ("build/test/bar"); boost::filesystem::create_directories ("build/test/bar"); libdcp::DCP d ("build/test/DCP/bar"); libdcp::CertificateChain chain; chain.add (shared_ptr (new libdcp::Certificate (boost::filesystem::path ("build/test/signer/ca.self-signed.pem")))); chain.add (shared_ptr (new libdcp::Certificate (boost::filesystem::path ("build/test/signer/intermediate.signed.pem")))); chain.add (shared_ptr (new libdcp::Certificate (boost::filesystem::path ("build/test/signer/leaf.signed.pem")))); shared_ptr signer ( new libdcp::Signer ( chain, "test/data/signer.key" ) ); shared_ptr cpl (new libdcp::CPL ("build/test/bar", "A Test DCP", libdcp::FEATURE, 24, 24)); libdcp::Key key; shared_ptr mp (new libdcp::MonoPictureAsset ("build/test/bar", "video.mxf")); mp->set_progress (&d.Progress); mp->set_edit_rate (24); mp->set_intrinsic_duration (24); mp->set_duration (24); mp->set_size (libdcp::Size (32, 32)); mp->set_metadata (mxf_metadata); mp->set_key (key); mp->create (j2c); shared_ptr ms (new libdcp::SoundAsset ("build/test/bar", "audio.mxf")); ms->set_progress (&d.Progress); ms->set_edit_rate (24); ms->set_intrinsic_duration (24); mp->set_duration (24); ms->set_channels (2); ms->set_metadata (mxf_metadata); ms->set_key (key); ms->create (wav); cpl->add_reel (shared_ptr (new libdcp::Reel (mp, ms, shared_ptr ()))); d.add_cpl (cpl); d.write_xml (false, xml_metadata, signer); libdcp::KDM kdm ( cpl, signer, signer->certificates().leaf(), boost::posix_time::time_from_string ("2013-01-01 00:00:00"), boost::posix_time::time_from_string ("2013-01-08 00:00:00"), "libdcp", "2012-07-17T04:45:18+00:00" ); kdm.as_xml ("build/test/bar.kdm.xml"); system ("xmllint --path schema --nonet --noout --schema schema/SMPTE-430-1-2006-Amd-1-2009-KDM.xsd build/test/bar.kdm.xml"); }