X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fcolour_conversion_test.cc;h=7b4d1eebdabe88b271a455c1f28e6105c2c769f6;hb=HEAD;hp=f277edd9ad743f023e3ededadb5555c6807ff93d;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/test/colour_conversion_test.cc b/test/colour_conversion_test.cc index f277edd9a..7b4d1eebd 100644 --- a/test/colour_conversion_test.cc +++ b/test/colour_conversion_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,36 +18,40 @@ */ + /** @file test/colour_conversion_test.cc * @brief Test ColourConversion class. * @ingroup selfcontained */ + #include "lib/colour_conversion.h" #include "lib/film.h" #include #include #include -#include #include + using std::cout; -using std::shared_ptr; +using std::make_shared; + BOOST_AUTO_TEST_CASE (colour_conversion_test1) { - ColourConversion A (dcp::ColourConversion::srgb_to_xyz ()); - ColourConversion B (dcp::ColourConversion::rec709_to_xyz ()); + ColourConversion A (dcp::ColourConversion::srgb_to_xyz()); + ColourConversion B (dcp::ColourConversion::rec709_to_xyz()); - BOOST_CHECK_EQUAL (A.identifier(), "9840c601d2775bf1b3847254bbaa36a9"); - BOOST_CHECK_EQUAL (B.identifier(), "58151ac92fdf333663a62c9a8ba5c5f4"); + BOOST_CHECK_EQUAL (A.identifier(), "ef8af1b1fda1dfe9656dc99b7a9532c7"); + BOOST_CHECK_EQUAL (B.identifier(), "e6bd82fd7ebeabe75742fbece0cbf652"); } + BOOST_AUTO_TEST_CASE (colour_conversion_test2) { ColourConversion A (dcp::ColourConversion::srgb_to_xyz ()); xmlpp::Document doc; - xmlpp::Element* root = doc.create_root_node ("Test"); + auto root = doc.create_root_node ("Test"); A.as_xml (root); BOOST_CHECK_EQUAL ( doc.write_to_string_formatted ("UTF-8"), @@ -74,11 +78,12 @@ BOOST_AUTO_TEST_CASE (colour_conversion_test2) ); } + BOOST_AUTO_TEST_CASE (colour_conversion_test3) { - ColourConversion A (dcp::ColourConversion::rec709_to_xyz ()); + ColourConversion A (dcp::ColourConversion::rec709_to_xyz()); xmlpp::Document doc; - xmlpp::Element* root = doc.create_root_node ("Test"); + auto root = doc.create_root_node ("Test"); A.as_xml (root); BOOST_CHECK_EQUAL ( doc.write_to_string_formatted ("UTF-8"), @@ -102,15 +107,16 @@ BOOST_AUTO_TEST_CASE (colour_conversion_test3) ); } + /** Test a round trip via the XML representation */ BOOST_AUTO_TEST_CASE (colour_conversion_test4) { - BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all ()) { + for (auto const& i: PresetColourConversion::all()) { xmlpp::Document out; - xmlpp::Element* out_root = out.create_root_node ("Test"); + auto out_root = out.create_root_node("Test"); i.conversion.as_xml (out_root); - shared_ptr in (new cxml::Document ("Test")); - in->read_string (out.write_to_string ("UTF-8")); - BOOST_CHECK (ColourConversion::from_xml (in, Film::current_state_version).get () == i.conversion); + auto in = make_shared ("Test"); + in->read_string (out.write_to_string("UTF-8")); + BOOST_CHECK (ColourConversion::from_xml(in, Film::current_state_version).get() == i.conversion); } }