summaryrefslogtreecommitdiff
path: root/test/scaling_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-02-26 01:24:48 +0100
committerCarl Hetherington <cth@carlh.net>2021-02-26 01:24:48 +0100
commitea63ad9560757e56505551db3bf2e1c31be5c76c (patch)
treeec0f539b89d9c8ac627e65886241cc086246ab09 /test/scaling_test.cc
parentcbb8260e395058da76b3de518ebc535a114c54b1 (diff)
More verification of DCPs during tests.
Diffstat (limited to 'test/scaling_test.cc')
-rw-r--r--test/scaling_test.cc23
1 files changed, 16 insertions, 7 deletions
diff --git a/test/scaling_test.cc b/test/scaling_test.cc
index 809748e28..c361da80b 100644
--- a/test/scaling_test.cc
+++ b/test/scaling_test.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,11 +18,13 @@
*/
+
/** @file test/scaling_test.cc
* @brief Test scaling and black-padding of images from a still-image source.
* @ingroup feature
*/
+
#include <boost/test/unit_test.hpp>
#include "lib/image_content.h"
#include "lib/ratio.h"
@@ -31,17 +33,23 @@
#include "lib/video_content.h"
#include "test.h"
+
using std::string;
using std::shared_ptr;
+using std::make_shared;
+
static void scaling_test_for (shared_ptr<Film> film, shared_ptr<Content> content, float ratio, std::string image, string container)
{
content->video->set_custom_ratio (ratio);
film->set_container (Ratio::from_id (container));
film->set_interop (false);
- film->make_dcp ();
-
- BOOST_REQUIRE (!wait_for_jobs());
+ 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,12 +65,13 @@ static void scaling_test_for (shared_ptr<Film> film, shared_ptr<Content> content
check_dcp (ref.string(), check.string());
}
+
BOOST_AUTO_TEST_CASE (scaling_test)
{
- shared_ptr<Film> 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<ImageContent> imc (new ImageContent("test/data/simple_testcard_640x480.png"));
+ auto imc = make_shared<ImageContent>("test/data/simple_testcard_640x480.png");
film->examine_and_add_content (imc);