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