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 #define BOOST_TEST_DYN_LINK
45 #define BOOST_TEST_MODULE dcpomatic_test
46 #include <boost/test/unit_test.hpp>
47
48 using std::string;
49 using std::list;
50 using std::stringstream;
51 using std::vector;
52 using std::min;
53 using std::cout;
54 using boost::shared_ptr;
55 using boost::thread;
56 using boost::dynamic_pointer_cast;
57
58 struct TestConfig
59 {
60         TestConfig()
61         {
62                 dcpomatic_setup();
63
64                 Config::instance()->set_num_local_encoding_threads (1);
65                 Config::instance()->set_servers (vector<ServerDescription*> ());
66                 Config::instance()->set_server_port (61920);
67                 Config::instance()->set_default_dci_metadata (DCIMetadata ());
68                 Config::instance()->set_default_container (0);
69                 Config::instance()->set_default_dcp_content_type (0);
70         }
71 };
72
73 BOOST_GLOBAL_FIXTURE (TestConfig);
74
75 boost::filesystem::path
76 test_film_dir (string name)
77 {
78         boost::filesystem::path p;
79         p /= "build";
80         p /= "test";
81         p /= name;
82         return p;
83 }
84
85 shared_ptr<Film>
86 new_test_film (string name)
87 {
88         boost::filesystem::path p = test_film_dir (name);
89         if (boost::filesystem::exists (p)) {
90                 boost::filesystem::remove_all (p);
91         }
92         
93         shared_ptr<Film> f = shared_ptr<Film> (new Film (p.string()));
94         f->write_metadata ();
95         return f;
96 }
97
98 void
99 check_file (string ref, string check)
100 {
101         uintmax_t N = boost::filesystem::file_size (ref);
102         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size(check));
103         FILE* ref_file = fopen (ref.c_str(), "rb");
104         BOOST_CHECK (ref_file);
105         FILE* check_file = fopen (check.c_str(), "rb");
106         BOOST_CHECK (check_file);
107         
108         int const buffer_size = 65536;
109         uint8_t* ref_buffer = new uint8_t[buffer_size];
110         uint8_t* check_buffer = new uint8_t[buffer_size];
111
112         while (N) {
113                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
114                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
115                 BOOST_CHECK_EQUAL (r, this_time);
116                 r = fread (check_buffer, 1, this_time, check_file);
117                 BOOST_CHECK_EQUAL (r, this_time);
118
119                 BOOST_CHECK_EQUAL (memcmp (ref_buffer, check_buffer, this_time), 0);
120                 N -= this_time;
121         }
122
123         delete[] ref_buffer;
124         delete[] check_buffer;
125
126         fclose (ref_file);
127         fclose (check_file);
128 }
129
130 static void
131 note (libdcp::NoteType, string n)
132 {
133         cout << n << "\n";
134 }
135
136 void
137 check_dcp (string ref, string check)
138 {
139         libdcp::DCP ref_dcp (ref);
140         ref_dcp.read ();
141         libdcp::DCP check_dcp (check);
142         check_dcp.read ();
143
144         libdcp::EqualityOptions options;
145         options.max_mean_pixel_error = 5;
146         options.max_std_dev_pixel_error = 5;
147         options.max_audio_sample_error = 255;
148         options.cpl_names_can_differ = true;
149         options.mxf_names_can_differ = true;
150         
151         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
152 }
153
154 #include "black_fill_test.cc"
155 #include "scaling_test.cc"
156 #include "ratio_test.cc"
157 #include "pixel_formats_test.cc"
158 #include "make_black_test.cc"
159 #include "film_metadata_test.cc"
160 #include "stream_test.cc"
161 #include "util_test.cc"
162 #include "ffmpeg_dcp_test.cc"
163 #include "frame_rate_test.cc"
164 #include "job_test.cc"
165 #include "client_server_test.cc"
166 #include "image_test.cc"
167