398c88be26f7aa7b0a39729e80aac313cbd013d5
[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/film.h"
27 #include "lib/dcp_content_type.h"
28 #include "lib/content_factory.h"
29 #include "lib/content.h"
30 #include "lib/ratio.h"
31 #include "test.h"
32 #include <boost/test/unit_test.hpp>
33
34 using boost::shared_ptr;
35
36 /** There has been garbled audio with this piece of content */
37 BOOST_AUTO_TEST_CASE (content_test1)
38 {
39         shared_ptr<Film> film = new_test_film ("content_test1");
40         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
41         film->set_name ("content_test1");
42         film->set_container (Ratio::from_id ("185"));
43
44         shared_ptr<Content> content = content_factory(film, private_data / "demo_sound_bug.mkv").front ();
45         film->examine_and_add_content (content);
46         BOOST_REQUIRE (!wait_for_jobs ());
47         film->make_dcp ();
48         BOOST_REQUIRE (!wait_for_jobs ());
49
50         boost::filesystem::path check;
51
52         for (
53                 boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator("build/test/content_test1/" + film->dcp_name());
54                 i != boost::filesystem::directory_iterator();
55                 ++i) {
56
57                 if (i->path().leaf().string().substr(0, 4) == "pcm_") {
58                         check = *i;
59                 }
60         }
61
62         check_mxf_audio_file ("test/data/content_test1.mxf", check);
63 }
64
65 /** Taking some 23.976fps content and trimming 0.5s (in content time) from the start
66  *  has failed in the past; ensure that this is fixed.
67  */
68 BOOST_AUTO_TEST_CASE (content_test2)
69 {
70         shared_ptr<Film> film = new_test_film2 ("content_test2");
71
72         shared_ptr<Content> content = content_factory(film, "test/data/red_23976.mp4").front();
73         film->examine_and_add_content (content);
74         BOOST_REQUIRE (!wait_for_jobs ());
75         content->set_trim_start(ContentTime::from_seconds(0.5));
76         film->make_dcp ();
77         BOOST_REQUIRE (!wait_for_jobs ());
78 }
79
80 /** Check that position and start trim of video content is forced to a frame boundary */
81 BOOST_AUTO_TEST_CASE (content_test3)
82 {
83         shared_ptr<Film> film = new_test_film2 ("content_test3");
84         film->set_sequence (false);
85
86         shared_ptr<Content> content = content_factory(film, "test/data/red_24.mp4").front();
87         film->examine_and_add_content (content);
88         BOOST_REQUIRE (!wait_for_jobs ());
89
90         /* Trim */
91
92         /* 12 frames */
93         content->set_trim_start (ContentTime::from_seconds (12.0 / 24.0));
94         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (12.0 / 24.0));
95
96         /* 11.2 frames */
97         content->set_trim_start (ContentTime::from_seconds (11.2 / 24.0));
98         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (11.0 / 24.0));
99
100         /* 13.9 frames */
101         content->set_trim_start (ContentTime::from_seconds (13.9 / 24.0));
102         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (14.0 / 24.0));
103
104         /* Position */
105
106         /* 12 frames */
107         content->set_position (DCPTime::from_seconds (12.0 / 24.0));
108         BOOST_CHECK (content->position() == DCPTime::from_seconds (12.0 / 24.0));
109
110         /* 11.2 frames */
111         content->set_position (DCPTime::from_seconds (11.2 / 24.0));
112         BOOST_CHECK (content->position() == DCPTime::from_seconds (11.0 / 24.0));
113
114         /* 13.9 frames */
115         content->set_position (DCPTime::from_seconds (13.9 / 24.0));
116         BOOST_CHECK (content->position() == DCPTime::from_seconds (14.0 / 24.0));
117
118         content->set_video_frame_rate (25);
119
120         /* Check that trim is fixed when the content's video frame rate is `forced' */
121
122         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (15.0 / 25.0));
123 }