Merge master.
[dcpomatic.git] / test / ratio_test.cc
1 /*
2     Copyright (C) 2012-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 /** @file  test/ratio_test.cc
21  *  @brief Test Ratio and fit_ratio_within().
22  */
23
24 #include <iostream>
25 #include <boost/test/unit_test.hpp>
26 #include <dcp/util.h>
27 #include "lib/ratio.h"
28 #include "lib/util.h"
29
30 using std::ostream;
31
32 BOOST_AUTO_TEST_CASE (ratio_test)
33 {
34         Ratio::setup_ratios ();
35
36         Ratio const * r = Ratio::from_id ("119");
37         BOOST_CHECK (r);
38         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1290, 1080));
39
40         r = Ratio::from_id ("133");
41         BOOST_CHECK (r);
42         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1440, 1080));
43
44         r = Ratio::from_id ("137");
45         BOOST_CHECK (r);
46         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1480, 1080));
47
48         r = Ratio::from_id ("138");
49         BOOST_CHECK (r);
50         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1485, 1080));
51
52         r = Ratio::from_id ("166");
53         BOOST_CHECK (r);
54         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1800, 1080));
55
56         r = Ratio::from_id ("178");
57         BOOST_CHECK (r);
58         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1920, 1080));
59
60         r = Ratio::from_id ("185");
61         BOOST_CHECK (r);
62         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (1998, 1080));
63
64         r = Ratio::from_id ("239");
65         BOOST_CHECK (r);
66         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (2048, 858));
67
68         r = Ratio::from_id ("full-frame");
69         BOOST_CHECK (r);
70         BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080), 1), dcp::Size (2048, 1080));
71 }
72