Revert "Use make_shared<>."
[dcpomatic.git] / test / black_fill_test.cc
1 /*
2     Copyright (C) 2013-2016 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 #include <boost/test/unit_test.hpp>
22 #include "lib/image_content.h"
23 #include "lib/dcp_content_type.h"
24 #include "lib/film.h"
25 #include "lib/ratio.h"
26 #include "lib/video_content.h"
27 #include "test.h"
28
29 /** @file test/black_fill_test.cc
30  *  @brief Test insertion of black frames between separate bits of video content.
31  */
32
33 using boost::shared_ptr;
34
35 BOOST_AUTO_TEST_CASE (black_fill_test)
36 {
37         shared_ptr<Film> film = new_test_film ("black_fill_test");
38         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
39         film->set_name ("black_fill_test");
40         film->set_container (Ratio::from_id ("185"));
41         film->set_sequence (false);
42         shared_ptr<ImageContent> contentA (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
43         shared_ptr<ImageContent> contentB (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
44
45         film->examine_and_add_content (contentA);
46         film->examine_and_add_content (contentB);
47         wait_for_jobs ();
48
49         contentA->video->set_scale (VideoContentScale (Ratio::from_id ("185")));
50         contentA->video->set_length (3);
51         contentA->set_position (DCPTime::from_frames (2, film->video_frame_rate ()));
52         contentB->video->set_scale (VideoContentScale (Ratio::from_id ("185")));
53         contentB->video->set_length (1);
54         contentB->set_position (DCPTime::from_frames (7, film->video_frame_rate ()));
55
56         film->make_dcp ();
57
58         wait_for_jobs ();
59
60         boost::filesystem::path ref;
61         ref = "test";
62         ref /= "data";
63         ref /= "black_fill_test";
64
65         boost::filesystem::path check;
66         check = "build";
67         check /= "test";
68         check /= "black_fill_test";
69         check /= film->dcp_name();
70
71         check_dcp (ref.string(), check.string());
72 }