X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fscaling_test.cc;h=c361da80bb2f66053516ad79daf0a1390b8b186d;hb=03ac5ddb97fdaf7c8c46bd3c012cec8f04e8eabd;hp=4bb6551d39b1400dd17f14f1ee6404bdaaa50bb4;hpb=5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f;p=dcpomatic.git diff --git a/test/scaling_test.cc b/test/scaling_test.cc index 4bb6551d3..c361da80b 100644 --- a/test/scaling_test.cc +++ b/test/scaling_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,30 +18,38 @@ */ + /** @file test/scaling_test.cc * @brief Test scaling and black-padding of images from a still-image source. + * @ingroup feature */ + +#include #include "lib/image_content.h" #include "lib/ratio.h" #include "lib/film.h" #include "lib/dcp_content_type.h" #include "lib/video_content.h" #include "test.h" -#include -#include + using std::string; -using boost::shared_ptr; -using boost::make_shared; +using std::shared_ptr; +using std::make_shared; + -static void scaling_test_for (shared_ptr film, shared_ptr content, string image, string container) +static void scaling_test_for (shared_ptr film, shared_ptr content, float ratio, std::string image, string container) { - content->video->set_scale (VideoContentScale (Ratio::from_id (image))); + content->video->set_custom_ratio (ratio); film->set_container (Ratio::from_id (container)); - film->make_dcp (); - - wait_for_jobs (); + film->set_interop (false); + make_and_verify_dcp ( + film, + { + dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE, + dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE + }); boost::filesystem::path ref; ref = "test"; @@ -57,30 +65,31 @@ static void scaling_test_for (shared_ptr film, shared_ptr content check_dcp (ref.string(), check.string()); } + BOOST_AUTO_TEST_CASE (scaling_test) { - shared_ptr film = new_test_film ("scaling_test"); - film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR")); + auto film = new_test_film ("scaling_test"); + film->set_dcp_content_type (DCPContentType::from_isdcf_name("FTR")); film->set_name ("scaling_test"); - shared_ptr imc = make_shared (film, "test/data/simple_testcard_640x480.png"); + auto imc = make_shared("test/data/simple_testcard_640x480.png"); film->examine_and_add_content (imc); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); imc->video->set_length (1); /* F-133: 133 image in a flat container */ - scaling_test_for (film, imc, "133", "185"); + scaling_test_for (film, imc, 4.0 / 3, "133", "185"); /* F: flat image in a flat container */ - scaling_test_for (film, imc, "185", "185"); + scaling_test_for (film, imc, 1.85, "185", "185"); /* F-S: scope image in a flat container */ - scaling_test_for (film, imc, "239", "185"); + scaling_test_for (film, imc, 2.38695, "239", "185"); /* S-133: 133 image in a scope container */ - scaling_test_for (film, imc, "133", "239"); + scaling_test_for (film, imc, 4.0 / 3, "133", "239"); /* S-F: flat image in a scope container */ - scaling_test_for (film, imc, "185", "239"); + scaling_test_for (film, imc, 1.85, "185", "239"); /* S: scope image in a scope container */ - scaling_test_for (film, imc, "239", "239"); + scaling_test_for (film, imc, 2.38695, "239", "239"); }