Merge branch 'master' into 1.0
[libdcp.git] / test / decryption_test.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/test/unit_test.hpp>
21 #include "kdm.h"
22 #include "dcp.h"
23 #include "mono_picture_frame.h"
24 #include "cpl.h"
25 #include "argb_frame.h"
26 #include "mono_picture_mxf.h"
27 #include "reel.h"
28 #include "test.h"
29
30 using boost::dynamic_pointer_cast;
31 using boost::shared_ptr;
32
33 static shared_ptr<const dcp::ARGBFrame>
34 get_frame (dcp::DCP const & dcp)
35 {
36         shared_ptr<const dcp::Reel> reel = dcp.cpls().front()->reels().front ();
37         shared_ptr<const dcp::PictureMXF> picture = reel->main_picture ();
38         BOOST_CHECK (picture);
39
40         shared_ptr<const dcp::MonoPictureMXF> mono_picture = dynamic_pointer_cast<const dcp::MonoPictureMXF> (picture);
41         shared_ptr<const dcp::MonoPictureFrame> j2k_frame = mono_picture->get_frame (0);
42         return j2k_frame->argb_frame ();
43 }
44
45 /** Decrypt an encrypted test DCP and check that its first frame is the same as the unencrypted version */
46 BOOST_AUTO_TEST_CASE (decryption_test)
47 {
48         boost::filesystem::path plaintext_path = test_corpus;
49         plaintext_path /= "TONEPLATES-SMPTE-PLAINTEXT_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV";
50         dcp::DCP plaintext (plaintext_path.string ());
51         plaintext.read ();
52         BOOST_CHECK_EQUAL (plaintext.encrypted (), false);
53
54         boost::filesystem::path encrypted_path = test_corpus;
55         encrypted_path /= "TONEPLATES-SMPTE-ENCRYPTED_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV";
56         dcp::DCP encrypted (encrypted_path.string ());
57         encrypted.read ();
58         BOOST_CHECK_EQUAL (encrypted.encrypted (), true);
59
60         dcp::KDM kdm (
61                 "test/data/kdm_TONEPLATES-SMPTE-ENC_.smpte-430-2.ROOT.NOT_FOR_PRODUCTION_20130706_20230702_CAR_OV_t1_8971c838.xml",
62                 "test/data/private.key"
63                 );
64
65         encrypted.add_kdm (kdm);
66
67         shared_ptr<const dcp::ARGBFrame> plaintext_frame = get_frame (plaintext);
68         shared_ptr<const dcp::ARGBFrame> encrypted_frame = get_frame (encrypted);
69
70         /* Check that plaintext and encrypted are the same */
71         BOOST_CHECK_EQUAL (plaintext_frame->stride(), encrypted_frame->stride());
72         BOOST_CHECK_EQUAL (plaintext_frame->size().width, encrypted_frame->size().width);
73         BOOST_CHECK_EQUAL (plaintext_frame->size().height, encrypted_frame->size().height);
74         BOOST_CHECK_EQUAL (memcmp (plaintext_frame->data(), encrypted_frame->data(), plaintext_frame->stride() * plaintext_frame->size().height), 0);
75 }
76
77 /** Load in a KDM that didn't work at first */
78 BOOST_AUTO_TEST_CASE (failing_kdm_test)
79 {
80         dcp::KDM kdm (
81                 "test/data/target.pem.crt.de5d4eba-e683-41ca-bdda-aa4ad96af3f4.kdm.xml",
82                 "test/data/private.key"
83                 );
84 }