summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_color_rgbbarrel.py
blob: a59d1d99ebc81b4cf65f1e27b53736ea114b900b (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
# coding=utf-8
from color_rgbbarrel import RgbBarrel
from .test_inkex_extensions import ColorBaseCase


class ColorBarrelTest(ColorBaseCase):
    effect_class = RgbBarrel
    color_tests = [
        ("none", "none"),
        ((0, 0, 0), "#000000"),
        ((255, 255, 255), "#ffffff"),
        ((192, 192, 192), "#c0c0c0"),
        ((128, 128, 128), "#808080"),
        ((128, 0, 0), "#008000"),
        ((255, 0, 0), "#00ff00"),
        ((128, 128, 0), "#008080"),
        ((255, 255, 0), "#00ffff"),
        ((0, 128, 0), "#000080"),
        ((0, 255, 0), "#0000ff"),
        ((0, 128, 128), "#800080"),
        ((0, 255, 255), "#ff00ff"),
        ((0, 0, 128), "#800000"),
        ((0, 0, 255), "#ff0000"),
        ((128, 0, 128), "#808000"),
        ((255, 0, 255), "#ffff00"),
        ("hsl(25, 14, 128)", "#798681"),
    ]