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