mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 03:13:24 +00:00

* test/lisp/emacs-lisp/bytecomp-tests.el (bytecomp-reify-function): * test/lisp/emacs-lisp/cl-extra-tests.el (cl-getf): * test/lisp/emacs-lisp/cl-macs-tests.el (cl-macs-loop-for-as-arith-order-side-effects) (cl-macs-loop-for-as-equals-then, cl-macs-loop-do, cl-macs-loop-finally) (cl-macs-loop-in-ref, cl-macs-loop-being-elements-of-ref) (cl-macs-test--symbol-macrolet, cl-the): * test/lisp/emacs-lisp/cl-seq-tests.el (cl-lib-test-remove) (cl-lib-test-remove-if-not): * test/lisp/emacs-lisp/edebug-resources/edebug-test-code.el (edebug-test-code-range): * test/lisp/emacs-lisp/edebug-tests.el (edebug-tests-deduplicate): * test/lisp/emacs-lisp/generator-tests.el (cps-while-incf): (cps-test-iter-cleanup-once-only): * test/lisp/emacs-lisp/hierarchy-tests.el (hierarchy-labelfn-button-if-does-not-button-unless-condition) (hierarchy-labelfn-button-if-does-button-when-condition): * test/lisp/emacs-lisp/let-alist-tests.el (let-alist-evaluate-once): * test/lisp/emacs-lisp/lisp-mode-tests.el (indent-sexp, lisp-indent-region): * test/lisp/emacs-lisp/map-tests.el (test-map-elt-gv) (test-setf-map-with-function): * test/lisp/emacs-lisp/multisession-tests.el (multi-test-sqlite-simple) (multi-test-sqlite-busy, multi-test-files-simple) (multi-test-files-busy): * test/lisp/emacs-lisp/oclosure-tests.el (oclosure-test, oclosure-test-mutate): * test/lisp/emacs-lisp/track-changes-tests.el (track-changes-tests--random): * test/lisp/files-tests.el (files-tests--with-buffer-offer-save): * test/lisp/net/shr-tests.el (shr-test/zoom-image): * test/lisp/replace-tests.el (replace-tests-with-undo): * test/src/buffer-tests.el (test-overlay-randomly): * test/src/data-tests.el (test-bool-vector-bv-from-hex-string): * test/src/fns-tests.el (fns-tests-sort): * test/src/json-tests.el (json-insert/signal, json-insert/throw): * test/src/minibuf-tests.el (minibuf-tests--strings-to-symbol-alist) (minibuf-tests--strings-to-string-alist) (minibuf-tests--strings-to-string-hashtable) (minibuf-tests--strings-to-symbol-hashtable): * test/src/process-tests.el (make-process/file-handler/found): Prefer incf to cl-incf.
103 lines
3.8 KiB
EmacsLisp
103 lines
3.8 KiB
EmacsLisp
;;; let-alist.el --- tests for file handling. -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2012-2025 Free Software Foundation, Inc.
|
|
|
|
;; 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/>.
|
|
|
|
;;; Code:
|
|
|
|
(require 'ert)
|
|
(require 'cl-lib)
|
|
(require 'let-alist)
|
|
|
|
(ert-deftest let-alist-surface-test ()
|
|
"Tests basic macro expansion for `let-alist'."
|
|
(should
|
|
(equal '(let ((symbol data))
|
|
(let ((.test-one (cdr (assq 'test-one symbol)))
|
|
(.test-two (cdr (assq 'test-two symbol))))
|
|
(list .test-one .test-two
|
|
.test-two .test-two)))
|
|
(cl-letf (((symbol-function #'make-symbol) (lambda (_x) 'symbol)))
|
|
(macroexpand
|
|
'(let-alist data (list .test-one .test-two
|
|
.test-two .test-two))))))
|
|
(should
|
|
(equal
|
|
(let ((.external "ext")
|
|
(.external.too "et"))
|
|
(let-alist '((test-two . 0)
|
|
(test-three . 1)
|
|
(sublist . ((foo . 2)
|
|
(bar . 3))))
|
|
(list .test-one .test-two .test-three
|
|
.sublist.foo .sublist.bar
|
|
..external ..external.too)))
|
|
(list nil 0 1 2 3 "ext" "et"))))
|
|
|
|
(ert-deftest let-alist-cons ()
|
|
(should
|
|
(equal
|
|
(let ((.external "ext"))
|
|
(let-alist '((test-two . 0)
|
|
(test-three . 1)
|
|
(sublist . ((foo . 2)
|
|
(bar . 3))))
|
|
(list `(, .test-one . , .test-two)
|
|
.sublist.bar ..external)))
|
|
(list '(nil . 0) 3 "ext"))))
|
|
|
|
(defvar let-alist--test-counter 0
|
|
"Used to count number of times a function is called.")
|
|
|
|
(ert-deftest let-alist-evaluate-once ()
|
|
"Check that the alist argument is only evaluated once."
|
|
(let ((let-alist--test-counter 0))
|
|
(should
|
|
(equal
|
|
(let-alist (list
|
|
(cons 'test-two (incf let-alist--test-counter))
|
|
(cons 'test-three (incf let-alist--test-counter)))
|
|
(list .test-one .test-two .test-two .test-three .incf))
|
|
'(nil 1 1 2 nil)))))
|
|
|
|
(ert-deftest let-alist-remove-dot ()
|
|
"Remove first dot from symbol."
|
|
(should (equal (let-alist--remove-dot 'hi) 'hi))
|
|
(should (equal (let-alist--remove-dot '.hi) 'hi))
|
|
(should (equal (let-alist--remove-dot '..hi) '.hi)))
|
|
|
|
(ert-deftest let-alist-list-to-sexp ()
|
|
"Check that multiple dots are handled correctly."
|
|
(should (= 1 (eval (let-alist--list-to-sexp '(a b c d) ''((d (c (b (a . 1)))))) t)))
|
|
(should (equal (let-alist--access-sexp '.foo.bar.baz 'var)
|
|
'(cdr (assq 'baz (cdr (assq 'bar (cdr (assq 'foo var))))))))
|
|
(should (equal (let-alist--access-sexp '..foo.bar.baz 'var) '.foo.bar.baz)))
|
|
|
|
(ert-deftest let-alist--deep-dot-search--nested ()
|
|
"Check that nested `let-alist' forms don't generate spurious bindings.
|
|
See Bug#24641."
|
|
(should (equal (let-alist--deep-dot-search '(foo .bar (baz .qux)))
|
|
'((.bar . bar) (.qux . qux))))
|
|
(should (equal (let-alist--deep-dot-search '(foo .bar (let-alist .qux .baz)))
|
|
'((.bar . bar) (.qux . qux))))) ; no .baz
|
|
|
|
(ert-deftest let-alist--vectors ()
|
|
(should (equal (let-alist '((a . 1) (b . 2))
|
|
`[,(+ .a) ,(+ .a .b .b)])
|
|
[1 5])))
|
|
|
|
;;; let-alist-tests.el ends here
|