cf34251f5d379206b5e4208a688b9cc74a8177b1
[dcpomatic.git] / test / content_test.cc
1 /*
2     Copyright (C) 2017-2018 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/content_test.cc
22  *  @brief Tests which expose problems with certain pieces of content.
23  *  @ingroup completedcp
24  */
25
26 #include "lib/audio_content.h"
27 #include "lib/film.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/content_factory.h"
30 #include "lib/content.h"
31 #include "lib/ratio.h"
32 #include "test.h"
33 #include <boost/test/unit_test.hpp>
34
35 using std::shared_ptr;
36 using namespace dcpomatic;
37
38 /** There has been garbled audio with this piece of content */
39 BOOST_AUTO_TEST_CASE (content_test1)
40 {
41         shared_ptr<Film> film = new_test_film ("content_test1");
42         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
43         film->set_name ("content_test1");
44         film->set_container (Ratio::from_id ("185"));
45
46         shared_ptr<Content> content = content_factory(TestPaths::private_data() / "demo_sound_bug.mkv").front ();
47         film->examine_and_add_content (content);
48         BOOST_REQUIRE (!wait_for_jobs ());
49         film->make_dcp ();
50         BOOST_REQUIRE (!wait_for_jobs ());
51
52         boost::filesystem::path check;
53
54         for (
55                 boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator("build/test/content_test1/" + film->dcp_name());
56                 i != boost::filesystem::directory_iterator();
57                 ++i) {
58
59                 if (i->path().leaf().string().substr(0, 4) == "pcm_") {
60                         check = *i;
61                 }
62         }
63
64         check_mxf_audio_file (TestPaths::private_data() / "content_test1.mxf", check);
65 }
66
67 /** Taking some 23.976fps content and trimming 0.5s (in content time) from the start
68  *  has failed in the past; ensure that this is fixed.
69  */
70 BOOST_AUTO_TEST_CASE (content_test2)
71 {
72         shared_ptr<Film> film = new_test_film2 ("content_test2");
73
74         shared_ptr<Content> content = content_factory("test/data/red_23976.mp4").front();
75         film->examine_and_add_content (content);
76         BOOST_REQUIRE (!wait_for_jobs ());
77         content->set_trim_start(ContentTime::from_seconds(0.5));
78         film->make_dcp ();
79         BOOST_REQUIRE (!wait_for_jobs ());
80 }
81
82 /** Check that position and start trim of video content is forced to a frame boundary */
83 BOOST_AUTO_TEST_CASE (content_test3)
84 {
85         shared_ptr<Film> film = new_test_film2 ("content_test3");
86         film->set_sequence (false);
87
88         shared_ptr<Content> content = content_factory("test/data/red_24.mp4").front();
89         film->examine_and_add_content (content);
90         BOOST_REQUIRE (!wait_for_jobs ());
91
92         /* Trim */
93
94         /* 12 frames */
95         content->set_trim_start (ContentTime::from_seconds (12.0 / 24.0));
96         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (12.0 / 24.0));
97
98         /* 11.2 frames */
99         content->set_trim_start (ContentTime::from_seconds (11.2 / 24.0));
100         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (11.0 / 24.0));
101
102         /* 13.9 frames */
103         content->set_trim_start (ContentTime::from_seconds (13.9 / 24.0));
104         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (14.0 / 24.0));
105
106         /* Position */
107
108         /* 12 frames */
109         content->set_position (film, DCPTime::from_seconds(12.0 / 24.0));
110         BOOST_CHECK (content->position() == DCPTime::from_seconds (12.0 / 24.0));
111
112         /* 11.2 frames */
113         content->set_position (film, DCPTime::from_seconds(11.2 / 24.0));
114         BOOST_CHECK (content->position() == DCPTime::from_seconds (11.0 / 24.0));
115
116         /* 13.9 frames */
117         content->set_position (film, DCPTime::from_seconds(13.9 / 24.0));
118         BOOST_CHECK (content->position() == DCPTime::from_seconds (14.0 / 24.0));
119
120         content->set_video_frame_rate (25);
121
122         /* Check that trim is fixed when the content's video frame rate is `forced' */
123
124         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (15.0 / 25.0));
125 }
126
127
128 /** Content containing video will have its length rounded to the nearest video frame */
129 BOOST_AUTO_TEST_CASE (content_test4)
130 {
131         shared_ptr<Film> film = new_test_film2 ("content_test4");
132
133         shared_ptr<Content> video = content_factory("test/data/count300bd24.m2ts").front();
134         film->examine_and_add_content (video);
135         BOOST_REQUIRE (!wait_for_jobs());
136
137         video->set_trim_end (dcpomatic::ContentTime(3000));
138         BOOST_CHECK (video->length_after_trim(film) == DCPTime::from_frames(299, 24));
139 }
140
141
142 /** Content containing no video will not have its length rounded to the nearest video frame */
143 BOOST_AUTO_TEST_CASE (content_test5)
144 {
145         shared_ptr<Film> film = new_test_film2 ("content_test5");
146
147         shared_ptr<Content> audio = content_factory("test/data/sine_16_48_220_10.wav").front();
148         film->examine_and_add_content (audio);
149         BOOST_REQUIRE (!wait_for_jobs());
150
151         audio->set_trim_end (dcpomatic::ContentTime(3000));
152         BOOST_CHECK (audio->length_after_trim(film) == DCPTime(957000));
153 }
154
155
156 /** Sync error #1833 */
157 BOOST_AUTO_TEST_CASE (content_test6)
158 {
159         Cleanup cl;
160
161         auto film = new_test_film2 ("content_test6", &cl);
162         film->examine_and_add_content (content_factory(TestPaths::private_data() / "fha.mkv").front());
163         BOOST_REQUIRE (!wait_for_jobs());
164         film->make_dcp ();
165         BOOST_REQUIRE (!wait_for_jobs());
166         check_dcp (TestPaths::private_data() / "fha", film);
167
168         cl.run ();
169 }
170
171
172 /** Reel length error when making the test for #1833 */
173 BOOST_AUTO_TEST_CASE (content_test7)
174 {
175         shared_ptr<Film> film = new_test_film2 ("content_test7");
176         shared_ptr<Content> content = content_factory(TestPaths::private_data() / "clapperboard.mp4").front();
177         film->examine_and_add_content (content);
178         BOOST_REQUIRE (!wait_for_jobs());
179         content->audio->set_delay (-1000);
180         film->make_dcp ();
181         BOOST_REQUIRE (!wait_for_jobs());
182 }