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