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