Small libdcp API change.
[dcpomatic.git] / test / digest_test.cc
1 /*
2     Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "lib/film.h"
22 #include "lib/image_content.h"
23 #include "lib/dcp_content_type.h"
24 #include "lib/compose.hpp"
25 #include "lib/config.h"
26 #include "test.h"
27 #include <dcp/cpl.h>
28 #include <dcp/reel.h>
29 #include <dcp/reel_picture_asset.h>
30 #include <boost/test/unit_test.hpp>
31
32 using std::list;
33 using std::string;
34 using boost::shared_ptr;
35
36 static string
37 openssl_hash (boost::filesystem::path file)
38 {
39         FILE* pipe = popen (String::compose ("openssl sha1 -binary %1 | openssl base64 -e", file.string()).c_str (), "r");
40         BOOST_REQUIRE (pipe);
41         char buffer[128];
42         string output;
43         while (!feof (pipe)) {
44                 if (fgets (buffer, sizeof(buffer), pipe)) {
45                         output += buffer;
46                 }
47         }
48         pclose (pipe);
49         if (!output.empty ()) {
50                 output = output.substr (0, output.length() - 1);
51         }
52         return output;
53 }
54
55 /** Test the digests made by the DCP writing code on a multi-reel DCP */
56 BOOST_AUTO_TEST_CASE (digest_test)
57 {
58         shared_ptr<Film> film = new_test_film ("digest_test");
59         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
60         film->set_name ("digest_test");
61         shared_ptr<ImageContent> r (new ImageContent (film, "test/data/flat_red.png"));
62         shared_ptr<ImageContent> g (new ImageContent (film, "test/data/flat_green.png"));
63         shared_ptr<ImageContent> b (new ImageContent (film, "test/data/flat_blue.png"));
64         film->examine_and_add_content (r);
65         film->examine_and_add_content (g);
66         film->examine_and_add_content (b);
67         film->set_reel_type (REELTYPE_BY_VIDEO_CONTENT);
68         wait_for_jobs ();
69
70         Config::instance()->set_num_local_encoding_threads (4);
71         film->make_dcp ();
72         wait_for_jobs ();
73         Config::instance()->set_num_local_encoding_threads (1);
74
75         dcp::DCP dcp (film->dir (film->dcp_name ()));
76         dcp.read ();
77         BOOST_CHECK_EQUAL (dcp.cpls().size(), 1);
78         list<shared_ptr<dcp::Reel> > reels = dcp.cpls().front()->reels ();
79
80         list<shared_ptr<dcp::Reel> >::const_iterator i = reels.begin ();
81         BOOST_REQUIRE (i != reels.end ());
82         BOOST_CHECK_EQUAL ((*i)->main_picture()->hash().get(), openssl_hash ((*i)->main_picture()->asset()->file().get()));
83         ++i;
84         BOOST_REQUIRE (i != reels.end ());
85         BOOST_CHECK_EQUAL ((*i)->main_picture()->hash().get(), openssl_hash ((*i)->main_picture()->asset()->file().get()));
86         ++i;
87         BOOST_REQUIRE (i != reels.end ());
88         BOOST_CHECK_EQUAL ((*i)->main_picture()->hash().get(), openssl_hash ((*i)->main_picture()->asset()->file().get()));
89         ++i;
90         BOOST_REQUIRE (i == reels.end ());
91 }