Mercurial > emacs
annotate lisp/eshell/esh-test.el @ 102914:8b13a9b37672
* mail/rmailkwd.el (rmail-set-label): Warn if multipe labels spec'd.
(rmail-kill-label, rmail-add-label): Doc fixes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 09 Apr 2009 16:50:36 +0000 |
parents | a9dc0e7c3f2b |
children | ddf360111014 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33020
diff
changeset
|
1 ;;; esh-test.el --- Eshell test suite |
29876 | 2 |
95619
45dbb3c749a6
Remove unnecessary eval-when-compiles and eval-and-compiles.
Glenn Morris <rgm@gnu.org>
parents:
94661
diff
changeset
|
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
100908 | 4 ;; 2008, 2009 Free Software Foundation, Inc. |
29876 | 5 |
32526 | 6 ;; Author: John Wiegley <johnw@gnu.org> |
7 | |
29876 | 8 ;; This file is part of GNU Emacs. |
9 | |
94661
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
29876 | 11 ;; it under the terms of the GNU General Public License as published by |
94661
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; (at your option) any later version. |
29876 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
94661
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
29876 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;; The purpose of this module is to verify that Eshell works as | |
26 ;; expected. To run it on your system, use the command | |
27 ;; \\[eshell-test]. | |
28 | |
29 ;;; Code: | |
30 | |
87088
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
31 (eval-when-compile |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
32 (require 'eshell) |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
33 (require 'esh-util)) |
29876 | 34 (require 'esh-mode) |
35 | |
87088
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
36 (defgroup eshell-test nil |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
37 "This module is meant to ensure that Eshell is working correctly." |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
38 :tag "Eshell test suite" |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
39 :group 'eshell) |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
40 |
29876 | 41 ;;; User Variables: |
42 | |
63533
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
43 (defface eshell-test-ok |
29876 | 44 '((((class color) (background light)) (:foreground "Green" :bold t)) |
45 (((class color) (background dark)) (:foreground "Green" :bold t))) | |
46 "*The face used to highlight OK result strings." | |
47 :group 'eshell-test) | |
63533
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
48 ;; backward-compatibility alias |
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
49 (put 'eshell-test-ok-face 'face-alias 'eshell-test-ok) |
29876 | 50 |
63533
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
51 (defface eshell-test-failed |
29876 | 52 '((((class color) (background light)) (:foreground "OrangeRed" :bold t)) |
53 (((class color) (background dark)) (:foreground "OrangeRed" :bold t)) | |
54 (t (:bold t))) | |
55 "*The face used to highlight FAILED result strings." | |
56 :group 'eshell-test) | |
63533
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
57 ;; backward-compatibility alias |
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
58 (put 'eshell-test-failed-face 'face-alias 'eshell-test-failed) |
29876 | 59 |
60 (defcustom eshell-show-usage-metrics nil | |
61 "*If non-nil, display different usage metrics for each Eshell command." | |
62 :set (lambda (symbol value) | |
63 (if value | |
64 (add-hook 'eshell-mode-hook 'eshell-show-usage-metrics) | |
65 (remove-hook 'eshell-mode-hook 'eshell-show-usage-metrics)) | |
66 (set symbol value)) | |
67 :type '(choice (const :tag "No metrics" nil) | |
68 (const :tag "Cons cells consumed" t) | |
69 (const :tag "Time elapsed" 0)) | |
70 :group 'eshell-test) | |
71 | |
72 ;;; Code: | |
73 | |
95619
45dbb3c749a6
Remove unnecessary eval-when-compiles and eval-and-compiles.
Glenn Morris <rgm@gnu.org>
parents:
94661
diff
changeset
|
74 (defvar test-buffer) |
29876 | 75 |
76 (defun eshell-insert-command (text &optional func) | |
77 "Insert a command at the end of the buffer." | |
78 (goto-char eshell-last-output-end) | |
79 (insert-and-inherit text) | |
80 (funcall (or func 'eshell-send-input))) | |
81 | |
82 (defun eshell-match-result (regexp) | |
83 "Insert a command at the end of the buffer." | |
84 (goto-char eshell-last-input-end) | |
85 (looking-at regexp)) | |
86 | |
87 (defun eshell-command-result-p (text regexp &optional func) | |
88 "Insert a command at the end of the buffer." | |
89 (eshell-insert-command text func) | |
90 (eshell-match-result regexp)) | |
91 | |
92 (defvar eshell-test-failures nil) | |
93 | |
94 (defun eshell-run-test (module funcsym label command) | |
95 "Test whether FORM evaluates to a non-nil value." | |
96 (when (let ((sym (intern-soft (concat "eshell-" (symbol-name module))))) | |
97 (or (memq sym (eshell-subgroups 'eshell)) | |
98 (eshell-using-module sym))) | |
99 (with-current-buffer test-buffer | |
100 (insert-before-markers | |
101 (format "%-70s " (substring label 0 (min 70 (length label))))) | |
102 (insert-before-markers " ....") | |
103 (eshell-redisplay)) | |
104 (let ((truth (eval command))) | |
105 (with-current-buffer test-buffer | |
106 (delete-backward-char 6) | |
107 (insert-before-markers | |
108 "[" (let (str) | |
109 (if truth | |
110 (progn | |
111 (setq str " OK ") | |
63533
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
112 (put-text-property 0 6 'face 'eshell-test-ok str)) |
29876 | 113 (setq str "FAILED") |
114 (setq eshell-test-failures (1+ eshell-test-failures)) | |
63533
b7ea6515f1ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Miles Bader <miles@gnu.org>
parents:
59120
diff
changeset
|
115 (put-text-property 0 6 'face 'eshell-test-failed str)) |
29876 | 116 str) "]") |
117 (add-text-properties (line-beginning-position) (point) | |
118 (list 'test-func funcsym)) | |
119 (eshell-redisplay))))) | |
120 | |
121 (defun eshell-test-goto-func () | |
122 "Jump to the function that defines a particular test." | |
123 (interactive) | |
124 (let ((fsym (get-text-property (point) 'test-func))) | |
125 (when fsym | |
126 (let* ((def (symbol-function fsym)) | |
59120
b79ba69139eb
(eshell-test-goto-func): Call symbol-file with `defun'.
Richard M. Stallman <rms@gnu.org>
parents:
55581
diff
changeset
|
127 (library (locate-library (symbol-file fsym 'defun))) |
29876 | 128 (name (substring (symbol-name fsym) |
129 (length "eshell-test--"))) | |
130 (inhibit-redisplay t)) | |
131 (find-file library) | |
132 (goto-char (point-min)) | |
133 (re-search-forward (concat "^(eshell-deftest\\s-+\\w+\\s-+" | |
134 name)) | |
135 (beginning-of-line))))) | |
136 | |
137 (defun eshell-run-one-test (&optional arg) | |
138 "Jump to the function that defines a particular test." | |
139 (interactive "P") | |
140 (let ((fsym (get-text-property (point) 'test-func))) | |
141 (when fsym | |
142 (beginning-of-line) | |
143 (delete-region (point) (line-end-position)) | |
144 (let ((test-buffer (current-buffer))) | |
145 (set-buffer (let ((inhibit-redisplay t)) | |
146 (save-window-excursion (eshell t)))) | |
147 (funcall fsym) | |
148 (unless arg | |
149 (kill-buffer (current-buffer))))))) | |
150 | |
151 ;;;###autoload | |
152 (defun eshell-test (&optional arg) | |
153 "Test Eshell to verify that it works as expected." | |
154 (interactive "P") | |
155 (let* ((begin (eshell-time-to-seconds (current-time))) | |
156 (test-buffer (get-buffer-create "*eshell test*"))) | |
157 (set-buffer (let ((inhibit-redisplay t)) | |
158 (save-window-excursion (eshell t)))) | |
159 (with-current-buffer test-buffer | |
160 (erase-buffer) | |
161 (setq major-mode 'eshell-test-mode) | |
162 (setq mode-name "EShell Test") | |
163 (set (make-local-variable 'eshell-test-failures) 0) | |
164 (local-set-key [(control ?c) (control ?c)] 'eshell-test-goto-func) | |
165 (local-set-key [(control ?c) (control ?r)] 'eshell-run-one-test) | |
166 (local-set-key [(control ?m)] 'eshell-test-goto-func) | |
167 (local-set-key [return] 'eshell-test-goto-func) | |
168 | |
55581
a9bcae5bca8e
2004-05-13 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
52401
diff
changeset
|
169 (insert "Testing Eshell under " (emacs-version)) |
29876 | 170 (switch-to-buffer test-buffer) |
171 (delete-other-windows)) | |
33020 | 172 (eshell-for funcname (sort (all-completions "eshell-test--" |
173 obarray 'functionp) | |
174 'string-lessp) | |
29876 | 175 (with-current-buffer test-buffer |
176 (insert "\n")) | |
177 (funcall (intern-soft funcname))) | |
178 (with-current-buffer test-buffer | |
179 (insert (format "\n\n--- %s --- (completed in %d seconds)\n" | |
180 (current-time-string) | |
181 (- (eshell-time-to-seconds (current-time)) | |
182 begin))) | |
183 (message "Eshell test suite completed: %s failure%s" | |
184 (if (> eshell-test-failures 0) | |
185 (number-to-string eshell-test-failures) | |
186 "No") | |
187 (if (= eshell-test-failures 1) "" "s")))) | |
188 (goto-char eshell-last-output-end) | |
189 (unless arg | |
190 (kill-buffer (current-buffer)))) | |
191 | |
192 | |
193 (defvar eshell-metric-before-command 0) | |
194 (defvar eshell-metric-after-command 0) | |
195 | |
196 (defun eshell-show-usage-metrics () | |
197 "If run at Eshell mode startup, metrics are shown after each command." | |
198 (set (make-local-variable 'eshell-metric-before-command) | |
199 (if (eq eshell-show-usage-metrics t) | |
200 0 | |
201 (current-time))) | |
202 (set (make-local-variable 'eshell-metric-after-command) | |
203 (if (eq eshell-show-usage-metrics t) | |
204 0 | |
205 (current-time))) | |
206 | |
207 (add-hook 'eshell-pre-command-hook | |
208 (function | |
209 (lambda () | |
210 (setq eshell-metric-before-command | |
211 (if (eq eshell-show-usage-metrics t) | |
212 (car (memory-use-counts)) | |
213 (current-time))))) nil t) | |
214 | |
215 (add-hook 'eshell-post-command-hook | |
216 (function | |
217 (lambda () | |
218 (setq eshell-metric-after-command | |
219 (if (eq eshell-show-usage-metrics t) | |
220 (car (memory-use-counts)) | |
221 (current-time))) | |
222 (eshell-interactive-print | |
223 (concat | |
224 (int-to-string | |
225 (if (eq eshell-show-usage-metrics t) | |
226 (- eshell-metric-after-command | |
227 eshell-metric-before-command 7) | |
228 (- (eshell-time-to-seconds | |
229 eshell-metric-after-command) | |
230 (eshell-time-to-seconds | |
231 eshell-metric-before-command)))) | |
232 "\n")))) | |
233 nil t)) | |
234 | |
87088
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
235 (provide 'esh-test) |
ddc1d773fb48
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
236 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
237 ;; arch-tag: 6e32275a-8285-4a4e-b7cf-819aa7c86b8e |
29876 | 238 ;;; esh-test.el ends here |