unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#28386: [PATCH] Add tests for color.el
@ 2017-09-07 19:25 Simen Heggestøyl
       [not found] ` <handler.28386.B.150481235012099.ack@debbugs.gnu.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Simen Heggestøyl @ 2017-09-07 19:25 UTC (permalink / raw)
  To: 28386

[-- Attachment #1: Type: text/plain, Size: 136 bytes --]

Hi, I've written some initial tests for color.el. Unless there are any
objections I'll install the patch in a couple of days.

-- Simen

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Add-tests-for-color.el.patch --]
[-- Type: text/x-patch, Size: 12336 bytes --]

From 27e9b944c196ac4110c82bdf5c53efaf469a2f49 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Simen=20Heggest=C3=B8yl?= <simenheg@gmail.com>
Date: Thu, 7 Sep 2017 20:40:12 +0200
Subject: [PATCH] Add tests for color.el

* lisp/color.el (color-name-to-rgb, color-complement): Clarify in
docstrings that RGB triplets should use four digits per component.
(color-rgb-to-hsl): Break line to avoid "Hidden behind deeper element"
warning.

* test/lisp/color-tests.el: New file.
---
 lisp/color.el            |   8 +-
 test/lisp/color-tests.el | 250 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 255 insertions(+), 3 deletions(-)
 create mode 100644 test/lisp/color-tests.el

diff --git a/lisp/color.el b/lisp/color.el
index 6dbf3d55cb..044b48114f 100644
--- a/lisp/color.el
+++ b/lisp/color.el
@@ -42,7 +42,7 @@
 (defun color-name-to-rgb (color &optional frame)
   "Convert COLOR string to a list of normalized RGB components.
 COLOR should be a color name (e.g. \"white\") or an RGB triplet
-string (e.g. \"#ff12ec\").
+string (e.g. \"#ffff1122eecc\").
 
 Normally the return value is a list of three floating-point
 numbers, (RED GREEN BLUE), each between 0.0 and 1.0 inclusive.
@@ -68,7 +68,8 @@ color-rgb-to-hex
 (defun color-complement (color-name)
   "Return the color that is the complement of COLOR-NAME.
 COLOR-NAME should be a string naming a color (e.g. \"white\"), or
-a string specifying a color's RGB components (e.g. \"#ff12ec\")."
+a string specifying a color's RGB
+components (e.g. \"#ffff1212ecec\")."
   (let ((color (color-name-to-rgb color-name)))
     (list (- 1.0 (nth 0 color))
           (- 1.0 (nth 1 color))
@@ -177,7 +178,8 @@ color-rgb-to-hsl
 		    ((= r max)      (- bc gc))
 		    ((= g max)      (+ 2.0 rc (- bc)))
 		    (t              (+ 4.0 gc (- rc))))
-		   6.0) 1.0)))
+		   6.0)
+                  1.0)))
 	(list h s l)))))
 
 (defun color-srgb-to-xyz (red green blue)
diff --git a/test/lisp/color-tests.el b/test/lisp/color-tests.el
new file mode 100644
index 0000000000..6ed87742f3
--- /dev/null
+++ b/test/lisp/color-tests.el
@@ -0,0 +1,250 @@
+;;; color-tests.el --- Tests for color.el  -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2017 Free Software Foundation, Inc.
+
+;; Author: Simen Heggestøyl <simenheg@gmail.com>
+;; Keywords:
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;
+
+;;; Code:
+
+(require 'cl-lib)
+(require 'color)
+(require 'ert)
+(require 'seq)
+
+(defun color-tests--approx-equal (color1 color2)
+  "Return t if COLOR1 and COLOR2 are approximately equal."
+  (seq-every-p
+   (lambda (x) (< (abs x) 0.00001))
+   (cl-mapcar #'- color1 color2)))
+
+(ert-deftest color-tests-name-to-rgb ()
+  (should (equal (color-name-to-rgb "black") '(0.0 0.0 0.0)))
+  (should (equal (color-name-to-rgb "white") '(1.0 1.0 1.0)))
+  (should (equal (color-name-to-rgb "red") '(1.0 0.0 0.0)))
+  (should (equal (color-name-to-rgb "green") '(0.0 1.0 0.0)))
+  (should (equal (color-name-to-rgb "blue") '(0.0 0.0 1.0)))
+  (should (equal (color-name-to-rgb "#000000000000") '(0.0 0.0 0.0)))
+  (should (equal (color-name-to-rgb "#ffffffffffff") '(1.0 1.0 1.0)))
+  (should (equal (color-name-to-rgb "#ffff00000000") '(1.0 0.0 0.0)))
+  (should (equal (color-name-to-rgb "#0000ffff0000") '(0.0 1.0 0.0)))
+  (should (equal (color-name-to-rgb "#00000000ffff") '(0.0 0.0 1.0))))
+
+(ert-deftest color-tests-rgb-to-hex ()
+  (should (equal (color-rgb-to-hex 0 0 0) "#000000000000"))
+  (should (equal (color-rgb-to-hex 0 0 0 2) "#000000"))
+  (should (equal (color-rgb-to-hex 1 0 0) "#ffff00000000"))
+  (should (equal (color-rgb-to-hex 1 0 0 2) "#ff0000"))
+  (should (equal (color-rgb-to-hex 0.1 0.2 0.3) "#199933334ccc"))
+  (should (equal (color-rgb-to-hex 0.1 0.2 0.3 2) "#19334c")))
+
+(ert-deftest color-tests-complement ()
+  (should (equal (color-complement "white") '(0.0 0.0 0.0)))
+  (should (equal (color-complement "#ffffffffffff") '(0.0 0.0 0.0)))
+  (should (equal (color-complement "red") '(0.0 1.0 1.0))))
+
+(ert-deftest color-tests-gradient ()
+  (should-not (color-gradient '(0 0 0) '(255 255 255) 0))
+  (should
+   (equal (color-gradient '(0 0 0) '(255 255 255) 1)
+          '((127 127 127))))
+  (should
+   (equal (color-gradient '(0 0 0) '(255 255 255) 2)
+          '((85 85 85) (170 170 170))))
+  (should
+   (equal (color-gradient '(255 192 203) '(250 128 114) 3)
+          '((254 176 181) (253 160 159) (252 144 137)))))
+
+(ert-deftest color-tests-hsl-to-rgb ()
+  (should (equal (color-hsl-to-rgb 0 0 0) '(0 0 0)))
+  (should (equal (color-hsl-to-rgb 360 0.5 0.5) '(0.75 0.25 0.25)))
+  (should (equal (color-hsl-to-rgb 123 0.2 0.9) '(0.92 0.88 0.88))))
+
+(ert-deftest color-tests-complement-hex ()
+  (should
+   (equal (color-complement-hex "#000000000000") "#ffffffffffff"))
+  (should
+   (equal (color-complement-hex "#ffff00000000") "#0000ffffffff")))
+
+(ert-deftest color-tests-rgb-to-hsv ()
+  (should (equal (color-rgb-to-hsv 0 0 0) '(0.0 0.0 0.0)))
+  (should (equal (color-rgb-to-hsv 1 1 1) '(0.0 0.0 1.0)))
+  (should (equal (color-rgb-to-hsv 1 0 0) '(0.0 1.0 1.0)))
+  (should (equal (color-rgb-to-hsv 0.5 0.3 0.3) '(0.0 0.4 0.5))))
+
+(ert-deftest color-tests-rgb-to-hsl ()
+  (should (equal (color-rgb-to-hsl 0 0 0) '(0.0 0.0 0.0)))
+  (should (equal (color-rgb-to-hsl 1 1 1) '(0.0 0.0 1.0)))
+  (should (equal (color-rgb-to-hsl 1 0 0) '(0.0 1 0.5)))
+  (should (equal (color-rgb-to-hsl 0.5 0.3 0.3) '(0.0 0.25 0.4))))
+
+(ert-deftest color-tests-srgb-to-xyz ()
+  (should (equal (color-srgb-to-xyz 0 0 0) '(0.0 0.0 0.0)))
+  (should
+   (equal (color-srgb-to-xyz 0 0 1) '(0.1804375 0.072175 0.9503041)))
+  (should
+   (color-tests--approx-equal
+    (color-srgb-to-xyz 0.1 0.2 0.3) '(0.0291865 0.031092 0.073738))))
+
+(ert-deftest color-tests-xyz-to-srgb ()
+  (should (equal (color-xyz-to-srgb 0 0 0) '(0.0 0.0 0.0)))
+  (should
+   (color-tests--approx-equal
+    (color-xyz-to-srgb 0.1804375 0.072175 0.9503041) '(0 0 1)))
+  (should
+   (color-tests--approx-equal
+    (color-xyz-to-srgb 0.0291865 0.031092 0.073738) '(0.1 0.2 0.3))))
+
+(ert-deftest color-tests-xyz-to-lab ()
+  (should (equal (color-xyz-to-lab 0 0 0) '(0.0 0.0 0.0)))
+  (should
+   (color-tests--approx-equal
+    (color-xyz-to-lab 0.1804375 0.072175 0.9503041)
+    '(32.2970109 79.1890315 -107.8646674)))
+  (should
+   (color-tests--approx-equal
+    (color-xyz-to-lab 0.1804375 0.072175 0.9503041 '(1 1 1))
+    '(32.2970109 74.3625763 -113.3597823)))
+  (should
+   (color-tests--approx-equal
+    (color-xyz-to-lab 0.0291865 0.031092 0.073738)
+    '(20.4760281 -0.6500752 -18.6340169))))
+
+(ert-deftest color-tests-lab-to-xyz ()
+  (should (equal (color-lab-to-xyz 0 0 0) '(0.0 0.0 0.0)))
+  (should
+   (color-tests--approx-equal
+    (color-lab-to-xyz 32.2970109 79.1890315 -107.8646674)
+    '(0.1804375 0.072175 0.9503041)))
+  (should
+   (color-tests--approx-equal
+    (color-lab-to-xyz 32.2970109 74.3625763 -113.3597823 '(1 1 1))
+    '(0.1804375 0.072175 0.9503041)))
+  (should
+   (color-tests--approx-equal
+    (color-lab-to-xyz 20.4760281 -0.6500752 -18.6340169)
+    '(0.0291865 0.031092 0.073738))))
+
+(ert-deftest color-tests-srgb-to-lab ()
+  (should (equal (color-srgb-to-lab 0 0 0) '(0.0 0.0 0.0)))
+  (should
+   (color-tests--approx-equal
+    (color-srgb-to-lab 0 1 0) '(87.7347223 -86.1808176 83.1770651)))
+  (should
+   (color-tests--approx-equal
+    (color-srgb-to-lab 0.1 0.2 0.3)
+    '(20.4762218 -0.6508996 -18.6340085))))
+
+(ert-deftest color-tests-lab-to-srgb ()
+  (should (equal (color-lab-to-srgb 0 0 0) '(0.0 0.0 0.0)))
+  (should
+   (color-tests--approx-equal
+    (color-lab-to-srgb 87.7347223 -86.1808176 83.1770651) '(0 1 0)))
+  (should
+   (color-tests--approx-equal
+    (color-lab-to-srgb 20.4762218 -0.6508996 -18.6340085)
+    '(0.1 0.2 0.3))))
+
+(ert-deftest color-tests-cie-de2000 ()
+  (should (= (color-cie-de2000 '(0 0 0) '(0 0 0)) 0.0))
+  (should
+   (color-tests--approx-equal
+    (list
+     (color-cie-de2000
+      (color-srgb-to-lab 1 0 0) (color-srgb-to-lab 0 0 1)))
+    '(52.8803934)))
+  (should
+   (color-tests--approx-equal
+    (list
+     (color-cie-de2000
+      (color-srgb-to-lab 0.8 0 0) (color-srgb-to-lab 0.9 0 0)))
+    '(5.3844503))))
+
+(ert-deftest color-tests-clamp ()
+  (should (= (color-clamp 0) 0.0))
+  (should (= (color-clamp -1) 0.0))
+  (should (= (color-clamp 0.5) 0.5))
+  (should (= (color-clamp 1) 1.0))
+  (should (= (color-clamp 1.1) 1.0)))
+
+(ert-deftest color-tests-saturate-hsl ()
+  (should (equal (color-saturate-hsl 360 0.5 0.5 0) '(360 0.5 0.5)))
+  (should (equal (color-saturate-hsl 360 0.5 0.5 -10) '(360 0.4 0.5)))
+  (should
+   (equal (color-saturate-hsl 360 0.5 0.5 -500) '(360 0.0 0.5)))
+  (should (equal (color-saturate-hsl 120 0.5 0.8 5) '(120 0.55 0.8)))
+  (should
+   (equal (color-saturate-hsl 120 0.5 0.8 500) '(120 1.0 0.8))))
+
+(ert-deftest color-tests-saturate-name ()
+  (should (equal (color-saturate-name "black" 100) "#000000000000"))
+  (should (equal (color-saturate-name "white" 100) "#ffffffffffff"))
+  (should (equal (color-saturate-name "red" 0) "#ffff00000000"))
+  (should (equal (color-saturate-name "red" 50) "#ffff00000000")))
+
+(ert-deftest color-tests-desaturate-hsl ()
+  (should (equal (color-desaturate-hsl 360 0.5 0.5 0) '(360 0.5 0.5)))
+  (should
+   (equal (color-desaturate-hsl 360 0.5 0.5 -10) '(360 0.6 0.5)))
+  (should
+   (equal (color-desaturate-hsl 360 0.5 0.5 -500) '(360 1.0 0.5)))
+  (should
+   (equal (color-desaturate-hsl 120 0.5 0.8 5) '(120 0.45 0.8)))
+  (should
+   (equal (color-desaturate-hsl 120 0.5 0.8 500) '(120 0.0 0.8))))
+
+(ert-deftest color-tests-desaturate-name ()
+  (should (equal (color-desaturate-name "black" 100) "#000000000000"))
+  (should (equal (color-desaturate-name "white" 100) "#ffffffffffff"))
+  (should (equal (color-desaturate-name "red" 0) "#ffff00000000")))
+
+(ert-deftest color-tests-lighten-hsl ()
+  (should (equal (color-lighten-hsl 360 0.5 0.5 0) '(360 0.5 0.5)))
+  (should (equal (color-lighten-hsl 360 0.5 0.5 -10) '(360 0.5 0.4)))
+  (should (equal (color-lighten-hsl 360 0.5 0.5 -500) '(360 0.5 0.0)))
+  (should
+   (color-tests--approx-equal
+    (color-lighten-hsl 120 0.5 0.8 5) '(120 0.5 0.85)))
+  (should
+   (equal (color-lighten-hsl 120 0.5 0.8 500) '(120 0.5 1.0))))
+
+(ert-deftest color-tests-lighten-name ()
+  (should (equal (color-lighten-name "black" 100) "#ffffffffffff"))
+  (should (equal (color-lighten-name "white" 100) "#ffffffffffff"))
+  (should (equal (color-lighten-name "red" 0) "#ffff00000000"))
+  (should (equal (color-lighten-name "red" 10) "#ffff33323332")))
+
+(ert-deftest color-tests-darken-hsl ()
+  (should (equal (color-darken-hsl 360 0.5 0.5 0) '(360 0.5 0.5)))
+  (should (equal (color-darken-hsl 360 0.5 0.5 -10) '(360 0.5 0.6)))
+  (should (equal (color-darken-hsl 360 0.5 0.5 -500) '(360 0.5 1.0)))
+  (should (equal (color-darken-hsl 120 0.5 0.8 5) '(120 0.5 0.75)))
+  (should (equal (color-darken-hsl 120 0.5 0.8 500) '(120 0.5 0.0))))
+
+(ert-deftest color-tests-darken-name ()
+  (should (equal (color-darken-name "black" 100) "#000000000000"))
+  (should (equal (color-darken-name "white" 100) "#000000000000"))
+  (should (equal (color-darken-name "red" 0) "#ffff00000000"))
+  (should (equal (color-darken-name "red" 10) "#cccc00000000")))
+
+(provide 'color-tests)
+;;; color-tests.el ends here
-- 
2.14.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#28386: Acknowledgement ([PATCH] Add tests for color.el)
       [not found] ` <handler.28386.B.150481235012099.ack@debbugs.gnu.org>
@ 2017-09-13 18:26   ` Simen Heggestøyl
  0 siblings, 0 replies; 2+ messages in thread
From: Simen Heggestøyl @ 2017-09-13 18:26 UTC (permalink / raw)
  To: 28386-done

Installed with minor changes to accommodate for
8d433d9b22d2c5f209cb27e80c13576e6d1bf9b7.

-- Simen






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-09-13 18:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-07 19:25 bug#28386: [PATCH] Add tests for color.el Simen Heggestøyl
     [not found] ` <handler.28386.B.150481235012099.ack@debbugs.gnu.org>
2017-09-13 18:26   ` bug#28386: Acknowledgement ([PATCH] Add tests for color.el) Simen Heggestøyl

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).