diff options
| author | Tino Calancha | 2017-08-02 16:39:11 +0900 |
|---|---|---|
| committer | Tino Calancha | 2017-08-02 16:47:28 +0900 |
| commit | a79671c97fb193ec44ca27e1eeb9e7f5bcf2e9f6 (patch) | |
| tree | cb73aab51f94aa1bc885abda82f36e5d6044de0d /test/lisp/eshell | |
| parent | 0668ecc0cd9c2ef7bc0e6f320af454aca1325c25 (diff) | |
| download | emacs-a79671c97fb193ec44ca27e1eeb9e7f5bcf2e9f6.tar.gz emacs-a79671c97fb193ec44ca27e1eeb9e7f5bcf2e9f6.zip | |
Move dired tests using ls emulation to different files
Suggested in:
https://lists.gnu.org/archive/html/emacs-devel/2017-08/msg00018.html
* test/lisp/dired-tests.el (dired-test-bug27693)
(dired-test-bug27762, dired-test-bug27817)
(dired-test-bug27631, dired-test-bug27843): Delete those
parts requiring either ls-lisp or eshell-ls.
* test/lisp/ls-lisp-tests.el (ls-lisp-test-bug27762)
(ls-lisp-test-bug27631, ls-lisp-test-bug27693):
Add all dired tests using ls-lisp here.
* test/lisp/eshell/em-ls-tests.el (em-ls-test-bug27631)
(em-ls-test-bug27817, em-ls-test-bug27843): New test file. Add
all dired tests using eshell-ls here.
Diffstat (limited to 'test/lisp/eshell')
| -rw-r--r-- | test/lisp/eshell/em-ls-tests.el | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/test/lisp/eshell/em-ls-tests.el b/test/lisp/eshell/em-ls-tests.el new file mode 100644 index 00000000000..71a555d1eaf --- /dev/null +++ b/test/lisp/eshell/em-ls-tests.el | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | ;;; tests/em-ls-tests.el --- em-ls test suite | ||
| 2 | |||
| 3 | ;; Copyright (C) 2017 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | ||
| 6 | |||
| 7 | ;; This file is part of GNU Emacs. | ||
| 8 | |||
| 9 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 10 | ;; it under the terms of the GNU General Public License as published by | ||
| 11 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 12 | ;; (at your option) any later version. | ||
| 13 | |||
| 14 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 15 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | ;; GNU General Public License for more details. | ||
| 18 | |||
| 19 | ;; You should have received a copy of the GNU General Public License | ||
| 20 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | ||
| 21 | |||
| 22 | ;;; Commentary: | ||
| 23 | |||
| 24 | |||
| 25 | ;;; Code: | ||
| 26 | |||
| 27 | (require 'ert) | ||
| 28 | (require 'em-ls) | ||
| 29 | |||
| 30 | (ert-deftest em-ls-test-bug27631 () | ||
| 31 | "Test for http://debbugs.gnu.org/27631 ." | ||
| 32 | (let* ((dir (make-temp-file "bug27631" 'dir)) | ||
| 33 | (dir1 (expand-file-name "dir1" dir)) | ||
| 34 | (dir2 (expand-file-name "dir2" dir)) | ||
| 35 | (default-directory dir) | ||
| 36 | (orig eshell-ls-use-in-dired) | ||
| 37 | buf) | ||
| 38 | (unwind-protect | ||
| 39 | (progn | ||
| 40 | (customize-set-value 'eshell-ls-use-in-dired t) | ||
| 41 | (make-directory dir1) | ||
| 42 | (make-directory dir2) | ||
| 43 | (with-temp-file (expand-file-name "a.txt" dir1)) | ||
| 44 | (with-temp-file (expand-file-name "b.txt" dir2)) | ||
| 45 | (setq buf (dired (expand-file-name "dir*/*.txt" dir))) | ||
| 46 | (dired-toggle-marks) | ||
| 47 | (should (cdr (dired-get-marked-files)))) | ||
| 48 | (customize-set-variable 'eshell-ls-use-in-dired orig) | ||
| 49 | (delete-directory dir 'recursive) | ||
| 50 | (when (buffer-live-p buf) (kill-buffer buf))))) | ||
| 51 | |||
| 52 | (ert-deftest em-ls-test-bug27817 () | ||
| 53 | "Test for http://debbugs.gnu.org/27817 ." | ||
| 54 | (let ((orig eshell-ls-use-in-dired) | ||
| 55 | (dired-use-ls-dired 'unspecified) | ||
| 56 | buf insert-directory-program) | ||
| 57 | (unwind-protect | ||
| 58 | (progn | ||
| 59 | (customize-set-variable 'eshell-ls-use-in-dired t) | ||
| 60 | (should (setq buf (dired source-directory)))) | ||
| 61 | (customize-set-variable 'eshell-ls-use-in-dired orig) | ||
| 62 | (and (buffer-live-p buf) (kill-buffer))))) | ||
| 63 | |||
| 64 | (ert-deftest em-ls-test-bug27843 () | ||
| 65 | "Test for http://debbugs.gnu.org/27843 ." | ||
| 66 | (let ((orig eshell-ls-use-in-dired) | ||
| 67 | (dired-use-ls-dired 'unspecified) | ||
| 68 | buf insert-directory-program) | ||
| 69 | (unwind-protect | ||
| 70 | (progn | ||
| 71 | (customize-set-variable 'eshell-ls-use-in-dired t) | ||
| 72 | (setq buf (dired (list source-directory "lisp"))) | ||
| 73 | (dired-toggle-marks) | ||
| 74 | (should-not (cdr (dired-get-marked-files)))) | ||
| 75 | (customize-set-variable 'eshell-ls-use-in-dired orig) | ||
| 76 | (and (buffer-live-p buf) (kill-buffer))))) | ||
| 77 | |||
| 78 | (provide 'em-ls-test) | ||
| 79 | |||
| 80 | ;;; em-ls-tests.el ends here | ||