No-op: whitespace.
[libdcp.git] / test / round_trip_test.cc
1 /*
2     Copyright (C) 2013-2015 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 "certificates.h"
21 #include "decrypted_kdm.h"
22 #include "encrypted_kdm.h"
23 #include "signer.h"
24 #include "mono_picture_asset.h"
25 #include "sound_asset.h"
26 #include "reel.h"
27 #include "test.h"
28 #include "cpl.h"
29 #include "mono_picture_frame.h"
30 #include "certificate_chain.h"
31 #include "mono_picture_asset_writer.h"
32 #include "reel_picture_asset.h"
33 #include "reel_mono_picture_asset.h"
34 #include "file.h"
35 #include "openjpeg_image.h"
36 #include "rgb_xyz.h"
37 #include "colour_conversion.h"
38 #include <boost/test/unit_test.hpp>
39 #include <boost/scoped_array.hpp>
40 #include <iostream>
41
42 using std::list;
43 using boost::shared_ptr;
44 using boost::scoped_array;
45
46 /** Build an encrypted picture asset and a KDM for it and check that the KDM can be decrypted */
47 BOOST_AUTO_TEST_CASE (round_trip_test)
48 {
49         shared_ptr<dcp::Signer> signer (new dcp::Signer ("openssl"));
50
51         boost::filesystem::path work_dir = "build/test/round_trip_test";
52         boost::filesystem::create_directory (work_dir);
53
54         shared_ptr<dcp::MonoPictureAsset> asset_A (new dcp::MonoPictureAsset (dcp::Fraction (24, 1)));
55         shared_ptr<dcp::PictureAssetWriter> writer = asset_A->start_write (work_dir / "video.mxf", dcp::SMPTE, false);
56         dcp::File j2c ("test/data/32x32_red_square.j2c");
57         for (int i = 0; i < 24; ++i) {
58                 writer->write (j2c.data (), j2c.size ());
59         }
60         writer->finalize ();
61
62         dcp::Key key;
63
64         asset_A->set_key (key);
65
66         shared_ptr<dcp::CPL> cpl (new dcp::CPL ("A Test DCP", dcp::FEATURE));
67         shared_ptr<dcp::Reel> reel (new dcp::Reel ());
68         reel->add (shared_ptr<dcp::ReelMonoPictureAsset> (new dcp::ReelMonoPictureAsset (asset_A, 0)));
69         cpl->add (reel);
70
71         /* A KDM using our certificate chain's leaf key pair */
72         dcp::DecryptedKDM kdm_A (
73                 cpl,
74                 key,
75                 dcp::LocalTime ("2013-01-01T00:00:00+00:00"),
76                 dcp::LocalTime ("2013-01-08T00:00:00+00:00"),
77                 "libdcp",
78                 "test",
79                 "2012-07-17T04:45:18+00:00"
80                 );
81
82         boost::filesystem::path const kdm_file = work_dir / "kdm.xml";
83
84         kdm_A.encrypt(signer, signer->certificates().leaf(), dcp::MODIFIED_TRANSITIONAL_1).as_xml (kdm_file);
85
86         /* Reload the KDM, using our private key to decrypt it */
87         dcp::DecryptedKDM kdm_B (dcp::EncryptedKDM (dcp::file_to_string (kdm_file)), signer->key ());
88
89         /* Check that the decrypted KDMKeys are the same as the ones we started with */
90         BOOST_CHECK_EQUAL (kdm_A.keys().size(), kdm_B.keys().size());
91         list<dcp::DecryptedKDMKey> keys_A = kdm_A.keys ();
92         list<dcp::DecryptedKDMKey> keys_B = kdm_B.keys ();
93         list<dcp::DecryptedKDMKey>::const_iterator i = keys_A.begin();
94         list<dcp::DecryptedKDMKey>::const_iterator j = keys_B.begin();
95         while (i != keys_A.end ()) {
96                 BOOST_CHECK (*i == *j);
97                 ++i;
98                 ++j;
99         }
100
101         /* Reload the picture asset */
102         shared_ptr<dcp::MonoPictureAsset> asset_B (
103                 new dcp::MonoPictureAsset (work_dir / "video.mxf")
104                 );
105
106         BOOST_CHECK (!kdm_B.keys().empty ());
107         asset_B->set_key (kdm_B.keys().front().key());
108
109         shared_ptr<dcp::OpenJPEGImage> xyz_A = asset_A->get_frame(0)->xyz_image ();
110         shared_ptr<dcp::OpenJPEGImage> xyz_B = asset_B->get_frame(0)->xyz_image ();
111
112         scoped_array<uint8_t> frame_A (new uint8_t[xyz_A->size().width * xyz_A->size().height * 4]);
113         dcp::xyz_to_rgba (xyz_A, dcp::ColourConversion::srgb_to_xyz(), frame_A.get());
114
115         scoped_array<uint8_t> frame_B (new uint8_t[xyz_B->size().width * xyz_B->size().height * 4]);
116         dcp::xyz_to_rgba (xyz_B, dcp::ColourConversion::srgb_to_xyz(), frame_B.get());
117
118         BOOST_CHECK_EQUAL (xyz_A->size().width, xyz_B->size().width);
119         BOOST_CHECK_EQUAL (xyz_A->size().height, xyz_B->size().height);
120         BOOST_CHECK_EQUAL (memcmp (frame_A.get(), frame_B.get(), xyz_A->size().width * xyz_A->size().height * 4), 0);
121 }