X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Fcolour_conversion_test.cc;h=2f01dd0fdf20c13be61f1b84da7e46dc14b26ee6;hp=0cf3a616b20992373e6a9ca777331b0aa1149723;hb=17553e8613a83bbca51781e5c8d2308810e2aeeb;hpb=b666a794a130386bc01ede2143ef40bd6973eb32 diff --git a/test/colour_conversion_test.cc b/test/colour_conversion_test.cc index 0cf3a616b..2f01dd0fd 100644 --- a/test/colour_conversion_test.cc +++ b/test/colour_conversion_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,18 +17,99 @@ */ -#include -#include +/** @file test/colour_conversion_test.cc + * @brief Various tests of ColourConversion. + */ + #include "lib/colour_conversion.h" +#include "lib/film.h" +#include +#include +#include +#include +#include +#include using std::cout; +using boost::shared_ptr; + +BOOST_AUTO_TEST_CASE (colour_conversion_test1) +{ + ColourConversion A (dcp::ColourConversion::srgb_to_xyz ()); + ColourConversion B (dcp::ColourConversion::rec709_to_xyz ()); -/* Basic test of identifier() for ColourConversion (i.e. a hash of the numbers) */ -BOOST_AUTO_TEST_CASE (colour_conversion_test) + BOOST_CHECK_EQUAL (A.identifier(), "9840c601d2775bf1b3847254bbaa36a9"); + BOOST_CHECK_EQUAL (B.identifier(), "58151ac92fdf333663a62c9a8ba5c5f4"); +} + +BOOST_AUTO_TEST_CASE (colour_conversion_test2) { - ColourConversion A (2.4, true, dcp::colour_matrix::srgb_to_xyz, 2.6); - ColourConversion B (2.4, false, dcp::colour_matrix::srgb_to_xyz, 2.6); + ColourConversion A (dcp::ColourConversion::srgb_to_xyz ()); + xmlpp::Document doc; + xmlpp::Element* 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.4\n" + " 0.04045\n" + " 0.055\n" + " 12.92\n" + " \n" + " 0\n" + " 0.64\n" + " 0.33\n" + " 0.3\n" + " 0.6\n" + " 0.15\n" + " 0.06\n" + " 0.3127\n" + " 0.329\n" + " 2.6\n" + "\n" + ); +} - BOOST_CHECK_EQUAL (A.identifier(), "246ff9b7dc32c0488948a32a713924b3"); - BOOST_CHECK_EQUAL (B.identifier(), "a8d1da30f96a121d8db06a03409758b3"); +BOOST_AUTO_TEST_CASE (colour_conversion_test3) +{ + ColourConversion A (dcp::ColourConversion::rec709_to_xyz ()); + xmlpp::Document doc; + xmlpp::Element* root = doc.create_root_node ("Test"); + A.as_xml (root); + BOOST_CHECK_EQUAL ( + doc.write_to_string_formatted ("UTF-8"), + "\n" + "\n" + " \n" + " Gamma\n" + " 2.2\n" + " \n" + " 1\n" + " 0.64\n" + " 0.33\n" + " 0.3\n" + " 0.6\n" + " 0.15\n" + " 0.06\n" + " 0.3127\n" + " 0.329\n" + " 2.6\n" + "\n" + ); +} + +/** Test a round trip via the XML representation */ +BOOST_AUTO_TEST_CASE (colour_conversion_test4) +{ + BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all ()) { + xmlpp::Document out; + xmlpp::Element* 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); + } }