Cleanup: use some more make_shared.
[dcpomatic.git] / test / vf_kdm_test.cc
1 /*
2     Copyright (C) 2017-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 /** @file  test/vf_kdm_test.cc
23  *  @brief Test encrypted VF creation and import
24  *  @ingroup feature
25  */
26
27
28 #include "test.h"
29 #include "lib/film.h"
30 #include "lib/dcp_subtitle_content.h"
31 #include "lib/ratio.h"
32 #include "lib/dcp_content_type.h"
33 #include "lib/dcp_content.h"
34 #include "lib/ffmpeg_content.h"
35 #include "lib/config.h"
36 #include "lib/cross.h"
37 #include "lib/screen.h"
38 #include <dcp/cpl.h>
39 #include <boost/test/unit_test.hpp>
40
41
42 using std::make_shared;
43 using std::shared_ptr;
44 using std::string;
45 using std::vector;
46
47
48 BOOST_AUTO_TEST_CASE (vf_kdm_test)
49 {
50         ConfigRestorer cr;
51
52         /* Make an encrypted DCP from test.mp4 */
53
54         auto A = new_test_film ("vf_kdm_test_ov");
55         A->set_container (Ratio::from_id ("185"));
56         A->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
57         A->set_name ("frobozz");
58         A->set_interop (true);
59
60         auto c = make_shared<FFmpegContent>("test/data/test.mp4");
61         A->examine_and_add_content (c);
62         A->set_encrypted (true);
63         BOOST_REQUIRE (!wait_for_jobs());
64         make_and_verify_dcp (A, {dcp::VerificationNote::Code::INVALID_STANDARD});
65
66         dcp::DCP A_dcp ("build/test/vf_kdm_test_ov/" + A->dcp_name());
67         A_dcp.read ();
68
69         Config::instance()->set_decryption_chain (make_shared<dcp::CertificateChain>(openssl_path(), CERTIFICATE_VALIDITY_PERIOD));
70
71         auto A_kdm = A->make_kdm (
72                 Config::instance()->decryption_chain()->leaf(),
73                 vector<string>(),
74                 A_dcp.cpls().front()->file().get(),
75                 dcp::LocalTime("2030-07-21T00:00:00+00:00"),
76                 dcp::LocalTime("2031-07-21T00:00:00+00:00"),
77                 dcp::Formulation::MODIFIED_TRANSITIONAL_1,
78                 true, 0
79                 );
80
81         /* Import A into a new project, with the required KDM, and make a VF that refers to it */
82
83         auto B = new_test_film ("vf_kdm_test_vf");
84         B->set_container (Ratio::from_id("185"));
85         B->set_dcp_content_type (DCPContentType::from_isdcf_name("TLR"));
86         B->set_name ("frobozz");
87         B->set_interop (true);
88
89         auto d = make_shared<DCPContent>("build/test/vf_kdm_test_ov/" + A->dcp_name());
90         d->add_kdm (A_kdm);
91         d->set_reference_video (true);
92         B->examine_and_add_content (d);
93         B->set_encrypted (true);
94         BOOST_REQUIRE (!wait_for_jobs());
95         make_and_verify_dcp (B, {dcp::VerificationNote::Code::INVALID_STANDARD, dcp::VerificationNote::Code::EXTERNAL_ASSET});
96
97         dcp::DCP B_dcp ("build/test/vf_kdm_test_vf/" + B->dcp_name());
98         B_dcp.read ();
99
100         auto B_kdm = B->make_kdm (
101                 Config::instance()->decryption_chain()->leaf (),
102                 vector<string>(),
103                 B_dcp.cpls().front()->file().get(),
104                 dcp::LocalTime ("2030-07-21T00:00:00+00:00"),
105                 dcp::LocalTime ("2031-07-21T00:00:00+00:00"),
106                 dcp::Formulation::MODIFIED_TRANSITIONAL_1,
107                 true, 0
108                 );
109
110         /* Import the OV and VF into a new project with the KDM that was created for the VF.
111            This KDM should decrypt assets from the OV too.
112         */
113
114         auto C = new_test_film ("vf_kdm_test_check");
115         C->set_container (Ratio::from_id ("185"));
116         C->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
117         C->set_name ("frobozz");
118         C->set_interop (true);
119
120         auto e = make_shared<DCPContent>("build/test/vf_kdm_test_vf/" + B->dcp_name());
121         e->add_kdm (B_kdm);
122         e->add_ov ("build/test/vf_kdm_test_ov/" + A->dcp_name());
123         C->examine_and_add_content (e);
124         BOOST_REQUIRE (!wait_for_jobs());
125         make_and_verify_dcp (C, {dcp::VerificationNote::Code::INVALID_STANDARD});
126
127         /* Should be 1s red, 1s green, 1s blue */
128         check_dcp ("test/data/vf_kdm_test_check", "build/test/vf_kdm_test_check/" + C->dcp_name());
129 }