/* Copyright (C) 2019 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic 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. DCP-o-matic 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 DCP-o-matic. If not, see . */ /** @file test/reel_writer_test.cc * @brief Test ReelWriter class. * @ingroup selfcontained */ #include "lib/reel_writer.h" #include "lib/film.h" #include "lib/cross.h" #include "test.h" #include using std::string; using boost::shared_ptr; using boost::optional; static bool equal (dcp::FrameInfo a, ReelWriter const & writer, boost::filesystem::path file, Frame frame, Eyes eyes) { FILE* f = fopen_boost(file, "rb"); BOOST_REQUIRE (f); dcp::FrameInfo b = writer.read_frame_info(f, frame, eyes); bool const r = a.offset == b.offset && a.size == b.size && a.hash == b.hash; fclose (f); return r; } BOOST_AUTO_TEST_CASE (write_frame_info_test) { shared_ptr film = new_test_film2 ("write_frame_info_test"); dcpomatic::DCPTimePeriod const period (dcpomatic::DCPTime(0), dcpomatic::DCPTime(96000)); ReelWriter writer (film, period, shared_ptr(), 0, 1, optional()); /* Write the first one */ boost::filesystem::path file = film->info_file (period); BOOST_CHECK (!boost::filesystem::exists(file)); dcp::FrameInfo info1(0, 123, "12345678901234567890123456789012"); writer.write_frame_info (0, EYES_LEFT, info1); BOOST_CHECK (boost::filesystem::exists(file)); BOOST_CHECK (equal(info1, writer, file, 0, EYES_LEFT)); /* Write some more */ dcp::FrameInfo info2(596, 14921, "123acb789f1234ae782012n456339522"); writer.write_frame_info (5, EYES_RIGHT, info2); BOOST_CHECK (boost::filesystem::exists(file)); BOOST_CHECK (equal(info1, writer, file, 0, EYES_LEFT)); BOOST_CHECK (equal(info2, writer, file, 5, EYES_RIGHT)); dcp::FrameInfo info3(12494, 99157123, "xxxxyyyyabc12356ffsfdsf456339522"); writer.write_frame_info (10, EYES_LEFT, info3); BOOST_CHECK (boost::filesystem::exists(file)); BOOST_CHECK (equal(info1, writer, file, 0, EYES_LEFT)); BOOST_CHECK (equal(info2, writer, file, 5, EYES_RIGHT)); BOOST_CHECK (equal(info3, writer, file, 10, EYES_LEFT)); /* Overwrite one */ dcp::FrameInfo info4(55512494, 123599157123, "ABCDEFGyabc12356ffsfdsf4563395ZZ"); writer.write_frame_info (5, EYES_RIGHT, info4); BOOST_CHECK (boost::filesystem::exists(file)); BOOST_CHECK (equal(info1, writer, file, 0, EYES_LEFT)); BOOST_CHECK (equal(info4, writer, file, 5, EYES_RIGHT)); BOOST_CHECK (equal(info3, writer, file, 10, EYES_LEFT)); }