Use out-of-tree asdcplib-cth
[libdcp.git] / test / dcp_test.cc
1 /*
2     Copyright (C) 2013-2015 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 "dcp.h"
21 #include "metadata.h"
22 #include "cpl.h"
23 #include "mono_picture_asset.h"
24 #include "stereo_picture_asset.h"
25 #include "picture_asset_writer.h"
26 #include "sound_asset_writer.h"
27 #include "sound_asset.h"
28 #include "reel.h"
29 #include "test.h"
30 #include "file.h"
31 #include "reel_mono_picture_asset.h"
32 #include "reel_stereo_picture_asset.h"
33 #include "reel_sound_asset.h"
34 #include "KM_util.h"
35 #include <sndfile.h>
36 #include <boost/test/unit_test.hpp>
37
38 using std::string;
39 using boost::shared_ptr;
40
41 /** Test creation of a 2D DCP from very simple inputs */
42 BOOST_AUTO_TEST_CASE (dcp_test1)
43 {
44         Kumu::cth_test = true;
45
46         /* Some known metadata */
47         dcp::XMLMetadata xml_meta;
48         xml_meta.issuer = "OpenDCP 0.0.25";
49         xml_meta.creator = "OpenDCP 0.0.25";
50         xml_meta.issue_date = "2012-07-17T04:45:18+00:00";
51         dcp::MXFMetadata mxf_meta;
52         mxf_meta.company_name = "OpenDCP";
53         mxf_meta.product_name = "OpenDCP";
54         mxf_meta.product_version = "0.0.25";
55
56         /* We're making build/test/DCP/dcp_test1 */
57         boost::filesystem::remove_all ("build/test/DCP/dcp_test1");
58         boost::filesystem::create_directories ("build/test/DCP/dcp_test1");
59         dcp::DCP d ("build/test/DCP/dcp_test1");
60         shared_ptr<dcp::CPL> cpl (new dcp::CPL ("A Test DCP", dcp::FEATURE));
61         cpl->set_content_version_id ("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00");
62         cpl->set_content_version_label_text ("81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00");
63         cpl->set_metadata (xml_meta);
64
65         shared_ptr<dcp::MonoPictureAsset> mp (new dcp::MonoPictureAsset (dcp::Fraction (24, 1)));
66         mp->set_metadata (mxf_meta);
67         shared_ptr<dcp::PictureAssetWriter> picture_writer = mp->start_write ("build/test/DCP/dcp_test1/video.mxf", dcp::SMPTE, false);
68         dcp::File j2c ("test/data/32x32_red_square.j2c");
69         for (int i = 0; i < 24; ++i) {
70                 picture_writer->write (j2c.data (), j2c.size ());
71         }
72         picture_writer->finalize ();
73
74         shared_ptr<dcp::SoundAsset> ms (new dcp::SoundAsset (dcp::Fraction (24, 1), 48000, 1));
75         ms->set_metadata (mxf_meta);
76         shared_ptr<dcp::SoundAssetWriter> sound_writer = ms->start_write ("build/test/DCP/dcp_test1/audio.mxf", dcp::SMPTE);
77
78         SF_INFO info;
79         info.format = 0;
80         SNDFILE* sndfile = sf_open ("test/data/1s_24-bit_48k_silence.wav", SFM_READ, &info);
81         BOOST_CHECK (sndfile);
82         float buffer[4096*6];
83         float* channels[1];
84         channels[0] = buffer;
85         while (1) {
86                 sf_count_t N = sf_readf_float (sndfile, buffer, 4096);
87                 sound_writer->write (channels, N);
88                 if (N < 4096) {
89                         break;
90                 }
91         }
92
93         sound_writer->finalize ();
94
95         cpl->add (shared_ptr<dcp::Reel> (
96                           new dcp::Reel (
97                                   shared_ptr<dcp::ReelMonoPictureAsset> (new dcp::ReelMonoPictureAsset (mp, 0)),
98                                   shared_ptr<dcp::ReelSoundAsset> (new dcp::ReelSoundAsset (ms, 0)),
99                                   shared_ptr<dcp::ReelSubtitleAsset> ()
100                                   )
101                           ));
102
103         d.add (cpl);
104
105         d.write_xml (dcp::SMPTE, xml_meta);
106
107         /* build/test/DCP/dcp_test1 is checked against test/ref/DCP/dcp_test1 by run-tests.sh */
108 }
109
110 /** Test creation of a 3D DCP from very simple inputs */
111 BOOST_AUTO_TEST_CASE (dcp_test2)
112 {
113         Kumu::cth_test = true;
114
115         /* Some known metadata */
116         dcp::XMLMetadata xml_meta;
117         xml_meta.issuer = "OpenDCP 0.0.25";
118         xml_meta.creator = "OpenDCP 0.0.25";
119         xml_meta.issue_date = "2012-07-17T04:45:18+00:00";
120         dcp::MXFMetadata mxf_meta;
121         mxf_meta.company_name = "OpenDCP";
122         mxf_meta.product_name = "OpenDCP";
123         mxf_meta.product_version = "0.0.25";
124
125         /* We're making build/test/DCP/dcp_test2 */
126         boost::filesystem::remove_all ("build/test/DCP/dcp_test2");
127         boost::filesystem::create_directories ("build/test/DCP/dcp_test2");
128         dcp::DCP d ("build/test/DCP/dcp_test2");
129         shared_ptr<dcp::CPL> cpl (new dcp::CPL ("A Test DCP", dcp::FEATURE));
130         cpl->set_content_version_id ("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00");
131         cpl->set_content_version_label_text ("81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00");
132         cpl->set_metadata (xml_meta);
133
134         shared_ptr<dcp::StereoPictureAsset> mp (new dcp::StereoPictureAsset (dcp::Fraction (24, 1)));
135         mp->set_metadata (mxf_meta);
136         shared_ptr<dcp::PictureAssetWriter> picture_writer = mp->start_write ("build/test/DCP/dcp_test2/video.mxf", dcp::SMPTE, false);
137         dcp::File j2c ("test/data/32x32_red_square.j2c");
138         for (int i = 0; i < 24; ++i) {
139                 /* Left */
140                 picture_writer->write (j2c.data (), j2c.size ());
141                 /* Right */
142                 picture_writer->write (j2c.data (), j2c.size ());
143         }
144         picture_writer->finalize ();
145
146         shared_ptr<dcp::SoundAsset> ms (new dcp::SoundAsset (dcp::Fraction (24, 1), 48000, 1));
147         ms->set_metadata (mxf_meta);
148         shared_ptr<dcp::SoundAssetWriter> sound_writer = ms->start_write ("build/test/DCP/dcp_test2/audio.mxf", dcp::SMPTE);
149
150         SF_INFO info;
151         info.format = 0;
152         SNDFILE* sndfile = sf_open ("test/data/1s_24-bit_48k_silence.wav", SFM_READ, &info);
153         BOOST_CHECK (sndfile);
154         float buffer[4096*6];
155         float* channels[1];
156         channels[0] = buffer;
157         while (1) {
158                 sf_count_t N = sf_readf_float (sndfile, buffer, 4096);
159                 sound_writer->write (channels, N);
160                 if (N < 4096) {
161                         break;
162                 }
163         }
164
165         sound_writer->finalize ();
166
167         cpl->add (shared_ptr<dcp::Reel> (
168                           new dcp::Reel (
169                                   shared_ptr<dcp::ReelStereoPictureAsset> (new dcp::ReelStereoPictureAsset (mp, 0)),
170                                   shared_ptr<dcp::ReelSoundAsset> (new dcp::ReelSoundAsset (ms, 0)),
171                                   shared_ptr<dcp::ReelSubtitleAsset> ()
172                                   )
173                           ));
174
175         d.add (cpl);
176
177         d.write_xml (dcp::SMPTE, xml_meta);
178
179         /* build/test/DCP/dcp_test2 is checked against test/ref/DCP/dcp_test2 by run-tests.sh */
180 }
181
182 static void
183 note (dcp::NoteType, string)
184 {
185
186 }
187
188 /** Test comparison of a DCP with itself */
189 BOOST_AUTO_TEST_CASE (dcp_test3)
190 {
191         dcp::DCP A ("test/ref/DCP/dcp_test1");
192         A.read ();
193         dcp::DCP B ("test/ref/DCP/dcp_test1");
194         B.read ();
195
196         BOOST_CHECK (A.equals (B, dcp::EqualityOptions(), boost::bind (&note, _1, _2)));
197 }
198
199 /** Test comparison of a DCP with a different DCP */
200 BOOST_AUTO_TEST_CASE (dcp_test4)
201 {
202         dcp::DCP A ("test/ref/DCP/dcp_test1");
203         A.read ();
204         dcp::DCP B ("test/ref/DCP/dcp_test2");
205         B.read ();
206
207         BOOST_CHECK (!A.equals (B, dcp::EqualityOptions(), boost::bind (&note, _1, _2)));
208 }