summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_color_lesslight.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
commitcca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch)
tree146f39ded1c938019e1ed42d30923c2ac9e86789 /share/extensions/tests/test_color_lesslight.py
parentInitial commit. (diff)
downloadinkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.tar.xz
inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/extensions/tests/test_color_lesslight.py')
-rw-r--r--share/extensions/tests/test_color_lesslight.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/share/extensions/tests/test_color_lesslight.py b/share/extensions/tests/test_color_lesslight.py
new file mode 100644
index 0000000..c35c38f
--- /dev/null
+++ b/share/extensions/tests/test_color_lesslight.py
@@ -0,0 +1,28 @@
+# coding=utf-8
+from color_lesslight import LessLight
+from .test_inkex_extensions import ColorBaseCase
+
+
+class ColorLessLightTest(ColorBaseCase):
+ effect_class = LessLight
+ color_tests = [
+ ("none", "none"),
+ ("hsl(0, 0, 0)", "hsl(0, 0, 0)"),
+ ("hsl(255, 255, 255)", "hsl(255, 255, 243)"),
+ ((0, 0, 0), "#000000"),
+ ((255, 255, 255), "#f3f3f3"),
+ ((192, 192, 192), "#b4b4b4"),
+ ((128, 128, 128), "#747474"),
+ ((128, 0, 0), "#680000"),
+ ((255, 0, 0), "#e60000"),
+ ((128, 128, 0), "#686600"),
+ ((255, 255, 0), "#e6e300"),
+ ((0, 128, 0), "#006800"),
+ ((0, 255, 0), "#00e600"),
+ ((0, 128, 128), "#006866"),
+ ((0, 255, 255), "#00e6e3"),
+ ((0, 0, 128), "#000068"),
+ ((0, 0, 255), "#0000e6"),
+ ((128, 0, 128), "#660068"),
+ ((255, 0, 255), "#e300e6"),
+ ]