X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ffilm_metadata_test.cc;h=423bc4cccd7467c1532fe9d5190b1e2977199fba;hb=7bd4ecce60488f7f7cfbdcc16ba7022b979a891d;hp=e0406db55dcce676f671d6027369c593dfa239d8;hpb=a0856e3fbef17f24073b01cb96be6bbcb229ecbc;p=dcpomatic.git diff --git a/test/film_metadata_test.cc b/test/film_metadata_test.cc index e0406db55..423bc4ccc 100644 --- a/test/film_metadata_test.cc +++ b/test/film_metadata_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington 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 @@ -17,37 +17,48 @@ */ +/** @file test/film_metadata_test.cc + * @brief Test some basic reading/writing of film metadata. + */ + +#include +#include +#include +#include "lib/film.h" +#include "lib/dcp_content_type.h" +#include "lib/ratio.h" +#include "test.h" + +using std::string; +using std::list; +using boost::shared_ptr; + BOOST_AUTO_TEST_CASE (film_metadata_test) { - string const test_film = "build/test/film_metadata_test"; - - if (boost::filesystem::exists (test_film)) { - boost::filesystem::remove_all (test_film); - } - - shared_ptr f (new Film (test_film)); - f->_dci_date = boost::gregorian::from_undelimited_string ("20130211"); - BOOST_CHECK (f->container() == 0); - BOOST_CHECK (f->dcp_content_type() == 0); - - f->set_name ("fred"); - f->set_dcp_content_type (DCPContentType::from_pretty_name ("Short")); - f->set_container (Ratio::from_id ("185")); - f->set_ab (true); - f->write_metadata (); - - stringstream s; - s << "diff -u test/data/metadata.xml.ref " << test_film << "/metadata.xml"; - BOOST_CHECK_EQUAL (::system (s.str().c_str ()), 0); - - shared_ptr g (new Film (test_film)); + shared_ptr film = new_test_film ("film_metadata_test"); + boost::filesystem::path dir = test_film_dir ("film_metadata_test"); + + film->_isdcf_date = boost::gregorian::from_undelimited_string ("20130211"); + BOOST_CHECK (film->container() == Ratio::from_id ("185")); + BOOST_CHECK (film->dcp_content_type() == 0); + + film->set_name ("fred"); + film->set_dcp_content_type (DCPContentType::from_pretty_name ("Short")); + film->set_container (Ratio::from_id ("185")); + film->set_j2k_bandwidth (200000000); + film->write_metadata (); + + list ignore; + ignore.push_back ("Key"); + check_xml ("test/data/metadata.xml.ref", dir.string() + "/metadata.xml", ignore); + + shared_ptr 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->container(), Ratio::from_id ("185")); - BOOST_CHECK_EQUAL (g->ab(), true); - + g->write_metadata (); - BOOST_CHECK_EQUAL (::system (s.str().c_str ()), 0); + check_xml ("test/data/metadata.xml.ref", dir.string() + "/metadata.xml", ignore); }