21cf18c76e82678e8495c22d8849670344a06a7c
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012 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 <vector>
21 #include <list>
22 #include <libdcp/dcp.h>
23 #include "lib/config.h"
24 #include "lib/util.h"
25 #include "lib/ui_signaller.h"
26 #include "lib/film.h"
27 #include "lib/job_manager.h"
28 #include "lib/job.h"
29 #include "lib/cross.h"
30 #define BOOST_TEST_DYN_LINK
31 #define BOOST_TEST_MODULE dcpomatic_test
32 #include <boost/test/unit_test.hpp>
33
34 using std::string;
35 using std::vector;
36 using std::min;
37 using std::cout;
38 using std::cerr;
39 using std::list;
40 using boost::shared_ptr;
41
42 struct TestConfig
43 {
44         TestConfig()
45         {
46                 dcpomatic_setup();
47
48                 Config::instance()->set_num_local_encoding_threads (1);
49                 Config::instance()->set_servers (vector<shared_ptr<ServerDescription> > ());
50                 Config::instance()->set_server_port (61920);
51                 Config::instance()->set_default_dci_metadata (DCIMetadata ());
52                 Config::instance()->set_default_container (static_cast<Ratio*> (0));
53                 Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
54
55                 ui_signaller = new UISignaller ();
56         }
57 };
58
59 BOOST_GLOBAL_FIXTURE (TestConfig);
60
61 boost::filesystem::path
62 test_film_dir (string name)
63 {
64         boost::filesystem::path p;
65         p /= "build";
66         p /= "test";
67         p /= name;
68         return p;
69 }
70
71 shared_ptr<Film>
72 new_test_film (string name)
73 {
74         boost::filesystem::path p = test_film_dir (name);
75         if (boost::filesystem::exists (p)) {
76                 boost::filesystem::remove_all (p);
77         }
78         
79         shared_ptr<Film> f = shared_ptr<Film> (new Film (p.string()));
80         f->write_metadata ();
81         return f;
82 }
83
84 static void
85 check_file (string ref, string check)
86 {
87         uintmax_t N = boost::filesystem::file_size (ref);
88         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size(check));
89         FILE* ref_file = fopen (ref.c_str(), "rb");
90         BOOST_CHECK (ref_file);
91         FILE* check_file = fopen (check.c_str(), "rb");
92         BOOST_CHECK (check_file);
93         
94         int const buffer_size = 65536;
95         uint8_t* ref_buffer = new uint8_t[buffer_size];
96         uint8_t* check_buffer = new uint8_t[buffer_size];
97
98         while (N) {
99                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
100                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
101                 BOOST_CHECK_EQUAL (r, this_time);
102                 r = fread (check_buffer, 1, this_time, check_file);
103                 BOOST_CHECK_EQUAL (r, this_time);
104
105                 BOOST_CHECK_EQUAL (memcmp (ref_buffer, check_buffer, this_time), 0);
106                 N -= this_time;
107         }
108
109         delete[] ref_buffer;
110         delete[] check_buffer;
111
112         fclose (ref_file);
113         fclose (check_file);
114 }
115
116 static void
117 note (libdcp::NoteType, string n)
118 {
119         cout << n << "\n";
120 }
121
122 void
123 check_dcp (string ref, string check)
124 {
125         libdcp::DCP ref_dcp (ref);
126         ref_dcp.read ();
127         libdcp::DCP check_dcp (check);
128         check_dcp.read ();
129
130         libdcp::EqualityOptions options;
131         options.max_mean_pixel_error = 5;
132         options.max_std_dev_pixel_error = 5;
133         options.max_audio_sample_error = 255;
134         options.cpl_names_can_differ = true;
135         options.mxf_names_can_differ = true;
136         
137         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
138 }
139
140 void
141 wait_for_jobs ()
142 {
143         JobManager* jm = JobManager::instance ();
144         while (jm->work_to_do ()) {}
145         if (jm->errors ()) {
146                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
147                         if ((*i)->finished_in_error ()) {
148                                 cerr << (*i)->error_summary () << "\n"
149                                      << (*i)->error_details () << "\n";
150                         }
151                 }
152         }
153                 
154         BOOST_CHECK (!jm->errors());
155
156         /* Hack: wait for ui_signaller signals to fire */
157         dcpomatic_sleep (1);
158 }