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