216c3c5c406c5f7909171c2c0527a19f1155e7e4
[libdcp.git] / test / image_test.cc
1 /*
2     Copyright (C) 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 "image.h"
21 #include <boost/test/unit_test.hpp>
22
23 using std::string;
24 using boost::shared_ptr;
25
26 class TestImage : public dcp::Image
27 {
28 public:
29         TestImage (dcp::Size s)
30                 : Image (s)
31         {
32
33         }
34
35         TestImage (TestImage const & other)
36                 : Image (other)
37         {
38
39         }
40
41         TestImage (shared_ptr<const TestImage> other)
42                 : Image (other)
43         {
44
45         }
46
47         uint8_t * const * data () const {
48                 return 0;
49         }
50
51         int const * stride () const {
52                 return 0;
53         }
54 };
55
56 /** Token test for Image class to keep gcov happy */
57 BOOST_AUTO_TEST_CASE (image_test)
58 {
59         TestImage im (dcp::Size (412, 930));
60         BOOST_CHECK_EQUAL (im.size (), dcp::Size (412, 930));
61
62         TestImage im2 (im);
63         BOOST_CHECK_EQUAL (im2.size (), im.size ());
64
65         shared_ptr<TestImage> im3 (new TestImage (dcp::Size (1203, 1294)));
66         TestImage im4 (im3);
67         BOOST_CHECK_EQUAL (im4.size (), im3->size ());
68 }