1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00
emacs/test/lisp/use-package/use-package-tests.el
2017-11-30 09:42:47 -08:00

241 lines
8.9 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; use-package-tests.el --- Tests for use-package.el
;; This program 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 2, or (at
;; your option) any later version.
;; This program 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; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;;
;;; Code:
(require 'ert)
(require 'use-package)
(ert-deftest use-package-test-recognize-function ()
(should (use-package--recognize-function 'sym))
(should (use-package--recognize-function #'sym))
(should (use-package--recognize-function (lambda () ...)))
(should (use-package--recognize-function '(lambda () ...)))
(should (use-package--recognize-function #'(lambda () ...)))
(should-not (use-package--recognize-function 1))
(should-not (use-package--recognize-function "Hello"))
(should-not (use-package--recognize-function '(nil . nil))))
(ert-deftest use-package-test-normalize-function ()
(should (equal (use-package--normalize-function 'sym) 'sym))
(should (equal (use-package--normalize-function #'sym) 'sym))
(should (equal (use-package--normalize-function (lambda () ...)) (lambda () ...)))
(should (equal (use-package--normalize-function '(lambda () ...)) (lambda () ...)))
(should (equal (use-package--normalize-function #'(lambda () ...)) (lambda () ...)))
(should (equal (use-package--normalize-function 1) 1))
(should (equal (use-package--normalize-function "Hello") "Hello"))
(should (equal (use-package--normalize-function '(nil . nil)) '(nil . nil))))
;; (ert-deftest use-package-test/:disabled ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:preface ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:pin ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:defer-install ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:ensure ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:if ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:when ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:unless ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:requires ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:load-path ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:no-require ()
;; (should (equal (macroexpand (use-package))
;; '())))
(ert-deftest use-package-test-normalize/:bind ()
(let ((good-values '(:map map-sym
("str" . sym) ("str" . "str")
([vec] . sym) ([vec] . "str"))))
(should (equal (use-package-normalize-binder
'foopkg :bind good-values)
good-values)))
(should-error (use-package-normalize-binder
'foopkg :bind '("foo")))
(should-error (use-package-normalize-binder
'foopkg :bind '("foo" . 99)))
(should-error (use-package-normalize-binder
'foopkg :bind '(99 . sym))))
;; (ert-deftest use-package-test/:bind ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:bind* ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:bind-keymap ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:bind-keymap* ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:interpreter ()
;; (should (equal (macroexpand (use-package))
;; '())))
(ert-deftest use-package-test-normalize/:mode ()
(should (equal (use-package-normalize-mode 'foopkg :mode '(".foo"))
'((".foo" . foopkg))))
(should (equal (use-package-normalize-mode 'foopkg :mode '(".foo" ".bar"))
'((".foo" . foopkg) (".bar" . foopkg))))
(should (equal (use-package-normalize-mode 'foopkg :mode '((".foo" ".bar")))
'((".foo" . foopkg) (".bar" . foopkg))))
(should (equal (use-package-normalize-mode 'foopkg :mode '((".foo")))
'((".foo" . foopkg))))
(should (equal (use-package-normalize-mode 'foopkg :mode '((".foo" . foo) (".bar" . bar)))
'((".foo" . foo) (".bar" . bar)))))
;; (ert-deftest use-package-test/:mode ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:magic ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:magic-fallback ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:commands ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:defines ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:functions ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:defer ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:hook ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:custom ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:custom-face ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:init ()
;; (should (equal (macroexpand (use-package))
;; '())))
(ert-deftest use-package-test/:after ()
(should (equal (macroexpand '(use-package foo :after bar))
'(eval-after-load 'bar
'(require 'foo nil t)))))
;; (ert-deftest use-package-test/:demand ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; (ert-deftest use-package-test/:config ()
;; (should (equal (macroexpand (use-package))
;; '())))
(ert-deftest use-package-test-normalize/:diminish ()
(should (equal (use-package-normalize-diminish 'foopkg :diminish nil)
'(foopkg-mode)))
(should (equal (use-package-normalize-diminish 'foopkg :diminish 'bar)
'(bar)))
(should (equal (use-package-normalize-diminish 'foopkg :diminish "bar")
'((foopkg-mode . "bar"))))
(should (equal (use-package-normalize-diminish 'foopkg :diminish 'foo-mode)
'(foo-mode)))
(should (equal (use-package-normalize-diminish 'foopkg :diminish '(foo . "bar"))
'((foo . "bar")))))
;; (ert-deftest use-package-test/:diminish ()
;; (should (equal (macroexpand (use-package))
;; '())))
(ert-deftest use-package-test-normalize/:delight ()
(should (equal `((foo-mode nil foo))
(use-package-normalize/:delight 'foo :delight nil)))
(should (equal `((foo-mode nil foo-mode))
(use-package-normalize/:delight 'foo-mode :delight nil)))
(should (equal `((bar-mode nil foo))
(use-package-normalize/:delight 'foo :delight '(bar-mode))))
(should (equal `((bar-mode nil :major))
(use-package-normalize/:delight 'foo :delight '((bar-mode nil :major)))))
(should (equal `((foo-mode "abc" foo))
(use-package-normalize/:delight 'foo :delight '("abc"))))
(should (equal `((foo-mode (:eval 1) foo))
(use-package-normalize/:delight 'foo :delight '('(:eval 1)))))
(should (equal `((a-mode nil foo)
(b-mode " b" foo))
(use-package-normalize/:delight 'foo :delight '((a-mode)
(b-mode " b")))))
(should-error (use-package-normalize/:delight 'foo :delight '((:eval 1)))))
;; (ert-deftest use-package-test/:delight ()
;; (should (equal (macroexpand (use-package))
;; '())))
;; Local Variables:
;; indent-tabs-mode: nil
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:
;;; use-package-tests.el ends here