Another test.
authorCarl Hetherington <cth@carlh.net>
Sun, 28 Dec 2014 02:50:49 +0000 (02:50 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 28 Dec 2014 02:50:49 +0000 (02:50 +0000)
test/smpte_load_font_test.cc [new file with mode: 0644]
test/wscript

diff --git a/test/smpte_load_font_test.cc b/test/smpte_load_font_test.cc
new file mode 100644 (file)
index 0000000..4f9d212
--- /dev/null
@@ -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");
+}
index ad1f0c02168a1967732d01de4335745164daeb2f..dee75aecddebd808281ddbc474131bde929d0ad1 100644 (file)
@@ -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