Cleanup: test tidying.
[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 namespace dcpomatic;
39
40
41 /** There has been garbled audio with this piece of content */
42 BOOST_AUTO_TEST_CASE (content_test1)
43 {
44         auto film = new_test_film ("content_test1");
45         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
46         film->set_name ("content_test1");
47         film->set_container (Ratio::from_id ("185"));
48
49         auto content = content_factory(TestPaths::private_data() / "demo_sound_bug.mkv")[0];
50         film->examine_and_add_content (content);
51         BOOST_REQUIRE (!wait_for_jobs ());
52         make_and_verify_dcp (
53                 film,
54                 { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE }
55                 );
56
57         check_mxf_audio_file(TestPaths::private_data() / "content_test1.mxf", dcp_file(film, "pcm_"));
58 }
59
60
61 /** Taking some 23.976fps content and trimming 0.5s (in content time) from the start
62  *  has failed in the past; ensure that this is fixed.
63  */
64 BOOST_AUTO_TEST_CASE (content_test2)
65 {
66         auto content = content_factory("test/data/red_23976.mp4")[0];
67         auto film = new_test_film2 ("content_test2", {content});
68         content->set_trim_start(film, ContentTime::from_seconds(0.5));
69         make_and_verify_dcp (film);
70 }
71
72
73 /** Check that position and start trim of video content is forced to a frame boundary */
74 BOOST_AUTO_TEST_CASE (content_test3)
75 {
76         auto content = content_factory("test/data/red_24.mp4")[0];
77         auto film = new_test_film2 ("content_test3", {content});
78         film->set_sequence (false);
79
80         /* Trim */
81
82         /* 12 frames */
83         content->set_trim_start(film, ContentTime::from_seconds (12.0 / 24.0));
84         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (12.0 / 24.0));
85
86         /* 11.2 frames */
87         content->set_trim_start(film, ContentTime::from_seconds (11.2 / 24.0));
88         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (11.0 / 24.0));
89
90         /* 13.9 frames */
91         content->set_trim_start(film, ContentTime::from_seconds (13.9 / 24.0));
92         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (14.0 / 24.0));
93
94         /* Position */
95
96         /* 12 frames */
97         content->set_position (film, DCPTime::from_seconds(12.0 / 24.0));
98         BOOST_CHECK (content->position() == DCPTime::from_seconds (12.0 / 24.0));
99
100         /* 11.2 frames */
101         content->set_position (film, DCPTime::from_seconds(11.2 / 24.0));
102         BOOST_CHECK (content->position() == DCPTime::from_seconds (11.0 / 24.0));
103
104         /* 13.9 frames */
105         content->set_position (film, DCPTime::from_seconds(13.9 / 24.0));
106         BOOST_CHECK (content->position() == DCPTime::from_seconds (14.0 / 24.0));
107
108         content->set_video_frame_rate(film, 25);
109
110         /* Check that trim is fixed when the content's video frame rate is `forced' */
111
112         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (15.0 / 25.0));
113 }
114
115
116 /** Content containing video will have its length rounded to the nearest video frame */
117 BOOST_AUTO_TEST_CASE (content_test4)
118 {
119         auto film = new_test_film2 ("content_test4");
120
121         auto video = content_factory("test/data/count300bd24.m2ts")[0];
122         film->examine_and_add_content (video);
123         BOOST_REQUIRE (!wait_for_jobs());
124
125         video->set_trim_end (dcpomatic::ContentTime(3000));
126         BOOST_CHECK (video->length_after_trim(film) == DCPTime::from_frames(299, 24));
127 }
128
129
130 /** Content containing no video will not have its length rounded to the nearest video frame */
131 BOOST_AUTO_TEST_CASE (content_test5)
132 {
133         auto audio = content_factory("test/data/sine_16_48_220_10.wav");
134         auto film = new_test_film2 ("content_test5", audio);
135
136         audio[0]->set_trim_end(dcpomatic::ContentTime(3000));
137
138         BOOST_CHECK(audio[0]->length_after_trim(film) == DCPTime(957000));
139 }
140
141
142 /** Sync error #1833 */
143 BOOST_AUTO_TEST_CASE (content_test6)
144 {
145         Cleanup cl;
146
147         auto film = new_test_film2 (
148                 "content_test6",
149                 content_factory(TestPaths::private_data() / "fha.mkv"),
150                 &cl
151                 );
152
153         make_and_verify_dcp (film);
154         check_dcp (TestPaths::private_data() / "fha", film);
155
156         cl.run ();
157 }
158
159
160 /** Reel length error when making the test for #1833 */
161 BOOST_AUTO_TEST_CASE (content_test7)
162 {
163         auto content = content_factory(TestPaths::private_data() / "clapperboard.mp4");
164         auto film = new_test_film2 ("content_test7", content);
165         content[0]->audio->set_delay(-1000);
166         make_and_verify_dcp (film, { dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_RATE_FOR_2K });
167 }