Reasonably straightforward stuff; main things are adding
[dcpomatic.git] / test / black_fill_test.cc
1 /*
2     Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/test/unit_test.hpp>
21 #include "lib/image_content.h"
22 #include "lib/dcp_content_type.h"
23 #include "lib/film.h"
24 #include "lib/ratio.h"
25 #include "lib/video_content.h"
26 #include "test.h"
27
28 /** @file test/black_fill_test.cc
29  *  @brief Test insertion of black frames between separate bits of video content.
30  */
31
32 using boost::shared_ptr;
33
34 BOOST_AUTO_TEST_CASE (black_fill_test)
35 {
36         shared_ptr<Film> film = new_test_film ("black_fill_test");
37         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
38         film->set_name ("black_fill_test");
39         film->set_container (Ratio::from_id ("185"));
40         film->set_sequence (false);
41         shared_ptr<ImageContent> contentA (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
42         shared_ptr<ImageContent> contentB (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
43
44         film->examine_and_add_content (contentA);
45         film->examine_and_add_content (contentB);
46         wait_for_jobs ();
47
48         contentA->video->set_scale (VideoContentScale (Ratio::from_id ("185")));
49         contentA->video->set_video_length (3);
50         contentA->set_position (DCPTime::from_frames (2, film->video_frame_rate ()));
51         contentB->video->set_scale (VideoContentScale (Ratio::from_id ("185")));
52         contentB->video->set_video_length (1);
53         contentB->set_position (DCPTime::from_frames (7, film->video_frame_rate ()));
54
55         film->make_dcp ();
56
57         wait_for_jobs ();
58
59         boost::filesystem::path ref;
60         ref = "test";
61         ref /= "data";
62         ref /= "black_fill_test";
63
64         boost::filesystem::path check;
65         check = "build";
66         check /= "test";
67         check /= "black_fill_test";
68         check /= film->dcp_name();
69
70         check_dcp (ref.string(), check.string());
71 }