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