Merge master.
[dcpomatic.git] / test / film_metadata_test.cc
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  test/film_metadata_test.cc
21  *  @brief Test some basic reading/writing of film metadata.
22  */
23
24 #include <boost/test/unit_test.hpp>
25 #include <boost/filesystem.hpp>
26 #include <boost/date_time.hpp>
27 #include "lib/film.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/ratio.h"
30 #include "test.h"
31
32 using std::string;
33 using std::list;
34 using boost::shared_ptr;
35
36 BOOST_AUTO_TEST_CASE (film_metadata_test)
37 {
38         shared_ptr<Film> f = new_test_film ("film_metadata_test");
39         boost::filesystem::path dir = test_film_dir ("film_metadata_test");
40
41         f->_isdcf_date = boost::gregorian::from_undelimited_string ("20130211");
42         BOOST_CHECK (f->container() == 0);
43         BOOST_CHECK (f->dcp_content_type() == 0);
44
45         f->set_name ("fred");
46         f->set_dcp_content_type (DCPContentType::from_pretty_name ("Short"));
47         f->set_container (Ratio::from_id ("185"));
48         f->set_j2k_bandwidth (200000000);
49         f->write_metadata ();
50
51         list<string> ignore;
52         ignore.push_back ("Key");
53         check_xml ("test/data/metadata.xml.ref", dir.string() + "/metadata.xml", ignore);
54
55         shared_ptr<Film> g (new Film (dir));
56         g->read_metadata ();
57
58         BOOST_CHECK_EQUAL (g->name(), "fred");
59         BOOST_CHECK_EQUAL (g->dcp_content_type(), DCPContentType::from_pretty_name ("Short"));
60         BOOST_CHECK_EQUAL (g->container(), Ratio::from_id ("185"));
61         
62         g->write_metadata ();
63         check_xml ("test/data/metadata.xml.ref", dir.string() + "/metadata.xml", ignore);
64 }