Better information when check_audio_file fails.
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012-2015 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/test.cc
21  *  @brief Overall test stuff and useful methods for tests.
22  */
23
24 #include "lib/config.h"
25 #include "lib/util.h"
26 #include "lib/signal_manager.h"
27 #include "lib/film.h"
28 #include "lib/job_manager.h"
29 #include "lib/job.h"
30 #include "lib/cross.h"
31 #include "lib/encode_server_finder.h"
32 #include "lib/image.h"
33 #include "lib/ratio.h"
34 #include "lib/log_entry.h"
35 #include <dcp/dcp.h>
36 #include <sndfile.h>
37 #include <libxml++/libxml++.h>
38 #include <Magick++.h>
39 #define BOOST_TEST_DYN_LINK
40 #define BOOST_TEST_MODULE dcpomatic_test
41 #include <boost/test/unit_test.hpp>
42 #include <list>
43 #include <vector>
44 #include <iostream>
45
46 using std::string;
47 using std::vector;
48 using std::min;
49 using std::cout;
50 using std::cerr;
51 using std::list;
52 using std::abs;
53 using boost::shared_ptr;
54 using boost::scoped_array;
55
56 boost::filesystem::path private_data = boost::filesystem::path ("..") / boost::filesystem::path ("dcpomatic-test-private");
57
58 class TestSignalManager : public SignalManager
59 {
60 public:
61         /* No wakes in tests: we call ui_idle ourselves */
62         void wake_ui ()
63         {
64
65         }
66 };
67
68 struct TestConfig
69 {
70         TestConfig ()
71         {
72                 dcpomatic_setup ();
73
74                 Config::instance()->set_num_local_encoding_threads (1);
75                 Config::instance()->set_server_port_base (61921);
76                 Config::instance()->set_default_isdcf_metadata (ISDCFMetadata ());
77                 Config::instance()->set_default_container (Ratio::from_id ("185"));
78                 Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
79                 Config::instance()->set_default_audio_delay (0);
80                 Config::instance()->set_default_j2k_bandwidth (100000000);
81                 Config::instance()->set_log_types (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR);
82
83                 EncodeServerFinder::instance()->disable ();
84
85                 signal_manager = new TestSignalManager ();
86         }
87
88         ~TestConfig ()
89         {
90                 JobManager::drop ();
91         }
92 };
93
94 BOOST_GLOBAL_FIXTURE (TestConfig);
95
96 boost::filesystem::path
97 test_film_dir (string name)
98 {
99         boost::filesystem::path p;
100         p /= "build";
101         p /= "test";
102         p /= name;
103         return p;
104 }
105
106 shared_ptr<Film>
107 new_test_film (string name)
108 {
109         boost::filesystem::path p = test_film_dir (name);
110         if (boost::filesystem::exists (p)) {
111                 boost::filesystem::remove_all (p);
112         }
113
114         shared_ptr<Film> film = shared_ptr<Film> (new Film (p.string()));
115         film->write_metadata ();
116         return film;
117 }
118
119 void
120 check_audio_file (boost::filesystem::path ref, boost::filesystem::path check)
121 {
122         SF_INFO ref_info;
123         ref_info.format = 0;
124         SNDFILE* ref_file = sf_open (ref.string().c_str(), SFM_READ, &ref_info);
125         BOOST_CHECK (ref_file);
126
127         SF_INFO check_info;
128         check_info.format = 0;
129         SNDFILE* check_file = sf_open (check.string().c_str(), SFM_READ, &check_info);
130         BOOST_CHECK (check_file);
131
132         BOOST_CHECK_EQUAL (ref_info.frames, check_info.frames);
133         BOOST_CHECK_EQUAL (ref_info.samplerate, check_info.samplerate);
134         BOOST_CHECK_EQUAL (ref_info.channels, check_info.channels);
135         BOOST_CHECK_EQUAL (ref_info.format, check_info.format);
136
137         /* buffer_size is in frames */
138         sf_count_t const buffer_size = 65536 * ref_info.channels;
139         scoped_array<int32_t> ref_buffer (new int32_t[buffer_size]);
140         scoped_array<int32_t> check_buffer (new int32_t[buffer_size]);
141
142         sf_count_t N = ref_info.frames;
143         while (N) {
144                 sf_count_t this_time = min (buffer_size, N);
145                 sf_count_t r = sf_readf_int (ref_file, ref_buffer.get(), this_time);
146                 BOOST_CHECK_EQUAL (r, this_time);
147                 r = sf_readf_int (check_file, check_buffer.get(), this_time);
148                 BOOST_CHECK_EQUAL (r, this_time);
149
150                 for (sf_count_t i = 0; i < this_time; ++i) {
151                         BOOST_REQUIRE_MESSAGE (
152                                 abs (ref_buffer[i] - check_buffer[i]) <= 65536,
153                                 ref << " differs from " << check << " at " << (ref_info.frames - N + i) << " of " << ref_info.frames
154                                 << "(" << ref_buffer[i] << " vs " << check_buffer[i] << ")"
155                                 );
156                 }
157
158                 N -= this_time;
159         }
160 }
161
162 void
163 check_file (boost::filesystem::path ref, boost::filesystem::path check)
164 {
165         uintmax_t N = boost::filesystem::file_size (ref);
166         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
167         FILE* ref_file = fopen_boost (ref, "rb");
168         BOOST_CHECK (ref_file);
169         FILE* check_file = fopen_boost (check, "rb");
170         BOOST_CHECK (check_file);
171
172         int const buffer_size = 65536;
173         uint8_t* ref_buffer = new uint8_t[buffer_size];
174         uint8_t* check_buffer = new uint8_t[buffer_size];
175
176         SafeStringStream error;
177         error << "File " << check.string() << " differs from reference " << ref.string();
178
179         while (N) {
180                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
181                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
182                 BOOST_CHECK_EQUAL (r, this_time);
183                 r = fread (check_buffer, 1, this_time, check_file);
184                 BOOST_CHECK_EQUAL (r, this_time);
185
186                 BOOST_CHECK_MESSAGE (memcmp (ref_buffer, check_buffer, this_time) == 0, error.str ());
187                 if (memcmp (ref_buffer, check_buffer, this_time)) {
188                         break;
189                 }
190
191                 N -= this_time;
192         }
193
194         delete[] ref_buffer;
195         delete[] check_buffer;
196
197         fclose (ref_file);
198         fclose (check_file);
199 }
200
201 static void
202 note (dcp::NoteType t, string n)
203 {
204         if (t == dcp::DCP_ERROR) {
205                 cerr << n << "\n";
206         }
207 }
208
209 void
210 check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
211 {
212         dcp::DCP ref_dcp (ref);
213         ref_dcp.read ();
214         dcp::DCP check_dcp (check);
215         check_dcp.read ();
216
217         dcp::EqualityOptions options;
218         options.max_mean_pixel_error = 5;
219         options.max_std_dev_pixel_error = 5;
220         options.max_audio_sample_error = 255;
221         options.cpl_annotation_texts_can_differ = true;
222         options.reel_annotation_texts_can_differ = true;
223         options.reel_hashes_can_differ = true;
224         options.issue_dates_can_differ = true;
225
226         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
227 }
228
229 void
230 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
231 {
232         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
233         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
234
235         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
236                 return;
237         }
238
239         xmlpp::Element::NodeList ref_children = ref->get_children ();
240         xmlpp::Element::NodeList test_children = test->get_children ();
241         BOOST_CHECK_EQUAL (ref_children.size (), test_children.size ());
242
243         xmlpp::Element::NodeList::iterator k = ref_children.begin ();
244         xmlpp::Element::NodeList::iterator l = test_children.begin ();
245         while (k != ref_children.end ()) {
246
247                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
248
249                 xmlpp::Element* ref_el = dynamic_cast<xmlpp::Element*> (*k);
250                 xmlpp::Element* test_el = dynamic_cast<xmlpp::Element*> (*l);
251                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
252                 if (ref_el && test_el) {
253                         check_xml (ref_el, test_el, ignore);
254                 }
255
256                 xmlpp::ContentNode* ref_cn = dynamic_cast<xmlpp::ContentNode*> (*k);
257                 xmlpp::ContentNode* test_cn = dynamic_cast<xmlpp::ContentNode*> (*l);
258                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
259                 if (ref_cn && test_cn) {
260                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
261                 }
262
263                 ++k;
264                 ++l;
265         }
266
267         xmlpp::Element::AttributeList ref_attributes = ref->get_attributes ();
268         xmlpp::Element::AttributeList test_attributes = test->get_attributes ();
269         BOOST_CHECK_EQUAL (ref_attributes.size(), test_attributes.size ());
270
271         xmlpp::Element::AttributeList::const_iterator m = ref_attributes.begin();
272         xmlpp::Element::AttributeList::const_iterator n = test_attributes.begin();
273         while (m != ref_attributes.end ()) {
274                 BOOST_CHECK_EQUAL ((*m)->get_name(), (*n)->get_name());
275                 BOOST_CHECK_EQUAL ((*m)->get_value(), (*n)->get_value());
276
277                 ++m;
278                 ++n;
279         }
280 }
281
282 void
283 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
284 {
285         xmlpp::DomParser* ref_parser = new xmlpp::DomParser (ref.string ());
286         xmlpp::Element* ref_root = ref_parser->get_document()->get_root_node ();
287         xmlpp::DomParser* test_parser = new xmlpp::DomParser (test.string ());
288         xmlpp::Element* test_root = test_parser->get_document()->get_root_node ();
289
290         check_xml (ref_root, test_root, ignore);
291 }
292
293 void
294 wait_for_jobs ()
295 {
296         JobManager* jm = JobManager::instance ();
297         while (jm->work_to_do ()) {
298                 while (signal_manager->ui_idle ()) {}
299                 dcpomatic_sleep (1);
300         }
301
302         if (jm->errors ()) {
303                 int N = 0;
304                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
305                         if ((*i)->finished_in_error ()) {
306                                 ++N;
307                         }
308                 }
309                 cerr << N << " errors.\n";
310
311                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
312                         if ((*i)->finished_in_error ()) {
313                                 cerr << (*i)->name() << ":\n"
314                                      << "\tsummary: " << (*i)->error_summary () << "\n"
315                                      << "\tdetails: " << (*i)->error_details () << "\n";
316                         }
317                 }
318         }
319
320         while (signal_manager->ui_idle ()) {}
321
322         if (jm->errors ()) {
323                 JobManager::drop ();
324         }
325 }
326
327 void
328 write_image (shared_ptr<const Image> image, boost::filesystem::path file)
329 {
330 #ifdef DCPOMATIC_IMAGE_MAGICK
331                 using namespace MagickCore;
332 #else
333                 using namespace MagickLib;
334 #endif
335
336         Magick::Image m (image->size().width, image->size().height, "ARGB", CharPixel, (void *) image->data()[0]);
337         m.write (file.string ());
338 }