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