summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-05-09 22:07:51 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-09 22:07:51 +0200
commitb50a098f422cdb671a67ccb41e2837aa505e405b (patch)
treeb903e7e82257a2d8fba0ca0b1ea2ea610190e299
parent21702cc5f4b0e6fc7114f9fffb118246fbfda2e2 (diff)
Remove erroneous call to optional_node_child().
Just after this we loop over all <Text> nodes, and optional_node_child will raise an exception if there is more than one.
-rw-r--r--src/lib/text_content.cc4
-rw-r--r--test/film_metadata_test.cc25
2 files changed, 25 insertions, 4 deletions
diff --git a/src/lib/text_content.cc b/src/lib/text_content.cc
index 4ba2de348..5ae8dd45e 100644
--- a/src/lib/text_content.cc
+++ b/src/lib/text_content.cc
@@ -104,10 +104,6 @@ TextContent::from_xml (Content* parent, cxml::ConstNodePtr node, int version)
return { make_shared<TextContent>(parent, node, version) };
}
- if (!node->optional_node_child("Text")) {
- return {};
- }
-
list<shared_ptr<TextContent>> c;
for (auto i: node->node_children("Text")) {
c.push_back (make_shared<TextContent>(parent, i, version));
diff --git a/test/film_metadata_test.cc b/test/film_metadata_test.cc
index 5fcb4b195..92c06210a 100644
--- a/test/film_metadata_test.cc
+++ b/test/film_metadata_test.cc
@@ -18,6 +18,7 @@
*/
+
/** @file test/film_metadata_test.cc
* @brief Test some basic reading/writing of film metadata.
* @ingroup feature
@@ -76,3 +77,27 @@ BOOST_AUTO_TEST_CASE (film_metadata_test)
g->write_metadata ();
check_xml ("test/data/metadata.xml.ref", dir.string() + "/metadata.xml", ignore);
}
+
+
+/** Check a bug where <Content> tags with multiple <Text>s would fail to load */
+BOOST_AUTO_TEST_CASE (multiple_text_nodes_are_allowed)
+{
+ auto subs = content_factory("test/data/15s.srt").front();
+ auto caps = content_factory("test/data/15s.srt").front();
+ auto film = new_test_film2("multiple_text_nodes_are_allowed1", { subs, caps });
+ caps->only_text()->set_type(TextType::CLOSED_CAPTION);
+ make_and_verify_dcp (
+ film,
+ {
+ dcp::VerificationNote::Code::MISSING_CPL_METADATA,
+ dcp::VerificationNote::Code::MISSING_SUBTITLE_LANGUAGE,
+ dcp::VerificationNote::Code::INVALID_SUBTITLE_FIRST_TEXT_TIME
+ });
+
+ auto reload = make_shared<DCPContent>(film->dir(film->dcp_name()));
+ auto film2 = new_test_film2("multiple_text_nodes_are_allowed2", { reload });
+ film2->write_metadata ();
+
+ auto test = make_shared<Film>(boost::filesystem::path("build/test/multiple_text_nodes_are_allowed2"));
+ test->read_metadata();
+}