2001-09-26 04:16:04 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-04-26 03:02:13 +04:00
|
|
|
#include "gtest/gtest.h"
|
1999-01-22 01:10:57 +03:00
|
|
|
|
1998-04-30 00:04:28 +04:00
|
|
|
#include <string.h>
|
2008-10-24 10:28:29 +04:00
|
|
|
#include "nsColor.h"
|
2008-10-24 10:43:19 +04:00
|
|
|
#include "nsColorNames.h"
|
2015-10-13 00:06:19 +03:00
|
|
|
#include "mozilla/Snprintf.h"
|
1999-07-18 04:42:28 +04:00
|
|
|
#include "nsString.h"
|
2013-12-09 06:52:54 +04:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2008-10-24 10:28:29 +04:00
|
|
|
// define an array of all color names
|
|
|
|
#define GFX_COLOR(_name, _value) #_name,
|
|
|
|
static const char* const kColorNames[] = {
|
|
|
|
#include "nsColorNameList.h"
|
|
|
|
};
|
|
|
|
#undef GFX_COLOR
|
|
|
|
|
|
|
|
// define an array of all color name values
|
|
|
|
#define GFX_COLOR(_name, _value) _value,
|
|
|
|
static const nscolor kColors[] = {
|
|
|
|
#include "nsColorNameList.h"
|
|
|
|
};
|
|
|
|
#undef GFX_COLOR
|
|
|
|
|
2013-04-26 03:02:13 +04:00
|
|
|
using namespace mozilla;
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
static const char* kJunkNames[] = {
|
2012-07-30 18:20:58 +04:00
|
|
|
nullptr,
|
1998-04-14 00:24:54 +04:00
|
|
|
"",
|
|
|
|
"123",
|
|
|
|
"backgroundz",
|
|
|
|
"zzzzzz",
|
|
|
|
"#@$&@#*@*$@$#"
|
|
|
|
};
|
|
|
|
|
2013-04-26 03:02:13 +04:00
|
|
|
static
|
|
|
|
void RunColorTests() {
|
2008-10-24 10:28:29 +04:00
|
|
|
nscolor rgb;
|
1998-04-14 00:24:54 +04:00
|
|
|
// First make sure we can find all of the tags that are supposed to
|
|
|
|
// be in the table. Futz with the case to make sure any case will
|
|
|
|
// work
|
2010-07-14 01:54:18 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t index = 0 ; index < ArrayLength(kColorNames); index++) {
|
1998-04-14 00:24:54 +04:00
|
|
|
// Lookup color by name and make sure it has the right id
|
2008-10-24 10:28:29 +04:00
|
|
|
nsCString tagName(kColorNames[index]);
|
1999-07-18 04:42:28 +04:00
|
|
|
|
2008-10-24 10:28:29 +04:00
|
|
|
// Check that color lookup by name gets the right rgb value
|
2013-04-26 03:02:13 +04:00
|
|
|
ASSERT_TRUE(NS_ColorNameToRGB(NS_ConvertASCIItoUTF16(tagName), &rgb)) <<
|
|
|
|
"can't find '" << tagName.get() << "'";
|
|
|
|
ASSERT_TRUE((rgb == kColors[index])) <<
|
|
|
|
"failed at index " << index << " out of " << ArrayLength(kColorNames);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
// fiddle with the case to make sure we can still find it
|
2001-10-16 07:53:44 +04:00
|
|
|
tagName.SetCharAt(tagName.CharAt(0) - 32, 0);
|
2013-04-26 03:02:13 +04:00
|
|
|
ASSERT_TRUE(NS_ColorNameToRGB(NS_ConvertASCIItoUTF16(tagName), &rgb)) <<
|
|
|
|
"can't find '" << tagName.get() << "'";
|
|
|
|
ASSERT_TRUE((rgb == kColors[index])) <<
|
|
|
|
"failed at index " << index << " out of " << ArrayLength(kColorNames);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
// Check that parsing an RGB value in hex gets the right values
|
2012-08-22 19:56:38 +04:00
|
|
|
uint8_t r = NS_GET_R(rgb);
|
|
|
|
uint8_t g = NS_GET_G(rgb);
|
|
|
|
uint8_t b = NS_GET_B(rgb);
|
|
|
|
uint8_t a = NS_GET_A(rgb);
|
2016-05-09 08:16:41 +03:00
|
|
|
char cbuf[50];
|
2012-09-28 10:57:33 +04:00
|
|
|
if (a != UINT8_MAX) {
|
2016-05-09 08:16:41 +03:00
|
|
|
snprintf_literal(cbuf, "%02x%02x%02x%02x", r, g, b, a);
|
|
|
|
} else {
|
|
|
|
snprintf_literal(cbuf, "%02x%02x%02x", r, g, b);
|
2009-08-22 00:39:25 +04:00
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
nscolor hexrgb;
|
2016-05-09 08:16:41 +03:00
|
|
|
ASSERT_TRUE(NS_HexToRGBA(NS_ConvertASCIItoUTF16(cbuf),
|
2016-05-09 08:16:41 +03:00
|
|
|
nsHexColorType::AllowAlpha, &hexrgb)) <<
|
2013-04-26 03:02:13 +04:00
|
|
|
"hex conversion to color of '" << cbuf << "'";
|
|
|
|
ASSERT_TRUE(hexrgb == rgb);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2013-04-26 03:02:13 +04:00
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-04-26 03:02:13 +04:00
|
|
|
static
|
|
|
|
void RunJunkColorTests() {
|
|
|
|
nscolor rgb;
|
1998-04-14 00:24:54 +04:00
|
|
|
// Now make sure we don't find some garbage
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = 0; i < ArrayLength(kJunkNames); i++) {
|
2008-10-24 10:28:29 +04:00
|
|
|
nsCString tag(kJunkNames[i]);
|
2013-04-26 03:02:13 +04:00
|
|
|
ASSERT_FALSE(NS_ColorNameToRGB(NS_ConvertASCIItoUTF16(tag), &rgb)) <<
|
|
|
|
"Failed at junk color " << kJunkNames[i];
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2013-04-26 03:02:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(Gfx, ColorNames) {
|
|
|
|
RunColorTests();
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-04-26 03:02:13 +04:00
|
|
|
TEST(Gfx, JunkColorNames) {
|
|
|
|
RunJunkColorTests();
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|