8a42bd6b8d3e840f73be13dd809d0af59edebd85
[dcpomatic.git] / test / empty_test.cc
1 /*
2     Copyright (C) 2017-2020 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/empty_test.cc
22  *  @brief Test the creation of Empty objects.
23  *  @ingroup feature
24  */
25
26 #include "lib/film.h"
27 #include "lib/dcp_content_type.h"
28 #include "lib/ratio.h"
29 #include "lib/video_content.h"
30 #include "lib/image_content.h"
31 #include "lib/empty.h"
32 #include "lib/player.h"
33 #include "lib/decoder.h"
34 #include "test.h"
35 #include <boost/test/unit_test.hpp>
36
37 using std::list;
38 using std::make_shared;
39 using std::shared_ptr;
40 #if BOOST_VERSION >= 106100
41 using namespace boost::placeholders;
42 #endif
43 using namespace dcpomatic;
44
45 bool
46 has_video (shared_ptr<const Content> content)
47 {
48         return static_cast<bool>(content->video);
49 }
50
51 BOOST_AUTO_TEST_CASE (empty_test1)
52 {
53         shared_ptr<Film> film = new_test_film2 ("empty_test1");
54         film->set_sequence (false);
55         shared_ptr<ImageContent> contentA (new ImageContent("test/data/simple_testcard_640x480.png"));
56         shared_ptr<ImageContent> contentB (new ImageContent("test/data/simple_testcard_640x480.png"));
57
58         film->examine_and_add_content (contentA);
59         film->examine_and_add_content (contentB);
60         BOOST_REQUIRE (!wait_for_jobs());
61
62         int const vfr = film->video_frame_rate ();
63
64         /* 0 1 2 3 4 5 6 7
65          *     A A A     B
66          */
67         contentA->video->set_length (3);
68         contentA->set_position (film, DCPTime::from_frames (2, vfr));
69         contentB->video->set_length (1);
70         contentB->set_position (film, DCPTime::from_frames (7, vfr));
71
72         Empty black (film, film->playlist(), bind(&has_video, _1), film->playlist()->length(film));
73         BOOST_REQUIRE_EQUAL (black._periods.size(), 2U);
74         list<dcpomatic::DCPTimePeriod>::const_iterator i = black._periods.begin();
75         BOOST_CHECK (i->from == DCPTime::from_frames(0, vfr));
76         BOOST_CHECK (i->to ==   DCPTime::from_frames(2, vfr));
77         ++i;
78         BOOST_CHECK (i->from == DCPTime::from_frames(5, vfr));
79         BOOST_CHECK (i->to ==   DCPTime::from_frames(7, vfr));
80 }
81
82 /** Some tests where the first empty period is not at time 0 */
83 BOOST_AUTO_TEST_CASE (empty_test2)
84 {
85         shared_ptr<Film> film = new_test_film2 ("empty_test2");
86         film->set_sequence (false);
87         shared_ptr<ImageContent> contentA (new ImageContent("test/data/simple_testcard_640x480.png"));
88         shared_ptr<ImageContent> contentB (new ImageContent("test/data/simple_testcard_640x480.png"));
89
90         film->examine_and_add_content (contentA);
91         film->examine_and_add_content (contentB);
92         BOOST_REQUIRE (!wait_for_jobs());
93
94         int const vfr = film->video_frame_rate ();
95
96         /* 0 1 2 3 4 5 6 7
97          * A A A         B
98          */
99         contentA->video->set_length (3);
100         contentA->set_position (film, DCPTime(0));
101         contentB->video->set_length (1);
102         contentB->set_position (film, DCPTime::from_frames(7, vfr));
103
104         Empty black (film, film->playlist(), bind(&has_video, _1), film->playlist()->length(film));
105         BOOST_REQUIRE_EQUAL (black._periods.size(), 1U);
106         BOOST_CHECK (black._periods.front().from == DCPTime::from_frames(3, vfr));
107         BOOST_CHECK (black._periods.front().to == DCPTime::from_frames(7, vfr));
108
109         /* position should initially be the start of the first empty period */
110         BOOST_CHECK (black.position() == DCPTime::from_frames(3, vfr));
111
112         /* check that done() works */
113         BOOST_CHECK (!black.done ());
114         black.set_position (DCPTime::from_frames (4, vfr));
115         BOOST_CHECK (!black.done ());
116         black.set_position (DCPTime::from_frames (7, vfr));
117         BOOST_CHECK (black.done ());
118 }
119
120 /** Test for when the film's playlist is not the same as the one passed into Empty */
121 BOOST_AUTO_TEST_CASE (empty_test3)
122 {
123         shared_ptr<Film> film = new_test_film2 ("empty_test3");
124         film->set_sequence (false);
125         shared_ptr<ImageContent> contentA (new ImageContent("test/data/simple_testcard_640x480.png"));
126         shared_ptr<ImageContent> contentB (new ImageContent("test/data/simple_testcard_640x480.png"));
127
128         film->examine_and_add_content (contentA);
129         film->examine_and_add_content (contentB);
130         BOOST_REQUIRE (!wait_for_jobs());
131
132         int const vfr = film->video_frame_rate ();
133
134         /* 0 1 2 3 4 5 6 7
135          * A A A         B
136          */
137         contentA->video->set_length (3);
138         contentA->set_position (film, DCPTime(0));
139         contentB->video->set_length (1);
140         contentB->set_position (film, DCPTime::from_frames(7, vfr));
141
142         shared_ptr<Playlist> playlist (new Playlist);
143         playlist->add (film, contentB);
144         Empty black (film, playlist, bind(&has_video, _1), playlist->length(film));
145         BOOST_REQUIRE_EQUAL (black._periods.size(), 1U);
146         BOOST_CHECK (black._periods.front().from == DCPTime::from_frames(0, vfr));
147         BOOST_CHECK (black._periods.front().to == DCPTime::from_frames(7, vfr));
148
149         /* position should initially be the start of the first empty period */
150         BOOST_CHECK (black.position() == DCPTime::from_frames(0, vfr));
151 }
152
153 BOOST_AUTO_TEST_CASE (empty_test_with_overlapping_content)
154 {
155         auto film = new_test_film2 ("empty_test_with_overlapping_content");
156         film->set_sequence (false);
157         auto contentA = make_shared<ImageContent>("test/data/simple_testcard_640x480.png");
158         auto contentB = make_shared<ImageContent>("test/data/simple_testcard_640x480.png");
159
160         film->examine_and_add_content (contentA);
161         film->examine_and_add_content (contentB);
162         BOOST_REQUIRE (!wait_for_jobs());
163
164         int const vfr = film->video_frame_rate ();
165
166         contentA->video->set_length (vfr * 3);
167         contentA->set_position (film, DCPTime());
168         contentB->video->set_length (vfr * 1);
169         contentB->set_position (film, DCPTime::from_seconds(1));
170
171         Empty black(film, film->playlist(), bind(&has_video, _1), film->playlist()->length(film));
172
173         BOOST_REQUIRE (black._periods.empty());
174 }
175