154510738e3200bd4ebc1b15cb52ce58763a42b0
[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 <vector>
21 #include <list>
22 #include <libdcp/dcp.h>
23 #include "lib/config.h"
24 #include "lib/util.h"
25 #include "lib/ui_signaller.h"
26 #include "lib/film.h"
27 #include "lib/job_manager.h"
28 #include "lib/job.h"
29 #include "lib/cross.h"
30 #define BOOST_TEST_DYN_LINK
31 #define BOOST_TEST_MODULE dcpomatic_test
32 #include <boost/test/unit_test.hpp>
33
34 using std::string;
35 using std::vector;
36 using std::min;
37 using std::cout;
38 using std::cerr;
39 using std::list;
40 using boost::shared_ptr;
41
42 class TestUISignaller : public UISignaller
43 {
44 public:
45         /* No wakes in tests: we call ui_idle ourselves */
46         void wake_ui ()
47         {
48
49         }
50 };
51
52 struct TestConfig
53 {
54         TestConfig()
55         {
56                 dcpomatic_setup();
57
58                 Config::instance()->set_num_local_encoding_threads (1);
59                 Config::instance()->set_servers (vector<ServerDescription> ());
60                 Config::instance()->set_server_port (61920);
61                 Config::instance()->set_default_dci_metadata (DCIMetadata ());
62                 Config::instance()->set_default_container (static_cast<Ratio*> (0));
63                 Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
64
65                 ui_signaller = new TestUISignaller ();
66         }
67 };
68
69 BOOST_GLOBAL_FIXTURE (TestConfig);
70
71 boost::filesystem::path
72 test_film_dir (string name)
73 {
74         boost::filesystem::path p;
75         p /= "build";
76         p /= "test";
77         p /= name;
78         return p;
79 }
80
81 shared_ptr<Film>
82 new_test_film (string name)
83 {
84         boost::filesystem::path p = test_film_dir (name);
85         if (boost::filesystem::exists (p)) {
86                 boost::filesystem::remove_all (p);
87         }
88         
89         shared_ptr<Film> f = shared_ptr<Film> (new Film (p.string()));
90         f->write_metadata ();
91         return f;
92 }
93
94 static void
95 check_file (string ref, string check)
96 {
97         uintmax_t N = boost::filesystem::file_size (ref);
98         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size(check));
99         FILE* ref_file = fopen (ref.c_str(), "rb");
100         BOOST_CHECK (ref_file);
101         FILE* check_file = fopen (check.c_str(), "rb");
102         BOOST_CHECK (check_file);
103         
104         int const buffer_size = 65536;
105         uint8_t* ref_buffer = new uint8_t[buffer_size];
106         uint8_t* check_buffer = new uint8_t[buffer_size];
107
108         while (N) {
109                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
110                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
111                 BOOST_CHECK_EQUAL (r, this_time);
112                 r = fread (check_buffer, 1, this_time, check_file);
113                 BOOST_CHECK_EQUAL (r, this_time);
114
115                 BOOST_CHECK_EQUAL (memcmp (ref_buffer, check_buffer, this_time), 0);
116                 N -= this_time;
117         }
118
119         delete[] ref_buffer;
120         delete[] check_buffer;
121
122         fclose (ref_file);
123         fclose (check_file);
124 }
125
126 static void
127 note (libdcp::NoteType, string n)
128 {
129         cout << n << "\n";
130 }
131
132 void
133 check_dcp (string ref, string check)
134 {
135         libdcp::DCP ref_dcp (ref);
136         ref_dcp.read ();
137         libdcp::DCP check_dcp (check);
138         check_dcp.read ();
139
140         libdcp::EqualityOptions options;
141         options.max_mean_pixel_error = 5;
142         options.max_std_dev_pixel_error = 5;
143         options.max_audio_sample_error = 255;
144         options.cpl_names_can_differ = true;
145         options.mxf_names_can_differ = true;
146         
147         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
148 }
149
150 void
151 wait_for_jobs ()
152 {
153         JobManager* jm = JobManager::instance ();
154         while (jm->work_to_do ()) {
155                 ui_signaller->ui_idle ();
156         }
157         if (jm->errors ()) {
158                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
159                         if ((*i)->finished_in_error ()) {
160                                 cerr << (*i)->error_summary () << "\n"
161                                      << (*i)->error_details () << "\n";
162                         }
163                 }
164         }
165                 
166         BOOST_CHECK (!jm->errors());
167
168         ui_signaller->ui_idle ();
169 }