Merge master.
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012-2014 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 <Magick++.h>
23 #include <libxml++/libxml++.h>
24 #include <dcp/dcp.h>
25 #include "lib/config.h"
26 #include "lib/util.h"
27 #include "lib/ui_signaller.h"
28 #include "lib/film.h"
29 #include "lib/job_manager.h"
30 #include "lib/job.h"
31 #include "lib/cross.h"
32 #include "lib/server_finder.h"
33 #include "lib/image.h"
34 #define BOOST_TEST_DYN_LINK
35 #define BOOST_TEST_MODULE dcpomatic_test
36 #include <boost/test/unit_test.hpp>
37
38 using std::string;
39 using std::vector;
40 using std::min;
41 using std::cout;
42 using std::cerr;
43 using std::list;
44 using boost::shared_ptr;
45
46 boost::filesystem::path private_data = boost::filesystem::path ("test") / boost::filesystem::path ("private");
47
48 class TestUISignaller : public UISignaller
49 {
50 public:
51         /* No wakes in tests: we call ui_idle ourselves */
52         void wake_ui ()
53         {
54
55         }
56 };
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_server_port_base (61920);
66                 Config::instance()->set_default_dci_metadata (DCIMetadata ());
67                 Config::instance()->set_default_container (static_cast<Ratio*> (0));
68                 Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
69                 Config::instance()->set_default_audio_delay (0);
70
71                 ServerFinder::instance()->disable ();
72
73                 ui_signaller = new TestUISignaller ();
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 (boost::filesystem::path ref, boost::filesystem::path 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_boost (check, "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 (dcp::NoteType t, string n)
136 {
137         if (t == dcp::ERROR) {
138                 cerr << n << "\n";
139         }
140 }
141
142 void
143 check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
144 {
145         dcp::DCP ref_dcp (ref);
146         ref_dcp.read ();
147         dcp::DCP check_dcp (check);
148         check_dcp.read ();
149
150         dcp::EqualityOptions options;
151         options.max_mean_pixel_error = 5;
152         options.max_std_dev_pixel_error = 5;
153         options.max_audio_sample_error = 255;
154         options.cpl_annotation_texts_can_differ = true;
155         options.mxf_names_can_differ = true;
156         
157         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
158 }
159
160 void
161 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
162 {
163         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
164         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
165
166         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
167                 return;
168         }
169             
170         xmlpp::Element::NodeList ref_children = ref->get_children ();
171         xmlpp::Element::NodeList test_children = test->get_children ();
172         BOOST_CHECK_EQUAL (ref_children.size (), test_children.size ());
173
174         xmlpp::Element::NodeList::iterator k = ref_children.begin ();
175         xmlpp::Element::NodeList::iterator l = test_children.begin ();
176         while (k != ref_children.end ()) {
177                 
178                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
179
180                 xmlpp::Element* ref_el = dynamic_cast<xmlpp::Element*> (*k);
181                 xmlpp::Element* test_el = dynamic_cast<xmlpp::Element*> (*l);
182                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
183                 if (ref_el && test_el) {
184                         check_xml (ref_el, test_el, ignore);
185                 }
186
187                 xmlpp::ContentNode* ref_cn = dynamic_cast<xmlpp::ContentNode*> (*k);
188                 xmlpp::ContentNode* test_cn = dynamic_cast<xmlpp::ContentNode*> (*l);
189                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
190                 if (ref_cn && test_cn) {
191                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
192                 }
193
194                 xmlpp::Attribute* ref_at = dynamic_cast<xmlpp::Attribute*> (*k);
195                 xmlpp::Attribute* test_at = dynamic_cast<xmlpp::Attribute*> (*l);
196                 BOOST_CHECK ((ref_at && test_at) || (!ref_at && !test_at));
197                 if (ref_at && test_at) {
198                         BOOST_CHECK_EQUAL (ref_at->get_name(), test_at->get_name ());
199                         BOOST_CHECK_EQUAL (ref_at->get_value(), test_at->get_value ());
200                 }
201
202                 ++k;
203                 ++l;
204         }
205 }
206
207 void
208 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
209 {
210         xmlpp::DomParser* ref_parser = new xmlpp::DomParser (ref.string ());
211         xmlpp::Element* ref_root = ref_parser->get_document()->get_root_node ();
212         xmlpp::DomParser* test_parser = new xmlpp::DomParser (test.string ());
213         xmlpp::Element* test_root = test_parser->get_document()->get_root_node ();
214
215         check_xml (ref_root, test_root, ignore);
216 }
217
218 void
219 wait_for_jobs ()
220 {
221         JobManager* jm = JobManager::instance ();
222         while (jm->work_to_do ()) {
223                 ui_signaller->ui_idle ();
224         }
225         if (jm->errors ()) {
226                 int N = 0;
227                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
228                         if ((*i)->finished_in_error ()) {
229                                 ++N;
230                         }
231                 }
232                 cerr << N << " errors.\n";
233
234                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
235                         if ((*i)->finished_in_error ()) {
236                                 cerr << (*i)->name() << ":\n"
237                                      << "\tsummary: " << (*i)->error_summary () << "\n"
238                                      << "\tdetails: " << (*i)->error_details () << "\n";
239                         }
240                 }
241         }
242                 
243         BOOST_CHECK (!jm->errors());
244
245         ui_signaller->ui_idle ();
246 }
247
248 void
249 write_image (shared_ptr<const Image> image, boost::filesystem::path file)
250 {
251         using namespace MagickCore;
252
253         Magick::Image m (image->size().width, image->size().height, "ARGB", CharPixel, (void *) image->data()[0]);
254         m.write (file.string ());
255 }