Revert "Use make_shared<>."
[dcpomatic.git] / test / scaling_test.cc
1 /*
2     Copyright (C) 2013-2014 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/scaling_test.cc
22  *  @brief Test scaling and black-padding of images from a still-image source.
23  */
24
25 #include <boost/test/unit_test.hpp>
26 #include "lib/image_content.h"
27 #include "lib/ratio.h"
28 #include "lib/film.h"
29 #include "lib/dcp_content_type.h"
30 #include "lib/video_content.h"
31 #include "test.h"
32
33 using std::string;
34 using boost::shared_ptr;
35
36 static void scaling_test_for (shared_ptr<Film> film, shared_ptr<Content> content, string image, string container)
37 {
38         content->video->set_scale (VideoContentScale (Ratio::from_id (image)));
39         film->set_container (Ratio::from_id (container));
40         film->make_dcp ();
41
42         wait_for_jobs ();
43
44         boost::filesystem::path ref;
45         ref = "test";
46         ref /= "data";
47         ref /= "scaling_test_" + image + "_" + container;
48
49         boost::filesystem::path check;
50         check = "build";
51         check /= "test";
52         check /= "scaling_test";
53         check /= film->dcp_name();
54
55         check_dcp (ref.string(), check.string());
56 }
57
58 BOOST_AUTO_TEST_CASE (scaling_test)
59 {
60         shared_ptr<Film> film = new_test_film ("scaling_test");
61         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
62         film->set_name ("scaling_test");
63         shared_ptr<ImageContent> imc (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
64
65         film->examine_and_add_content (imc);
66
67         wait_for_jobs ();
68
69         imc->video->set_length (1);
70
71         /* F-133: 133 image in a flat container */
72         scaling_test_for (film, imc, "133", "185");
73         /* F: flat image in a flat container */
74         scaling_test_for (film, imc, "185", "185");
75         /* F-S: scope image in a flat container */
76         scaling_test_for (film, imc, "239", "185");
77
78         /* S-133: 133 image in a scope container */
79         scaling_test_for (film, imc, "133", "239");
80         /* S-F: flat image in a scope container */
81         scaling_test_for (film, imc, "185", "239");
82         /* S: scope image in a scope container */
83         scaling_test_for (film, imc, "239", "239");
84 }