Run all tests with lots of encoding threads.
[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 using std::cout;
40 using boost::shared_ptr;
41
42 /** Basic sanity check of 3D_LEFT_RIGHT */
43 BOOST_AUTO_TEST_CASE (threed_test1)
44 {
45         shared_ptr<Film> film = new_test_film ("threed_test1");
46         film->set_name ("test_film1");
47         shared_ptr<FFmpegContent> c (new FFmpegContent("test/data/test.mp4"));
48         film->examine_and_add_content (c);
49         BOOST_REQUIRE (!wait_for_jobs());
50
51         c->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT_RIGHT);
52
53         film->set_container (Ratio::from_id ("185"));
54         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
55         film->set_three_d (true);
56         film->make_dcp ();
57         film->write_metadata ();
58
59         BOOST_REQUIRE (!wait_for_jobs ());
60 }
61
62 /** Basic sanity check of 3D_ALTERNATE; at the moment this is just to make sure
63  *  that such a transcode completes without error.
64  */
65 BOOST_AUTO_TEST_CASE (threed_test2)
66 {
67         shared_ptr<Film> film = new_test_film ("threed_test2");
68         film->set_name ("test_film2");
69         shared_ptr<FFmpegContent> c (new FFmpegContent("test/data/test.mp4"));
70         film->examine_and_add_content (c);
71         BOOST_REQUIRE (!wait_for_jobs());
72
73         c->video->set_frame_type (VIDEO_FRAME_TYPE_3D_ALTERNATE);
74
75         film->set_container (Ratio::from_id ("185"));
76         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
77         film->set_three_d (true);
78         film->make_dcp ();
79         film->write_metadata ();
80
81         BOOST_REQUIRE (!wait_for_jobs ());
82 }
83
84 /** Basic sanity check of 3D_LEFT and 3D_RIGHT; at the moment this is just to make sure
85  *  that such a transcode completes without error.
86  */
87 BOOST_AUTO_TEST_CASE (threed_test3)
88 {
89         shared_ptr<Film> film = new_test_film2 ("threed_test3");
90         shared_ptr<FFmpegContent> L (new FFmpegContent("test/data/test.mp4"));
91         film->examine_and_add_content (L);
92         shared_ptr<FFmpegContent> R (new FFmpegContent("test/data/test.mp4"));
93         film->examine_and_add_content (R);
94         BOOST_REQUIRE (!wait_for_jobs());
95
96         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
97         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
98
99         film->set_three_d (true);
100         film->make_dcp ();
101         film->write_metadata ();
102
103         BOOST_REQUIRE (!wait_for_jobs ());
104 }
105
106 BOOST_AUTO_TEST_CASE (threed_test4)
107 {
108         shared_ptr<Film> film = new_test_film2 ("threed_test4");
109         shared_ptr<FFmpegContent> L (new FFmpegContent(TestPaths::private_data / "LEFT_TEST_DCP3D4K.mov"));
110         film->examine_and_add_content (L);
111         shared_ptr<FFmpegContent> R (new FFmpegContent(TestPaths::private_data / "RIGHT_TEST_DCP3D4K.mov"));
112         film->examine_and_add_content (R);
113         BOOST_REQUIRE (!wait_for_jobs());
114
115         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
116         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
117
118         film->set_three_d (true);
119         film->make_dcp ();
120         film->write_metadata ();
121
122         BOOST_REQUIRE (!wait_for_jobs ());
123 }
124
125 BOOST_AUTO_TEST_CASE (threed_test5)
126 {
127         shared_ptr<Film> film = new_test_film2 ("threed_test5");
128         shared_ptr<FFmpegContent> L (new FFmpegContent(TestPaths::private_data / "boon_telly.mkv"));
129         film->examine_and_add_content (L);
130         shared_ptr<FFmpegContent> R (new FFmpegContent(TestPaths::private_data / "boon_telly.mkv"));
131         film->examine_and_add_content (R);
132         BOOST_REQUIRE (!wait_for_jobs());
133
134         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
135         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
136
137         film->set_three_d (true);
138         film->make_dcp ();
139         film->write_metadata ();
140
141         BOOST_REQUIRE (!wait_for_jobs ());
142 }
143
144 BOOST_AUTO_TEST_CASE (threed_test6)
145 {
146         shared_ptr<Film> film = new_test_film2 ("threed_test6");
147         shared_ptr<FFmpegContent> L (new FFmpegContent("test/data/3dL.mp4"));
148         film->examine_and_add_content (L);
149         shared_ptr<FFmpegContent> R (new FFmpegContent("test/data/3dR.mp4"));
150         film->examine_and_add_content (R);
151         BOOST_REQUIRE (!wait_for_jobs());
152
153         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
154         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
155
156         film->set_three_d (true);
157         film->make_dcp ();
158         film->write_metadata ();
159
160         BOOST_REQUIRE (!wait_for_jobs());
161         check_dcp ("test/data/threed_test6", film->dir(film->dcp_name()));
162 }
163
164 /** Check 2D content set as being 3D; this should give an informative error */
165 BOOST_AUTO_TEST_CASE (threed_test7)
166 {
167         shared_ptr<Film> film = new_test_film2 ("threed_test7");
168         shared_ptr<FFmpegContent> c (new FFmpegContent("test/data/red_24.mp4"));
169         film->examine_and_add_content (c);
170         BOOST_REQUIRE (!wait_for_jobs());
171
172         c->video->set_frame_type (VIDEO_FRAME_TYPE_3D);
173
174         film->set_three_d (true);
175         film->make_dcp ();
176         film->write_metadata ();
177
178         JobManager* jm = JobManager::instance ();
179         while (jm->work_to_do ()) {
180                 while (signal_manager->ui_idle()) {}
181                 dcpomatic_sleep_seconds (1);
182         }
183
184         while (signal_manager->ui_idle ()) {}
185
186         std::cout << "Here's the jobs:\n";
187         BOOST_FOREACH (shared_ptr<Job> i, jm->_jobs) {
188                 std::cout << i->name() << " " << i->status() << " " << i->is_new() << " " << i->running() << " " << i->finished() << " " << i->finished_ok() << " " << i->finished_in_error() << "\n";
189         }
190
191         BOOST_REQUIRE (jm->errors());
192         shared_ptr<Job> failed;
193         BOOST_FOREACH (shared_ptr<Job> 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(), "The content file test/data/red_24.mp4 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.");
201
202         while (signal_manager->ui_idle ()) {}
203
204         JobManager::drop ();
205 }