Merge branch '1.0' of ssh://carlh.dyndns.org/home/carl/git/dvdomatic into 1.0
[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::stringstream;
31 using std::list;
32 using boost::shared_ptr;
33
34 BOOST_AUTO_TEST_CASE (film_metadata_test)
35 {
36         string const test_film = "build/test/film_metadata_test";
37         
38         if (boost::filesystem::exists (test_film)) {
39                 boost::filesystem::remove_all (test_film);
40         }
41
42         shared_ptr<Film> f (new Film (test_film));
43         f->_dci_date = boost::gregorian::from_undelimited_string ("20130211");
44         BOOST_CHECK (f->container() == 0);
45         BOOST_CHECK (f->dcp_content_type() == 0);
46
47         f->set_name ("fred");
48         f->set_dcp_content_type (DCPContentType::from_pretty_name ("Short"));
49         f->set_container (Ratio::from_id ("185"));
50         f->set_j2k_bandwidth (200000000);
51         f->write_metadata ();
52
53         list<string> ignore;
54         ignore.push_back ("Key");
55         check_xml ("test/data/metadata.xml.ref", test_film + "/metadata.xml", ignore);
56
57         shared_ptr<Film> g (new Film (test_film));
58         g->read_metadata ();
59
60         BOOST_CHECK_EQUAL (g->name(), "fred");
61         BOOST_CHECK_EQUAL (g->dcp_content_type(), DCPContentType::from_pretty_name ("Short"));
62         BOOST_CHECK_EQUAL (g->container(), Ratio::from_id ("185"));
63         
64         g->write_metadata ();
65         check_xml ("test/data/metadata.xml.ref", test_film + "/metadata.xml", ignore);
66 }