summaryrefslogtreecommitdiff
path: root/test/dcp_test.cc
blob: e4ffab55a954fce87f2130b61bd2b4e32dc718aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
/*
    Copyright (C) 2013-2020 Carl Hetherington <cth@carlh.net>

    This file is part of libdcp.

    libdcp is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    libdcp is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with libdcp.  If not, see <http://www.gnu.org/licenses/>.

    In addition, as a special exception, the copyright holders give
    permission to link the code of portions of this program with the
    OpenSSL library under certain conditions as described in each
    individual source file, and distribute linked combinations
    including the two.

    You must obey the GNU General Public License in all respects
    for all of the code used other than OpenSSL.  If you modify
    file(s) with this exception, you may extend this exception to your
    version of the file(s), but you are not obligated to do so.  If you
    do not wish to do so, delete this exception statement from your
    version.  If you delete this exception statement from all source
    files in the program, then also delete it here.
*/


#include "atmos_asset.h"
#include "compose.hpp"
#include "cpl.h"
#include "dcp.h"
#include "equality_options.h"
#include "metadata.h"
#include "mono_j2k_picture_asset.h"
#include "j2k_picture_asset_writer.h"
#include "reel.h"
#include "reel_atmos_asset.h"
#include "reel_markers_asset.h"
#include "reel_mono_picture_asset.h"
#include "reel_picture_asset.h"
#include "reel_sound_asset.h"
#include "reel_stereo_picture_asset.h"
#include "sound_asset.h"
#include "sound_asset_writer.h"
#include "stereo_j2k_picture_asset.h"
#include "test.h"
#include <asdcp/KM_util.h>
#include <sndfile.h>
#include <boost/bind/bind.hpp>
#include <boost/test/unit_test.hpp>


using std::dynamic_pointer_cast;
using std::make_shared;
using std::shared_ptr;
using std::string;
using std::vector;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
#endif


/** Test creation of a 2D SMPTE DCP from very simple inputs */
BOOST_AUTO_TEST_CASE (dcp_test1)
{
	RNGFixer fixer;

	auto dcp = make_simple("build/test/DCP/dcp_test1");
	dcp->set_issuer("OpenDCP 0.0.25");
	dcp->set_creator("OpenDCP 0.0.25");
	dcp->set_issue_date("2012-07-17T04:45:18+00:00");
	dcp->set_annotation_text("A Test DCP");
	dcp->write_xml();

	/* build/test/DCP/dcp_test1 is checked against test/ref/DCP/dcp_test1 by run/tests */
}

