Various playlist editor developments and fixes.
[dcpomatic.git] / test / film_metadata_test.cc
index 970c6526d764ae3d609390e3ffca458e564a99a1..854d3e6eae376be76164468f01d03703d4987d35 100644 (file)
@@ -20,6 +20,7 @@
 
 /** @file  test/film_metadata_test.cc
  *  @brief Test some basic reading/writing of film metadata.
+ *  @ingroup specific
  */
 
 #include <boost/test/unit_test.hpp>
@@ -44,20 +45,22 @@ BOOST_AUTO_TEST_CASE (film_metadata_test)
        BOOST_CHECK (film->dcp_content_type() == 0);
 
        film->set_name ("fred");
-       film->set_dcp_content_type (DCPContentType::from_pretty_name ("Short"));
+       film->set_dcp_content_type (DCPContentType::from_isdcf_name ("SHR"));
        film->set_container (Ratio::from_id ("185"));
        film->set_j2k_bandwidth (200000000);
+       film->set_interop (false);
        film->write_metadata ();
 
        list<string> ignore;
        ignore.push_back ("Key");
+       ignore.push_back ("ContextID");
        check_xml ("test/data/metadata.xml.ref", dir.string() + "/metadata.xml", ignore);
 
        shared_ptr<Film> g (new Film (dir));
        g->read_metadata ();
 
        BOOST_CHECK_EQUAL (g->name(), "fred");
-       BOOST_CHECK_EQUAL (g->dcp_content_type(), DCPContentType::from_pretty_name ("Short"));
+       BOOST_CHECK_EQUAL (g->dcp_content_type(), DCPContentType::from_isdcf_name ("SHR"));
        BOOST_CHECK_EQUAL (g->container(), Ratio::from_id ("185"));
 
        g->write_metadata ();