2001-07-15 19:53:53 +00:00
|
|
|
;;; esh-test.el --- Eshell test suite
|
2000-06-23 05:24:10 +00:00
|
|
|
|
2011-01-25 04:08:28 +00:00
|
|
|
;; Copyright (C) 1999-2011 Free Software Foundation, Inc.
|
2000-06-23 05:24:10 +00:00
|
|
|
|
2000-10-16 12:27:09 +00:00
|
|
|
;; Author: John Wiegley <johnw@gnu.org>
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:36:21 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2000-06-23 05:24:10 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:36:21 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
;; 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
|
2008-05-06 03:36:21 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; The purpose of this module is to verify that Eshell works as
|
|
|
|
;; expected. To run it on your system, use the command
|
|
|
|
;; \\[eshell-test].
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2007-12-05 07:09:17 +00:00
|
|
|
(eval-when-compile
|
2011-03-05 20:07:27 +00:00
|
|
|
(require 'cl) ; assert
|
2007-12-05 07:09:17 +00:00
|
|
|
(require 'eshell)
|
|
|
|
(require 'esh-util))
|
2000-06-23 05:24:10 +00:00
|
|
|
(require 'esh-mode)
|
|
|
|
|
2007-12-05 07:09:17 +00:00
|
|
|
(defgroup eshell-test nil
|
|
|
|
"This module is meant to ensure that Eshell is working correctly."
|
|
|
|
:tag "Eshell test suite"
|
|
|
|
:group 'eshell)
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
;;; User Variables:
|
|
|
|
|
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Remove "-face" suffix from eshell faces
2005-06-17 Miles Bader <miles@gnu.org>
* lisp/eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
Remove "-face" suffix from face names.
(eshell-test-ok-face, eshell-test-failed-face):
New backward-compatibility aliases for renamed faces.
(eshell-run-test): Use renamed eshell-test faces.
* lisp/eshell/em-prompt.el (eshell-prompt):
Remove "-face" suffix from face name.
(eshell-prompt-face): New backward-compatibility alias for renamed face.
(eshell-emit-prompt): Use renamed eshell-prompt face.
* lisp/eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
(eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
(eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
(eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
Remove "-face" suffix from face names.
(eshell-ls-directory-face, eshell-ls-symlink-face)
(eshell-ls-executable-face, eshell-ls-readonly-face)
(eshell-ls-unreadable-face, eshell-ls-special-face)
(eshell-ls-missing-face, eshell-ls-archive-face)
(eshell-ls-backup-face, eshell-ls-product-face)
(eshell-ls-clutter-face):
New backward-compatibility aliases for renamed faces.
(eshell-ls-decorated-name): Use renamed eshell-ls faces.
2005-06-17 05:27:55 +00:00
|
|
|
(defface eshell-test-ok
|
2000-06-23 05:24:10 +00:00
|
|
|
'((((class color) (background light)) (:foreground "Green" :bold t))
|
|
|
|
(((class color) (background dark)) (:foreground "Green" :bold t)))
|
Cosmetic doc fixes for eshell.
* eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
* eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
* eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
* eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
* eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
* eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
* eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
* eshell/esh-util.el, eshell/esh-var.el:
Remove leading `*' from docs of faces and defcustoms.
2010-09-25 21:51:55 +00:00
|
|
|
"The face used to highlight OK result strings."
|
2000-06-23 05:24:10 +00:00
|
|
|
:group 'eshell-test)
|
2009-09-01 16:17:53 +00:00
|
|
|
(define-obsolete-face-alias 'eshell-test-ok-face 'eshell-test-ok "22.1")
|
2000-06-23 05:24:10 +00:00
|
|
|
|
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Remove "-face" suffix from eshell faces
2005-06-17 Miles Bader <miles@gnu.org>
* lisp/eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
Remove "-face" suffix from face names.
(eshell-test-ok-face, eshell-test-failed-face):
New backward-compatibility aliases for renamed faces.
(eshell-run-test): Use renamed eshell-test faces.
* lisp/eshell/em-prompt.el (eshell-prompt):
Remove "-face" suffix from face name.
(eshell-prompt-face): New backward-compatibility alias for renamed face.
(eshell-emit-prompt): Use renamed eshell-prompt face.
* lisp/eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
(eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
(eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
(eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
Remove "-face" suffix from face names.
(eshell-ls-directory-face, eshell-ls-symlink-face)
(eshell-ls-executable-face, eshell-ls-readonly-face)
(eshell-ls-unreadable-face, eshell-ls-special-face)
(eshell-ls-missing-face, eshell-ls-archive-face)
(eshell-ls-backup-face, eshell-ls-product-face)
(eshell-ls-clutter-face):
New backward-compatibility aliases for renamed faces.
(eshell-ls-decorated-name): Use renamed eshell-ls faces.
2005-06-17 05:27:55 +00:00
|
|
|
(defface eshell-test-failed
|
2000-06-23 05:24:10 +00:00
|
|
|
'((((class color) (background light)) (:foreground "OrangeRed" :bold t))
|
|
|
|
(((class color) (background dark)) (:foreground "OrangeRed" :bold t))
|
|
|
|
(t (:bold t)))
|
Cosmetic doc fixes for eshell.
* eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
* eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
* eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
* eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
* eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
* eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
* eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
* eshell/esh-util.el, eshell/esh-var.el:
Remove leading `*' from docs of faces and defcustoms.
2010-09-25 21:51:55 +00:00
|
|
|
"The face used to highlight FAILED result strings."
|
2000-06-23 05:24:10 +00:00
|
|
|
:group 'eshell-test)
|
2009-09-01 16:17:53 +00:00
|
|
|
(define-obsolete-face-alias 'eshell-test-failed-face 'eshell-test-failed "22.1")
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
(defcustom eshell-show-usage-metrics nil
|
Cosmetic doc fixes for eshell.
* eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
* eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
* eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
* eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
* eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
* eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
* eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
* eshell/esh-util.el, eshell/esh-var.el:
Remove leading `*' from docs of faces and defcustoms.
2010-09-25 21:51:55 +00:00
|
|
|
"If non-nil, display different usage metrics for each Eshell command."
|
2000-06-23 05:24:10 +00:00
|
|
|
:set (lambda (symbol value)
|
|
|
|
(if value
|
|
|
|
(add-hook 'eshell-mode-hook 'eshell-show-usage-metrics)
|
|
|
|
(remove-hook 'eshell-mode-hook 'eshell-show-usage-metrics))
|
|
|
|
(set symbol value))
|
|
|
|
:type '(choice (const :tag "No metrics" nil)
|
|
|
|
(const :tag "Cons cells consumed" t)
|
|
|
|
(const :tag "Time elapsed" 0))
|
|
|
|
:group 'eshell-test)
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2008-06-07 02:37:13 +00:00
|
|
|
(defvar test-buffer)
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
(defun eshell-insert-command (text &optional func)
|
|
|
|
"Insert a command at the end of the buffer."
|
|
|
|
(goto-char eshell-last-output-end)
|
|
|
|
(insert-and-inherit text)
|
|
|
|
(funcall (or func 'eshell-send-input)))
|
|
|
|
|
|
|
|
(defun eshell-match-result (regexp)
|
|
|
|
"Insert a command at the end of the buffer."
|
|
|
|
(goto-char eshell-last-input-end)
|
|
|
|
(looking-at regexp))
|
|
|
|
|
|
|
|
(defun eshell-command-result-p (text regexp &optional func)
|
|
|
|
"Insert a command at the end of the buffer."
|
|
|
|
(eshell-insert-command text func)
|
|
|
|
(eshell-match-result regexp))
|
|
|
|
|
|
|
|
(defvar eshell-test-failures nil)
|
|
|
|
|
|
|
|
(defun eshell-run-test (module funcsym label command)
|
|
|
|
"Test whether FORM evaluates to a non-nil value."
|
|
|
|
(when (let ((sym (intern-soft (concat "eshell-" (symbol-name module)))))
|
|
|
|
(or (memq sym (eshell-subgroups 'eshell))
|
|
|
|
(eshell-using-module sym)))
|
|
|
|
(with-current-buffer test-buffer
|
|
|
|
(insert-before-markers
|
|
|
|
(format "%-70s " (substring label 0 (min 70 (length label)))))
|
|
|
|
(insert-before-markers " ....")
|
|
|
|
(eshell-redisplay))
|
|
|
|
(let ((truth (eval command)))
|
|
|
|
(with-current-buffer test-buffer
|
Replace Lisp calls to delete-backward-char by delete-char.
* bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
skeleton.el, term.el, time.el, wid-edit.el, woman.el,
calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
progmodes/ps-mode.el, progmodes/verilog-mode.el,
progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
delete-backward-char by calls to delete-char.
2010-05-25 02:11:08 +00:00
|
|
|
(delete-char -6)
|
2000-06-23 05:24:10 +00:00
|
|
|
(insert-before-markers
|
|
|
|
"[" (let (str)
|
|
|
|
(if truth
|
|
|
|
(progn
|
|
|
|
(setq str " OK ")
|
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Remove "-face" suffix from eshell faces
2005-06-17 Miles Bader <miles@gnu.org>
* lisp/eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
Remove "-face" suffix from face names.
(eshell-test-ok-face, eshell-test-failed-face):
New backward-compatibility aliases for renamed faces.
(eshell-run-test): Use renamed eshell-test faces.
* lisp/eshell/em-prompt.el (eshell-prompt):
Remove "-face" suffix from face name.
(eshell-prompt-face): New backward-compatibility alias for renamed face.
(eshell-emit-prompt): Use renamed eshell-prompt face.
* lisp/eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
(eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
(eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
(eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
Remove "-face" suffix from face names.
(eshell-ls-directory-face, eshell-ls-symlink-face)
(eshell-ls-executable-face, eshell-ls-readonly-face)
(eshell-ls-unreadable-face, eshell-ls-special-face)
(eshell-ls-missing-face, eshell-ls-archive-face)
(eshell-ls-backup-face, eshell-ls-product-face)
(eshell-ls-clutter-face):
New backward-compatibility aliases for renamed faces.
(eshell-ls-decorated-name): Use renamed eshell-ls faces.
2005-06-17 05:27:55 +00:00
|
|
|
(put-text-property 0 6 'face 'eshell-test-ok str))
|
2000-06-23 05:24:10 +00:00
|
|
|
(setq str "FAILED")
|
|
|
|
(setq eshell-test-failures (1+ eshell-test-failures))
|
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Remove "-face" suffix from eshell faces
2005-06-17 Miles Bader <miles@gnu.org>
* lisp/eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
Remove "-face" suffix from face names.
(eshell-test-ok-face, eshell-test-failed-face):
New backward-compatibility aliases for renamed faces.
(eshell-run-test): Use renamed eshell-test faces.
* lisp/eshell/em-prompt.el (eshell-prompt):
Remove "-face" suffix from face name.
(eshell-prompt-face): New backward-compatibility alias for renamed face.
(eshell-emit-prompt): Use renamed eshell-prompt face.
* lisp/eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
(eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
(eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
(eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
Remove "-face" suffix from face names.
(eshell-ls-directory-face, eshell-ls-symlink-face)
(eshell-ls-executable-face, eshell-ls-readonly-face)
(eshell-ls-unreadable-face, eshell-ls-special-face)
(eshell-ls-missing-face, eshell-ls-archive-face)
(eshell-ls-backup-face, eshell-ls-product-face)
(eshell-ls-clutter-face):
New backward-compatibility aliases for renamed faces.
(eshell-ls-decorated-name): Use renamed eshell-ls faces.
2005-06-17 05:27:55 +00:00
|
|
|
(put-text-property 0 6 'face 'eshell-test-failed str))
|
2000-06-23 05:24:10 +00:00
|
|
|
str) "]")
|
|
|
|
(add-text-properties (line-beginning-position) (point)
|
|
|
|
(list 'test-func funcsym))
|
|
|
|
(eshell-redisplay)))))
|
|
|
|
|
|
|
|
(defun eshell-test-goto-func ()
|
|
|
|
"Jump to the function that defines a particular test."
|
|
|
|
(interactive)
|
|
|
|
(let ((fsym (get-text-property (point) 'test-func)))
|
|
|
|
(when fsym
|
|
|
|
(let* ((def (symbol-function fsym))
|
2004-12-27 16:15:53 +00:00
|
|
|
(library (locate-library (symbol-file fsym 'defun)))
|
2000-06-23 05:24:10 +00:00
|
|
|
(name (substring (symbol-name fsym)
|
|
|
|
(length "eshell-test--")))
|
|
|
|
(inhibit-redisplay t))
|
|
|
|
(find-file library)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(re-search-forward (concat "^(eshell-deftest\\s-+\\w+\\s-+"
|
|
|
|
name))
|
|
|
|
(beginning-of-line)))))
|
|
|
|
|
|
|
|
(defun eshell-run-one-test (&optional arg)
|
|
|
|
"Jump to the function that defines a particular test."
|
|
|
|
(interactive "P")
|
|
|
|
(let ((fsym (get-text-property (point) 'test-func)))
|
|
|
|
(when fsym
|
|
|
|
(beginning-of-line)
|
|
|
|
(delete-region (point) (line-end-position))
|
|
|
|
(let ((test-buffer (current-buffer)))
|
|
|
|
(set-buffer (let ((inhibit-redisplay t))
|
|
|
|
(save-window-excursion (eshell t))))
|
|
|
|
(funcall fsym)
|
|
|
|
(unless arg
|
|
|
|
(kill-buffer (current-buffer)))))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun eshell-test (&optional arg)
|
|
|
|
"Test Eshell to verify that it works as expected."
|
|
|
|
(interactive "P")
|
2010-11-10 03:57:32 +00:00
|
|
|
(let* ((begin (float-time))
|
2000-06-23 05:24:10 +00:00
|
|
|
(test-buffer (get-buffer-create "*eshell test*")))
|
|
|
|
(set-buffer (let ((inhibit-redisplay t))
|
|
|
|
(save-window-excursion (eshell t))))
|
|
|
|
(with-current-buffer test-buffer
|
|
|
|
(erase-buffer)
|
|
|
|
(setq major-mode 'eshell-test-mode)
|
|
|
|
(setq mode-name "EShell Test")
|
|
|
|
(set (make-local-variable 'eshell-test-failures) 0)
|
|
|
|
(local-set-key [(control ?c) (control ?c)] 'eshell-test-goto-func)
|
|
|
|
(local-set-key [(control ?c) (control ?r)] 'eshell-run-one-test)
|
|
|
|
(local-set-key [(control ?m)] 'eshell-test-goto-func)
|
|
|
|
(local-set-key [return] 'eshell-test-goto-func)
|
|
|
|
|
2004-05-14 01:03:03 +00:00
|
|
|
(insert "Testing Eshell under " (emacs-version))
|
2000-06-23 05:24:10 +00:00
|
|
|
(switch-to-buffer test-buffer)
|
|
|
|
(delete-other-windows))
|
Make eshell-for obsolete (replaced by dolist)
* eshell/esh-util.el (eshell-for): Make it obsolete.
* eshell/em-alias.el (eshell/alias, eshell-alias-completions):
* eshell/em-dirs.el (eshell-save-some-last-dir):
* eshell/em-hist.el (eshell-save-some-history, eshell-hist-parse-modifier):
* eshell/em-ls.el (eshell-ls-dir, eshell-ls-files, eshell-ls-entries):
* eshell/em-unix.el (eshell/cat, eshell/du, eshell/su):
* eshell/esh-cmd.el (eshell-invoke-directly, eshell-do-eval, eshell/which):
* eshell/esh-ext.el (eshell-find-interpreter):
* eshell/esh-mode.el (eshell-mode):
* eshell/esh-module.el (eshell-unload-extension-modules):
* eshell/esh-proc.el (eshell-process-interact):
* eshell/esh-test.el (eshell-test):
* eshell/esh-util.el (eshell-flatten-list, eshell-winnow-list):
* eshell/esh-var.el (eshell/env, eshell-environment-variables)
(eshell-variables-list):
* eshell/eshell.el (eshell-unload-all-modules):
Replace eshell-for with dolist.
2011-03-05 03:53:41 +00:00
|
|
|
(dolist (funcname (sort (all-completions "eshell-test--"
|
2000-10-29 05:18:48 +00:00
|
|
|
obarray 'functionp)
|
Make eshell-for obsolete (replaced by dolist)
* eshell/esh-util.el (eshell-for): Make it obsolete.
* eshell/em-alias.el (eshell/alias, eshell-alias-completions):
* eshell/em-dirs.el (eshell-save-some-last-dir):
* eshell/em-hist.el (eshell-save-some-history, eshell-hist-parse-modifier):
* eshell/em-ls.el (eshell-ls-dir, eshell-ls-files, eshell-ls-entries):
* eshell/em-unix.el (eshell/cat, eshell/du, eshell/su):
* eshell/esh-cmd.el (eshell-invoke-directly, eshell-do-eval, eshell/which):
* eshell/esh-ext.el (eshell-find-interpreter):
* eshell/esh-mode.el (eshell-mode):
* eshell/esh-module.el (eshell-unload-extension-modules):
* eshell/esh-proc.el (eshell-process-interact):
* eshell/esh-test.el (eshell-test):
* eshell/esh-util.el (eshell-flatten-list, eshell-winnow-list):
* eshell/esh-var.el (eshell/env, eshell-environment-variables)
(eshell-variables-list):
* eshell/eshell.el (eshell-unload-all-modules):
Replace eshell-for with dolist.
2011-03-05 03:53:41 +00:00
|
|
|
'string-lessp))
|
2000-06-23 05:24:10 +00:00
|
|
|
(with-current-buffer test-buffer
|
|
|
|
(insert "\n"))
|
|
|
|
(funcall (intern-soft funcname)))
|
|
|
|
(with-current-buffer test-buffer
|
|
|
|
(insert (format "\n\n--- %s --- (completed in %d seconds)\n"
|
|
|
|
(current-time-string)
|
2010-11-10 03:57:32 +00:00
|
|
|
(- (float-time) begin)))
|
2000-06-23 05:24:10 +00:00
|
|
|
(message "Eshell test suite completed: %s failure%s"
|
|
|
|
(if (> eshell-test-failures 0)
|
|
|
|
(number-to-string eshell-test-failures)
|
|
|
|
"No")
|
|
|
|
(if (= eshell-test-failures 1) "" "s"))))
|
|
|
|
(goto-char eshell-last-output-end)
|
|
|
|
(unless arg
|
|
|
|
(kill-buffer (current-buffer))))
|
|
|
|
|
|
|
|
|
|
|
|
(defvar eshell-metric-before-command 0)
|
|
|
|
(defvar eshell-metric-after-command 0)
|
|
|
|
|
|
|
|
(defun eshell-show-usage-metrics ()
|
|
|
|
"If run at Eshell mode startup, metrics are shown after each command."
|
|
|
|
(set (make-local-variable 'eshell-metric-before-command)
|
|
|
|
(if (eq eshell-show-usage-metrics t)
|
|
|
|
0
|
|
|
|
(current-time)))
|
|
|
|
(set (make-local-variable 'eshell-metric-after-command)
|
|
|
|
(if (eq eshell-show-usage-metrics t)
|
|
|
|
0
|
|
|
|
(current-time)))
|
|
|
|
|
|
|
|
(add-hook 'eshell-pre-command-hook
|
|
|
|
(function
|
|
|
|
(lambda ()
|
|
|
|
(setq eshell-metric-before-command
|
|
|
|
(if (eq eshell-show-usage-metrics t)
|
|
|
|
(car (memory-use-counts))
|
|
|
|
(current-time))))) nil t)
|
|
|
|
|
|
|
|
(add-hook 'eshell-post-command-hook
|
|
|
|
(function
|
|
|
|
(lambda ()
|
|
|
|
(setq eshell-metric-after-command
|
|
|
|
(if (eq eshell-show-usage-metrics t)
|
|
|
|
(car (memory-use-counts))
|
|
|
|
(current-time)))
|
|
|
|
(eshell-interactive-print
|
|
|
|
(concat
|
|
|
|
(int-to-string
|
|
|
|
(if (eq eshell-show-usage-metrics t)
|
|
|
|
(- eshell-metric-after-command
|
|
|
|
eshell-metric-before-command 7)
|
2010-11-10 03:57:32 +00:00
|
|
|
(- (float-time
|
2000-06-23 05:24:10 +00:00
|
|
|
eshell-metric-after-command)
|
2010-11-10 03:57:32 +00:00
|
|
|
(float-time
|
2000-06-23 05:24:10 +00:00
|
|
|
eshell-metric-before-command))))
|
|
|
|
"\n"))))
|
|
|
|
nil t))
|
|
|
|
|
2011-03-05 20:07:27 +00:00
|
|
|
|
|
|
|
;;; The tests.
|
|
|
|
|
|
|
|
(defmacro eshell-deftest (module name label &rest forms)
|
|
|
|
(declare (indent 2))
|
|
|
|
(if (and (fboundp 'cl-compiling-file) (cl-compiling-file))
|
|
|
|
nil
|
|
|
|
(let ((fsym (intern (concat "eshell-test--" (symbol-name name)))))
|
|
|
|
`(eval-when-compile
|
|
|
|
(ignore
|
|
|
|
(defun ,fsym () ,label
|
|
|
|
(eshell-run-test (quote ,module) (quote ,fsym) ,label
|
|
|
|
(quote (progn ,@forms)))))))))
|
|
|
|
|
|
|
|
|
|
|
|
(eshell-deftest mode same-window-buffer-names
|
|
|
|
"`eshell-buffer-name' is a member of `same-window-buffer-names'"
|
|
|
|
(member eshell-buffer-name same-window-buffer-names))
|
|
|
|
|
|
|
|
(eshell-deftest mode eshell-directory-exists
|
|
|
|
"`eshell-directory-name' exists and is writable"
|
|
|
|
(file-writable-p eshell-directory-name))
|
|
|
|
|
|
|
|
(eshell-deftest mode eshell-directory-modes
|
|
|
|
"`eshell-directory-name' has correct access protections"
|
|
|
|
(or (eshell-under-windows-p)
|
|
|
|
(= (file-modes eshell-directory-name)
|
|
|
|
eshell-private-directory-modes)))
|
|
|
|
|
|
|
|
(eshell-deftest mode simple-command-result
|
|
|
|
"`eshell-command-result' works with a simple command."
|
|
|
|
(= (eshell-command-result "+ 1 2") 3))
|
|
|
|
|
|
|
|
|
|
|
|
(require 'em-banner)
|
|
|
|
|
|
|
|
(eshell-deftest banner banner-displayed
|
|
|
|
"Startup banner is displayed at point-min"
|
|
|
|
(assert eshell-banner-message)
|
|
|
|
(let ((msg (eval eshell-banner-message)))
|
|
|
|
(assert msg)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(looking-at msg)))
|
|
|
|
|
|
|
|
|
|
|
|
(require 'esh-cmd)
|
|
|
|
|
|
|
|
(eshell-deftest var last-result-var
|
|
|
|
"\"last result\" variable"
|
|
|
|
(eshell-command-result-p "+ 1 2; + $$ 2" "3\n5\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var last-result-var2
|
|
|
|
"\"last result\" variable"
|
|
|
|
(eshell-command-result-p "+ 1 2; + $$ $$" "3\n6\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var last-arg-var
|
|
|
|
"\"last arg\" variable"
|
|
|
|
(eshell-command-result-p "+ 1 2; + $_ 4" "3\n6\n"))
|
|
|
|
|
|
|
|
(eshell-deftest cmd lisp-command
|
|
|
|
"Evaluate Lisp command"
|
|
|
|
(eshell-command-result-p "(+ 1 2)" "3"))
|
|
|
|
|
|
|
|
(eshell-deftest cmd lisp-command-args
|
|
|
|
"Evaluate Lisp command (ignore args)"
|
|
|
|
(eshell-command-result-p "(+ 1 2) 3" "3"))
|
|
|
|
|
|
|
|
(eshell-deftest cmd subcommand
|
|
|
|
"Run subcommand"
|
|
|
|
(eshell-command-result-p "{+ 1 2}" "3\n"))
|
|
|
|
|
|
|
|
(eshell-deftest cmd subcommand-args
|
|
|
|
"Run subcommand (ignore args)"
|
|
|
|
(eshell-command-result-p "{+ 1 2} 3" "3\n"))
|
|
|
|
|
|
|
|
(eshell-deftest cmd subcommand-lisp
|
|
|
|
"Run subcommand + Lisp form"
|
|
|
|
(eshell-command-result-p "{(+ 1 2)}" "3\n"))
|
|
|
|
|
|
|
|
(eshell-deftest cmd named-command
|
|
|
|
"Execute named command"
|
|
|
|
(eshell-command-result-p "+ 1 2" "3\n"))
|
|
|
|
|
|
|
|
|
|
|
|
(require 'esh-mode)
|
|
|
|
|
|
|
|
(eshell-deftest mode major-mode
|
|
|
|
"Major mode is correct"
|
|
|
|
(eq major-mode 'eshell-mode))
|
|
|
|
|
|
|
|
(eshell-deftest mode eshell-mode-variable
|
|
|
|
"`eshell-mode' is true"
|
|
|
|
(eq eshell-mode t))
|
|
|
|
|
|
|
|
(eshell-deftest var window-height
|
|
|
|
"LINES equals window height"
|
|
|
|
(let ((eshell-stringify-t t))
|
|
|
|
(eshell-command-result-p "= $LINES (window-height)" "t\n")))
|
|
|
|
|
|
|
|
(eshell-deftest mode command-running-p
|
|
|
|
"Modeline shows no command running"
|
|
|
|
(or (featurep 'xemacs)
|
|
|
|
(not eshell-status-in-modeline)
|
|
|
|
(and (memq 'eshell-command-running-string mode-line-format)
|
|
|
|
(equal eshell-command-running-string "--"))))
|
|
|
|
|
|
|
|
(eshell-deftest arg forward-arg
|
|
|
|
"Move across command arguments"
|
|
|
|
(eshell-insert-command "echo $(+ 1 (- 4 3)) \"alpha beta\" file" 'ignore)
|
|
|
|
(let ((here (point)) begin valid)
|
|
|
|
(eshell-bol)
|
|
|
|
(setq begin (point))
|
|
|
|
(eshell-forward-argument 4)
|
|
|
|
(setq valid (= here (point)))
|
|
|
|
(eshell-backward-argument 4)
|
|
|
|
(prog1
|
|
|
|
(and valid (= begin (point)))
|
|
|
|
(eshell-bol)
|
|
|
|
(delete-region (point) (point-max)))))
|
|
|
|
|
|
|
|
(eshell-deftest mode queue-input
|
|
|
|
"Queue command input"
|
|
|
|
(eshell-insert-command "sleep 2")
|
|
|
|
(eshell-insert-command "echo alpha" 'eshell-queue-input)
|
|
|
|
(let ((count 10))
|
|
|
|
(while (and eshell-current-command
|
|
|
|
(> count 0))
|
|
|
|
(sit-for 1 0)
|
|
|
|
(setq count (1- count))))
|
|
|
|
(eshell-match-result "alpha\n"))
|
|
|
|
|
|
|
|
; (eshell-deftest proc send-to-subprocess
|
|
|
|
; "Send input to a subprocess"
|
|
|
|
; ;; jww (1999-12-06): what about when bc is unavailable?
|
|
|
|
; (if (not (eshell-search-path "bc"))
|
|
|
|
; t
|
|
|
|
; (eshell-insert-command "bc")
|
|
|
|
; (eshell-insert-command "1 + 2")
|
|
|
|
; (sit-for 1 0)
|
|
|
|
; (forward-line -1)
|
|
|
|
; (prog1
|
|
|
|
; (looking-at "3\n")
|
|
|
|
; (eshell-insert-command "quit")
|
|
|
|
; (sit-for 1 0))))
|
|
|
|
|
|
|
|
(eshell-deftest io flush-output
|
|
|
|
"Flush previous output"
|
|
|
|
(eshell-insert-command "echo alpha")
|
|
|
|
(eshell-kill-output)
|
|
|
|
(and (eshell-match-result (regexp-quote "*** output flushed ***\n"))
|
|
|
|
(forward-line)
|
|
|
|
(= (point) eshell-last-output-start)))
|
|
|
|
|
|
|
|
(eshell-deftest mode run-old-command
|
|
|
|
"Re-run an old command"
|
|
|
|
(eshell-insert-command "echo alpha")
|
|
|
|
(goto-char eshell-last-input-start)
|
|
|
|
(string= (eshell-get-old-input) "echo alpha"))
|
|
|
|
|
|
|
|
|
|
|
|
(require 'esh-var)
|
|
|
|
|
|
|
|
(eshell-deftest var interp-cmd
|
|
|
|
"Interpolate command result"
|
|
|
|
(eshell-command-result-p "+ ${+ 1 2} 3" "6\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var interp-lisp
|
|
|
|
"Interpolate Lisp form evalution"
|
|
|
|
(eshell-command-result-p "+ $(+ 1 2) 3" "6\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var interp-concat
|
|
|
|
"Interpolate and concat command"
|
|
|
|
(eshell-command-result-p "+ ${+ 1 2}3 3" "36\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var interp-concat-lisp
|
|
|
|
"Interpolate and concat Lisp form"
|
|
|
|
(eshell-command-result-p "+ $(+ 1 2)3 3" "36\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var interp-concat2
|
|
|
|
"Interpolate and concat two commands"
|
|
|
|
(eshell-command-result-p "+ ${+ 1 2}${+ 1 2} 3" "36\n"))
|
|
|
|
|
|
|
|
(eshell-deftest var interp-concat-lisp2
|
|
|
|
"Interpolate and concat two Lisp forms"
|
|
|
|
(eshell-command-result-p "+ $(+ 1 2)$(+ 1 2) 3" "36\n"))
|
|
|
|
|
|
|
|
|
2007-12-05 07:09:17 +00:00
|
|
|
(provide 'esh-test)
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
;;; esh-test.el ends here
|