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