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