Remove erroneous call to optional_node_child().
authorCarl Hetherington <cth@carlh.net>
Sun, 9 May 2021 20:07:51 +0000 (22:07 +0200)
committerCarl Hetherington <cth@carlh.net>
Sun, 9 May 2021 20:07:51 +0000 (22:07 +0200)
Just after this we loop over all <Text> nodes, and optional_node_child
will raise an exception if there is more than one.

src/lib/text_content.cc
test/film_metadata_test.cc

index 4ba2de348d076c79aee657aac4b79086bab60e4b..5ae8dd45eb47724454b6ebd18397e4755ec3dd45 100644 (file)
@@ -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));
index 5fcb4b195eedcf714d53e9e1c9dce4d18b903b82..92c06210a7f3a4b46440464b7f5628da7a197762 100644 (file)
@@ -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();
+}