266b7bf58d7811c9d60529540f86884b716aa833
[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         Config::instance()->set_master_encoding_threads (8);
109
110         shared_ptr<Film> film = new_test_film2 ("threed_test4");
111         shared_ptr<FFmpegContent> L (new FFmpegContent(TestPaths::private_data / "LEFT_TEST_DCP3D4K.mov"));
112         film->examine_and_add_content (L);
113         shared_ptr<FFmpegContent> R (new FFmpegContent(TestPaths::private_data / "RIGHT_TEST_DCP3D4K.mov"));
114         film->examine_and_add_content (R);
115         BOOST_REQUIRE (!wait_for_jobs());
116
117         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
118         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
119
120         film->set_three_d (true);
121         film->make_dcp ();
122         film->write_metadata ();
123
124         BOOST_REQUIRE (!wait_for_jobs ());
125
126         Config::instance()->set_master_encoding_threads (8);
127 }
128
129 BOOST_AUTO_TEST_CASE (threed_test5)
130 {
131         Config::instance()->set_master_encoding_threads (8);
132
133         shared_ptr<Film> film = new_test_film2 ("threed_test5");
134         shared_ptr<FFmpegContent> L (new FFmpegContent(TestPaths::private_data / "boon_telly.mkv"));
135         film->examine_and_add_content (L);
136         shared_ptr<FFmpegContent> R (new FFmpegContent(TestPaths::private_data / "boon_telly.mkv"));
137         film->examine_and_add_content (R);
138         BOOST_REQUIRE (!wait_for_jobs());
139
140         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
141         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
142
143         film->set_three_d (true);
144         film->make_dcp ();
145         film->write_metadata ();
146
147         BOOST_REQUIRE (!wait_for_jobs ());
148
149         Config::instance()->set_master_encoding_threads (1);
150 }
151
152 BOOST_AUTO_TEST_CASE (threed_test6)
153 {
154         shared_ptr<Film> film = new_test_film2 ("threed_test6");
155         shared_ptr<FFmpegContent> L (new FFmpegContent("test/data/3dL.mp4"));
156         film->examine_and_add_content (L);
157         shared_ptr<FFmpegContent> R (new FFmpegContent("test/data/3dR.mp4"));
158         film->examine_and_add_content (R);
159         BOOST_REQUIRE (!wait_for_jobs());
160
161         L->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT);
162         R->video->set_frame_type (VIDEO_FRAME_TYPE_3D_RIGHT);
163
164         film->set_three_d (true);
165         film->make_dcp ();
166         film->write_metadata ();
167
168         BOOST_REQUIRE (!wait_for_jobs());
169         check_dcp ("test/data/threed_test6", film->dir(film->dcp_name()));
170 }
171
172 /** Check 2D content set as being 3D; this should give an informative error */
173 BOOST_AUTO_TEST_CASE (threed_test7)
174 {
175         shared_ptr<Film> film = new_test_film2 ("threed_test7");
176         shared_ptr<FFmpegContent> c (new FFmpegContent("test/data/red_24.mp4"));
177         film->examine_and_add_content (c);
178         BOOST_REQUIRE (!wait_for_jobs());
179
180         c->video->set_frame_type (VIDEO_FRAME_TYPE_3D);
181
182         film->set_three_d (true);
183         film->make_dcp ();
184         film->write_metadata ();
185
186         JobManager* jm = JobManager::instance ();
187         while (jm->work_to_do ()) {
188                 while (signal_manager->ui_idle()) {}
189                 dcpomatic_sleep_seconds (1);
190         }
191
192         while (signal_manager->ui_idle ()) {}
193
194         std::cout << "Here's the jobs:\n";
195         BOOST_FOREACH (shared_ptr<Job> i, jm->_jobs) {
196                 std::cout << i->name() << " " << i->status() << " " << i->is_new() << " " << i->running() << " " << i->finished() << " " << i->finished_ok() << " " << i->finished_in_error() << "\n";
197         }
198
199         BOOST_REQUIRE (jm->errors());
200         shared_ptr<Job> failed;
201         BOOST_FOREACH (shared_ptr<Job> i, jm->_jobs) {
202                 if (i->finished_in_error()) {
203                         BOOST_REQUIRE (!failed);
204                         failed = i;
205                 }
206         }
207         BOOST_REQUIRE (failed);
208         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.");
209
210         while (signal_manager->ui_idle ()) {}
211
212         JobManager::drop ();
213 }