Rename read_interop_subtitle_test -> interop_subtitle_test.
[libdcp.git] / test / interop_load_font_test.cc
1 /*
2     Copyright (C) 2014 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 "interop_load_font_node.h"
21 #include <libcxml/cxml.h>
22 #include <libxml++/libxml++.h>
23 #include <boost/test/unit_test.hpp>
24
25 /** Test dcp::InteropLoadFont's simple constructor */
26 BOOST_AUTO_TEST_CASE (interop_load_font_test1)
27 {
28         dcp::InteropLoadFontNode lf ("my-great-id", "my-great-uri");
29         BOOST_CHECK_EQUAL (lf.id, "my-great-id");
30         BOOST_CHECK_EQUAL (lf.uri, "my-great-uri");
31 }
32
33 /** Test dcp::InteropLoadFont's XML constructor */
34 BOOST_AUTO_TEST_CASE (interop_load_font_test2)
35 {
36         xmlpp::Document doc;
37         xmlpp::Element* text = doc.create_root_node("Font");
38
39         text->set_attribute("Id", "my-great-id");
40         text->set_attribute("URI", "my-great-uri");
41         dcp::InteropLoadFontNode lf (cxml::ConstNodePtr (new cxml::Node (text)));
42
43         BOOST_CHECK_EQUAL (lf.id, "my-great-id");
44 }
45
46 /** As per _test2 but with another capitalisation of ID */
47 BOOST_AUTO_TEST_CASE (interop_load_font_test3)
48 {
49         xmlpp::Document doc;
50         xmlpp::Element* text = doc.create_root_node("Font");
51
52         text->set_attribute("ID", "my-great-id");
53         text->set_attribute("URI", "my-great-uri");
54         dcp::InteropLoadFontNode lf (cxml::ConstNodePtr (new cxml::Node (text)));
55
56         BOOST_CHECK_EQUAL (lf.id, "my-great-id");
57 }
58
59 /** Test operator== and operator!= */
60 BOOST_AUTO_TEST_CASE (interop_load_font_test4)
61 {
62         dcp::InteropLoadFontNode A ("my-create-id", "my-great-uri");
63         dcp::InteropLoadFontNode B ("my-create-id", "my-great-uri");
64         dcp::InteropLoadFontNode C ("my-create-id", "another-great-uri");
65
66         BOOST_CHECK (A == B);
67         BOOST_CHECK (B != C);
68 }