diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/ChangeLog | 27 | ||||
| -rw-r--r-- | test/automated/Makefile.in | 25 | ||||
| -rw-r--r-- | test/automated/calc-tests.el | 42 | ||||
| -rw-r--r-- | test/automated/dbus-tests.el | 10 | ||||
| -rw-r--r-- | test/automated/subr-x-tests.el | 526 | ||||
| -rw-r--r-- | test/automated/tramp-tests.el | 19 |
6 files changed, 620 insertions, 29 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index f67fad959fa..8c28eaf30dc 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,5 +1,32 @@ | |||
| 1 | 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org> | ||
| 2 | |||
| 3 | * automated/subr-x-tests.el: New file. | ||
| 4 | |||
| 5 | 2014-06-29 Michael Albinus <michael.albinus@gmx.de> | ||
| 6 | |||
| 7 | * automated/tramp-tests.el (tramp--instrument-test-case): | ||
| 8 | Print debug buffer in any case. | ||
| 9 | |||
| 10 | 2014-06-28 Leo Liu <sdl.web@gmail.com> | ||
| 11 | |||
| 12 | * automated/calc-tests.el: New file and add tests for math-bignum. | ||
| 13 | (Bug#17556) | ||
| 14 | |||
| 15 | 2014-06-28 Michael Albinus <michael.albinus@gmx.de> | ||
| 16 | |||
| 17 | * automated/dbus-tests.el (dbus--test-register-service) | ||
| 18 | (dbus-test02-register-service-session): Replace `dbus-ping' calls | ||
| 19 | by `dbus-list-known-names'. (Bug#17858) | ||
| 20 | |||
| 1 | 2014-06-28 Glenn Morris <rgm@gnu.org> | 21 | 2014-06-28 Glenn Morris <rgm@gnu.org> |
| 2 | 22 | ||
| 23 | * automated/Makefile.in (GDB): New variable. | ||
| 24 | (emacs): Use $GDB. (Bug#15991) | ||
| 25 | |||
| 26 | * automated/Makefile.in (WRITE_LOG): New variable. | ||
| 27 | (%.log): Use WRITE_LOG. | ||
| 28 | (test_template): Disable logging. | ||
| 29 | |||
| 3 | * automated/Makefile.in (TESTS): New list of short PHONY aliases. | 30 | * automated/Makefile.in (TESTS): New list of short PHONY aliases. |
| 4 | (test_template): New definition. Apply to TESTS. | 31 | (test_template): New definition. Apply to TESTS. |
| 5 | 32 | ||
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in index da14fda88d6..e0eaffa4c2c 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in | |||
| @@ -20,10 +20,10 @@ | |||
| 20 | ### Commentary: | 20 | ### Commentary: |
| 21 | 21 | ||
| 22 | ## Some targets: | 22 | ## Some targets: |
| 23 | ## check: re-run all tests | 23 | ## check: re-run all tests, writing to .log files. |
| 24 | ## check-maybe: run all tests whose .log file needs updating | 24 | ## check-maybe: run all tests whose .log file needs updating |
| 25 | ## filename.log: run tests from filename.el(c) if .log file needs updating | 25 | ## filename.log: run tests from filename.el(c) if .log file needs updating |
| 26 | ## filename: re-run tests from filename.el(c) | 26 | ## filename: re-run tests from filename.el(c), with no logging |
| 27 | 27 | ||
| 28 | ### Code: | 28 | ### Code: |
| 29 | 29 | ||
| @@ -47,9 +47,12 @@ EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(SEPCHAR)$(srcdir)" | |||
| 47 | # Prevent any settings in the user environment causing problems. | 47 | # Prevent any settings in the user environment causing problems. |
| 48 | unexport EMACSDATA EMACSDOC EMACSPATH GREP_OPTIONS | 48 | unexport EMACSDATA EMACSDOC EMACSPATH GREP_OPTIONS |
| 49 | 49 | ||
| 50 | ## To run tests under a debugger, set this to eg: "gdb --args". | ||
| 51 | GDB = | ||
| 52 | |||
| 50 | # The actual Emacs command run in the targets below. | 53 | # The actual Emacs command run in the targets below. |
| 51 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. | 54 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. |
| 52 | emacs = EMACSLOADPATH= LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) "$(EMACS)" $(EMACSOPT) | 55 | emacs = EMACSLOADPATH= LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) $(GDB) "$(EMACS)" $(EMACSOPT) |
| 53 | 56 | ||
| 54 | .PHONY: all check | 57 | .PHONY: all check |
| 55 | 58 | ||
| @@ -60,10 +63,9 @@ all: check | |||
| 60 | @$(emacs) -f batch-byte-compile $< | 63 | @$(emacs) -f batch-byte-compile $< |
| 61 | 64 | ||
| 62 | ## Ignore any test errors so we can continue to test other files. | 65 | ## Ignore any test errors so we can continue to test other files. |
| 63 | ## (It would be nice if we could get an error when running an | ||
| 64 | ## individual test, but not when running check.) | ||
| 65 | ## But compilation errors are always fatal. | 66 | ## But compilation errors are always fatal. |
| 66 | ## | 67 | WRITE_LOG = >& $@ || { stat=ERROR; cat $@; }; echo $$stat: $@ |
| 68 | |||
| 67 | ## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather | 69 | ## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather |
| 68 | ## than || true, since the former makes problems more obvious. | 70 | ## than || true, since the former makes problems more obvious. |
| 69 | ## I'd also prefer to @-hide the grep part and not the | 71 | ## I'd also prefer to @-hide the grep part and not the |
| @@ -74,7 +76,7 @@ all: check | |||
| 74 | ## basename duplicates a file in lisp/ (eg eshell.el). | 76 | ## basename duplicates a file in lisp/ (eg eshell.el). |
| 75 | ## ii) Although -l basename will automatically load .el or .elc, | 77 | ## ii) Although -l basename will automatically load .el or .elc, |
| 76 | ## -l ./basename treats basename as a literal file (it would be nice | 78 | ## -l ./basename treats basename as a literal file (it would be nice |
| 77 | ## to change this). | 79 | ## to change this; bug#17848 - if that gets done, this can be simplified). |
| 78 | ## | 80 | ## |
| 79 | ## Beware: it approximates `no-byte-compile', so watch out for false-positives! | 81 | ## Beware: it approximates `no-byte-compile', so watch out for false-positives! |
| 80 | %.log: ${srcdir}/%.el | 82 | %.log: ${srcdir}/%.el |
| @@ -87,10 +89,7 @@ all: check | |||
| 87 | echo Testing $$loadfile; \ | 89 | echo Testing $$loadfile; \ |
| 88 | stat=OK ; \ | 90 | stat=OK ; \ |
| 89 | $(emacs) -l ert -l $$loadfile \ | 91 | $(emacs) -l ert -l $$loadfile \ |
| 90 | -f ert-run-tests-batch-and-exit >& $@ || { \ | 92 | -f ert-run-tests-batch-and-exit ${WRITE_LOG} |
| 91 | stat=ERROR; \ | ||
| 92 | cat $@; }; \ | ||
| 93 | echo $$stat: $@ | ||
| 94 | 93 | ||
| 95 | ELFILES = $(wildcard ${srcdir}/*.el) | 94 | ELFILES = $(wildcard ${srcdir}/*.el) |
| 96 | LOGFILES = $(patsubst %.el,%.log,$(notdir ${ELFILES})) | 95 | LOGFILES = $(patsubst %.el,%.log,$(notdir ${ELFILES})) |
| @@ -102,11 +101,11 @@ TESTS = ${LOGFILES:.log=} | |||
| 102 | 101 | ||
| 103 | .PHONY: ${TESTS} | 102 | .PHONY: ${TESTS} |
| 104 | 103 | ||
| 105 | ## The short aliases that always re-run the tests. | 104 | ## The short aliases that always re-run the tests, with no logging. |
| 106 | define test_template | 105 | define test_template |
| 107 | $(1): | 106 | $(1): |
| 108 | @test ! -f $(1).log || mv $(1).log $(1).log~ | 107 | @test ! -f $(1).log || mv $(1).log $(1).log~ |
| 109 | @${MAKE} $(1).log | 108 | @${MAKE} $(1).log WRITE_LOG= |
| 110 | endef | 109 | endef |
| 111 | 110 | ||
| 112 | $(foreach test,${TESTS},$(eval $(call test_template,${test}))) | 111 | $(foreach test,${TESTS},$(eval $(call test_template,${test}))) |
diff --git a/test/automated/calc-tests.el b/test/automated/calc-tests.el new file mode 100644 index 00000000000..b96a9e83e75 --- /dev/null +++ b/test/automated/calc-tests.el | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | ;;; calc-tests.el --- tests for calc -*- lexical-binding: t; -*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2014 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: Leo Liu <sdl.web@gmail.com> | ||
| 6 | ;; Keywords: maint | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 13 | ;; (at your option) any later version. | ||
| 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 | ||
| 21 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | ||
| 22 | |||
| 23 | ;;; Commentary: | ||
| 24 | |||
| 25 | ;;; Code: | ||
| 26 | |||
| 27 | (require 'cl-lib) | ||
| 28 | (require 'ert) | ||
| 29 | (require 'calc) | ||
| 30 | |||
| 31 | (ert-deftest test-math-bignum () | ||
| 32 | ;; bug#17556 | ||
| 33 | (let ((n (math-bignum most-negative-fixnum))) | ||
| 34 | (should (math-negp n)) | ||
| 35 | (should (cl-notany #'cl-minusp (cdr n))))) | ||
| 36 | |||
| 37 | (provide 'calc-tests) | ||
| 38 | ;;; calc-tests.el ends here | ||
| 39 | |||
| 40 | ;; Local Variables: | ||
| 41 | ;; bug-reference-url-format: "http://debbugs.gnu.org/%s" | ||
| 42 | ;; End: | ||
diff --git a/test/automated/dbus-tests.el b/test/automated/dbus-tests.el index c9d9c72ec1d..1af5c77de53 100644 --- a/test/automated/dbus-tests.el +++ b/test/automated/dbus-tests.el | |||
| @@ -88,15 +88,15 @@ | |||
| 88 | 88 | ||
| 89 | ;; Register an own service. | 89 | ;; Register an own service. |
| 90 | (should (eq (dbus-register-service bus dbus-service-emacs) :primary-owner)) | 90 | (should (eq (dbus-register-service bus dbus-service-emacs) :primary-owner)) |
| 91 | (should (dbus-ping bus dbus-service-emacs 100)) | 91 | (should (member dbus-service-emacs (dbus-list-known-names bus))) |
| 92 | (should (eq (dbus-register-service bus dbus-service-emacs) :already-owner)) | 92 | (should (eq (dbus-register-service bus dbus-service-emacs) :already-owner)) |
| 93 | (should (dbus-ping bus dbus-service-emacs 100)) | 93 | (should (member dbus-service-emacs (dbus-list-known-names bus))) |
| 94 | 94 | ||
| 95 | ;; Unregister the service. | 95 | ;; Unregister the service. |
| 96 | (should (eq (dbus-unregister-service bus dbus-service-emacs) :released)) | 96 | (should (eq (dbus-unregister-service bus dbus-service-emacs) :released)) |
| 97 | (should-not (dbus-ping bus dbus-service-emacs 100)) | 97 | (should-not (member dbus-service-emacs (dbus-list-known-names bus))) |
| 98 | (should (eq (dbus-unregister-service bus dbus-service-emacs) :non-existent)) | 98 | (should (eq (dbus-unregister-service bus dbus-service-emacs) :non-existent)) |
| 99 | (should-not (dbus-ping bus dbus-service-emacs 100)) | 99 | (should-not (member dbus-service-emacs (dbus-list-known-names bus))) |
| 100 | 100 | ||
| 101 | ;; `dbus-service-dbus' is reserved for the BUS itself. | 101 | ;; `dbus-service-dbus' is reserved for the BUS itself. |
| 102 | (should-error (dbus-register-service bus dbus-service-dbus)) | 102 | (should-error (dbus-register-service bus dbus-service-dbus)) |
| @@ -109,7 +109,7 @@ | |||
| 109 | (dbus--test-register-service :session) | 109 | (dbus--test-register-service :session) |
| 110 | 110 | ||
| 111 | (let ((service "org.freedesktop.Notifications")) | 111 | (let ((service "org.freedesktop.Notifications")) |
| 112 | (when (dbus-ping :session service 100) | 112 | (when (member service (dbus-list-known-names :session)) |
| 113 | ;; Cleanup. | 113 | ;; Cleanup. |
| 114 | (dbus-ignore-errors (dbus-unregister-service :session service)) | 114 | (dbus-ignore-errors (dbus-unregister-service :session service)) |
| 115 | 115 | ||
diff --git a/test/automated/subr-x-tests.el b/test/automated/subr-x-tests.el new file mode 100644 index 00000000000..df8412699a4 --- /dev/null +++ b/test/automated/subr-x-tests.el | |||
| @@ -0,0 +1,526 @@ | |||
| 1 | ;;; subr-x-tests.el --- Testing the extended lisp routines | ||
| 2 | |||
| 3 | ;; Copyright (C) 2014 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: Fabián E. Gallina <fgallina@gnu.org> | ||
| 6 | ;; Keywords: | ||
| 7 | |||
| 8 | ;; This program is free software; you can redistribute it and/or modify | ||
| 9 | ;; it under the terms of the GNU General Public License as published by | ||
| 10 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 11 | ;; (at your option) any later version. | ||
| 12 | |||
| 13 | ;; This program is distributed in the hope that it will be useful, | ||
| 14 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | ;; GNU General Public License for more details. | ||
| 17 | |||
| 18 | ;; You should have received a copy of the GNU General Public License | ||
| 19 | ;; along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | |||
| 21 | ;;; Commentary: | ||
| 22 | |||
| 23 | ;; | ||
| 24 | |||
| 25 | ;;; Code: | ||
| 26 | |||
| 27 | (require 'ert) | ||
| 28 | (require 'subr-x) | ||
| 29 | |||
| 30 | |||
| 31 | ;; if-let tests | ||
| 32 | |||
| 33 | (ert-deftest subr-x-test-if-let-single-binding-expansion () | ||
| 34 | "Test single bindings are expanded properly." | ||
| 35 | (should (equal | ||
| 36 | (macroexpand | ||
| 37 | '(if-let (a 1) | ||
| 38 | (- a) | ||
| 39 | "no")) | ||
| 40 | '(let* ((a (and t 1))) | ||
| 41 | (if a | ||
| 42 | (- a) | ||
| 43 | "no")))) | ||
| 44 | (should (equal | ||
| 45 | (macroexpand | ||
| 46 | '(if-let (a) | ||
| 47 | (- a) | ||
| 48 | "no")) | ||
| 49 | '(let* ((a (and t nil))) | ||
| 50 | (if a | ||
| 51 | (- a) | ||
| 52 | "no"))))) | ||
| 53 | |||
| 54 | (ert-deftest subr-x-test-if-let-single-symbol-expansion () | ||
| 55 | "Test single symbol bindings are expanded properly." | ||
| 56 | (should (equal | ||
| 57 | (macroexpand | ||
| 58 | '(if-let (a) | ||
| 59 | (- a) | ||
| 60 | "no")) | ||
| 61 | '(let* ((a (and t nil))) | ||
| 62 | (if a | ||
| 63 | (- a) | ||
| 64 | "no")))) | ||
| 65 | (should (equal | ||
| 66 | (macroexpand | ||
| 67 | '(if-let (a b c) | ||
| 68 | (- a) | ||
| 69 | "no")) | ||
| 70 | '(let* ((a (and t nil)) | ||
| 71 | (b (and a nil)) | ||
| 72 | (c (and b nil))) | ||
| 73 | (if c | ||
| 74 | (- a) | ||
| 75 | "no")))) | ||
| 76 | (should (equal | ||
| 77 | (macroexpand | ||
| 78 | '(if-let (a (b 2) c) | ||
| 79 | (- a) | ||
| 80 | "no")) | ||
| 81 | '(let* ((a (and t nil)) | ||
| 82 | (b (and a 2)) | ||
| 83 | (c (and b nil))) | ||
| 84 | (if c | ||
| 85 | (- a) | ||
| 86 | "no"))))) | ||
| 87 | |||
| 88 | (ert-deftest subr-x-test-if-let-nil-related-expansion () | ||
| 89 | "Test nil is processed properly." | ||
| 90 | (should (equal | ||
| 91 | (macroexpand | ||
| 92 | '(if-let (nil) | ||
| 93 | (- a) | ||
| 94 | "no")) | ||
| 95 | '(let* ((nil (and t nil))) | ||
| 96 | (if nil | ||
| 97 | (- a) | ||
| 98 | "no")))) | ||
| 99 | (should (equal | ||
| 100 | (macroexpand | ||
| 101 | '(if-let ((nil)) | ||
| 102 | (- a) | ||
| 103 | "no")) | ||
| 104 | '(let* ((nil (and t nil))) | ||
| 105 | (if nil | ||
| 106 | (- a) | ||
| 107 | "no")))) | ||
| 108 | (should (equal | ||
| 109 | (macroexpand | ||
| 110 | '(if-let ((a 1) (nil) (b 2)) | ||
| 111 | (- a) | ||
| 112 | "no")) | ||
| 113 | '(let* ((a (and t 1)) | ||
| 114 | (nil (and a nil)) | ||
| 115 | (b (and nil 2))) | ||
| 116 | (if b | ||
| 117 | (- a) | ||
| 118 | "no")))) | ||
| 119 | (should (equal | ||
| 120 | (macroexpand | ||
| 121 | '(if-let ((a 1) nil (b 2)) | ||
| 122 | (- a) | ||
| 123 | "no")) | ||
| 124 | '(let* ((a (and t 1)) | ||
| 125 | (nil (and a nil)) | ||
| 126 | (b (and nil 2))) | ||
| 127 | (if b | ||
| 128 | (- a) | ||
| 129 | "no"))))) | ||
| 130 | |||
| 131 | (ert-deftest subr-x-test-if-let-malformed-binding () | ||
| 132 | "Test malformed bindings trigger errors." | ||
| 133 | (should-error (macroexpand | ||
| 134 | '(if-let (_ (a 1 1) (b 2) (c 3) d) | ||
| 135 | (- a) | ||
| 136 | "no")) | ||
| 137 | :type 'error) | ||
| 138 | (should-error (macroexpand | ||
| 139 | '(if-let (_ (a 1) (b 2 2) (c 3) d) | ||
| 140 | (- a) | ||
| 141 | "no")) | ||
| 142 | :type 'error) | ||
| 143 | (should-error (macroexpand | ||
| 144 | '(if-let (_ (a 1) (b 2) (c 3 3) d) | ||
| 145 | (- a) | ||
| 146 | "no")) | ||
| 147 | :type 'error) | ||
| 148 | (should-error (macroexpand | ||
| 149 | '(if-let ((a 1 1)) | ||
| 150 | (- a) | ||
| 151 | "no")) | ||
| 152 | :type 'error)) | ||
| 153 | |||
| 154 | (ert-deftest subr-x-test-if-let-true () | ||
| 155 | "Test `if-let' with truthy bindings." | ||
| 156 | (should (equal | ||
| 157 | (if-let (a 1) | ||
| 158 | a | ||
| 159 | "no") | ||
| 160 | 1)) | ||
| 161 | (should (equal | ||
| 162 | (if-let ((a 1) (b 2) (c 3)) | ||
| 163 | (list a b c) | ||
| 164 | "no") | ||
| 165 | (list 1 2 3)))) | ||
| 166 | |||
| 167 | (ert-deftest subr-x-test-if-let-false () | ||
| 168 | "Test `if-let' with falsey bindings." | ||
| 169 | (should (equal | ||
| 170 | (if-let (a nil) | ||
| 171 | (list a b c) | ||
| 172 | "no") | ||
| 173 | "no")) | ||
| 174 | (should (equal | ||
| 175 | (if-let ((a nil) (b 2) (c 3)) | ||
| 176 | (list a b c) | ||
| 177 | "no") | ||
| 178 | "no")) | ||
| 179 | (should (equal | ||
| 180 | (if-let ((a 1) (b nil) (c 3)) | ||
| 181 | (list a b c) | ||
| 182 | "no") | ||
| 183 | "no")) | ||
| 184 | (should (equal | ||
| 185 | (if-let ((a 1) (b 2) (c nil)) | ||
| 186 | (list a b c) | ||
| 187 | "no") | ||
| 188 | "no")) | ||
| 189 | (should (equal | ||
| 190 | (if-let (z (a 1) (b 2) (c 3)) | ||
| 191 | (list a b c) | ||
| 192 | "no") | ||
| 193 | "no")) | ||
| 194 | (should (equal | ||
| 195 | (if-let ((a 1) (b 2) (c 3) d) | ||
| 196 | (list a b c) | ||
| 197 | "no") | ||
| 198 | "no"))) | ||
| 199 | |||
| 200 | (ert-deftest subr-x-test-if-let-bound-references () | ||
| 201 | "Test `if-let' bindings can refer to already bound symbols." | ||
| 202 | (should (equal | ||
| 203 | (if-let ((a (1+ 0)) (b (1+ a)) (c (1+ b))) | ||
| 204 | (list a b c) | ||
| 205 | "no") | ||
| 206 | (list 1 2 3)))) | ||
| 207 | |||
| 208 | (ert-deftest subr-x-test-if-let-and-lazyness-is-preserved () | ||
| 209 | "Test `if-let' respects `and' lazyness." | ||
| 210 | (let (a-called b-called c-called) | ||
| 211 | (should (equal | ||
| 212 | (if-let ((a nil) | ||
| 213 | (b (setq b-called t)) | ||
| 214 | (c (setq c-called t))) | ||
| 215 | "yes" | ||
| 216 | (list a-called b-called c-called)) | ||
| 217 | (list nil nil nil)))) | ||
| 218 | (let (a-called b-called c-called) | ||
| 219 | (should (equal | ||
| 220 | (if-let ((a (setq a-called t)) | ||
| 221 | (b nil) | ||
| 222 | (c (setq c-called t))) | ||
| 223 | "yes" | ||
| 224 | (list a-called b-called c-called)) | ||
| 225 | (list t nil nil)))) | ||
| 226 | (let (a-called b-called c-called) | ||
| 227 | (should (equal | ||
| 228 | (if-let ((a (setq a-called t)) | ||
| 229 | (b (setq b-called t)) | ||
| 230 | (c nil) | ||
| 231 | (d (setq c-called t))) | ||
| 232 | "yes" | ||
| 233 | (list a-called b-called c-called)) | ||
| 234 | (list t t nil))))) | ||
| 235 | |||
| 236 | |||
| 237 | ;; when-let tests | ||
| 238 | |||
| 239 | (ert-deftest subr-x-test-when-let-body-expansion () | ||
| 240 | "Test body allows for multiple sexps wrapping with progn." | ||
| 241 | (should (equal | ||
| 242 | (macroexpand | ||
| 243 | '(when-let (a 1) | ||
| 244 | (message "opposite") | ||
| 245 | (- a))) | ||
| 246 | '(let* ((a (and t 1))) | ||
| 247 | (if a | ||
| 248 | (progn | ||
| 249 | (message "opposite") | ||
| 250 | (- a))))))) | ||
| 251 | |||
| 252 | (ert-deftest subr-x-test-when-let-single-binding-expansion () | ||
| 253 | "Test single bindings are expanded properly." | ||
| 254 | (should (equal | ||
| 255 | (macroexpand | ||
| 256 | '(when-let (a 1) | ||
| 257 | (- a))) | ||
| 258 | '(let* ((a (and t 1))) | ||
| 259 | (if a | ||
| 260 | (- a))))) | ||
| 261 | (should (equal | ||
| 262 | (macroexpand | ||
| 263 | '(when-let (a) | ||
| 264 | (- a))) | ||
| 265 | '(let* ((a (and t nil))) | ||
| 266 | (if a | ||
| 267 | (- a)))))) | ||
| 268 | |||
| 269 | (ert-deftest subr-x-test-when-let-single-symbol-expansion () | ||
| 270 | "Test single symbol bindings are expanded properly." | ||
| 271 | (should (equal | ||
| 272 | (macroexpand | ||
| 273 | '(when-let (a) | ||
| 274 | (- a))) | ||
| 275 | '(let* ((a (and t nil))) | ||
| 276 | (if a | ||
| 277 | (- a))))) | ||
| 278 | (should (equal | ||
| 279 | (macroexpand | ||
| 280 | '(when-let (a b c) | ||
| 281 | (- a))) | ||
| 282 | '(let* ((a (and t nil)) | ||
| 283 | (b (and a nil)) | ||
| 284 | (c (and b nil))) | ||
| 285 | (if c | ||
| 286 | (- a))))) | ||
| 287 | (should (equal | ||
| 288 | (macroexpand | ||
| 289 | '(when-let (a (b 2) c) | ||
| 290 | (- a))) | ||
| 291 | '(let* ((a (and t nil)) | ||
| 292 | (b (and a 2)) | ||
| 293 | (c (and b nil))) | ||
| 294 | (if c | ||
| 295 | (- a)))))) | ||
| 296 | |||
| 297 | (ert-deftest subr-x-test-when-let-nil-related-expansion () | ||
| 298 | "Test nil is processed properly." | ||
| 299 | (should (equal | ||
| 300 | (macroexpand | ||
| 301 | '(when-let (nil) | ||
| 302 | (- a))) | ||
| 303 | '(let* ((nil (and t nil))) | ||
| 304 | (if nil | ||
| 305 | (- a))))) | ||
| 306 | (should (equal | ||
| 307 | (macroexpand | ||
| 308 | '(when-let ((nil)) | ||
| 309 | (- a))) | ||
| 310 | '(let* ((nil (and t nil))) | ||
| 311 | (if nil | ||
| 312 | (- a))))) | ||
| 313 | (should (equal | ||
| 314 | (macroexpand | ||
| 315 | '(when-let ((a 1) (nil) (b 2)) | ||
| 316 | (- a))) | ||
| 317 | '(let* ((a (and t 1)) | ||
| 318 | (nil (and a nil)) | ||
| 319 | (b (and nil 2))) | ||
| 320 | (if b | ||
| 321 | (- a))))) | ||
| 322 | (should (equal | ||
| 323 | (macroexpand | ||
| 324 | '(when-let ((a 1) nil (b 2)) | ||
| 325 | (- a))) | ||
| 326 | '(let* ((a (and t 1)) | ||
| 327 | (nil (and a nil)) | ||
| 328 | (b (and nil 2))) | ||
| 329 | (if b | ||
| 330 | (- a)))))) | ||
| 331 | |||
| 332 | (ert-deftest subr-x-test-when-let-malformed-binding () | ||
| 333 | "Test malformed bindings trigger errors." | ||
| 334 | (should-error (macroexpand | ||
| 335 | '(when-let (_ (a 1 1) (b 2) (c 3) d) | ||
| 336 | (- a))) | ||
| 337 | :type 'error) | ||
| 338 | (should-error (macroexpand | ||
| 339 | '(when-let (_ (a 1) (b 2 2) (c 3) d) | ||
| 340 | (- a))) | ||
| 341 | :type 'error) | ||
| 342 | (should-error (macroexpand | ||
| 343 | '(when-let (_ (a 1) (b 2) (c 3 3) d) | ||
| 344 | (- a))) | ||
| 345 | :type 'error) | ||
| 346 | (should-error (macroexpand | ||
| 347 | '(when-let ((a 1 1)) | ||
| 348 | (- a))) | ||
| 349 | :type 'error)) | ||
| 350 | |||
| 351 | (ert-deftest subr-x-test-when-let-true () | ||
| 352 | "Test `when-let' with truthy bindings." | ||
| 353 | (should (equal | ||
| 354 | (when-let (a 1) | ||
| 355 | a) | ||
| 356 | 1)) | ||
| 357 | (should (equal | ||
| 358 | (when-let ((a 1) (b 2) (c 3)) | ||
| 359 | (list a b c)) | ||
| 360 | (list 1 2 3)))) | ||
| 361 | |||
| 362 | (ert-deftest subr-x-test-when-let-false () | ||
| 363 | "Test `when-let' with falsey bindings." | ||
| 364 | (should (equal | ||
| 365 | (when-let (a nil) | ||
| 366 | (list a b c) | ||
| 367 | "no") | ||
| 368 | nil)) | ||
| 369 | (should (equal | ||
| 370 | (when-let ((a nil) (b 2) (c 3)) | ||
| 371 | (list a b c) | ||
| 372 | "no") | ||
| 373 | nil)) | ||
| 374 | (should (equal | ||
| 375 | (when-let ((a 1) (b nil) (c 3)) | ||
| 376 | (list a b c) | ||
| 377 | "no") | ||
| 378 | nil)) | ||
| 379 | (should (equal | ||
| 380 | (when-let ((a 1) (b 2) (c nil)) | ||
| 381 | (list a b c) | ||
| 382 | "no") | ||
| 383 | nil)) | ||
| 384 | (should (equal | ||
| 385 | (when-let (z (a 1) (b 2) (c 3)) | ||
| 386 | (list a b c) | ||
| 387 | "no") | ||
| 388 | nil)) | ||
| 389 | (should (equal | ||
| 390 | (when-let ((a 1) (b 2) (c 3) d) | ||
| 391 | (list a b c) | ||
| 392 | "no") | ||
| 393 | nil))) | ||
| 394 | |||
| 395 | (ert-deftest subr-x-test-when-let-bound-references () | ||
| 396 | "Test `when-let' bindings can refer to already bound symbols." | ||
| 397 | (should (equal | ||
| 398 | (when-let ((a (1+ 0)) (b (1+ a)) (c (1+ b))) | ||
| 399 | (list a b c)) | ||
| 400 | (list 1 2 3)))) | ||
| 401 | |||
| 402 | (ert-deftest subr-x-test-when-let-and-lazyness-is-preserved () | ||
| 403 | "Test `when-let' respects `and' lazyness." | ||
| 404 | (let (a-called b-called c-called) | ||
| 405 | (should (equal | ||
| 406 | (progn | ||
| 407 | (when-let ((a nil) | ||
| 408 | (b (setq b-called t)) | ||
| 409 | (c (setq c-called t))) | ||
| 410 | "yes") | ||
| 411 | (list a-called b-called c-called)) | ||
| 412 | (list nil nil nil)))) | ||
| 413 | (let (a-called b-called c-called) | ||
| 414 | (should (equal | ||
| 415 | (progn | ||
| 416 | (when-let ((a (setq a-called t)) | ||
| 417 | (b nil) | ||
| 418 | (c (setq c-called t))) | ||
| 419 | "yes") | ||
| 420 | (list a-called b-called c-called)) | ||
| 421 | (list t nil nil)))) | ||
| 422 | (let (a-called b-called c-called) | ||
| 423 | (should (equal | ||
| 424 | (progn | ||
| 425 | (when-let ((a (setq a-called t)) | ||
| 426 | (b (setq b-called t)) | ||
| 427 | (c nil) | ||
| 428 | (d (setq c-called t))) | ||
| 429 | "yes") | ||
| 430 | (list a-called b-called c-called)) | ||
| 431 | (list t t nil))))) | ||
| 432 | |||
| 433 | |||
| 434 | ;; Thread first tests | ||
| 435 | |||
| 436 | (ert-deftest subr-x-test-thread-first-no-forms () | ||
| 437 | "Test `thread-first' with no forms expands to the first form." | ||
| 438 | (should (equal (macroexpand '(thread-first 5)) 5)) | ||
| 439 | (should (equal (macroexpand '(thread-first (+ 1 2))) '(+ 1 2)))) | ||
| 440 | |||
| 441 | (ert-deftest subr-x-test-thread-first-function-names-are-threaded () | ||
| 442 | "Test `thread-first' wraps single function names." | ||
| 443 | (should (equal (macroexpand | ||
| 444 | '(thread-first 5 | ||
| 445 | -)) | ||
| 446 | '(- 5))) | ||
| 447 | (should (equal (macroexpand | ||
| 448 | '(thread-first (+ 1 2) | ||
| 449 | -)) | ||
| 450 | '(- (+ 1 2))))) | ||
| 451 | |||
| 452 | (ert-deftest subr-x-test-thread-first-expansion () | ||
| 453 | "Test `thread-first' expands correctly." | ||
| 454 | (should (equal | ||
| 455 | (macroexpand '(thread-first | ||
| 456 | 5 | ||
| 457 | (+ 20) | ||
| 458 | (/ 25) | ||
| 459 | - | ||
| 460 | (+ 40))) | ||
| 461 | '(+ (- (/ (+ 5 20) 25)) 40)))) | ||
| 462 | |||
| 463 | (ert-deftest subr-x-test-thread-first-examples () | ||
| 464 | "Test several `thread-first' examples." | ||
| 465 | (should (equal (thread-first (+ 40 2)) 42)) | ||
| 466 | (should (equal (thread-first | ||
| 467 | 5 | ||
| 468 | (+ 20) | ||
| 469 | (/ 25) | ||
| 470 | - | ||
| 471 | (+ 40)) 39)) | ||
| 472 | (should (equal (thread-first | ||
| 473 | "this-is-a-string" | ||
| 474 | (split-string "-") | ||
| 475 | (nbutlast 2) | ||
| 476 | (append (list "good"))) | ||
| 477 | (list "this" "is" "good")))) | ||
| 478 | |||
| 479 | ;; Thread last tests | ||
| 480 | |||
| 481 | (ert-deftest subr-x-test-thread-last-no-forms () | ||
| 482 | "Test `thread-last' with no forms expands to the first form." | ||
| 483 | (should (equal (macroexpand '(thread-last 5)) 5)) | ||
| 484 | (should (equal (macroexpand '(thread-last (+ 1 2))) '(+ 1 2)))) | ||
| 485 | |||
| 486 | (ert-deftest subr-x-test-thread-last-function-names-are-threaded () | ||
| 487 | "Test `thread-last' wraps single function names." | ||
| 488 | (should (equal (macroexpand | ||
| 489 | '(thread-last 5 | ||
| 490 | -)) | ||
| 491 | '(- 5))) | ||
| 492 | (should (equal (macroexpand | ||
| 493 | '(thread-last (+ 1 2) | ||
| 494 | -)) | ||
| 495 | '(- (+ 1 2))))) | ||
| 496 | |||
| 497 | (ert-deftest subr-x-test-thread-last-expansion () | ||
| 498 | "Test `thread-last' expands correctly." | ||
| 499 | (should (equal | ||
| 500 | (macroexpand '(thread-last | ||
| 501 | 5 | ||
| 502 | (+ 20) | ||
| 503 | (/ 25) | ||
| 504 | - | ||
| 505 | (+ 40))) | ||
| 506 | '(+ 40 (- (/ 25 (+ 20 5))))))) | ||
| 507 | |||
| 508 | (ert-deftest subr-x-test-thread-last-examples () | ||
| 509 | "Test several `thread-last' examples." | ||
| 510 | (should (equal (thread-last (+ 40 2)) 42)) | ||
| 511 | (should (equal (thread-last | ||
| 512 | 5 | ||
| 513 | (+ 20) | ||
| 514 | (/ 25) | ||
| 515 | - | ||
| 516 | (+ 40)) 39)) | ||
| 517 | (should (equal (thread-last | ||
| 518 | (list 1 -2 3 -4 5) | ||
| 519 | (mapcar #'abs) | ||
| 520 | (cl-reduce #'+) | ||
| 521 | (format "abs sum is: %s")) | ||
| 522 | "abs sum is: 15"))) | ||
| 523 | |||
| 524 | |||
| 525 | (provide 'subr-x-tests) | ||
| 526 | ;;; subr-x-tests.el ends here | ||
diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el index b010ab467f6..864a43d638f 100644 --- a/test/automated/tramp-tests.el +++ b/test/automated/tramp-tests.el | |||
| @@ -116,18 +116,15 @@ shall not contain a timeout." | |||
| 116 | `(let ((tramp-verbose ,verbose) | 116 | `(let ((tramp-verbose ,verbose) |
| 117 | (tramp-message-show-message t) | 117 | (tramp-message-show-message t) |
| 118 | (tramp-debug-on-error t)) | 118 | (tramp-debug-on-error t)) |
| 119 | (condition-case err | 119 | (unwind-protect |
| 120 | (progn ,@body) | 120 | (progn ,@body) |
| 121 | (ert-test-skipped | 121 | (when (> tramp-verbose 3) |
| 122 | (signal (car err) (cdr err))) | 122 | (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil |
| 123 | ((error quit) | 123 | (with-current-buffer (tramp-get-connection-buffer v) |
| 124 | (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil | 124 | (message "%s" (buffer-string))) |
| 125 | (with-current-buffer (tramp-get-connection-buffer v) | 125 | (with-current-buffer |
| 126 | (message "%s" (buffer-string))) | 126 | (tramp-get-debug-buffer v) |
| 127 | (with-current-buffer (tramp-get-debug-buffer v) | 127 | (message "%s" (buffer-string)))))))) |
| 128 | (message "%s" (buffer-string)))) | ||
| 129 | (message "%s" err) | ||
| 130 | (signal (car err) (cdr err)))))) | ||
| 131 | 128 | ||
| 132 | (ert-deftest tramp-test00-availability () | 129 | (ert-deftest tramp-test00-availability () |
| 133 | "Test availability of Tramp functions." | 130 | "Test availability of Tramp functions." |