fixup! WIP: stop using video directory and hard-linking (#2756).
[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_j2k_picture_asset.h>
37 #include <dcp/stereo_j2k_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         film->set_video_bit_rate(VideoEncoding::JPEG2000, 100000000);
67
68         auto content = make_shared<FFmpegContent>("test/data/count300bd24.m2ts");
69         film->examine_and_add_content (content);
70         BOOST_REQUIRE (!wait_for_jobs());
71
72         make_and_verify_dcp (
73                 film,
74                 {
75                         dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE,
76                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE
77                 });
78
79         auto video = [film]() {
80                 return find_file(boost::filesystem::path("build/test/recover_test_2d") / film->dcp_name(false), "j2c_");
81         };
82
83         boost::filesystem::copy_file (
84                 video(),
85                 "build/test/recover_test_2d/original.mxf"
86                 );
87
88         boost::filesystem::resize_file(video(), 2 * 1024 * 1024);
89
90         make_and_verify_dcp(
91                 film,
92                 {
93                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE,
94                         dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE
95                 },
96                 true,
97                 /* We end up with two CPLs in this directory, which Clairmeta gives an error for */
98                 false
99                 );
100
101         auto A = make_shared<dcp::MonoJ2KPictureAsset>("build/test/recover_test_2d/original.mxf");
102         auto B = make_shared<dcp::MonoJ2KPictureAsset>(video());
103
104         dcp::EqualityOptions eq;
105         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
106 }
107
108
109 BOOST_AUTO_TEST_CASE (recover_test_3d, * boost::unit_test::depends_on("recover_test_2d"))
110 {
111         auto film = new_test_film ("recover_test_3d");
112         film->set_interop (false);
113         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
114         film->set_container (Ratio::from_id ("185"));
115         film->set_name ("recover_test");
116         film->set_three_d (true);
117         film->set_video_bit_rate(VideoEncoding::JPEG2000, 100000000);
118
119         auto content = make_shared<ImageContent>("test/data/3d_test");
120         content->video->set_frame_type (VideoFrameType::THREE_D_LEFT_RIGHT);
121         film->examine_and_add_content (content);
122         BOOST_REQUIRE (!wait_for_jobs());
123
124         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
125
126         auto video = [film]() {
127                 return find_file(boost::filesystem::path("build/test/recover_test_3d") / film->dcp_name(false), "j2c_");
128         };
129
130         boost::filesystem::copy_file (
131                 video(),
132                 "build/test/recover_test_3d/original.mxf"
133                 );
134
135         boost::filesystem::resize_file(video(), 2 * 1024 * 1024);
136
137         make_and_verify_dcp(
138                 film,
139                 {
140                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE
141                 },
142                 true,
143                 /* We end up with two CPLs in this directory, which Clairmeta gives an error for */
144                 false
145                 );
146
147         auto A = make_shared<dcp::StereoJ2KPictureAsset>("build/test/recover_test_3d/original.mxf");
148         auto B = make_shared<dcp::StereoJ2KPictureAsset>(video());
149
150         dcp::EqualityOptions eq;
151         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
152 }
153
154
155 BOOST_AUTO_TEST_CASE (recover_test_2d_encrypted, * boost::unit_test::depends_on("recover_test_3d"))
156 {
157         auto film = new_test_film ("recover_test_2d_encrypted");
158         film->set_interop (false);
159         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
160         film->set_container (Ratio::from_id ("185"));
161         film->set_name ("recover_test");
162         film->set_encrypted (true);
163         film->_key = dcp::Key("eafcb91c9f5472edf01f3a2404c57258");
164         film->set_video_bit_rate(VideoEncoding::JPEG2000, 100000000);
165
166         auto content = make_shared<FFmpegContent>("test/data/count300bd24.m2ts");
167         film->examine_and_add_content (content);
168         BOOST_REQUIRE (!wait_for_jobs());
169
170         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
171
172         auto video = [film]() {
173                 return find_file(boost::filesystem::path("build/test/recover_test_2d_encrypted") / film->dcp_name(false), "j2c_");
174         };
175
176         boost::filesystem::copy_file (
177                 video(),
178                 "build/test/recover_test_2d_encrypted/original.mxf"
179                 );
180
181         boost::filesystem::resize_file(video(), 2 * 1024 * 1024);
182
183         make_and_verify_dcp(
184                 film,
185                 {
186                         dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE
187                 },
188                 true,
189                 /* We end up with two CPLs in this directory, which Clairmeta gives an error for */
190                 false
191                 );
192
193         auto A = make_shared<dcp::MonoJ2KPictureAsset>("build/test/recover_test_2d_encrypted/original.mxf");
194         A->set_key (film->key ());
195         auto B = make_shared<dcp::MonoJ2KPictureAsset>(video());
196         B->set_key (film->key ());
197
198         dcp::EqualityOptions eq;
199         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
200 }