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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
from unittest import TestCase
from pyface.util.color_helpers import (
channels_to_ints, ints_to_channels, is_dark, relative_luminance
)
class TestChannelConversion(TestCase):
def test_ints_to_channels(self):
values = (102, 102, 0, 255)
channels = ints_to_channels(values)
self.assertEqual(channels, (0.4, 0.4, 0.0, 1.0))
def test_ints_to_channels_maximum(self):
values = (6, 6, 0, 15)
channels = ints_to_channels(values, maximum=15)
self.assertEqual(channels, (0.4, 0.4, 0.0, 1.0))
def test_channels_to_ints(self):
channels = (0.4, 0.4, 0.0, 1.0)
values = channels_to_ints(channels)
self.assertEqual(values, (102, 102, 0, 255))
def test_channels_to_ints_maximum(self):
channels = (0.4, 0.4, 0.0, 1.0)
values = channels_to_ints(channels, maximum=15)
self.assertEqual(values, (6, 6, 0, 15))
def test_round_trip(self):
""" Test to assert stability of values through round-trips """
for value in range(256):
with self.subTest(int=value):
result = channels_to_ints(ints_to_channels([value]))
self.assertEqual(result, (value,))
def test_round_trip_maximum(self):
""" Test to assert stability of values through round-trips """
for value in range(65536):
with self.subTest(int=value):
result = channels_to_ints(
ints_to_channels(
[value],
maximum=65535,
),
maximum=65535,
)
self.assertEqual(result, (value,))
class TestRelativeLuminance(TestCase):
def test_white(self):
rgb = (1.0, 1.0, 1.0)
result = relative_luminance(rgb)
self.assertEqual(result, 1.0)
def test_black(self):
rgb = (0.0, 0.0, 0.0)
result = relative_luminance(rgb)
self.assertEqual(result, 0.0)
def test_red(self):
rgb = (1.0, 0.0, 0.0)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.2126)
def test_green(self):
rgb = (0.0, 1.0, 0.0)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.7152)
def test_blue(self):
rgb = (0.0, 0.0, 1.0)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.0722)
def test_yellow(self):
rgb = (1.0, 1.0, 0.0)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.2126 + 0.7152)
def test_cyan(self):
rgb = (0.0, 1.0, 1.0)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.7152 + 0.0722)
def test_magenta(self):
rgb = (1.0, 0.0, 1.0)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.2126 + 0.0722)
def test_dark_grey(self):
rgb = (0.01, 0.01, 0.01)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, 0.01/12.92)
def test_medium_grey(self):
rgb = (0.5, 0.5, 0.5)
result = relative_luminance(rgb)
self.assertAlmostEqual(result, (0.555/1.055)**2.4)
class TestIsDark(TestCase):
def test_white(self):
rgb = (1.0, 1.0, 1.0)
result = is_dark(rgb)
self.assertFalse(result)
def test_black(self):
rgb = (0.0, 0.0, 0.0)
result = is_dark(rgb)
self.assertTrue(result)
def test_red(self):
rgb = (1.0, 0.0, 0.0)
result = is_dark(rgb)
self.assertFalse(result)
def test_green(self):
rgb = (0.0, 1.0, 0.0)
result = is_dark(rgb)
self.assertFalse(result)
def test_blue(self):
rgb = (0.0, 0.0, 1.0)
result = is_dark(rgb)
self.assertTrue(result)
def test_yellow(self):
rgb = (1.0, 1.0, 0.0)
result = is_dark(rgb)
self.assertFalse(result)
def test_cyan(self):
rgb = (0.0, 1.0, 1.0)
result = is_dark(rgb)
self.assertFalse(result)
def test_magenta(self):
rgb = (1.0, 0.0, 1.0)
result = is_dark(rgb)
self.assertFalse(result)
def test_dark_grey(self):
rgb = (0.01, 0.01, 0.01)
result = is_dark(rgb)
self.assertTrue(result)
def test_medium_grey(self):
rgb = (0.5, 0.5, 0.5)
result = is_dark(rgb)
self.assertFalse(result)
|