/** Test creation of a 3D DCP from very simple inputs */
BOOST_AUTO_TEST_CASE (dcp_test2)
{
	RNGFixer fix;

	/* Some known metadata */
	dcp::MXFMetadata mxf_meta;
	mxf_meta.company_name = "OpenDCP";
	mxf_meta.product_name = "OpenDCP";
	mxf_meta.product_version = "0.0.25";

	/* We're making build/test/DCP/dcp_test2 */
	boost::filesystem::remove_all ("build/test/DCP/dcp_test2");
	boost::filesystem::create_directories ("build/test/DCP/dcp_test2");
	dcp::DCP d ("build/test/DCP/dcp_test2");
	auto cpl = make_shared<dcp::CPL>("A Test DCP", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE);
	cpl->set_content_version (
		dcp::ContentVersion("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00", "81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00")
		);
	cpl->set_issuer ("OpenDCP 0.0.25");
	cpl->set_creator ("OpenDCP 0.0.25");
	cpl->set_issue_date ("2012-07-17T04:45:18+00:00");
	cpl->set_annotation_text ("A Test DCP");

	auto mp = make_shared<dcp::StereoJ2KPictureAsset>(dcp::Fraction (24, 1), dcp::Standard::SMPTE);
	mp->set_metadata (mxf_meta);
	auto picture_writer = mp->start_write("build/test/DCP/dcp_test2/video.mxf", dcp::Behaviour::MAKE_NEW);
	dcp::ArrayData j2c ("test/data/flat_red.j2c");
	for (int i = 0; i < 24; ++i) {
		/* Left */
		picture_writer->write (j2c.data (), j2c.size ());
		/* Right */
		picture_writer->write (j2c.data (), j2c.size ());
	}
	picture_writer->finalize ();

	auto ms = make_shared<dcp::SoundAsset>(dcp::Fraction(24, 1), 48000, 1, dcp::LanguageTag("en-GB"), dcp::Standard::SMPTE);
	ms->set_metadata (mxf_meta);
	auto sound_writer = ms->start_write("build/test/DCP/dcp_test2/audio.mxf", {}, dcp::SoundAsset::AtmosSync::DISABLED, dcp::SoundAsset::MCASubDescriptors::ENABLED);

	SF_INFO info;
	info.format = 0;
	auto sndfile = sf_open ("test/data/1s_24-bit_48k_silence.wav", SFM_READ, &info);
	BOOST_CHECK (sndfile);
	float buffer[4096*6];
	float* channels[1];
	channels[0] = buffer;
	while (true) {
		auto N = sf_readf_float (sndfile, buffer, 4096);
		sound_writer->write(channels, 1, N);
		if (N < 4096) {
			break;
		}
	}

	sound_writer->finalize ();

	cpl->add (make_shared<dcp::Reel>(
			  make_shared<dcp::ReelStereoPictureAsset>(mp, 0),
			  make_shared<dcp::ReelSoundAsset>(ms, 0)
			  ));

	d.add (cpl);

	d.set_issuer("OpenDCP 0.0.25");
	d.set_creator("OpenDCP 0.0.25");
	d.set_issue_date("2012-07-17T04:45:18+00:00");
	d.set_annotation_text("Created by libdcp");
	d.write_xml();

	/* build/test/DCP/dcp_test2 is checked against test/ref/DCP/dcp_test2 by run/tests */
}

static void
note (dcp::NoteType, string)
{

}

/** Test comparison of a DCP with itself */
BOOST_AUTO_TEST_CASE (dcp_test3)
{
	dcp::DCP A ("test/ref/DCP/dcp_test1");
	A.read ();
	dcp::DCP B ("test/ref/DCP/dcp_test1");
	B.read ();

	BOOST_CHECK (A.equals (B, dcp::EqualityOptions(), boost::bind (&note, _1, _2)));
}

/** Test comparison of a DCP with a different DCP */
BOOST_AUTO_TEST_CASE (dcp_test4)
{
	dcp::DCP A ("test/ref/DCP/dcp_test1");
	A.read ();
	dcp::DCP B ("test/ref/DCP/dcp_test2");
	B.read ();

	BOOST_CHECK (!A.equals (B, dcp::EqualityOptions(), boost::bind (&note, _1, _2)));
}

