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