You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Code/Framework/AzQtComponents/AzQtComponents/Tests/HexParsingTests.cpp

84 lines
3.5 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include <AzTest/AzTest.h>
#include <AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.h>
static const qreal g_colorChannelToleranceHexParsing = 0.0000005;
static const qreal g_unchangedAlpha = 0.2;
TEST(AzQtComponents, ParsingWhiteHexValueNoAlpha)
{
using namespace AzQtComponents;
const bool parseAlpha = false;
ColorHexEdit::ParsedColor test = ColorHexEdit::convertTextToColorValues("FFFFFF", parseAlpha, g_unchangedAlpha);
EXPECT_NEAR(test.red, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.green, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.blue, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.alpha, g_unchangedAlpha, g_colorChannelToleranceHexParsing);
}
TEST(AzQtComponents, ParsingHexValueNoAlpha)
{
using namespace AzQtComponents;
const bool parseAlpha = false;
ColorHexEdit::ParsedColor test = ColorHexEdit::convertTextToColorValues("FF00FF", parseAlpha, g_unchangedAlpha);
EXPECT_NEAR(test.red, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.green, 0.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.blue, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.alpha, g_unchangedAlpha, g_colorChannelToleranceHexParsing);
}
TEST(AzQtComponents, ParsingASlightlyDifferentHexValueWithNoAlphaButNonFullOnChannels)
{
using namespace AzQtComponents;
const bool parseAlpha = false;
ColorHexEdit::ParsedColor test = ColorHexEdit::convertTextToColorValues("0F0F0F", parseAlpha, g_unchangedAlpha);
EXPECT_NEAR(test.red, (static_cast<float>(0xf) / 255.0), g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.green, (static_cast<float>(0xf) / 255.0), g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.blue, (static_cast<float>(0xf) / 255.0), g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.alpha, g_unchangedAlpha, g_colorChannelToleranceHexParsing);
}
TEST(AzQtComponents, ParsingHexValueIncludingAlphaValueWithoutSpecifyingAnAlphaValueAndConfirmingItsNotChangedWhenParsed)
{
using namespace AzQtComponents;
const bool parseAlpha = true;
ColorHexEdit::ParsedColor test = ColorHexEdit::convertTextToColorValues("FF00FF", parseAlpha, g_unchangedAlpha);
EXPECT_NEAR(test.alpha, g_unchangedAlpha, g_colorChannelToleranceHexParsing);
}
TEST(AzQtComponents, ParsingHexValueWithOneHexDigitOfAlpha)
{
using namespace AzQtComponents;
const bool parseAlpha = true;
ColorHexEdit::ParsedColor test = ColorHexEdit::convertTextToColorValues("FF00FFF", parseAlpha, g_unchangedAlpha);
EXPECT_NEAR(test.red, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.green, 0.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.blue, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.alpha, (static_cast<float>(0xf) / 255.0), g_colorChannelToleranceHexParsing);
}
TEST(AzQtComponents, ParsingHexValueWithTwoHexDigitsOfAlpha)
{
using namespace AzQtComponents;
const bool parseAlpha = true;
ColorHexEdit::ParsedColor test = ColorHexEdit::convertTextToColorValues("FF00FFFF", parseAlpha, g_unchangedAlpha);
EXPECT_NEAR(test.red, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.green, 0.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.blue, 1.0, g_colorChannelToleranceHexParsing);
EXPECT_NEAR(test.alpha, 1.0, g_colorChannelToleranceHexParsing);
}