static
void
test_rewriting_sound(string name, bool modify)
{
	using namespace boost::filesystem;

	dcp::DCP A ("test/ref/DCP/dcp_test1");
	A.read ();

	BOOST_REQUIRE (!A.cpls().empty());
	BOOST_REQUIRE (!A.cpls().front()->reels().empty());
	auto A_picture = dynamic_pointer_cast<dcp::ReelMonoPictureAsset>(A.cpls().front()->reels().front()->main_picture());
	BOOST_REQUIRE (A_picture);
	auto A_sound = dynamic_pointer_cast<dcp::ReelSoundAsset>(A.cpls().front()->reels().front()->main_sound());

	string const picture = "j2c_5279f9aa-94d7-42a6-b0e0-e4eaec4e2a15.mxf";

	remove_all ("build/test/" + name);
	dcp::DCP B ("build/test/" + name);
	auto reel = make_shared<dcp::Reel>();

	BOOST_REQUIRE(A_picture->mono_j2k_asset());
	BOOST_REQUIRE(A_picture->mono_j2k_asset()->file());
	copy_file(A_picture->mono_j2k_asset()->file().get(), path("build") / "test" / name / picture);
	reel->add(make_shared<dcp::ReelMonoPictureAsset>(make_shared<dcp::MonoJ2KPictureAsset>(path("build") / "test" / name / picture), 0));

	auto reader = A_sound->asset()->start_read();
	auto sound = make_shared<dcp::SoundAsset>(A_sound->asset()->edit_rate(), A_sound->asset()->sampling_rate(), A_sound->asset()->channels(), dcp::LanguageTag("en-US"), dcp::Standard::SMPTE);
	auto writer = sound->start_write(path("build") / "test" / name / "pcm_8246f87f-e1df-4c42-a290-f3b3069ff021.mxf", {}, dcp::SoundAsset::AtmosSync::DISABLED, dcp::SoundAsset::MCASubDescriptors::ENABLED);

	bool need_to_modify = modify;
	for (int i = 0; i < A_sound->asset()->intrinsic_duration(); ++i) {
		auto sf = reader->get_frame (i);
		vector<float*> out(sf->channels());
		for (int j = 0; j < sf->channels(); ++j) {
			out[j] = new float[sf->samples()];
		}
		for (int j = 0; j < sf->samples(); ++j) {
			for (int k = 0; k < sf->channels(); ++k) {
				out[k][j] = static_cast<float>(sf->get(k, j)) / (1 << 23);
				if (need_to_modify) {
					out[k][j] += 1.0 / (1 << 23);
					need_to_modify = false;
				}
			}
		}
		writer->write(out.data(), sf->channels(), sf->samples());
		for (int j = 0; j < sf->channels(); ++j) {
			delete[] out[j];
		}
	}
	writer->finalize();

	reel->add(make_shared<dcp::ReelSoundAsset>(sound, 0));
	reel->add(simple_markers());

	auto cpl = make_shared<dcp::CPL>("A Test DCP", dcp::ContentKind::TRAILER, dcp::Standard::SMPTE);
	cpl->add (reel);

	B.add (cpl);
	B.write_xml ();

	dcp::EqualityOptions eq;
	eq.reel_hashes_can_differ = true;
	eq.max_audio_sample_error = 0;
	if (modify) {
		BOOST_CHECK (!A.equals(B, eq, boost::bind(&note, _1, _2)));
	} else {
		BOOST_CHECK (A.equals(B, eq, boost::bind(&note, _1, _2)));
	}
}

/** Test comparison of a DCP with another that has the same picture and the same (but re-written) sound */
BOOST_AUTO_TEST_CASE (dcp_test9)
{
	test_rewriting_sound ("dcp_test9", false);
}

/** Test comparison of a DCP with another that has the same picture and very slightly modified sound */
BOOST_AUTO_TEST_CASE (dcp_test10)
{
	test_rewriting_sound ("dcp_test10", true);
}

/** Test creation of a 2D DCP with an Atmos track */
BOOST_AUTO_TEST_CASE (dcp_test5)
{
	RNGFixer fix;

	/* Some known metadata */
	dcp::MXFMetadata mxf_meta;
	mxf_meta.company_name = "OpenDCP";
	mxf_meta.product_name = "OpenDCP";
	mxf_meta.product_version = "0.0.25";

	/* We're making build/test/DCP/dcp_test5 */
	boost::filesystem::remove_all ("build/test/DCP/dcp_test5");
	boost::filesystem::create_directories ("build/test/DCP/dcp_test5");
	dcp::DCP d ("build/test/DCP/dcp_test5");
	auto cpl = make_shared<dcp::CPL>("A Test DCP", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE);
	cpl->set_content_version (
		dcp::ContentVersion("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00", "81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00")
		);
	cpl->set_issuer ("OpenDCP 0.0.25");
	cpl->set_creator ("OpenDCP 0.0.25");
	cpl->set_issue_date ("2012-07-17T04:45:18+00:00");
	cpl->set_annotation_text ("A Test DCP");

	auto mp = make_shared<dcp::MonoJ2KPictureAsset>(dcp::Fraction (24, 1), dcp::Standard::SMPTE);
	mp->set_metadata (mxf_meta);
	auto picture_writer = mp->start_write("build/test/DCP/dcp_test5/video.mxf", dcp::Behaviour::MAKE_NEW);
	dcp::ArrayData j2c ("test/data/flat_red.j2c");
	for (int i = 0; i < 24; ++i) {
		picture_writer->write (j2c.data (), j2c.size ());
	}
	picture_writer->finalize ();

	auto ms = make_shared<dcp::SoundAsset>(dcp::Fraction(24, 1), 48000, 1, dcp::LanguageTag("en-GB"), dcp::Standard::SMPTE);
	ms->set_metadata (mxf_meta);
	auto sound_writer = ms->start_write("build/test/DCP/dcp_test5/audio.mxf", {}, dcp::SoundAsset::AtmosSync::DISABLED, dcp::SoundAsset::MCASubDescriptors::ENABLED);

	SF_INFO info;
	info.format = 0;
	SNDFILE* sndfile = sf_open ("test/data/1s_24-bit_48k_silence.wav", SFM_READ, &info);
	BOOST_CHECK (sndfile);
	float buffer[4096*6];
	float* channels[1];
	channels[0] = buffer;
	while (true) {
		sf_count_t N = sf_readf_float (sndfile, buffer, 4096);
		sound_writer->write(channels, 1, N);
		if (N < 4096) {
			break;
		}
	}

	sound_writer->finalize ();

	auto am = make_shared<dcp::AtmosAsset>(private_test / "20160218_NameOfFilm_FTR_OV_EN_A_dcs_r01.mxf");

	cpl->add(make_shared<dcp::Reel>(
			make_shared<dcp::ReelMonoPictureAsset>(mp, 0),
			make_shared<dcp::ReelSoundAsset>(ms, 0),
			shared_ptr<dcp::ReelTextAsset>(),
			shared_ptr<dcp::ReelMarkersAsset>(),
			make_shared<dcp::ReelAtmosAsset>(am, 0)
			));

	d.add (cpl);

	d.set_issuer("OpenDCP 0.0.25");
	d.set_creator("OpenDCP 0.0.25");
	d.set_issue_date("2012-07-17T04:45:18+00:00");
	d.set_annotation_text("Created by libdcp");
	d.write_xml();

	/* build/test/DCP/dcp_test5 is checked against test/ref/DCP/dcp_test5 by run/tests */
}

