More verification of DCPs during tests.
[dcpomatic.git] / test / threed_test.cc
1 /*
2     Copyright (C) 2013-2019 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 /** @file  test/threed_test.cc
22  *  @brief Create some 3D DCPs (without comparing the results to anything).
23  *  @ingroup completedcp
24  */
25
26 #include "test.h"
27 #include "lib/film.h"
28 #include "lib/ratio.h"
29 #include "lib/config.h"
30 #include "lib/dcp_content_type.h"
31 #include "lib/ffmpeg_content.h"
32 #include "lib/video_content.h"
33 #include "lib/job_manager.h"
34 #include "lib/cross.h"
35 #include "lib/job.h"
36 #include <boost/test/unit_test.hpp>
37 #include <iostream>
38
39
40 using std::cout;
41 using std::make_shared;
42 using std::shared_ptr;
43
44
45 /** Basic sanity check of THREE_D_LEFT_RIGHT */
46 BOOST_AUTO_TEST_CASE (threed_test1)
47 {
48         auto film = new_test_film ("threed_test1");
49         film->set_name ("test_film1");
50         auto c = make_shared<FFmpegContent>("test/data/test.mp4");
51         film->examine_and_add_content (c);
52         BOOST_REQUIRE (!wait_for_jobs());
53
54         c->video->set_frame_type (VideoFrameType::THREE_D_LEFT_RIGHT);
55
56         film->set_container (Ratio::from_id ("185"));
57         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
58         film->set_three_d (true);
59         make_and_verify_dcp (film);
60 }
61
62
63 /** Basic sanity check of THREE_D_ALTERNATE; at the moment this is just to make sure
64  *  that such a transcode completes without error.
65  */
66 BOOST_AUTO_TEST_CASE (threed_test2)
67 {
68         auto film = new_test_film ("threed_test2");
69         film->set_name ("test_film2");
70         auto c = make_shared<FFmpegContent>("test/data/test.mp4");
71         film->examine_and_add_content (c);
72         BOOST_REQUIRE (!wait_for_jobs());
73
74         c->video->set_frame_type (VideoFrameType::THREE_D_ALTERNATE);
75
76         film->set_container (Ratio::from_id ("185"));
77         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
78         film->set_three_d (true);
79         make_and_verify_dcp (film);
80 }
81
82
83 /** Basic sanity check of THREE_D_LEFT and THREE_D_RIGHT; at the moment this is just to make sure
84  *  that such a transcode completes without error.
85  */
86 BOOST_AUTO_TEST_CASE (threed_test3)
87 {
88         shared_ptr<Film> film = new_test_film2 ("threed_test3");
89         auto L = make_shared<FFmpegContent>("test/data/test.mp4");
90         film->examine_and_add_content (L);
91         auto R = make_shared<FFmpegContent>("test/data/test.mp4");
92         film->examine_and_add_content (R);
93         BOOST_REQUIRE (!wait_for_jobs());
94
95         L->video->set_frame_type (VideoFrameType::THREE_D_LEFT);
96         R->video->set_frame_type (VideoFrameType::THREE_D_RIGHT);
97
98         film->set_three_d (true);
99         make_and_verify_dcp (film);
100 }
101
102
103 BOOST_AUTO_TEST_CASE (threed_test4)
104 {
105         auto film = new_test_film2 ("threed_test4");
106         auto L = make_shared<FFmpegContent>(TestPaths::private_data() / "LEFT_TEST_DCP3D4K.mov");
107         film->examine_and_add_content (L);
108         auto R = make_shared<FFmpegContent>(TestPaths::private_data() / "RIGHT_TEST_DCP3D4K.mov");
109         film->examine_and_add_content (R);
110         BOOST_REQUIRE (!wait_for_jobs());
111
112         L->video->set_frame_type (VideoFrameType::THREE_D_LEFT);
113         R->video->set_frame_type (VideoFrameType::THREE_D_RIGHT);
114         /* There doesn't seem much point in encoding the whole input, especially as we're only
115          * checking for errors during the encode and not the result.  Also decoding these files
116          * (4K HQ Prores) is very slow.
117          */
118         L->set_trim_end (dcpomatic::ContentTime::from_seconds(22));
119         R->set_trim_end (dcpomatic::ContentTime::from_seconds(22));
120
121         film->set_three_d (true);
122         make_and_verify_dcp (film, {dcp::VerificationNote::Code::INVALID_PICTURE_ASSET_RESOLUTION_FOR_3D});
123 }
124
125
126 BOOST_AUTO_TEST_CASE (threed_test5)
127 {
128         auto film = new_test_film2 ("threed_test5");
129         auto L = make_shared<FFmpegContent>(TestPaths::private_data() / "boon_telly.mkv");
130         film->examine_and_add_content (L);
131         auto R = make_shared<FFmpegContent>(TestPaths::private_data() / "boon_telly.mkv");
132         film->examine_and_add_content (R);
133         BOOST_REQUIRE (!wait_for_jobs());
134
135         L->video->set_frame_type (VideoFrameType::THREE_D_LEFT);
136         R->video->set_frame_type (VideoFrameType::THREE_D_RIGHT);
137         /* There doesn't seem much point in encoding the whole input, especially as we're only
138          * checking for errors during the encode and not the result.
139          */
140         L->set_trim_end (dcpomatic::ContentTime::from_seconds(3 * 60 + 20));
141         R->set_trim_end (dcpomatic::ContentTime::from_seconds(3 * 60 + 20));
142
143         film->set_three_d (true);
144         make_and_verify_dcp (film, {dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_RATE_FOR_2K});
145 }
146
147
148 BOOST_AUTO_TEST_CASE (threed_test6)
149 {
150         auto film = new_test_film2 ("threed_test6");
151         auto L = make_shared<FFmpegContent>("test/data/3dL.mp4");
152         film->examine_and_add_content (L);
153         auto R = make_shared<FFmpegContent>("test/data/3dR.mp4");
154         film->examine_and_add_content (R);
155         BOOST_REQUIRE (!wait_for_jobs());
156
157         L->video->set_frame_type (VideoFrameType::THREE_D_LEFT);
158         R->video->set_frame_type (VideoFrameType::THREE_D_RIGHT);
159
160         film->set_three_d (true);
161         make_and_verify_dcp (film);
162         check_dcp ("test/data/threed_test6", film->dir(film->dcp_name()));
163 }
164
165
166 /** Check 2D content set as being 3D; this should give an informative error */
167 BOOST_AUTO_TEST_CASE (threed_test7)
168 {
169         using boost::filesystem::path;
170
171         auto film = new_test_film2 ("threed_test7");
172         path const content_path = "test/data/red_24.mp4";
173         auto c = make_shared<FFmpegContent>(content_path);
174         film->examine_and_add_content (c);
175         BOOST_REQUIRE (!wait_for_jobs());
176
177         c->video->set_frame_type (VideoFrameType::THREE_D);
178
179         film->set_three_d (true);
180         film->make_dcp ();
181         film->write_metadata ();
182
183         auto jm = JobManager::instance ();
184         while (jm->work_to_do ()) {
185                 while (signal_manager->ui_idle()) {}
186                 dcpomatic_sleep_seconds (1);
187         }
188
189         while (signal_manager->ui_idle ()) {}
190
191         BOOST_REQUIRE (jm->errors());
192         shared_ptr<Job> failed;
193         for (auto i: jm->_jobs) {
194                 if (i->finished_in_error()) {
195                         BOOST_REQUIRE (!failed);
196                         failed = i;
197                 }
198         }
199         BOOST_REQUIRE (failed);
200         BOOST_CHECK_EQUAL (failed->error_summary(), String::compose("The content file %1 is set as 3D but does not appear to contain 3D images.  Please set it to 2D.  You can still make a 3D DCP from this content by ticking the 3D option in the DCP video tab.", content_path.string()));
201
202         while (signal_manager->ui_idle ()) {}
203
204         JobManager::drop ();
205 }