c41e8618900af948c77cd85e1f8e4fabb7bd410b
[dcpomatic.git] / test / film_metadata_test.cc
1 /*
2     Copyright (C) 2013 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 #include <sstream>
21 #include <boost/test/unit_test.hpp>
22 #include <boost/filesystem.hpp>
23 #include <boost/date_time.hpp>
24 #include "lib/film.h"
25 #include "lib/dcp_content_type.h"
26 #include "lib/ratio.h"
27 #include "test.h"
28
29 using std::string;
30 using std::list;
31 using boost::shared_ptr;
32
33 BOOST_AUTO_TEST_CASE (film_metadata_test)
34 {
35         string const test_film = "build/test/film_metadata_test";
36         
37         if (boost::filesystem::exists (test_film)) {
38                 boost::filesystem::remove_all (test_film);
39         }
40
41         shared_ptr<Film> f (new Film (test_film));
42         f->_isdcf_date = boost::gregorian::from_undelimited_string ("20130211");
43         BOOST_CHECK (f->container() == 0);
44         BOOST_CHECK (f->dcp_content_type() == 0);
45
46         f->set_name ("fred");
47         f->set_dcp_content_type (DCPContentType::from_pretty_name ("Short"));
48         f->set_container (Ratio::from_id ("185"));
49         f->set_j2k_bandwidth (200000000);
50         f->write_metadata ();
51
52         list<string> ignore;
53         ignore.push_back ("Key");
54         check_xml ("test/data/metadata.xml.ref", test_film + "/metadata.xml", ignore);
55
56         shared_ptr<Film> g (new Film (test_film));
57         g->read_metadata ();
58
59         BOOST_CHECK_EQUAL (g->name(), "fred");
60         BOOST_CHECK_EQUAL (g->dcp_content_type(), DCPContentType::from_pretty_name ("Short"));
61         BOOST_CHECK_EQUAL (g->container(), Ratio::from_id ("185"));
62         
63         g->write_metadata ();
64         check_xml ("test/data/metadata.xml.ref", test_film + "/metadata.xml", ignore);
65 }