X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fdcp_test.cc;h=2e1344c51fa1f1b32ed657d565d9014751ba1162;hb=d3598922d970bba6fcb468c331e1f0a33bef1a0f;hp=9d3b8171b2baffd6e5f318765350637135a92e9d;hpb=43465aa4037cec6d351a842a6624a50685d6c127;p=libdcp.git diff --git a/test/dcp_test.cc b/test/dcp_test.cc index 9d3b8171..2e1344c5 100644 --- a/test/dcp_test.cc +++ b/test/dcp_test.cc @@ -1,83 +1,329 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2017 Carl Hetherington - This program is free software; you can redistribute it and/or modify + 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. - This program is distributed in the hope that it will be useful, + 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 this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - + along with libdcp. If not, see . */ -#include #include "dcp.h" #include "metadata.h" #include "cpl.h" -#include "picture_asset.h" +#include "mono_picture_asset.h" +#include "stereo_picture_asset.h" +#include "picture_asset_writer.h" +#include "sound_asset_writer.h" #include "sound_asset.h" +#include "atmos_asset.h" #include "reel.h" #include "test.h" -#include "KM_util.h" +#include "file.h" +#include "reel_mono_picture_asset.h" +#include "reel_stereo_picture_asset.h" +#include "reel_sound_asset.h" +#include "reel_atmos_asset.h" +#include +#include +#include +using std::string; using boost::shared_ptr; -/* Test creation of a DCP from very simple inputs */ -BOOST_AUTO_TEST_CASE (dcp_test) +static shared_ptr +make_simple (boost::filesystem::path path) +{ + Kumu::cth_test = true; + + /* Some known metadata */ + dcp::XMLMetadata xml_meta; + xml_meta.annotation_text = "A Test DCP"; + xml_meta.issuer = "OpenDCP 0.0.25"; + xml_meta.creator = "OpenDCP 0.0.25"; + xml_meta.issue_date = "2012-07-17T04:45:18+00:00"; + 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_test1 */ + boost::filesystem::remove_all (path); + boost::filesystem::create_directories (path); + shared_ptr d (new dcp::DCP (path)); + shared_ptr cpl (new dcp::CPL ("A Test DCP", dcp::FEATURE)); + cpl->set_content_version_id ("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00"); + cpl->set_content_version_label_text ("81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00"); + cpl->set_metadata (xml_meta); + + shared_ptr mp (new dcp::MonoPictureAsset (dcp::Fraction (24, 1), dcp::SMPTE)); + mp->set_metadata (mxf_meta); + shared_ptr picture_writer = mp->start_write (path / "video.mxf", false); + dcp::File j2c ("test/data/32x32_red_square.j2c"); + for (int i = 0; i < 24; ++i) { + picture_writer->write (j2c.data (), j2c.size ()); + } + picture_writer->finalize (); + + shared_ptr ms (new dcp::SoundAsset (dcp::Fraction (24, 1), 48000, 1, dcp::SMPTE)); + ms->set_metadata (mxf_meta); + shared_ptr sound_writer = ms->start_write (path / "audio.mxf"); + + 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 (1) { + sf_count_t N = sf_readf_float (sndfile, buffer, 4096); + sound_writer->write (channels, N); + if (N < 4096) { + break; + } + } + + sound_writer->finalize (); + + cpl->add (shared_ptr ( + new dcp::Reel ( + shared_ptr (new dcp::ReelMonoPictureAsset (mp, 0)), + shared_ptr (new dcp::ReelSoundAsset (ms, 0)) + ) + )); + + d->add (cpl); + return d; +} + +/** Test creation of a 2D SMPTE DCP from very simple inputs */ +BOOST_AUTO_TEST_CASE (dcp_test1) { - Kumu::libdcp_test = true; + dcp::XMLMetadata xml_meta; + xml_meta.annotation_text = "Created by libdcp"; + xml_meta.issuer = "OpenDCP 0.0.25"; + xml_meta.creator = "OpenDCP 0.0.25"; + xml_meta.issue_date = "2012-07-17T04:45:18+00:00"; + make_simple("build/test/DCP/dcp_test1")->write_xml (dcp::SMPTE, xml_meta); + /* 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) +{ + Kumu::cth_test = true; /* Some known metadata */ - libdcp::XMLMetadata xml_meta; + dcp::XMLMetadata xml_meta; + xml_meta.annotation_text = "A Test DCP"; xml_meta.issuer = "OpenDCP 0.0.25"; xml_meta.creator = "OpenDCP 0.0.25"; xml_meta.issue_date = "2012-07-17T04:45:18+00:00"; - libdcp::MXFMetadata mxf_meta; + 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/foo */ - boost::filesystem::remove_all ("build/test/foo"); - boost::filesystem::create_directories ("build/test/foo"); - libdcp::DCP d ("build/test/foo"); - shared_ptr cpl (new libdcp::CPL ("build/test/foo", "A Test DCP", libdcp::FEATURE, 24, 24)); - - shared_ptr mp (new libdcp::MonoPictureAsset ( - j2c, - "build/test/foo", - "video.mxf", - &d.Progress, - 24, - 24, - libdcp::Size (32, 32), - false, - mxf_meta - )); - - shared_ptr ms (new libdcp::SoundAsset ( - wav, - "build/test/foo", - "audio.mxf", - &(d.Progress), - 24, - 24, - 2, - false, - mxf_meta - )); - - cpl->add_reel (shared_ptr (new libdcp::Reel (mp, ms, shared_ptr ()))); - d.add_cpl (cpl); - - d.write_xml (false, xml_meta); - - /* build/test/foo is checked against test/ref/DCP/foo by run-tests.sh */ + /* 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"); + shared_ptr cpl (new dcp::CPL ("A Test DCP", dcp::FEATURE)); + cpl->set_content_version_id ("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00"); + cpl->set_content_version_label_text ("81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00"); + cpl->set_metadata (xml_meta); + + shared_ptr mp (new dcp::StereoPictureAsset (dcp::Fraction (24, 1), dcp::SMPTE)); + mp->set_metadata (mxf_meta); + shared_ptr picture_writer = mp->start_write ("build/test/DCP/dcp_test2/video.mxf", false); + dcp::File j2c ("test/data/32x32_red_square.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 (); + + shared_ptr ms (new dcp::SoundAsset (dcp::Fraction (24, 1), 48000, 1, dcp::SMPTE)); + ms->set_metadata (mxf_meta); + shared_ptr sound_writer = ms->start_write ("build/test/DCP/dcp_test2/audio.mxf"); + + 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 (1) { + sf_count_t N = sf_readf_float (sndfile, buffer, 4096); + sound_writer->write (channels, N); + if (N < 4096) { + break; + } + } + + sound_writer->finalize (); + + cpl->add (shared_ptr ( + new dcp::Reel ( + shared_ptr (new dcp::ReelStereoPictureAsset (mp, 0)), + shared_ptr (new dcp::ReelSoundAsset (ms, 0)) + ) + )); + + d.add (cpl); + + xml_meta.annotation_text = "Created by libdcp"; + d.write_xml (dcp::SMPTE, xml_meta); + + /* 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 (¬e, _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 (¬e, _1, _2))); +} + +/** Test creation of a 2D DCP with an Atmos track */ +BOOST_AUTO_TEST_CASE (dcp_test5) +{ + Kumu::cth_test = true; + + /* Some known metadata */ + dcp::XMLMetadata xml_meta; + xml_meta.annotation_text = "A Test DCP"; + xml_meta.issuer = "OpenDCP 0.0.25"; + xml_meta.creator = "OpenDCP 0.0.25"; + xml_meta.issue_date = "2012-07-17T04:45:18+00:00"; + 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"); + shared_ptr cpl (new dcp::CPL ("A Test DCP", dcp::FEATURE)); + cpl->set_content_version_id ("urn:uri:81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00"); + cpl->set_content_version_label_text ("81fb54df-e1bf-4647-8788-ea7ba154375b_2012-07-17T04:45:18+00:00"); + cpl->set_metadata (xml_meta); + + shared_ptr mp (new dcp::MonoPictureAsset (dcp::Fraction (24, 1), dcp::SMPTE)); + mp->set_metadata (mxf_meta); + shared_ptr picture_writer = mp->start_write ("build/test/DCP/dcp_test5/video.mxf", false); + dcp::File j2c ("test/data/32x32_red_square.j2c"); + for (int i = 0; i < 24; ++i) { + picture_writer->write (j2c.data (), j2c.size ()); + } + picture_writer->finalize (); + + shared_ptr ms (new dcp::SoundAsset (dcp::Fraction (24, 1), 48000, 1, dcp::SMPTE)); + ms->set_metadata (mxf_meta); + shared_ptr sound_writer = ms->start_write ("build/test/DCP/dcp_test5/audio.mxf"); + + 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, N); + if (N < 4096) { + break; + } + } + + sound_writer->finalize (); + + shared_ptr am (new dcp::AtmosAsset (private_test / "20160218_NameOfFilm_FTR_OV_EN_A_dcs_r01.mxf")); + + cpl->add (shared_ptr ( + new dcp::Reel ( + shared_ptr (new dcp::ReelMonoPictureAsset (mp, 0)), + shared_ptr (new dcp::ReelSoundAsset (ms, 0)), + shared_ptr (), + shared_ptr (new dcp::ReelAtmosAsset (am, 0)) + ) + )); + + d.add (cpl); + + xml_meta.annotation_text = "Created by libdcp"; + d.write_xml (dcp::SMPTE, xml_meta); + + /* 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(), 1); + BOOST_REQUIRE_EQUAL (dcp.cpls().front()->reels().size(), 1); + 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) +{ + dcp::XMLMetadata xml_meta; + xml_meta.annotation_text = "Created by libdcp"; + xml_meta.issuer = "OpenDCP 0.0.25"; + xml_meta.creator = "OpenDCP 0.0.25"; + xml_meta.issue_date = "2012-07-17T04:45:18+00:00"; + make_simple("build/test/DCP/dcp_test7")->write_xml (dcp::INTEROP, xml_meta); + /* build/test/DCP/dcp_test7 is checked against test/ref/DCP/dcp_test7 by run/tests */ +} + +/** Test reading of a DCP with multiple PKLs */ +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(), 2); }