/** Basic tests of reading a 2D DCP with an Atmos track */
BOOST_AUTO_TEST_CASE (dcp_test6)
{
	dcp::DCP dcp ("test/ref/DCP/dcp_test5");
	dcp.read ();

	BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 1U);
	BOOST_REQUIRE_EQUAL (dcp.cpls()[0]->reels().size(), 1U);
	BOOST_CHECK (dcp.cpls().front()->reels().front()->main_picture());
	BOOST_CHECK (dcp.cpls().front()->reels().front()->main_sound());
	BOOST_CHECK (!dcp.cpls().front()->reels().front()->main_subtitle());
	BOOST_CHECK (dcp.cpls().front()->reels().front()->atmos());
}

/** Test creation of a 2D Interop DCP from very simple inputs */
BOOST_AUTO_TEST_CASE (dcp_test7)
{
	RNGFixer fix;

	auto dcp = make_simple("build/test/DCP/dcp_test7", 1, 24, dcp::Standard::INTEROP);
	dcp->set_issuer("OpenDCP 0.0.25");
	dcp->set_creator("OpenDCP 0.0.25");
	dcp->set_issue_date("2012-07-17T04:45:18+00:00");
	dcp->set_annotation_text("Created by libdcp");
	dcp->write_xml();

	/* build/test/DCP/dcp_test7 is checked against test/ref/DCP/dcp_test7 by run/tests */
}

/** Test reading of a DCP with multiple CPLs */
BOOST_AUTO_TEST_CASE (dcp_test8)
{
	dcp::DCP dcp (private_test / "data/SMPTE_TST-B1PB2P_S_EN-EN-CCAP_5171-HI-VI_2K_ISDCF_20151123_DPPT_SMPTE_combo/");
	dcp.read ();

	BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 2U);
}


/** Test reading a DCP whose ASSETMAP contains assets not used by any PKL */
BOOST_AUTO_TEST_CASE (dcp_things_in_assetmap_not_in_pkl)
{
	dcp::DCP dcp ("test/data/extra_assetmap");
	BOOST_CHECK_NO_THROW (dcp.read());
}


/** Test that writing the XML for a DCP with no CPLs throws */
BOOST_AUTO_TEST_CASE (dcp_with_no_cpls)
{
	dcp::DCP dcp ("build/test/dcp_with_no_cpls");
	BOOST_REQUIRE_THROW (dcp.write_xml(), dcp::MiscError);
}


