X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Frecovery_test.cc;h=1f76b964acc14b3965ff2c3f7cfc9f24ed19bccf;hb=3da5ba894243cb65c489f6acbcf4a37095130563;hp=8bd15aba47202bbc810449a36af4fdd757f6826e;hpb=0e29e68e94daade47167ac5bc6b51362ef02b5c3;p=libdcp.git diff --git a/test/recovery_test.cc b/test/recovery_test.cc index 8bd15aba..1f76b964 100644 --- a/test/recovery_test.cc +++ b/test/recovery_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2013 Carl Hetherington + Copyright (C) 2012-2019 Carl Hetherington This file is part of libdcp. @@ -15,46 +15,50 @@ You should have received a copy of the GNU General Public License along with libdcp. If not, see . + + 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 "mono_picture_asset_writer.h" #include "mono_picture_asset.h" +#include "test.h" #include #include #include using std::string; -using boost::shared_ptr; +using std::shared_ptr; +using std::make_shared; /** Check that recovery from a partially-written MXF works */ BOOST_AUTO_TEST_CASE (recovery) { - Kumu::cth_test = true; - - string const picture = "test/data/32x32_red_square.j2c"; - int const size = boost::filesystem::file_size (picture); - uint8_t* data = new uint8_t[size]; - { - FILE* f = fopen (picture.c_str(), "rb"); - BOOST_CHECK (f); - fread (data, 1, size, f); - fclose (f); - } + RNGFixer fix; -#ifdef LIBDCP_POSIX - /* XXX: fix this posix-only stuff */ - Kumu::ResetTestRNG (); -#endif + string const picture = "test/data/flat_red.j2c"; + dcp::ArrayData data(picture); boost::filesystem::remove_all ("build/test/baz"); boost::filesystem::create_directories ("build/test/baz"); - shared_ptr mp (new dcp::MonoPictureAsset (dcp::Fraction (24, 1), dcp::SMPTE)); - shared_ptr writer = mp->start_write ("build/test/baz/video1.mxf", false); + auto mp = make_shared(dcp::Fraction (24, 1), dcp::Standard::SMPTE); + auto writer = mp->start_write ("build/test/baz/video1.mxf", false); int written_size = 0; for (int i = 0; i < 24; ++i) { - dcp::FrameInfo info = writer->write (data, size); - BOOST_CHECK_EQUAL (info.hash, "cb90485a97ea5f7555cedc8a7afd473b"); + auto info = writer->write (data.data(), data.size()); + BOOST_CHECK_EQUAL (info.hash, "c3c9a3adec09baf2b0bcb65806fbeac8"); written_size = info.size; } @@ -62,10 +66,10 @@ BOOST_AUTO_TEST_CASE (recovery) writer.reset (); boost::filesystem::copy_file ("build/test/baz/video1.mxf", "build/test/baz/video2.mxf"); - boost::filesystem::resize_file ("build/test/baz/video2.mxf", 16384 + 353 * 11); + boost::filesystem::resize_file ("build/test/baz/video2.mxf", 16384 + data.size() * 11); { - FILE* f = fopen ("build/test/baz/video2.mxf", "rb+"); + auto f = fopen ("build/test/baz/video2.mxf", "rb+"); rewind (f); char zeros[256]; memset (zeros, 0, 256); @@ -73,22 +77,24 @@ BOOST_AUTO_TEST_CASE (recovery) fclose (f); } -#ifdef LIBDCP_POSIX +#ifndef LIBDCP_WINDOWS Kumu::ResetTestRNG (); #endif - mp.reset (new dcp::MonoPictureAsset (dcp::Fraction (24, 1), dcp::SMPTE)); + mp = make_shared(dcp::Fraction (24, 1), dcp::Standard::SMPTE); writer = mp->start_write ("build/test/baz/video2.mxf", true); - writer->write (data, size); + writer->write (data.data(), data.size()); for (int i = 1; i < 4; ++i) { writer->fake_write (written_size); } for (int i = 4; i < 24; ++i) { - writer->write (data, size); + writer->write (data.data(), data.size()); } writer->finalize (); + + check_file ("build/test/baz/video1.mxf", "build/test/baz/video2.mxf"); }