X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Frequired_disk_space_test.cc;h=cad2e2ee5bdffbaac3a4ab826ebfc5bdd21989cf;hp=a66b6645e26f4373e9d1a758e4b4ab5be804aa0c;hb=8963f0007af1a312017b9627c18b82ec2a577591;hpb=6cc7359c1af897f334dab5ba455707ce0c59af9d diff --git a/test/required_disk_space_test.cc b/test/required_disk_space_test.cc index a66b6645e..cad2e2ee5 100644 --- a/test/required_disk_space_test.cc +++ b/test/required_disk_space_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,35 +18,41 @@ */ + /** @file test/required_disk_space_test.cc * @brief Check Film::required_disk_space - * @ingroup specific + * @ingroup selfcontained */ + #include "lib/content_factory.h" -#include "lib/film.h" #include "lib/dcp_content.h" +#include "lib/film.h" #include "test.h" #include -using boost::shared_ptr; -using boost::dynamic_pointer_cast; + +using std::dynamic_pointer_cast; +using std::make_shared; +using std::shared_ptr; + void check_within_n (int64_t a, int64_t b, int64_t n) { - BOOST_CHECK (abs (a - b) <= n); + BOOST_CHECK_MESSAGE (abs(a - b) <= n, "Estimated " << a << " differs from reference " << b << " by more than " << n); } BOOST_AUTO_TEST_CASE (required_disk_space_test) { - shared_ptr film = new_test_film ("required_disk_space_test"); + auto film = new_test_film ("required_disk_space_test"); film->set_j2k_bandwidth (100000000); film->set_audio_channels (6); - shared_ptr content_a = content_factory("test/data/flat_blue.png").front(); + film->set_reel_type (ReelType::BY_VIDEO_CONTENT); + auto content_a = content_factory("test/data/flat_blue.png").front(); BOOST_REQUIRE (content_a); film->examine_and_add_content (content_a); - shared_ptr content_b (new DCPContent("test/data/burnt_subtitle_test_dcp")); + auto content_b = make_shared("test/data/burnt_subtitle_test_dcp"); film->examine_and_add_content (content_b); BOOST_REQUIRE (!wait_for_jobs()); film->write_metadata ();