Merge master.
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <fstream>
21 #include <iostream>
22 #include <boost/filesystem.hpp>
23 #include <boost/algorithm/string/predicate.hpp>
24 #include <boost/date_time.hpp>
25 #include <libdcp/dcp.h>
26 #include "ratio.h"
27 #include "film.h"
28 #include "filter.h"
29 #include "job_manager.h"
30 #include "util.h"
31 #include "exceptions.h"
32 #include "image.h"
33 #include "log.h"
34 #include "dcp_video_frame.h"
35 #include "config.h"
36 #include "server.h"
37 #include "cross.h"
38 #include "job.h"
39 #include "subtitle.h"
40 #include "scaler.h"
41 #include "ffmpeg_decoder.h"
42 #include "sndfile_decoder.h"
43 #include "dcp_content_type.h"
44 #include "ui_signaller.h"
45 #include "ratio.h"
46 #define BOOST_TEST_DYN_LINK
47 #define BOOST_TEST_MODULE dcpomatic_test
48 #include <boost/test/unit_test.hpp>
49
50 using std::string;
51 using std::list;
52 using std::stringstream;
53 using std::vector;
54 using std::min;
55 using std::cout;
56 using boost::shared_ptr;
57 using boost::thread;
58 using boost::dynamic_pointer_cast;
59
60 struct TestConfig
61 {
62         TestConfig()
63         {
64                 dcpomatic_setup();
65
66                 Config::instance()->set_num_local_encoding_threads (1);
67                 Config::instance()->set_servers (vector<ServerDescription*> ());
68                 Config::instance()->set_server_port (61920);
69                 Config::instance()->set_default_dci_metadata (DCIMetadata ());
70                 Config::instance()->set_default_container (static_cast<Ratio*> (0));
71                 Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
72
73                 ui_signaller = new UISignaller ();
74         }
75 };
76
77 BOOST_GLOBAL_FIXTURE (TestConfig);
78
79 boost::filesystem::path
80 test_film_dir (string name)
81 {
82         boost::filesystem::path p;
83         p /= "build";
84         p /= "test";
85         p /= name;
86         return p;
87 }
88
89 shared_ptr<Film>
90 new_test_film (string name)
91 {
92         boost::filesystem::path p = test_film_dir (name);
93         if (boost::filesystem::exists (p)) {
94                 boost::filesystem::remove_all (p);
95         }
96         
97         shared_ptr<Film> f = shared_ptr<Film> (new Film (p.string()));
98         f->write_metadata ();
99         return f;
100 }
101
102 void
103 check_file (string ref, string check)
104 {
105         uintmax_t N = boost::filesystem::file_size (ref);
106         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size(check));
107         FILE* ref_file = fopen (ref.c_str(), "rb");
108         BOOST_CHECK (ref_file);
109         FILE* check_file = fopen (check.c_str(), "rb");
110         BOOST_CHECK (check_file);
111         
112         int const buffer_size = 65536;
113         uint8_t* ref_buffer = new uint8_t[buffer_size];
114         uint8_t* check_buffer = new uint8_t[buffer_size];
115
116         while (N) {
117                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
118                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
119                 BOOST_CHECK_EQUAL (r, this_time);
120                 r = fread (check_buffer, 1, this_time, check_file);
121                 BOOST_CHECK_EQUAL (r, this_time);
122
123                 BOOST_CHECK_EQUAL (memcmp (ref_buffer, check_buffer, this_time), 0);
124                 N -= this_time;
125         }
126
127         delete[] ref_buffer;
128         delete[] check_buffer;
129
130         fclose (ref_file);
131         fclose (check_file);
132 }
133
134 static void
135 note (libdcp::NoteType, string n)
136 {
137         cout << n << "\n";
138 }
139
140 void
141 check_dcp (string ref, string check)
142 {
143         libdcp::DCP ref_dcp (ref);
144         ref_dcp.read ();
145         libdcp::DCP check_dcp (check);
146         check_dcp.read ();
147
148         libdcp::EqualityOptions options;
149         options.max_mean_pixel_error = 5;
150         options.max_std_dev_pixel_error = 5;
151         options.max_audio_sample_error = 255;
152         options.cpl_names_can_differ = true;
153         options.mxf_names_can_differ = true;
154         
155         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
156 }
157
158 #include "ffmpeg_pts_offset.cc"
159 #include "ffmpeg_examiner_test.cc"
160 #include "black_fill_test.cc"
161 #include "scaling_test.cc"
162 #include "ratio_test.cc"
163 #include "pixel_formats_test.cc"
164 #include "make_black_test.cc"
165 #include "film_metadata_test.cc"
166 #include "stream_test.cc"
167 #include "util_test.cc"
168 #include "ffmpeg_dcp_test.cc"
169 #include "frame_rate_test.cc"
170 #include "job_test.cc"
171 #include "client_server_test.cc"
172 #include "image_test.cc"