/** Test that writing the XML for a DCP with Interop CPLs makes a SMPTE assetmap */
BOOST_AUTO_TEST_CASE (dcp_with_interop_cpls)
{
	boost::filesystem::path path = "build/test/dcp_with_interop_cpls";
	boost::filesystem::remove_all (path);
	dcp::DCP dcp (path);
	auto cpl1 = make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::INTEROP);
	cpl1->add(make_shared<dcp::Reel>());
	dcp.add(cpl1);
	auto cpl2 = make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::INTEROP);
	cpl2->add(make_shared<dcp::Reel>());
	dcp.add(cpl2);
	dcp.write_xml ();
	BOOST_REQUIRE (boost::filesystem::exists(path / "ASSETMAP"));
	BOOST_REQUIRE (!boost::filesystem::exists(path / "ASSETMAP.xml"));
}


/** Test that writing the XML for a DCP with SMPTE CPLs makes a SMPTE assetmap */
BOOST_AUTO_TEST_CASE (dcp_with_smpte_cpls)
{
	boost::filesystem::path path = "build/test/dcp_with_smpte_cpls";
	boost::filesystem::remove_all (path);
	dcp::DCP dcp (path);
	auto cpl1 = make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE);
	cpl1->add(make_shared<dcp::Reel>());
	dcp.add(cpl1);
	auto cpl2 = make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE);
	cpl2->add(make_shared<dcp::Reel>());
	dcp.add(cpl2);
	dcp.write_xml ();
	BOOST_REQUIRE (!boost::filesystem::exists(path / "ASSETMAP"));
	BOOST_REQUIRE (boost::filesystem::exists(path / "ASSETMAP.xml"));
}


/** Test that writing the XML for a DCP with mixed-standard CPLs throws */
BOOST_AUTO_TEST_CASE (dcp_with_mixed_cpls)
{
	dcp::DCP dcp ("build/test/dcp_with_mixed_cpls");
	dcp.add(make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE));
	dcp.add(make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::INTEROP));
	dcp.add(make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE));
	BOOST_REQUIRE_THROW (dcp.write_xml(), dcp::MiscError);
}


BOOST_AUTO_TEST_CASE (dcp_add_kdm_test)
{
	/* Some CPLs, each with a reel */

	shared_ptr<dcp::CPL> cpls[] = {
		make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE),
		make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE),
		make_shared<dcp::CPL>("", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE)
	};

	shared_ptr<dcp::Reel> reels[] = {
		make_shared<dcp::Reel>(),
		make_shared<dcp::Reel>(),
		make_shared<dcp::Reel>()
	};

	for (auto i = 0; i < 3; ++i) {
		cpls[i]->add(reels[i]);
	}

	dcp::DCP dcp ("build/test/dcp_add_kdm_test");
	dcp.add(cpls[0]);
	dcp.add(cpls[1]);
	dcp.add(cpls[2]);

	/* Simple KDM with one key that should be given to cpls[0] */

	auto kdm_1 = dcp::DecryptedKDM({}, {}, "", "", "");
	auto kdm_1_uuid = dcp::make_uuid();
	kdm_1.add_key (dcp::DecryptedKDMKey(string("MDIK"), kdm_1_uuid, dcp::Key(), cpls[0]->id(), dcp::Standard::SMPTE));
	dcp.add (kdm_1);
	BOOST_REQUIRE_EQUAL (reels[0]->_kdms.size(), 1U);
	BOOST_CHECK_EQUAL (reels[0]->_kdms[0].keys().size(), 1U);
	BOOST_CHECK_EQUAL (reels[0]->_kdms[0].keys()[0].id(), kdm_1_uuid);
	BOOST_CHECK_EQUAL (reels[1]->_kdms.size(), 0U);
	BOOST_CHECK_EQUAL (reels[2]->_kdms.size(), 0U);

	/* KDM with two keys that should be given to cpls[1] and cpls[2] */

	auto kdm_2 = dcp::DecryptedKDM({}, {}, "", "", "");
	auto kdm_2_uuid_1 = dcp::make_uuid();
	kdm_2.add_key (dcp::DecryptedKDMKey(string("MDIK"), kdm_2_uuid_1, dcp::Key(), cpls[1]->id(), dcp::Standard::SMPTE));
	auto kdm_2_uuid_2 = dcp::make_uuid();
	kdm_2.add_key (dcp::DecryptedKDMKey(string("MDIK"), kdm_2_uuid_2, dcp::Key(), cpls[2]->id(), dcp::Standard::SMPTE));
	dcp.add (kdm_2);
	/* Unchanged from previous test */
	BOOST_CHECK (reels[0]->_kdms.size() == 1);
	/* kdm_2 should have been added to both the other CPLs */
	BOOST_REQUIRE_EQUAL (reels[1]->_kdms.size(), 1U);
	BOOST_REQUIRE_EQUAL (reels[1]->_kdms[0].keys().size(), 2U);
	BOOST_CHECK_EQUAL (reels[1]->_kdms[0].keys()[0].id(), kdm_2_uuid_1);
	BOOST_CHECK_EQUAL (reels[1]->_kdms[0].keys()[1].id(), kdm_2_uuid_2);
	BOOST_REQUIRE_EQUAL (reels[2]->_kdms.size(), 1U);
	BOOST_REQUIRE_EQUAL (reels[2]->_kdms[0].keys().size(), 2U);
	BOOST_CHECK_EQUAL (reels[2]->_kdms[0].keys()[0].id(), kdm_2_uuid_1);
	BOOST_CHECK_EQUAL (reels[2]->_kdms[0].keys()[1].id(), kdm_2_uuid_2);
}


