File: glasses-tests.el

package info (click to toggle)
emacs 1%3A30.1%2B1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 187,320 kB
  • sloc: lisp: 1,367,529; ansic: 466,479; objc: 19,117; cpp: 8,817; java: 8,780; sh: 8,119; makefile: 7,288; python: 3,788; perl: 1,788; xml: 1,720; yacc: 1,566; asm: 1,150; php: 1,035; pascal: 1,011; awk: 937; cs: 880; ada: 725; ruby: 658; javascript: 187; erlang: 153; tcl: 16
file content (101 lines) | stat: -rw-r--r-- 3,991 bytes parent folder | download | duplicates (3)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
;;; glasses-tests.el --- Tests for glasses.el        -*- lexical-binding: t; -*-

;; Copyright (C) 2020-2025 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