X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Fcolour_conversion_test.cc;h=c48a0b63a6c19b6d171e16a0f70717638b46a6b7;hp=f8c764975ad774a852235fb56c22f551d06fdcc8;hb=689fa55d1529ad88449ca464e9107c4dcc54d1cb;hpb=ad4ab402b8548481d0dcda94d7a08c07f4f0750f diff --git a/test/colour_conversion_test.cc b/test/colour_conversion_test.cc index f8c764975..c48a0b63a 100644 --- a/test/colour_conversion_test.cc +++ b/test/colour_conversion_test.cc @@ -1,49 +1,58 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington - This program is free software; you can redistribute it and/or modify + 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. - This program is distributed in the hope that it will be useful, + 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 this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ + /** @file test/colour_conversion_test.cc - * @brief Various tests of ColourConversion. + * @brief Test ColourConversion class. + * @ingroup selfcontained */ + #include "lib/colour_conversion.h" -#include +#include "lib/film.h" #include #include #include +#include + using std::cout; -using boost::shared_ptr; +using std::make_shared; +using std::shared_ptr; + 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(), "0778fbc5c87470f58820604a66992579"); + BOOST_CHECK_EQUAL (B.identifier(), "58151ac92fdf333663a62c9a8ba5c5f4"); } + 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"), @@ -70,22 +79,20 @@ 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"), "\n" "\n" " \n" - " ModifiedGamma\n" - " 2.222222222222222\n" - " 0.081\n" - " 0.099\n" - " 4.5\n" + " Gamma\n" + " 2.2\n" " \n" " 1\n" " 0.64\n" @@ -100,3 +107,17 @@ BOOST_AUTO_TEST_CASE (colour_conversion_test3) "\n" ); } + + +/** Test a round trip via the XML representation */ +BOOST_AUTO_TEST_CASE (colour_conversion_test4) +{ + for (auto const& i: PresetColourConversion::all()) { + xmlpp::Document out; + auto out_root = out.create_root_node("Test"); + i.conversion.as_xml (out_root); + 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); + } +}