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