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