Fix incorrect extension on interop subtitle files (#2270).
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012-2021 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
22
23 /** @file  test/test.cc
24  *  @brief Overall test stuff and useful methods for tests.
25  */
26
27
28 #include "lib/compose.hpp"
29 #include "lib/config.h"
30 #include "lib/cross.h"
31 #include "lib/dcp_content_type.h"
32 #include "lib/dcpomatic_log.h"
33 #include "lib/encode_server_finder.h"
34 #include "lib/ffmpeg_image_proxy.h"
35 #include "lib/file_log.h"
36 #include "lib/film.h"
37 #include "lib/image.h"
38 #include "lib/job.h"
39 #include "lib/job_manager.h"
40 #include "lib/log_entry.h"
41 #include "lib/make_dcp.h"
42 #include "lib/ratio.h"
43 #include "lib/signal_manager.h"
44 #include "lib/util.h"
45 #include "test.h"
46 #include <dcp/cpl.h>
47 #include <dcp/dcp.h>
48 #include <dcp/mono_picture_asset.h>
49 #include <dcp/mono_picture_frame.h>
50 #include <dcp/openjpeg_image.h>
51 #include <dcp/reel.h>
52 #include <dcp/reel_picture_asset.h>
53 #include <asdcp/AS_DCP.h>
54 #include <png.h>
55 #include <sndfile.h>
56 #include <libxml++/libxml++.h>
57 extern "C" {
58 #include <libavformat/avformat.h>
59 }
60 #define BOOST_TEST_DYN_LINK
61 #define BOOST_TEST_MODULE dcpomatic_test
62 #include <boost/test/unit_test.hpp>
63 #include <boost/algorithm/string.hpp>
64 #include <iostream>
65 #include <list>
66 #include <vector>
67
68
69 using std::abs;
70 using std::cerr;
71 using std::cout;
72 using std::list;
73 using std::make_shared;
74 using std::min;
75 using std::shared_ptr;
76 using std::string;
77 using std::vector;
78 using boost::scoped_array;
79 using std::dynamic_pointer_cast;
80 #if BOOST_VERSION >= 106100
81 using namespace boost::placeholders;
82 #endif
83
84
85 boost::filesystem::path
86 TestPaths::TestPaths::private_data ()
87 {
88         char* env = getenv("DCPOMATIC_TEST_PRIVATE");
89         if (env) {
90                 return boost::filesystem::path(env);
91         }
92
93         return boost::filesystem::canonical(boost::filesystem::path ("..") / boost::filesystem::path ("dcpomatic-test-private"));
94 }
95
96
97 boost::filesystem::path TestPaths::xsd ()
98 {
99         return boost::filesystem::canonical(boost::filesystem::path("..") / boost::filesystem::path("libdcp") / boost::filesystem::path("xsd"));
100 }
101
102
103 static void
104 setup_test_config ()
105 {
106         Config::instance()->set_master_encoding_threads (boost::thread::hardware_concurrency() / 2);
107         Config::instance()->set_server_encoding_threads (1);
108         Config::instance()->set_server_port_base (61921);
109         Config::instance()->set_default_container (Ratio::from_id ("185"));
110         Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
111         Config::instance()->set_default_audio_delay (0);
112         Config::instance()->set_default_j2k_bandwidth (100000000);
113         Config::instance()->set_default_interop (false);
114         Config::instance()->set_default_still_length (10);
115         Config::instance()->set_log_types (
116                 LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING |
117                 LogEntry::TYPE_ERROR | LogEntry::TYPE_DISK
118                 );
119         Config::instance()->set_automatic_audio_analysis (false);
120         auto signer = make_shared<dcp::CertificateChain>(dcp::file_to_string("test/data/signer_chain"));
121         signer->set_key(dcp::file_to_string("test/data/signer_key"));
122         Config::instance()->set_signer_chain (signer);
123         auto decryption = make_shared<dcp::CertificateChain>(dcp::file_to_string("test/data/decryption_chain"));
124         decryption->set_key(dcp::file_to_string("test/data/decryption_key"));
125         Config::instance()->set_decryption_chain (decryption);
126 }
127
128
129 class TestSignalManager : public SignalManager
130 {
131 public:
132         /* No wakes in tests: we call ui_idle ourselves */
133         void wake_ui () override
134         {
135
136         }
137 };
138
139 struct TestConfig
140 {
141         TestConfig ()
142         {
143                 State::override_path = "build/test/state";
144                 boost::filesystem::remove_all (*State::override_path);
145
146                 dcpomatic_setup ();
147                 setup_test_config ();
148
149                 EncodeServerFinder::instance()->stop ();
150
151                 signal_manager = new TestSignalManager ();
152
153                 dcpomatic_log.reset (new FileLog("build/test/log"));
154         }
155
156         ~TestConfig ()
157         {
158                 JobManager::drop ();
159         }
160 };
161
162
163 BOOST_GLOBAL_FIXTURE (TestConfig);
164
165
166 boost::filesystem::path
167 test_film_dir (string name)
168 {
169         boost::filesystem::path p;
170         p /= "build";
171         p /= "test";
172         p /= name;
173         return p;
174 }
175
176
177 shared_ptr<Film>
178 new_test_film (string name)
179 {
180         auto p = test_film_dir (name);
181         if (boost::filesystem::exists (p)) {
182                 boost::filesystem::remove_all (p);
183         }
184
185         auto film = make_shared<Film>(p);
186         film->write_metadata ();
187         return film;
188 }
189
190
191 shared_ptr<Film>
192 new_test_film2 (string name, vector<shared_ptr<Content>> content, Cleanup* cleanup)
193 {
194         auto p = test_film_dir (name);
195         if (boost::filesystem::exists (p)) {
196                 boost::filesystem::remove_all (p);
197         }
198         if (cleanup) {
199                 cleanup->add (p);
200         }
201
202         auto film = make_shared<Film>(p);
203         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
204         film->set_container (Ratio::from_id ("185"));
205         film->write_metadata ();
206
207         for (auto i: content) {
208                 film->examine_and_add_content (i);
209                 BOOST_REQUIRE (!wait_for_jobs());
210         }
211
212         return film;
213 }
214
215
216 void
217 check_wav_file (boost::filesystem::path ref, boost::filesystem::path check)
218 {
219         SF_INFO ref_info;
220         ref_info.format = 0;
221         auto ref_file = sf_open (ref.string().c_str(), SFM_READ, &ref_info);
222         BOOST_CHECK (ref_file);
223
224         SF_INFO check_info;
225         check_info.format = 0;
226         auto check_file = sf_open (check.string().c_str(), SFM_READ, &check_info);
227         BOOST_CHECK (check_file);
228
229         BOOST_CHECK_EQUAL (ref_info.frames, check_info.frames);
230         BOOST_CHECK_EQUAL (ref_info.samplerate, check_info.samplerate);
231         BOOST_CHECK_EQUAL (ref_info.channels, check_info.channels);
232         BOOST_CHECK_EQUAL (ref_info.format, check_info.format);
233
234         /* buffer_size is in frames */
235         sf_count_t const buffer_size = 65536 * ref_info.channels;
236         scoped_array<int32_t> ref_buffer (new int32_t[buffer_size]);
237         scoped_array<int32_t> check_buffer (new int32_t[buffer_size]);
238
239         sf_count_t N = ref_info.frames;
240         while (N) {
241                 sf_count_t this_time = min (buffer_size, N);
242                 sf_count_t r = sf_readf_int (ref_file, ref_buffer.get(), this_time);
243                 BOOST_CHECK_EQUAL (r, this_time);
244                 r = sf_readf_int (check_file, check_buffer.get(), this_time);
245                 BOOST_CHECK_EQUAL (r, this_time);
246
247                 for (sf_count_t i = 0; i < this_time; ++i) {
248                         BOOST_REQUIRE_MESSAGE (
249                                 abs (ref_buffer[i] - check_buffer[i]) <= 65536,
250                                 ref << " differs from " << check << " at " << (ref_info.frames - N + i) << " of " << ref_info.frames
251                                 << "(" << ref_buffer[i] << " vs " << check_buffer[i] << ")"
252                                 );
253                 }
254
255                 N -= this_time;
256         }
257 }
258
259
260 void
261 check_mxf_audio_file (boost::filesystem::path ref, boost::filesystem::path check)
262 {
263         ASDCP::PCM::MXFReader ref_reader;
264         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.OpenRead (ref.string().c_str())));
265
266         ASDCP::PCM::AudioDescriptor ref_desc;
267         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.FillAudioDescriptor (ref_desc)));
268
269         ASDCP::PCM::MXFReader check_reader;
270         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.OpenRead (check.string().c_str())));
271
272         ASDCP::PCM::AudioDescriptor check_desc;
273         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.FillAudioDescriptor (check_desc)));
274
275         BOOST_REQUIRE_EQUAL (ref_desc.ContainerDuration, check_desc.ContainerDuration);
276
277         ASDCP::PCM::FrameBuffer ref_buffer (Kumu::Megabyte);
278         ASDCP::PCM::FrameBuffer check_buffer (Kumu::Megabyte);
279         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
280                 ref_reader.ReadFrame (i, ref_buffer, 0);
281                 check_reader.ReadFrame (i, check_buffer, 0);
282                 BOOST_REQUIRE (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size()) == 0);
283         }
284 }
285
286
287 /** @return true if the files are the same, otherwise false */
288 bool
289 mxf_atmos_files_same (boost::filesystem::path ref, boost::filesystem::path check, bool verbose)
290 {
291         ASDCP::ATMOS::MXFReader ref_reader;
292         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.OpenRead(ref.string().c_str())));
293
294         ASDCP::ATMOS::AtmosDescriptor ref_desc;
295         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.FillAtmosDescriptor(ref_desc)));
296
297         ASDCP::ATMOS::MXFReader check_reader;
298         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.OpenRead(check.string().c_str())));
299
300         ASDCP::ATMOS::AtmosDescriptor check_desc;
301         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.FillAtmosDescriptor(check_desc)));
302
303         if (ref_desc.EditRate.Numerator != check_desc.EditRate.Numerator) {
304                 if (verbose) {
305                         std::cout << "EditRate.Numerator differs.\n";
306                 }
307                 return false;
308         }
309         if (ref_desc.EditRate.Denominator != check_desc.EditRate.Denominator) {
310                 if (verbose) {
311                         std::cout << "EditRate.Denominator differs.\n";
312                 }
313                 return false;
314         }
315         if (ref_desc.ContainerDuration != check_desc.ContainerDuration) {
316                 if (verbose) {
317                         std::cout << "EditRate.ContainerDuration differs.\n";
318                 }
319                 return false;
320         }
321         if (ref_desc.FirstFrame != check_desc.FirstFrame) {
322                 if (verbose) {
323                         std::cout << "EditRate.FirstFrame differs.\n";
324                 }
325                 return false;
326         }
327         if (ref_desc.MaxChannelCount != check_desc.MaxChannelCount) {
328                 if (verbose) {
329                         std::cout << "EditRate.MaxChannelCount differs.\n";
330                 }
331                 return false;
332         }
333         if (ref_desc.MaxObjectCount != check_desc.MaxObjectCount) {
334                 if (verbose) {
335                         std::cout << "EditRate.MaxObjectCount differs.\n";
336                 }
337                 return false;
338         }
339         if (ref_desc.AtmosVersion != check_desc.AtmosVersion) {
340                 if (verbose) {
341                         std::cout << "EditRate.AtmosVersion differs.\n";
342                 }
343                 return false;
344         }
345
346         ASDCP::DCData::FrameBuffer ref_buffer (Kumu::Megabyte);
347         ASDCP::DCData::FrameBuffer check_buffer (Kumu::Megabyte);
348         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
349                 ref_reader.ReadFrame (i, ref_buffer, 0);
350                 check_reader.ReadFrame (i, check_buffer, 0);
351                 if (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size())) {
352                         if (verbose) {
353                                 std::cout << "data differs.\n";
354                         }
355                         return false;
356                 }
357         }
358
359         return true;
360 }
361
362
363 static
364 double
365 rms_error (boost::filesystem::path ref, boost::filesystem::path check)
366 {
367         FFmpegImageProxy ref_proxy (ref);
368         auto ref_image = ref_proxy.image(Image::Alignment::COMPACT).image;
369         FFmpegImageProxy check_proxy (check);
370         auto check_image = check_proxy.image(Image::Alignment::COMPACT).image;
371
372         BOOST_REQUIRE_EQUAL (ref_image->planes(), check_image->planes());
373
374         BOOST_REQUIRE_EQUAL (ref_image->pixel_format(), check_image->pixel_format());
375         auto const format = ref_image->pixel_format();
376
377         BOOST_REQUIRE (ref_image->size() == check_image->size());
378         int const width = ref_image->size().width;
379         int const height = ref_image->size().height;
380
381         double sum_square = 0;
382         switch (format) {
383                 case AV_PIX_FMT_RGBA:
384                 {
385                         for (int y = 0; y < height; ++y) {
386                                 uint8_t* p = ref_image->data()[0] + y * ref_image->stride()[0];
387                                 uint8_t* q = check_image->data()[0] + y * check_image->stride()[0];
388                                 for (int x = 0; x < width; ++x) {
389                                         for (int c = 0; c < 4; ++c) {
390                                                 sum_square += pow((*p++ - *q++), 2);
391                                         }
392                                 }
393                         }
394                         break;
395                 }
396                 case AV_PIX_FMT_RGB24:
397                 {
398                         for (int y = 0; y < height; ++y) {
399                                 uint8_t* p = ref_image->data()[0] + y * ref_image->stride()[0];
400                                 uint8_t* q = check_image->data()[0] + y * check_image->stride()[0];
401                                 for (int x = 0; x < width; ++x) {
402                                         for (int c = 0; c < 3; ++c) {
403                                                 sum_square += pow((*p++ - *q++), 2);
404                                         }
405                                 }
406                         }
407                         break;
408                 }
409                 case AV_PIX_FMT_RGB48BE:
410                 {
411                         for (int y = 0; y < height; ++y) {
412                                 uint16_t* p = reinterpret_cast<uint16_t*>(ref_image->data()[0] + y * ref_image->stride()[0]);
413                                 uint16_t* q = reinterpret_cast<uint16_t*>(check_image->data()[0] + y * check_image->stride()[0]);
414                                 for (int x = 0; x < width; ++x) {
415                                         for (int c = 0; c < 3; ++c) {
416                                                 sum_square += pow((*p++ - *q++), 2);
417                                         }
418                                 }
419                         }
420                         break;
421                 }
422                 case AV_PIX_FMT_YUVJ420P:
423                 {
424                         for (int c = 0; c < ref_image->planes(); ++c) {
425                                 for (int y = 0; y < height / ref_image->vertical_factor(c); ++y) {
426                                         auto p = ref_image->data()[c] + y * ref_image->stride()[c];
427                                         auto q = check_image->data()[c] + y * check_image->stride()[c];
428                                         for (int x = 0; x < ref_image->line_size()[c]; ++x) {
429                                                 sum_square += pow((*p++ - *q++), 2);
430                                         }
431                                 }
432                         }
433                         break;
434                 }
435                 default:
436                         BOOST_REQUIRE_MESSAGE (false, "unrecognised pixel format " << format);
437         }
438
439         return sqrt(sum_square / (height * width));
440 }
441
442
443 BOOST_AUTO_TEST_CASE (rms_error_test)
444 {
445         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image0.png"), 0, 0.001);
446         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image1.png"), 2.2778, 0.001);
447         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image2.png"), 59.8896, 0.001);
448         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image3.png"), 0.89164, 0.001);
449 }
450
451
452 void
453 check_image (boost::filesystem::path ref, boost::filesystem::path check, double threshold)
454 {
455         double const e = rms_error (ref, check);
456         BOOST_CHECK_MESSAGE (e < threshold, ref << " differs from " << check << " " << e);
457 }
458
459
460 void
461 check_file (boost::filesystem::path ref, boost::filesystem::path check)
462 {
463         auto N = boost::filesystem::file_size (ref);
464         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
465         dcp::File ref_file(ref, "rb");
466         BOOST_CHECK (ref_file);
467         dcp::File check_file(check, "rb");
468         BOOST_CHECK (check_file);
469
470         int const buffer_size = 65536;
471         std::vector<uint8_t> ref_buffer(buffer_size);
472         std::vector<uint8_t> check_buffer(buffer_size);
473
474         string error = "File " + check.string() + " differs from reference " + ref.string();
475
476         while (N) {
477                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
478                 size_t r = ref_file.read (ref_buffer.data(), 1, this_time);
479                 BOOST_CHECK_EQUAL (r, this_time);
480                 r = check_file.read(check_buffer.data(), 1, this_time);
481                 BOOST_CHECK_EQUAL (r, this_time);
482
483                 BOOST_CHECK_MESSAGE (memcmp (ref_buffer.data(), check_buffer.data(), this_time) == 0, error);
484                 if (memcmp (ref_buffer.data(), check_buffer.data(), this_time)) {
485                         break;
486                 }
487
488                 N -= this_time;
489         }
490 }
491
492
493 void
494 check_text_file (boost::filesystem::path ref, boost::filesystem::path check)
495 {
496         dcp::File ref_file(ref, "r");
497         BOOST_CHECK (ref_file);
498         dcp::File check_file(check, "r");
499         BOOST_CHECK (check_file);
500
501         int const buffer_size = std::max(
502                 boost::filesystem::file_size(ref),
503                 boost::filesystem::file_size(check)
504                 );
505
506         DCPOMATIC_ASSERT (buffer_size < 1024 * 1024);
507
508         std::vector<uint8_t> ref_buffer(buffer_size);
509         auto ref_read = ref_file.read(ref_buffer.data(), 1, buffer_size);
510         std::vector<uint8_t> check_buffer(buffer_size);
511         auto check_read = check_file.read(check_buffer.data(), 1, buffer_size);
512         BOOST_CHECK_EQUAL (ref_read, check_read);
513
514         string const error = "File " + check.string() + " differs from reference " + ref.string();
515         BOOST_CHECK_MESSAGE(memcmp(ref_buffer.data(), check_buffer.data(), ref_read) == 0, error);
516 }
517
518
519 static void
520 note (dcp::NoteType t, string n)
521 {
522         if (t == dcp::NoteType::ERROR) {
523                 cerr << n << "\n";
524         }
525 }
526
527
528 void
529 check_dcp (boost::filesystem::path ref, shared_ptr<const Film> film)
530 {
531         check_dcp (ref, film->dir(film->dcp_name()));
532 }
533
534
535 void
536 check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
537 {
538         dcp::DCP ref_dcp (ref);
539         ref_dcp.read ();
540         dcp::DCP check_dcp (check);
541         check_dcp.read ();
542
543         dcp::EqualityOptions options;
544         options.max_mean_pixel_error = 5;
545         options.max_std_dev_pixel_error = 5;
546         options.max_audio_sample_error = 255;
547         options.cpl_annotation_texts_can_differ = true;
548         options.reel_annotation_texts_can_differ = true;
549         options.reel_hashes_can_differ = true;
550         options.issue_dates_can_differ = true;
551
552         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
553 }
554
555 void
556 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
557 {
558         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
559         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
560
561         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
562                 return;
563         }
564
565         auto ref_children = ref->get_children ();
566         auto test_children = test->get_children ();
567         BOOST_REQUIRE_MESSAGE (
568                 ref_children.size() == test_children.size(),
569                 ref->get_name() << " has " << ref_children.size() << " or " << test_children.size() << " children"
570                 );
571
572         auto k = ref_children.begin ();
573         auto l = test_children.begin ();
574         while (k != ref_children.end ()) {
575
576                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
577
578                 auto ref_el = dynamic_cast<xmlpp::Element*>(*k);
579                 auto test_el = dynamic_cast<xmlpp::Element*>(*l);
580                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
581                 if (ref_el && test_el) {
582                         check_xml (ref_el, test_el, ignore);
583                 }
584
585                 auto ref_cn = dynamic_cast<xmlpp::ContentNode*>(*k);
586                 auto test_cn = dynamic_cast<xmlpp::ContentNode*>(*l);
587                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
588                 if (ref_cn && test_cn) {
589                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
590                 }
591
592                 ++k;
593                 ++l;
594         }
595
596         auto ref_attributes = ref->get_attributes ();
597         auto test_attributes = test->get_attributes ();
598         BOOST_CHECK_EQUAL (ref_attributes.size(), test_attributes.size ());
599
600         auto m = ref_attributes.begin();
601         auto n = test_attributes.begin();
602         while (m != ref_attributes.end ()) {
603                 BOOST_CHECK_EQUAL ((*m)->get_name(), (*n)->get_name());
604                 BOOST_CHECK_EQUAL ((*m)->get_value(), (*n)->get_value());
605
606                 ++m;
607                 ++n;
608         }
609 }
610
611 void
612 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
613 {
614         auto ref_parser = new xmlpp::DomParser(ref.string());
615         auto ref_root = ref_parser->get_document()->get_root_node();
616         auto test_parser = new xmlpp::DomParser(test.string());
617         auto test_root = test_parser->get_document()->get_root_node();
618
619         check_xml (ref_root, test_root, ignore);
620 }
621
622 bool
623 wait_for_jobs ()
624 {
625         auto jm = JobManager::instance ();
626         while (jm->work_to_do()) {
627                 while (signal_manager->ui_idle()) {}
628                 dcpomatic_sleep_seconds (1);
629         }
630
631         if (jm->errors ()) {
632                 int N = 0;
633                 for (auto i: jm->_jobs) {
634                         if (i->finished_in_error()) {
635                                 ++N;
636                         }
637                 }
638                 cerr << N << " errors.\n";
639
640                 for (auto i: jm->_jobs) {
641                         if (i->finished_in_error()) {
642                                 cerr << i->name() << ":\n"
643                                      << "\tsummary: " << i->error_summary() << "\n"
644                                      << "\tdetails: " << i->error_details() << "\n";
645                         }
646                 }
647         }
648
649         while (signal_manager->ui_idle ()) {}
650
651         if (jm->errors ()) {
652                 JobManager::drop ();
653                 return true;
654         }
655
656         return false;
657 }
658
659
660 class Memory
661 {
662 public:
663         Memory () {}
664
665         ~Memory ()
666         {
667                 free (data);
668         }
669
670         Memory (Memory const&) = delete;
671         Memory& operator= (Memory const&) = delete;
672
673         uint8_t* data = nullptr;
674         size_t size = 0;
675 };
676
677
678 static void
679 png_write_data (png_structp png_ptr, png_bytep data, png_size_t length)
680 {
681         auto mem = reinterpret_cast<Memory*>(png_get_io_ptr(png_ptr));
682         size_t size = mem->size + length;
683
684         if (mem->data) {
685                 mem->data = reinterpret_cast<uint8_t*>(realloc(mem->data, size));
686         } else {
687                 mem->data = reinterpret_cast<uint8_t*>(malloc(size));
688         }
689
690         BOOST_REQUIRE (mem->data);
691
692         memcpy (mem->data + mem->size, data, length);
693         mem->size += length;
694 }
695
696
697 static void
698 png_flush (png_structp)
699 {
700
701 }
702
703
704 static void
705 png_error_fn (png_structp, char const * message)
706 {
707         throw EncodeError (String::compose("Error during PNG write: %1", message));
708 }
709
710
711 void
712 write_image (shared_ptr<const Image> image, boost::filesystem::path file)
713 {
714         int png_color_type = 0;
715         int bits_per_pixel = 0;
716         switch (image->pixel_format()) {
717         case AV_PIX_FMT_RGB24:
718                 png_color_type = PNG_COLOR_TYPE_RGB;
719                 bits_per_pixel = 8;
720                 break;
721         case AV_PIX_FMT_XYZ12LE:
722                 png_color_type = PNG_COLOR_TYPE_RGB;
723                 bits_per_pixel = 16;
724                 break;
725         default:
726                 BOOST_REQUIRE_MESSAGE (false, "unexpected pixel format " << image->pixel_format());
727         }
728
729         /* error handling? */
730         png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, reinterpret_cast<void*>(const_cast<Image*>(image.get())), png_error_fn, 0);
731         BOOST_REQUIRE (png_ptr);
732
733         Memory state;
734
735         png_set_write_fn (png_ptr, &state, png_write_data, png_flush);
736
737         png_infop info_ptr = png_create_info_struct(png_ptr);
738         BOOST_REQUIRE (info_ptr);
739
740         png_set_IHDR (png_ptr, info_ptr, image->size().width, image->size().height, bits_per_pixel, png_color_type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
741
742         png_byte ** row_pointers = reinterpret_cast<png_byte **>(png_malloc(png_ptr, image->size().height * sizeof(png_byte *)));
743         for (int i = 0; i < image->size().height; ++i) {
744                 row_pointers[i] = (png_byte *) (image->data()[0] + i * image->stride()[0]);
745         }
746
747         png_write_info (png_ptr, info_ptr);
748         png_write_image (png_ptr, row_pointers);
749         png_write_end (png_ptr, info_ptr);
750
751         png_destroy_write_struct (&png_ptr, &info_ptr);
752         png_free (png_ptr, row_pointers);
753
754         dcp::ArrayData(state.data, state.size).write(file);
755 }
756
757
758 void
759 check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check, int audio_tolerance)
760 {
761         int const r = system (String::compose("ffcmp -t %1 %2 %3", audio_tolerance, ref.string(), check.string()).c_str());
762         BOOST_REQUIRE_EQUAL (WEXITSTATUS(r), 0);
763 }
764
765 void
766 check_one_frame (boost::filesystem::path dcp_dir, int64_t index, boost::filesystem::path ref)
767 {
768         dcp::DCP dcp (dcp_dir);
769         dcp.read ();
770         auto asset = dynamic_pointer_cast<dcp::MonoPictureAsset> (dcp.cpls().front()->reels().front()->main_picture()->asset());
771         BOOST_REQUIRE (asset);
772         auto frame = asset->start_read()->get_frame(index);
773         auto ref_frame (new dcp::MonoPictureFrame (ref));
774
775         auto image = frame->xyz_image ();
776         auto ref_image = ref_frame->xyz_image ();
777
778         BOOST_REQUIRE (image->size() == ref_image->size());
779
780         int off = 0;
781         for (int y = 0; y < ref_image->size().height; ++y) {
782                 for (int x = 0; x < ref_image->size().width; ++x) {
783                         BOOST_REQUIRE_EQUAL (ref_image->data(0)[off], image->data(0)[off]);
784                         BOOST_REQUIRE_EQUAL (ref_image->data(1)[off], image->data(1)[off]);
785                         BOOST_REQUIRE_EQUAL (ref_image->data(2)[off], image->data(2)[off]);
786                         ++off;
787                 }
788         }
789 }
790
791 boost::filesystem::path
792 dcp_file (shared_ptr<const Film> film, string prefix)
793 {
794         auto i = boost::filesystem::recursive_directory_iterator(film->dir(film->dcp_name()));
795         while (i != boost::filesystem::recursive_directory_iterator() && !boost::algorithm::starts_with(i->path().leaf().string(), prefix)) {
796                 ++i;
797         }
798
799         BOOST_REQUIRE_MESSAGE(i != boost::filesystem::recursive_directory_iterator(), "Could not find file with prefix " << prefix);
800         return i->path();
801 }
802
803 boost::filesystem::path
804 subtitle_file (shared_ptr<Film> film)
805 {
806         for (auto i: boost::filesystem::directory_iterator(film->directory().get() / film->dcp_name (false))) {
807                 if (boost::filesystem::is_directory(i.path())) {
808                         for (auto j: boost::filesystem::directory_iterator(i.path())) {
809                                 if (boost::algorithm::starts_with(j.path().leaf().string(), "sub_")) {
810                                         return j.path();
811                                 }
812                         }
813                 }
814         }
815
816         BOOST_REQUIRE (false);
817         /* Remove warning */
818         return boost::filesystem::path("/");
819 }
820
821 void
822 make_random_file (boost::filesystem::path path, size_t size)
823 {
824         dcp::File t(path, "wb");
825         BOOST_REQUIRE (t);
826         for (size_t i = 0; i < size; ++i) {
827                 uint8_t r = rand() & 0xff;
828                 t.write(&r, 1, 1);
829         }
830 }
831
832
833 LogSwitcher::LogSwitcher (shared_ptr<Log> log)
834         : _old (dcpomatic_log)
835 {
836         dcpomatic_log = log;
837 }
838
839
840 LogSwitcher::~LogSwitcher ()
841 {
842         dcpomatic_log = _old;
843 }
844
845 std::ostream&
846 dcp::operator<< (std::ostream& s, dcp::Size i)
847 {
848         s << i.width << "x" << i.height;
849         return s;
850 }
851
852 std::ostream&
853 dcp::operator<< (std::ostream& s, dcp::Standard t)
854 {
855         switch (t) {
856         case Standard::INTEROP:
857                 s << "interop";
858                 break;
859         case Standard::SMPTE:
860                 s << "smpte";
861                 break;
862         }
863         return s;
864 }
865
866 std::ostream&
867 operator<< (std::ostream&s, VideoFrameType f)
868 {
869         s << video_frame_type_to_string(f);
870         return s;
871 }
872
873
874 void
875 Cleanup::add (boost::filesystem::path path)
876 {
877         _paths.push_back (path);
878 }
879
880
881 void
882 Cleanup::run ()
883 {
884         boost::system::error_code ec;
885         for (auto i: _paths) {
886                 boost::filesystem::remove_all (i, ec);
887         }
888 }
889
890
891 void stage (string, boost::optional<boost::filesystem::path>) {}
892 void progress (float) {}
893
894
895 void
896 make_and_verify_dcp (shared_ptr<Film> film, vector<dcp::VerificationNote::Code> ignore)
897 {
898         film->write_metadata ();
899         make_dcp (film, TranscodeJob::ChangedBehaviour::IGNORE);
900         BOOST_REQUIRE (!wait_for_jobs());
901         auto notes = dcp::verify ({film->dir(film->dcp_name())}, &stage, &progress, TestPaths::xsd());
902         bool ok = true;
903         for (auto i: notes) {
904                 if (find(ignore.begin(), ignore.end(), i.code()) == ignore.end()) {
905                         std::cout << "\t" << dcp::note_to_string(i) << "\n";
906                         ok = false;
907                 }
908         }
909         BOOST_CHECK(ok);
910 }
911
912
913 void
914 check_int_close (int a, int b, int d)
915 {
916         BOOST_CHECK_MESSAGE (std::abs(a - b) < d, a << " differs from " << b << " by more than " << d);
917 }
918
919
920 void
921 check_int_close (std::pair<int, int> a, std::pair<int, int> b, int d)
922 {
923         check_int_close (a.first, b.first, d);
924         check_int_close (a.second, b.second, d);
925 }
926
927
928 ConfigRestorer::~ConfigRestorer()
929 {
930         setup_test_config();
931 }
932
933
934 boost::filesystem::path
935 find_file (boost::filesystem::path dir, string filename_part)
936 {
937         boost::optional<boost::filesystem::path> found;
938         for (auto i: boost::filesystem::directory_iterator(dir)) {
939                 if (i.path().filename().string().find(filename_part) != string::npos) {
940                         BOOST_REQUIRE (!found);
941                         found = i;
942                 }
943         }
944         BOOST_REQUIRE (found);
945         return *found;
946 }