Fix typo if -> of (thanks to Uwe Dittes)
[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/mono_picture_asset.h>
36 #include <dcp/stereo_picture_asset.h>
37 #include <boost/test/unit_test.hpp>
38 #include <iostream>
39
40
41 using std::cout;
42 using std::make_shared;
43 using std::shared_ptr;
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         shared_ptr<Film> 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         shared_ptr<FFmpegContent> content (new 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_02543352c540f4b083bff3f1e309d4a9_24_100000000_P_S_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 (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
87
88         shared_ptr<dcp::MonoPictureAsset> A (new dcp::MonoPictureAsset ("build/test/recover_test_2d/original.mxf"));
89         shared_ptr<dcp::MonoPictureAsset> B (new dcp::MonoPictureAsset (video));
90
91         dcp::EqualityOptions eq;
92         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
93 }
94
95
96 BOOST_AUTO_TEST_CASE (recover_test_3d, * boost::unit_test::depends_on("recover_test_2d"))
97 {
98         auto film = new_test_film ("recover_test_3d");
99         film->set_interop (false);
100         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
101         film->set_container (Ratio::from_id ("185"));
102         film->set_name ("recover_test");
103         film->set_three_d (true);
104
105         auto content = make_shared<ImageContent>("test/data/3d_test");
106         content->video->set_frame_type (VideoFrameType::THREE_D_LEFT_RIGHT);
107         film->examine_and_add_content (content);
108         BOOST_REQUIRE (!wait_for_jobs());
109
110         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
111
112         boost::filesystem::path const video = "build/test/recover_test_3d/video/185_2K_70e6661af92ae94458784c16a21a9748_24_100000000_P_S_3D_0_96000.mxf";
113
114         boost::filesystem::copy_file (
115                 video,
116                 "build/test/recover_test_3d/original.mxf"
117                 );
118
119         boost::filesystem::resize_file (video, 2 * 1024 * 1024);
120
121         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
122
123         auto A = make_shared<dcp::StereoPictureAsset>("build/test/recover_test_3d/original.mxf");
124         auto B = make_shared<dcp::StereoPictureAsset>(video);
125
126         dcp::EqualityOptions eq;
127         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
128 }
129
130
131 BOOST_AUTO_TEST_CASE (recover_test_2d_encrypted, * boost::unit_test::depends_on("recover_test_3d"))
132 {
133         auto film = new_test_film ("recover_test_2d_encrypted");
134         film->set_interop (false);
135         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
136         film->set_container (Ratio::from_id ("185"));
137         film->set_name ("recover_test");
138         film->set_encrypted (true);
139         film->_key = dcp::Key("eafcb91c9f5472edf01f3a2404c57258");
140
141         auto content = make_shared<FFmpegContent>("test/data/count300bd24.m2ts");
142         film->examine_and_add_content (content);
143         BOOST_REQUIRE (!wait_for_jobs());
144
145         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
146
147         boost::filesystem::path const video =
148                 "build/test/recover_test_2d_encrypted/video/185_2K_02543352c540f4b083bff3f1e309d4a9_24_100000000_Eeafcb91c9f5472edf01f3a2404c57258_S_0_1200000.mxf";
149
150         boost::filesystem::copy_file (
151                 video,
152                 "build/test/recover_test_2d_encrypted/original.mxf"
153                 );
154
155         boost::filesystem::resize_file (video, 2 * 1024 * 1024);
156
157         make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE });
158
159         auto A = make_shared<dcp::MonoPictureAsset>("build/test/recover_test_2d_encrypted/original.mxf");
160         A->set_key (film->key ());
161         auto B = make_shared<dcp::MonoPictureAsset>(video);
162         B->set_key (film->key ());
163
164         dcp::EqualityOptions eq;
165         BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
166 }