mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Decouple require-theme from load-theme
* lisp/custom.el (require-theme): Refashion after 'require', as a function for loading only named features. Do not call load-theme (bug#45068). * etc/NEWS: Update its announcement accordingly. * doc/lispref/customize.texi (Custom Themes): Document it. * etc/themes/modus-operandi-theme.el: * etc/themes/modus-vivendi-theme.el: Remove redundant calls to 'provide'. * test/lisp/custom-tests.el (custom-tests--with-temp-dir): New macro. (custom-theme--load-path): Use it. (custom-tests-require-theme): New test.
This commit is contained in:
parent
358c6c9b95
commit
8e759d60cc
6 changed files with 144 additions and 84 deletions
|
|
@ -24,70 +24,108 @@
|
|||
|
||||
(require 'wid-edit)
|
||||
(require 'cus-edit)
|
||||
(require 'seq) ; For `seq-find'.
|
||||
|
||||
(defmacro custom-tests--with-temp-dir (&rest body)
|
||||
"Eval BODY with `temporary-file-directory' bound to a fresh directory.
|
||||
Ensure the directory is recursively deleted after the fact."
|
||||
(declare (debug t) (indent 0))
|
||||
(let ((dir (make-symbol "dir")))
|
||||
`(let ((,dir (file-name-as-directory (make-temp-file "custom-tests-" t))))
|
||||
(unwind-protect
|
||||
(let ((temporary-file-directory ,dir))
|
||||
,@body)
|
||||
(delete-directory ,dir t)))))
|
||||
|
||||
(ert-deftest custom-theme--load-path ()
|
||||
"Test `custom-theme--load-path' behavior."
|
||||
(let ((tmpdir (file-name-as-directory (make-temp-file "custom-tests-" t))))
|
||||
(unwind-protect
|
||||
;; Create all temporary files under the same deletable parent.
|
||||
(let ((temporary-file-directory tmpdir))
|
||||
;; Path is empty.
|
||||
(let ((custom-theme-load-path ()))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(custom-tests--with-temp-dir
|
||||
;; Path is empty.
|
||||
(let ((custom-theme-load-path ()))
|
||||
(should (null (custom-theme--load-path))))
|
||||
|
||||
;; Path comprises non-existent file.
|
||||
(let* ((name (make-temp-name tmpdir))
|
||||
(custom-theme-load-path (list name)))
|
||||
(should (not (file-exists-p name)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
;; Path comprises non-existent file.
|
||||
(let* ((name (make-temp-name temporary-file-directory))
|
||||
(custom-theme-load-path (list name)))
|
||||
(should (not (file-exists-p name)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
|
||||
;; Path comprises existing file.
|
||||
(let* ((file (make-temp-file "file"))
|
||||
(custom-theme-load-path (list file)))
|
||||
(should (file-exists-p file))
|
||||
(should (not (file-directory-p file)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
;; Path comprises existing file.
|
||||
(let* ((file (make-temp-file "file"))
|
||||
(custom-theme-load-path (list file)))
|
||||
(should (file-exists-p file))
|
||||
(should (not (file-directory-p file)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
|
||||
;; Path comprises existing directory.
|
||||
(let* ((dir (make-temp-file "dir" t))
|
||||
(custom-theme-load-path (list dir)))
|
||||
(should (file-directory-p dir))
|
||||
(should (equal (custom-theme--load-path) custom-theme-load-path)))
|
||||
;; Path comprises existing directory.
|
||||
(let* ((dir (make-temp-file "dir" t))
|
||||
(custom-theme-load-path (list dir)))
|
||||
(should (file-directory-p dir))
|
||||
(should (equal (custom-theme--load-path) custom-theme-load-path)))
|
||||
|
||||
;; Expand `custom-theme-directory' path element.
|
||||
(let ((custom-theme-load-path '(custom-theme-directory)))
|
||||
(let ((custom-theme-directory (make-temp-name tmpdir)))
|
||||
(should (not (file-exists-p custom-theme-directory)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(let ((custom-theme-directory (make-temp-file "file")))
|
||||
(should (file-exists-p custom-theme-directory))
|
||||
(should (not (file-directory-p custom-theme-directory)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(let ((custom-theme-directory (make-temp-file "dir" t)))
|
||||
(should (file-directory-p custom-theme-directory))
|
||||
(should (equal (custom-theme--load-path)
|
||||
(list custom-theme-directory)))))
|
||||
;; Expand `custom-theme-directory' path element.
|
||||
(let ((custom-theme-load-path '(custom-theme-directory)))
|
||||
(let ((custom-theme-directory (make-temp-name temporary-file-directory)))
|
||||
(should (not (file-exists-p custom-theme-directory)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(let ((custom-theme-directory (make-temp-file "file")))
|
||||
(should (file-exists-p custom-theme-directory))
|
||||
(should (not (file-directory-p custom-theme-directory)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(let ((custom-theme-directory (make-temp-file "dir" t)))
|
||||
(should (file-directory-p custom-theme-directory))
|
||||
(should (equal (custom-theme--load-path)
|
||||
(list custom-theme-directory)))))
|
||||
|
||||
;; Expand t path element.
|
||||
(let ((custom-theme-load-path '(t)))
|
||||
(let ((data-directory (make-temp-name tmpdir)))
|
||||
(should (not (file-exists-p data-directory)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(let ((data-directory tmpdir)
|
||||
(themedir (expand-file-name "themes" tmpdir)))
|
||||
(should (not (file-exists-p themedir)))
|
||||
(should (null (custom-theme--load-path)))
|
||||
(with-temp-file themedir)
|
||||
(should (file-exists-p themedir))
|
||||
(should (not (file-directory-p themedir)))
|
||||
(should (null (custom-theme--load-path)))
|
||||
(delete-file themedir)
|
||||
(make-directory themedir)
|
||||
(should (file-directory-p themedir))
|
||||
(should (equal (custom-theme--load-path) (list themedir))))))
|
||||
(when (file-directory-p tmpdir)
|
||||
(delete-directory tmpdir t)))))
|
||||
;; Expand t path element.
|
||||
(let ((custom-theme-load-path '(t)))
|
||||
(let ((data-directory (make-temp-name temporary-file-directory)))
|
||||
(should (not (file-exists-p data-directory)))
|
||||
(should (null (custom-theme--load-path))))
|
||||
(let ((data-directory temporary-file-directory)
|
||||
(themedir (expand-file-name "themes" temporary-file-directory)))
|
||||
(should (not (file-exists-p themedir)))
|
||||
(should (null (custom-theme--load-path)))
|
||||
(with-temp-file themedir)
|
||||
(should (file-exists-p themedir))
|
||||
(should (not (file-directory-p themedir)))
|
||||
(should (null (custom-theme--load-path)))
|
||||
(delete-file themedir)
|
||||
(make-directory themedir)
|
||||
(should (file-directory-p themedir))
|
||||
(should (equal (custom-theme--load-path) (list themedir)))))))
|
||||
|
||||
(ert-deftest custom-tests-require-theme ()
|
||||
"Test `require-theme'."
|
||||
(custom-tests--with-temp-dir
|
||||
(let* ((default-directory temporary-file-directory)
|
||||
(custom-theme-load-path (list default-directory))
|
||||
(load-path ()))
|
||||
;; Generate some `.el' and `.elc' files.
|
||||
(with-temp-file "custom-tests--a.el"
|
||||
(insert "(provide 'custom-tests--a)"))
|
||||
(make-empty-file "custom-tests--b.el")
|
||||
(with-temp-file "custom-tests--b.elc"
|
||||
(byte-compile-insert-header nil (current-buffer))
|
||||
(insert "(provide 'custom-tests--b)"))
|
||||
(make-empty-file "custom-tests--c.el")
|
||||
(with-temp-file "custom-tests--d.elc"
|
||||
(byte-compile-insert-header nil (current-buffer)))
|
||||
;; Load them.
|
||||
(dolist (feature '(a b c d e))
|
||||
(should-not (featurep (intern (format "custom-tests--%s" feature)))))
|
||||
(should (eq (require-theme 'custom-tests--a) 'custom-tests--a))
|
||||
(delete-file "custom-tests--a.el")
|
||||
(dolist (feature '(custom-tests--a custom-tests--b))
|
||||
(should (eq (require-theme feature) feature))
|
||||
(should (featurep feature)))
|
||||
(dolist (feature '(custom-tests--c custom-tests--d))
|
||||
(dolist (noerror '(nil t))
|
||||
(let ((err (should-error (require-theme feature noerror))))
|
||||
(should (string-search "failed to provide feature" (cadr err))))))
|
||||
(should-error (require-theme 'custom-tests--e) :type 'file-missing)
|
||||
(should-not (require-theme 'custom-tests--e t))
|
||||
(dolist (feature '(custom-tests--c custom-tests--d custom-tests--e))
|
||||
(should-not (featurep feature))))))
|
||||
|
||||
(defcustom custom--test-user-option 'foo
|
||||
"User option for test."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue