Bump waf to 2.0.27.
[libdcp.git] / test / colour_test.cc
1 /*
2     Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "util.h"
21 #include "exceptions.h"
22 #include <boost/test/unit_test.hpp>
23
24 /** Check that dcp::Colour works */
25 BOOST_AUTO_TEST_CASE (colour)
26 {
27         dcp::Colour z;
28
29         BOOST_CHECK_EQUAL (z.r, 0);
30         BOOST_CHECK_EQUAL (z.g, 0);
31         BOOST_CHECK_EQUAL (z.b, 0);
32         BOOST_CHECK_EQUAL (z.to_argb_string(), "FF000000");
33
34         dcp::Colour c ("FFFF0000");
35
36         BOOST_CHECK_EQUAL (c.r, 255);
37         BOOST_CHECK_EQUAL (c.g, 0);
38         BOOST_CHECK_EQUAL (c.b, 0);
39         BOOST_CHECK_EQUAL (c.to_argb_string(), "FFFF0000");
40
41         dcp::Colour d = dcp::Colour ("FF00FF00");
42
43         BOOST_CHECK_EQUAL (d.r, 0);
44         BOOST_CHECK_EQUAL (d.g, 255);
45         BOOST_CHECK_EQUAL (d.b, 0);
46         BOOST_CHECK_EQUAL (d.to_argb_string(), "FF00FF00");
47
48         dcp::Colour e = dcp::Colour ("FF0000FF");
49
50         BOOST_CHECK_EQUAL (e.r, 0);
51         BOOST_CHECK_EQUAL (e.g, 0);
52         BOOST_CHECK_EQUAL (e.b, 255);
53         BOOST_CHECK_EQUAL (e.to_argb_string(), "FF0000FF");
54
55         BOOST_CHECK (c != d);
56
57         BOOST_CHECK_THROW (dcp::Colour ("001234"), dcp::XMLError);
58 }