Beispiel #1
0
 def test_addition(self):
     c1 = nc.Colors('test.nc.test_custom_colors')
     self.assertEqual(c1, c1)
     self.assertEqual(c1, c1 + c1)
     c2 = c1 + {'Red': (0x80, 0, 0)}
     self.assertEqual(c2.red, (0x80, 0, 0))
     self.assertEqual(c2, COLORS + nc.Colors({'Red': (0x80, 0, 0)}))
     self.assertNotEqual({'Red': (0x80, 0, 0)} + c1, c2)
Beispiel #2
0
    def test_dict_module(self):
        cdict = {'red': (0x80, 0, 0), 'grey': (0x80, 0x80, 0x80)}
        colors = nc.Colors({'COLORS': cdict}, canonicalize_gray=True)
        with self.assertRaises(ValueError):
            nc.Colors({'COLOURS': cdict})

        print(list(colors))
        self.assertIn('grey', colors)
        self.assertIn('gray', colors)

        colors = nc.Colors({'COLORS': cdict}, canonicalize_gray=False)
        self.assertIn('grey', colors)
        self.assertNotIn('gray', colors)
Beispiel #3
0
 def test_import(self):
     colors = nc.Colors('test.nc.test_custom_colors')
     self.assertEqual(colors.red, (0xFF, 0, 0))
     self.assertEqual(colors.rad, (0xFF, 0, 0))
     self.assertEqual(str(colors.groan), 'Green')
     self.assertEqual(str(colors.Blaue), 'Blue')
     self.assertEqual(str(colors.rad), 'Red')
Beispiel #4
0
 def test_simple(self):
     nc.Colors({'Red': (0x80, 0, 0)})
Beispiel #5
0
 def test_gray_error(self):
     cdict = {'red': (0x80, 0, 0), 'grey': (0x80, 0x80, 0x80)}
     with self.assertRaises(ValueError) as e:
         nc.Colors({'COLORS': cdict}, canonicalize_gray='groy')
     a = e.exception.args[0]
     assert a == 'Don\'t understand canonicalize_gray=groy'
Beispiel #6
0
"""
https://serverfault.com/a/91873
"""

from . import wikipedia
from nc.palette.terminal16 import xterm
import nc
import safer

FILE = wikipedia.PALETTE_DIR / '_terminal256.py'

COLORS = nc.Colors('juce', 'x11', 'html', 'pwg')
old_print = print


def write_256():
    with safer.printer(FILE) as print:
        wikipedia.print_header('an algorithm', print)
        print('COLORS = (')
        count = 0

        cube = range(0, 256, 51)  # (0, 95, 135, 175, 215, 255)
        colors_seen = set(xterm.COLORS)

        def add_name(r, g, b):
            color = COLORS.closest((r, g, b))
            name = str(color)
            index = 0
            while name in colors_seen:
                name = '%s %s' % (color, chr(index + ord('B')))
                index += 1