Use lexical-binding in glasses.el and add tests

* lisp/progmodes/glasses.el: Use lexical-binding.
(glasses-separator, glasses-original-separator, glasses-face)
(glasses-separate-parentheses-p)
(glasses-separate-parentheses-exceptions)
(glasses-separate-capital-groups, glasses-uncapitalize-p)
(glasses-uncapitalize-regexp, glasses-convert-on-write-p): Remove
redundant :group args.

* test/lisp/progmodes/glasses-tests.el: New file with tests for
glasses.el.
This commit is contained in:
Simen Heggestøyl 2020-05-10 16:17:27 +02:00
parent 1efaa1d66b
commit 8f808be68b
2 changed files with 102 additions and 10 deletions

View file

@ -1,4 +1,4 @@
;;; glasses.el --- make cantReadThis readable
;;; glasses.el --- make cantReadThis readable -*- lexical-binding: t; -*-
;; Copyright (C) 1999-2020 Free Software Foundation, Inc.
@ -66,7 +66,6 @@ defined by `glasses-original-separator'. If you don't want to add missing
separators, set `glasses-separator' to an empty string. If you don't want to
replace existent separators, set `glasses-original-separator' to an empty
string."
:group 'glasses
:type 'string
:set 'glasses-custom-set
:initialize 'custom-initialize-default)
@ -78,7 +77,6 @@ For instance, if you set it to \"_\" and set `glasses-separator' to \"-\",
underscore separators are displayed as hyphens.
If `glasses-original-separator' is an empty string, no such display change is
performed."
:group 'glasses
:type 'string
:set 'glasses-custom-set
:initialize 'custom-initialize-default
@ -92,7 +90,6 @@ If it is nil, no face is placed at the capitalized letter.
For example, you can set `glasses-separator' to an empty string and
`glasses-face' to `bold'. Then unreadable identifiers will have no separators,
but will have their capitals in bold."
:group 'glasses
:type '(choice (const :tag "None" nil) face)
:set 'glasses-custom-set
:initialize 'custom-initialize-default)
@ -100,7 +97,6 @@ but will have their capitals in bold."
(defcustom glasses-separate-parentheses-p t
"If non-nil, ensure space between an identifier and an opening parenthesis."
:group 'glasses
:type 'boolean)
(defcustom glasses-separate-parentheses-exceptions
@ -108,7 +104,6 @@ but will have their capitals in bold."
"List of regexp that are exceptions for `glasses-separate-parentheses-p'.
They are matched to the current line truncated to the point where the
parenthesis expression starts."
:group 'glasses
:type '(repeat regexp))
(defcustom glasses-separate-capital-groups t
@ -116,7 +111,6 @@ parenthesis expression starts."
When the value is non-nil, HTMLSomething and IPv6 are displayed
as HTML_Something and I_Pv6 respectively. Set the value to nil
if you prefer to display them unchanged."
:group 'glasses
:type 'boolean
:version "24.1")
@ -124,7 +118,6 @@ if you prefer to display them unchanged."
"If non-nil, downcase embedded capital letters in identifiers.
Only identifiers starting with lower case letters are affected, letters inside
other identifiers are unchanged."
:group 'glasses
:type 'boolean
:set 'glasses-custom-set
:initialize 'custom-initialize-default)
@ -135,7 +128,6 @@ other identifiers are unchanged."
Only words starting with this regexp are uncapitalized.
The regexp is case sensitive.
It has any effect only when `glasses-uncapitalize-p' is non-nil."
:group 'glasses
:type 'regexp
:set 'glasses-custom-set
:initialize 'custom-initialize-default)
@ -149,7 +141,6 @@ file write then.
Note the removal action does not try to be much clever, so it can remove real
separators too."
:group 'glasses
:type 'boolean)

View file

@ -0,0 +1,101 @@
;;; glasses-tests.el --- Tests for glasses.el -*- lexical-binding: t; -*-
;; Copyright (C) 2020 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(require 'ert)
(require 'glasses)
(require 'seq)
(ert-deftest glasses-tests-parenthesis-exception-p ()
(with-temp-buffer
(insert "public OnClickListener menuListener() {}")
(let ((glasses-separate-parentheses-exceptions '("^Listen")))
(should-not (glasses-parenthesis-exception-p 1 (point-max)))
(should (glasses-parenthesis-exception-p 15 (point-max)))
(should-not (glasses-parenthesis-exception-p 24 (point-max)))
(should (glasses-parenthesis-exception-p 28 (point-max))))))
(ert-deftest glasses-tests-overlay-p ()
(should
(glasses-overlay-p (glasses-make-overlay (point-min) (point-max))))
(should-not
(glasses-overlay-p (make-overlay (point-min) (point-max)))))
(ert-deftest glasses-tests-make-overlay-p ()
(let ((o (glasses-make-overlay (point-min) (point-max))))
(should (eq (overlay-get o 'category) 'glasses)))
(let ((o (glasses-make-overlay (point-min) (point-max) 'foo)))
(should (eq (overlay-get o 'category) 'foo))))
(ert-deftest glasses-tests-make-readable ()
(with-temp-buffer
(insert "pp.setBackgroundResource(R.drawable.button_right);")
(glasses-make-readable (point-min) (point-max))
(pcase-let ((`(,o1 ,o2 ,o3)
(sort (overlays-in (point-min) (point-max))
(lambda (o1 o2)
(< (overlay-start o1) (overlay-start o2))))))
(should (= (overlay-start o1) 7))
(should (equal (overlay-get o1 'before-string)
glasses-separator))
(should (= (overlay-start o2) 17))
(should (equal (overlay-get o2 'before-string)
glasses-separator))
(should (= (overlay-start o3) 25))
(should (equal (overlay-get o3 'before-string) " ")))))
(ert-deftest glasses-tests-make-readable-dont-separate-parentheses ()
(with-temp-buffer
(insert "pp.setBackgroundResource(R.drawable.button_right);")
(let ((glasses-separate-parentheses-p nil))
(glasses-make-readable (point-min) (point-max))
(should-not (overlays-at 25)))))
(ert-deftest glasses-tests-make-unreadable ()
(with-temp-buffer
(insert "pp.setBackgroundResource(R.drawable.button_right);")
(glasses-make-readable (point-min) (point-max))
(should (seq-some #'glasses-overlay-p
(overlays-in (point-min) (point-max))))
(glasses-make-unreadable (point-min) (point-max))
(should-not (seq-some #'glasses-overlay-p
(overlays-in (point-min) (point-max))))))
(ert-deftest glasses-tests-convert-to-unreadable ()
(with-temp-buffer
(insert "set_Background_Resource(R.button_right);")
(let ((glasses-convert-on-write-p nil))
(should-not (glasses-convert-to-unreadable))
(should (equal (buffer-string)
"set_Background_Resource(R.button_right);")))
(let ((glasses-convert-on-write-p t))
(should-not (glasses-convert-to-unreadable))
(should (equal (buffer-string)
"setBackgroundResource(R.button_right);")))))
(provide 'glasses-tests)
;;; glasses-tests.el ends here