Don't overlap simultaneous video content in the timeline. Fix keep-aligned for separ...
[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 <libxml++/libxml++.h>
23 #include <libdcp/dcp.h>
24 #include "lib/config.h"
25 #include "lib/util.h"
26 #include "lib/ui_signaller.h"
27 #include "lib/film.h"
28 #include "lib/job_manager.h"
29 #include "lib/job.h"
30 #include "lib/cross.h"
31 #include "lib/server_finder.h"
32 #define BOOST_TEST_DYN_LINK
33 #define BOOST_TEST_MODULE dcpomatic_test
34 #include <boost/test/unit_test.hpp>
35
36 using std::string;
37 using std::vector;
38 using std::min;
39 using std::cout;
40 using std::cerr;
41 using std::list;
42 using boost::shared_ptr;
43
44 class TestUISignaller : public UISignaller
45 {
46 public:
47         /* No wakes in tests: we call ui_idle ourselves */
48         void wake_ui ()
49         {
50
51         }
52 };
53
54 struct TestConfig
55 {
56         TestConfig()
57         {
58                 dcpomatic_setup();
59
60                 Config::instance()->set_num_local_encoding_threads (1);
61                 Config::instance()->set_server_port_base (61920);
62                 Config::instance()->set_default_dci_metadata (DCIMetadata ());
63                 Config::instance()->set_default_container (static_cast<Ratio*> (0));
64                 Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
65
66                 ServerFinder::instance()->disable ();
67
68                 ui_signaller = new TestUISignaller ();
69         }
70 };
71
72 BOOST_GLOBAL_FIXTURE (TestConfig);
73
74 boost::filesystem::path
75 test_film_dir (string name)
76 {
77         boost::filesystem::path p;
78         p /= "build";
79         p /= "test";
80         p /= name;
81         return p;
82 }
83
84 shared_ptr<Film>
85 new_test_film (string name)
86 {
87         boost::filesystem::path p = test_film_dir (name);
88         if (boost::filesystem::exists (p)) {
89                 boost::filesystem::remove_all (p);
90         }
91         
92         shared_ptr<Film> f = shared_ptr<Film> (new Film (p.string()));
93         f->write_metadata ();
94         return f;
95 }
96
97 void
98 check_file (boost::filesystem::path ref, boost::filesystem::path check)
99 {
100         uintmax_t N = boost::filesystem::file_size (ref);
101         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size(check));
102         FILE* ref_file = fopen_boost (ref, "rb");
103         BOOST_CHECK (ref_file);
104         FILE* check_file = fopen_boost (check, "rb");
105         BOOST_CHECK (check_file);
106         
107         int const buffer_size = 65536;
108         uint8_t* ref_buffer = new uint8_t[buffer_size];
109         uint8_t* check_buffer = new uint8_t[buffer_size];
110
111         while (N) {
112                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
113                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
114                 BOOST_CHECK_EQUAL (r, this_time);
115                 r = fread (check_buffer, 1, this_time, check_file);
116                 BOOST_CHECK_EQUAL (r, this_time);
117
118                 BOOST_CHECK_EQUAL (memcmp (ref_buffer, check_buffer, this_time), 0);
119                 N -= this_time;
120         }
121
122         delete[] ref_buffer;
123         delete[] check_buffer;
124
125         fclose (ref_file);
126         fclose (check_file);
127 }
128
129 static void
130 note (libdcp::NoteType t, string n)
131 {
132         if (t == libdcp::ERROR) {
133                 cerr << n << "\n";
134         }
135 }
136
137 void
138 check_dcp (string ref, string check)
139 {
140         libdcp::DCP ref_dcp (ref);
141         ref_dcp.read ();
142         libdcp::DCP check_dcp (check);
143         check_dcp.read ();
144
145         libdcp::EqualityOptions options;
146         options.max_mean_pixel_error = 5;
147         options.max_std_dev_pixel_error = 5;
148         options.max_audio_sample_error = 255;
149         options.cpl_names_can_differ = true;
150         options.mxf_names_can_differ = true;
151         
152         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
153 }
154
155 void
156 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
157 {
158         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
159         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
160
161         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
162                 return;
163         }
164             
165         xmlpp::Element::NodeList ref_children = ref->get_children ();
166         xmlpp::Element::NodeList test_children = test->get_children ();
167         BOOST_CHECK_EQUAL (ref_children.size (), test_children.size ());
168
169         xmlpp::Element::NodeList::iterator k = ref_children.begin ();
170         xmlpp::Element::NodeList::iterator l = test_children.begin ();
171         while (k != ref_children.end ()) {
172                 
173                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
174
175                 xmlpp::Element* ref_el = dynamic_cast<xmlpp::Element*> (*k);
176                 xmlpp::Element* test_el = dynamic_cast<xmlpp::Element*> (*l);
177                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
178                 if (ref_el && test_el) {
179                         check_xml (ref_el, test_el, ignore);
180                 }
181
182                 xmlpp::ContentNode* ref_cn = dynamic_cast<xmlpp::ContentNode*> (*k);
183                 xmlpp::ContentNode* test_cn = dynamic_cast<xmlpp::ContentNode*> (*l);
184                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
185                 if (ref_cn && test_cn) {
186                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
187                 }
188
189                 xmlpp::Attribute* ref_at = dynamic_cast<xmlpp::Attribute*> (*k);
190                 xmlpp::Attribute* test_at = dynamic_cast<xmlpp::Attribute*> (*l);
191                 BOOST_CHECK ((ref_at && test_at) || (!ref_at && !test_at));
192                 if (ref_at && test_at) {
193                         BOOST_CHECK_EQUAL (ref_at->get_name(), test_at->get_name ());
194                         BOOST_CHECK_EQUAL (ref_at->get_value(), test_at->get_value ());
195                 }
196
197                 ++k;
198                 ++l;
199         }
200 }
201
202 void
203 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
204 {
205         xmlpp::DomParser* ref_parser = new xmlpp::DomParser (ref.string ());
206         xmlpp::Element* ref_root = ref_parser->get_document()->get_root_node ();
207         xmlpp::DomParser* test_parser = new xmlpp::DomParser (test.string ());
208         xmlpp::Element* test_root = test_parser->get_document()->get_root_node ();
209
210         check_xml (ref_root, test_root, ignore);
211 }
212
213 void
214 wait_for_jobs ()
215 {
216         JobManager* jm = JobManager::instance ();
217         while (jm->work_to_do ()) {
218                 ui_signaller->ui_idle ();
219         }
220         if (jm->errors ()) {
221                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
222                         if ((*i)->finished_in_error ()) {
223                                 cerr << (*i)->error_summary () << "\n"
224                                      << (*i)->error_details () << "\n";
225                         }
226                 }
227         }
228                 
229         BOOST_CHECK (!jm->errors());
230
231         ui_signaller->ui_idle ();
232 }