summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_color_lesssaturation.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_lesssaturation.py
parentInitial commit. (diff)
downloadinkscape-12fc8abae6d434cac7670a59ed3a67301cc2eb10.tar.xz
inkscape-12fc8abae6d434cac7670a59ed3a67301cc2eb10.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--share/extensions/tests/test_color_lesssaturation.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/share/extensions/tests/test_color_lesssaturation.py b/share/extensions/tests/test_color_lesssaturation.py
new file mode 100644
index 0000000..6396e4b
--- /dev/null
+++ b/share/extensions/tests/test_color_lesssaturation.py
@@ -0,0 +1,28 @@
+# coding=utf-8
+from color_lesssaturation import LessSaturation
+from .test_inkex_extensions import ColorBaseCase
+
+
+class ColorLessSaturationTest(ColorBaseCase):
+ effect_class = LessSaturation
+ color_tests = [
+ ("none", "none"),
+ ("hsl(0, 0, 0)", "hsl(0, 0, 0)"),
+ ("hsl(255, 255, 255)", "hsl(255, 243, 255)"),
+ ((0, 0, 0), "#000000"),
+ ((255, 255, 255), "#ffffff"),
+ ((192, 192, 192), "#c0c0c0"),
+ ((128, 128, 128), "#808080"),
+ ((128, 0, 0), "#7c0303"),
+ ((255, 0, 0), "#f80505"),
+ ((128, 128, 0), "#7c7b03"),
+ ((255, 255, 0), "#f8f505"),
+ ((0, 128, 0), "#037c03"),
+ ((0, 255, 0), "#05f805"),
+ ((0, 128, 128), "#037c7b"),
+ ((0, 255, 255), "#05f8f5"),
+ ((0, 0, 128), "#03037c"),
+ ((0, 0, 255), "#0505f8"),
+ ((128, 0, 128), "#7b037c"),
+ ((255, 0, 255), "#f505f8"),
+ ]