summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-28 02:50:49 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-28 02:50:49 +0000
commitf8b49d20c690d19e9cd5dd9cddc3a834e526ba87 (patch)
tree0c88532f00e7f9f8f2cb8a47af57284b6dfeaae6 /test
parent795b049f4a167677a8a2d39a4a09e8f5c2bb8dca (diff)
Another test.
Diffstat (limited to 'test')
-rw-r--r--test/smpte_load_font_test.cc36
-rw-r--r--test/wscript1
2 files changed, 37 insertions, 0 deletions
diff --git a/test/smpte_load_font_test.cc b/test/smpte_load_font_test.cc
new file mode 100644
index 00000000..4f9d2128
--- /dev/null
+++ b/test/smpte_load_font_test.cc
@@ -0,0 +1,36 @@
+/*
+ Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "smpte_load_font.h"
+#include <libcxml/cxml.h>
+#include <libxml++/libxml++.h>
+#include <boost/test/unit_test.hpp>
+
+BOOST_AUTO_TEST_CASE (smpte_load_font_test1)
+{
+ xmlpp::Document doc;
+ xmlpp::Element* text = doc.create_root_node("Font");
+
+ text->set_attribute("ID", "my-great-id");
+ text->add_child_text("urn:uuid:my-great-urn");
+ dcp::SMPTELoadFont lf (cxml::ConstNodePtr (new cxml::Node (text)));
+
+ BOOST_CHECK_EQUAL (lf.id, "my-great-id");
+ BOOST_CHECK_EQUAL (lf.urn, "my-great-urn");
+}
diff --git a/test/wscript b/test/wscript
index ad1f0c02..dee75aec 100644
--- a/test/wscript
+++ b/test/wscript
@@ -43,6 +43,7 @@ def build(bld):
read_dcp_test.cc
recovery_test.cc
round_trip_test.cc
+ smpte_load_font_test.cc
subtitle_tests.cc
test.cc
text_test.cc