Supporters update.
[dcpomatic.git] / test / recover_test.cc
1 /*
2     Copyright (C) 2014-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/recover_test.cc
23  *  @brief Test recovery of a DCP transcode after a crash.
24  *  @ingroup feature
25  */
26
27
28 #include "test.h"
29 #include "lib/film.h"
30 #include "lib/dcp_content_type.h"
31 #include "lib/image_content.h"
32 #include "lib/ffmpeg_content.h"
33 #include "lib/video_content.h"
34 #include "lib/ratio.h"
35 #include <dcp/equality_options.h>
36 #include <dcp/mono_picture_asset.h>
37 #include <dcp/stereo_picture_asset.h>
38 #include <boost/test/unit_test.hpp>
39 #include <iostream>
40
41
42 using std::cout;
43 using std::make_shared;
44 using std::string;
45 #if BOOST_VERSION >= 106100
46 using namespace boost::placeholders;
47 #endif
48
49
50 static void
51 note (dcp::NoteType t, string n)
52 {
53         if (t == dcp::NoteType::ERROR) {
54                 cout << n << "\n";
55         }
56 }
57
58
59 BOOST_AUTO_TEST_CASE (recover_test_2d)
60 {
61         auto film = new_test_film("recover_test_2d");
62         film->set_interop (false);
63         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
64         film->set_container (Ratio::from_id ("185"));
65         film->set_name ("recover_test");
66
67         auto content = make_shared<FFmpegContent>("test/data/count300bd24.m2ts");
68         film->examine_and_add_content (content);
69         BOOST_REQUIRE (!wait_for_jobs());
70
71         make_and_verify_dcp (
72                 film,
73                 {
74                         dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE,
75                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE
76                 });
77
78         boost::filesystem::path const video = "build/test/recover_test_2d/video/185_2K_4650f318cea570763a0c6411c8c098ce_24_100000000_P_S_L21_0_1200000.mxf";
79         boost::filesystem::copy_file (
80                 video,
81                 "build/test/recover_test_2d/original.mxf"
82                 );
83
84         boost::filesystem::resize_file (video, 2 * 1024 * 1024);
85
86         make_and_verify_dcp(
87                 film,
88                 {
89                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE,
90                         dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE
91                 },
92                 true,
93                 /* We end up with two CPLs in this directory, which Clairmeta gives an error for */
94                 false
95                 );
96
97         auto A = make_shared<dcp::MonoPictureAsset>("build/test/recover_test_2d/original.mxf");
98         auto B = make_shared<dcp::MonoPictureAsset>(video);
99
100         dcp::EqualityOptions eq;
101         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
102 }
103
104
105 BOOST_AUTO_TEST_CASE (recover_test_3d, * boost::unit_test::depends_on("recover_test_2d"))
106 {
107         auto film = new_test_film ("recover_test_3d");
108         film->set_interop (false);
109         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
110         film->set_container (Ratio::from_id ("185"));
111         film->set_name ("recover_test");
112         film->set_three_d (true);
113
114         auto content = make_shared<ImageContent>("test/data/3d_test");
115         content->video->set_frame_type (VideoFrameType::THREE_D_LEFT_RIGHT);
116         film->examine_and_add_content (content);
117         BOOST_REQUIRE (!wait_for_jobs());
118
119         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
120
121         boost::filesystem::path const video = "build/test/recover_test_3d/video/185_2K_60a75a531ca9546bdd513163117e2214_24_100000000_P_S_L21_3D_0_96000.mxf";
122
123         boost::filesystem::copy_file (
124                 video,
125                 "build/test/recover_test_3d/original.mxf"
126                 );
127
128         boost::filesystem::resize_file (video, 2 * 1024 * 1024);
129
130         make_and_verify_dcp(
131                 film,
132                 {
133                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE
134                 },
135                 true,
136                 /* We end up with two CPLs in this directory, which Clairmeta gives an error for */
137                 false
138                 );
139
140         auto A = make_shared<dcp::StereoPictureAsset>("build/test/recover_test_3d/original.mxf");
141         auto B = make_shared<dcp::StereoPictureAsset>(video);
142
143         dcp::EqualityOptions eq;
144         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
145 }
146
147
148 BOOST_AUTO_TEST_CASE (recover_test_2d_encrypted, * boost::unit_test::depends_on("recover_test_3d"))
149 {
150         auto film = new_test_film ("recover_test_2d_encrypted");
151         film->set_interop (false);
152         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
153         film->set_container (Ratio::from_id ("185"));
154         film->set_name ("recover_test");
155         film->set_encrypted (true);
156         film->_key = dcp::Key("eafcb91c9f5472edf01f3a2404c57258");
157
158         auto content = make_shared<FFmpegContent>("test/data/count300bd24.m2ts");
159         film->examine_and_add_content (content);
160         BOOST_REQUIRE (!wait_for_jobs());
161
162         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
163
164         boost::filesystem::path const video =
165                 "build/test/recover_test_2d_encrypted/video/185_2K_4650f318cea570763a0c6411c8c098ce_24_100000000_Eeafcb91c9f5472edf01f3a2404c57258_S_L21_0_1200000.mxf";
166
167         boost::filesystem::copy_file (
168                 video,
169                 "build/test/recover_test_2d_encrypted/original.mxf"
170                 );
171
172         boost::filesystem::resize_file (video, 2 * 1024 * 1024);
173
174         make_and_verify_dcp(
175                 film,
176                 {
177                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE
178                 },
179                 true,
180                 /* We end up with two CPLs in this directory, which Clairmeta gives an error for */
181                 false
182                 );
183
184         auto A = make_shared<dcp::MonoPictureAsset>("build/test/recover_test_2d_encrypted/original.mxf");
185         A->set_key (film->key ());
186         auto B = make_shared<dcp::MonoPictureAsset>(video);
187         B->set_key (film->key ());
188
189         dcp::EqualityOptions eq;
190         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
191 }