summaryrefslogtreecommitdiffstats
path: root/gfx/tests/gtest/TestColorNames.cpp
blob: dba82161a7764c18997bd6ac9ce96d6f4d88bc21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */

#include "gtest/gtest.h"

#include <string.h>
#include "nsColor.h"
#include "nsColorNames.h"
#include "mozilla/Sprintf.h"
#include "nsString.h"
#include "mozilla/ArrayUtils.h"

// 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

using namespace mozilla;

static const char* kJunkNames[] = {nullptr,       "",       "123",
                                   "backgroundz", "zzzzzz", "#@$&@#*@*$@$#"};

static void RunColorTests() {
  nscolor rgb;
  // 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

  for (uint32_t index = 0; index < ArrayLength(kColorNames); index++) {
    // Lookup color by name and make sure it has the right id
    nsCString tagName(kColorNames[index]);

    // Check that color lookup by name gets the right rgb value
    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);

    // fiddle with the case to make sure we can still find it
    tagName.SetCharAt(tagName.CharAt(0) - 32, 0);
    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);

    // Check that parsing an RGB value in hex gets the right values
    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);
    char cbuf[50];
    if (a != UINT8_MAX) {
      SprintfLiteral(cbuf, "%02x%02x%02x%02x", r, g, b, a);
    } else {
      SprintfLiteral(cbuf, "%02x%02x%02x", r, g, b);
    }
    nscolor hexrgb;
    ASSERT_TRUE(NS_HexToRGBA(NS_ConvertASCIItoUTF16(cbuf),
                             nsHexColorType::AllowAlpha, &hexrgb))
    << "hex conversion to color of '" << cbuf << "'";
    ASSERT_TRUE(hexrgb == rgb);
  }
}

static void RunJunkColorTests() {
  nscolor rgb;
  // Now make sure we don't find some garbage
  for (uint32_t i = 0; i < ArrayLength(kJunkNames); i++) {
    nsCString tag(kJunkNames[i]);
    ASSERT_FALSE(NS_ColorNameToRGB(NS_ConvertASCIItoUTF16(tag), &rgb))
    << "Failed at junk color " << kJunkNames[i];
  }
}

TEST(Gfx, ColorNames)
{ RunColorTests(); }

TEST(Gfx, JunkColorNames)
{ RunJunkColorTests(); }