BOOST_AUTO_TEST_CASE(hashes_preserved_when_loading_corrupted_dcp)
{
	boost::filesystem::path const dir = "build/test/hashes_preserved_when_loading_corrupted_dcp";
	boost::filesystem::remove_all(dir);

	auto dcp = make_simple(dir / "1");
	dcp->write_xml();

	auto asset_1_id = dcp::MonoJ2KPictureAsset(dir / "1" / "video.mxf").id();
	auto asset_1_hash = dcp::MonoJ2KPictureAsset(dir / "1" / "video.mxf").hash();

	/* Replace the hash in the CPL (the one that corresponds to the actual file)
	 * with an incorrect one new_hash.
	 */
	string new_hash;
	{
		Editor editor(find_file(dir / "1", "cpl_"));
		auto const after = "<Duration>24</Duration>";
		editor.delete_lines_after(after, 1);

		if (asset_1_hash[0] == 'A') {
			new_hash = 'B' + asset_1_hash.substr(1);
		} else {
			new_hash = 'A' + asset_1_hash.substr(1);
		}

		editor.insert(after, dcp::String::compose("      <Hash>%1</Hash>", new_hash));
	}

	dcp::DCP read_back(dir / "1");
	read_back.read();

	BOOST_REQUIRE_EQUAL(read_back.cpls().size(), 1U);
	auto cpl = read_back.cpls()[0];
	BOOST_REQUIRE_EQUAL(cpl->reels().size(), 1U);
	auto reel = cpl->reels()[0];
	BOOST_REQUIRE(reel->main_picture());
	/* Now the asset should think it has the wrong hash written to the PKL file; it shouldn't have
	 * checked the file again.
	 */
	BOOST_CHECK_EQUAL(reel->main_picture()->asset_ref()->hash(), new_hash);
}


BOOST_AUTO_TEST_CASE(can_write_vf_xml)
{
	auto dcp = dcp::DCP("build/test/can_write_vf_xml");
	auto cpl = std::make_shared<dcp::CPL>("annotate", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE);
	auto picture = std::make_shared<dcp::ReelMonoPictureAsset>(
		simple_picture("build/test/can_write_vf_xml", ""),
		0
	);
	auto sound = std::make_shared<dcp::ReelSoundAsset>(
		dcp::make_uuid(), dcp::Fraction(24, 1), 24, 0, boost::none, boost::none
	);
	auto reel = std::make_shared<dcp::Reel>(
		picture,
		sound,
		std::shared_ptr<dcp::ReelTextAsset>(),
		std::shared_ptr<dcp::ReelMarkersAsset>(),
		std::shared_ptr<dcp::ReelAtmosAsset>()
	);
	cpl->add(reel);
	dcp.add(cpl);
	dcp.write_xml();
}