You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1095 lines
50 KiB
1095 lines
50 KiB
;;; hydra-test.el --- Tests for Hydra |
|
|
|
;; Copyright (C) 2015 Free Software Foundation, Inc. |
|
|
|
;; Author: Oleh Krehel |
|
|
|
;; 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 <http://www.gnu.org/licenses/>. |
|
|
|
;;; Commentary: |
|
;; |
|
|
|
;;; Code: |
|
|
|
(require 'ert) |
|
|
|
(ert-deftest hydra-red-error () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-error (global-map "M-g") |
|
"error" |
|
("h" first-error "first") |
|
("j" next-error "next") |
|
("k" previous-error "prev") |
|
("SPC" hydra-repeat "rep" :bind nil))) |
|
'(progn |
|
(defun hydra-error/first-error nil "Create a hydra with a \"M-g\" body and the heads: |
|
|
|
\"h\": `first-error', |
|
\"j\": `next-error', |
|
\"k\": `previous-error', |
|
\"SPC\": `hydra-repeat' |
|
|
|
The body can be accessed via `hydra-error/body'. |
|
|
|
Call the head: `first-error'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function first-error))) |
|
((quit error) |
|
(message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-error/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(32 . hydra-repeat) |
|
(107 . hydra-error/previous-error) |
|
(106 . hydra-error/next-error) |
|
(104 . hydra-error/first-error) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(defun hydra-error/next-error nil "Create a hydra with a \"M-g\" body and the heads: |
|
|
|
\"h\": `first-error', |
|
\"j\": `next-error', |
|
\"k\": `previous-error', |
|
\"SPC\": `hydra-repeat' |
|
|
|
The body can be accessed via `hydra-error/body'. |
|
|
|
Call the head: `next-error'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function next-error))) |
|
((quit error) |
|
(message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-error/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(32 . hydra-repeat) |
|
(107 . hydra-error/previous-error) |
|
(106 . hydra-error/next-error) |
|
(104 . hydra-error/first-error) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(defun hydra-error/previous-error nil "Create a hydra with a \"M-g\" body and the heads: |
|
|
|
\"h\": `first-error', |
|
\"j\": `next-error', |
|
\"k\": `previous-error', |
|
\"SPC\": `hydra-repeat' |
|
|
|
The body can be accessed via `hydra-error/body'. |
|
|
|
Call the head: `previous-error'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function previous-error))) |
|
((quit error) |
|
(message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-error/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(32 . hydra-repeat) |
|
(107 . hydra-error/previous-error) |
|
(106 . hydra-error/next-error) |
|
(104 . hydra-error/first-error) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(unless (keymapp (lookup-key global-map (kbd "M-g"))) |
|
(define-key global-map (kbd "M-g") |
|
nil)) |
|
(define-key global-map [134217831 104] |
|
(function hydra-error/first-error)) |
|
(define-key global-map [134217831 106] |
|
(function hydra-error/next-error)) |
|
(define-key global-map [134217831 107] |
|
(function hydra-error/previous-error)) |
|
(defun hydra-error/hint nil |
|
(if hydra-lv (lv-message (format #("error: [h]: first, [j]: next, [k]: prev, [SPC]: rep." 8 9 (face hydra-face-red) |
|
20 21 (face hydra-face-red) |
|
31 32 (face hydra-face-red) |
|
42 45 (face hydra-face-red)))) |
|
(message (format #("error: [h]: first, [j]: next, [k]: prev, [SPC]: rep." 8 9 (face hydra-face-red) |
|
20 21 (face hydra-face-red) |
|
31 32 (face hydra-face-red) |
|
42 45 (face hydra-face-red)))))) |
|
(defun hydra-error/body nil "Create a hydra with a \"M-g\" body and the heads: |
|
|
|
\"h\": `first-error', |
|
\"j\": `next-error', |
|
\"k\": `previous-error', |
|
\"SPC\": `hydra-repeat' |
|
|
|
The body can be accessed via `hydra-error/body'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(when hydra-is-helpful (hydra-error/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote |
|
(keymap (7 . hydra-keyboard-quit) |
|
(32 . hydra-repeat) |
|
(107 . hydra-error/previous-error) |
|
(106 . hydra-error/next-error) |
|
(104 . hydra-error/first-error) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))) |
|
(setq prefix-arg current-prefix-arg))))))) |
|
|
|
(ert-deftest hydra-blue-toggle () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-toggle (:color blue) |
|
"toggle" |
|
("t" toggle-truncate-lines "truncate") |
|
("f" auto-fill-mode "fill") |
|
("a" abbrev-mode "abbrev") |
|
("q" nil "cancel"))) |
|
'(progn |
|
(defun hydra-toggle/toggle-truncate-lines nil "Create a hydra with no body and the heads: |
|
|
|
\"t\": `toggle-truncate-lines', |
|
\"f\": `auto-fill-mode', |
|
\"a\": `abbrev-mode', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-toggle/body'. |
|
|
|
Call the head: `toggle-truncate-lines'." |
|
(interactive) |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable) |
|
(call-interactively (function toggle-truncate-lines)))) |
|
(defun hydra-toggle/auto-fill-mode nil "Create a hydra with no body and the heads: |
|
|
|
\"t\": `toggle-truncate-lines', |
|
\"f\": `auto-fill-mode', |
|
\"a\": `abbrev-mode', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-toggle/body'. |
|
|
|
Call the head: `auto-fill-mode'." |
|
(interactive) |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable) |
|
(call-interactively (function auto-fill-mode)))) |
|
(defun hydra-toggle/abbrev-mode nil "Create a hydra with no body and the heads: |
|
|
|
\"t\": `toggle-truncate-lines', |
|
\"f\": `auto-fill-mode', |
|
\"a\": `abbrev-mode', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-toggle/body'. |
|
|
|
Call the head: `abbrev-mode'." |
|
(interactive) |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable) |
|
(call-interactively (function abbrev-mode)))) |
|
(defun hydra-toggle/nil nil "Create a hydra with no body and the heads: |
|
|
|
\"t\": `toggle-truncate-lines', |
|
\"f\": `auto-fill-mode', |
|
\"a\": `abbrev-mode', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-toggle/body'. |
|
|
|
Call the head: `nil'." |
|
(interactive) |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable))) |
|
(defun hydra-toggle/hint nil |
|
(if hydra-lv (lv-message (format #("toggle: [t]: truncate, [f]: fill, [a]: abbrev, [q]: cancel." 9 10 (face hydra-face-blue) |
|
24 25 (face hydra-face-blue) |
|
35 36 (face hydra-face-blue) |
|
48 49 (face hydra-face-blue)))) |
|
(message (format #("toggle: [t]: truncate, [f]: fill, [a]: abbrev, [q]: cancel." 9 10 (face hydra-face-blue) |
|
24 25 (face hydra-face-blue) |
|
35 36 (face hydra-face-blue) |
|
48 49 (face hydra-face-blue)))))) |
|
(defun hydra-toggle/body nil "Create a hydra with no body and the heads: |
|
|
|
\"t\": `toggle-truncate-lines', |
|
\"f\": `auto-fill-mode', |
|
\"a\": `abbrev-mode', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-toggle/body'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(when hydra-is-helpful (hydra-toggle/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote |
|
(keymap (7 . hydra-keyboard-quit) |
|
(113 . hydra-toggle/nil) |
|
(97 . hydra-toggle/abbrev-mode) |
|
(102 . hydra-toggle/auto-fill-mode) |
|
(116 . hydra-toggle/toggle-truncate-lines) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))) |
|
(setq prefix-arg current-prefix-arg))))))) |
|
|
|
(ert-deftest hydra-amaranth-vi () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-vi |
|
(:pre |
|
(set-cursor-color "#e52b50") |
|
:post |
|
(set-cursor-color "#ffffff") |
|
:color amaranth) |
|
"vi" |
|
("j" next-line) |
|
("k" previous-line) |
|
("q" nil "quit"))) |
|
'(progn |
|
(defun hydra-vi/next-line nil "Create a hydra with no body and the heads: |
|
|
|
\"j\": `next-line', |
|
\"k\": `previous-line', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-vi/body'. |
|
|
|
Call the head: `next-line'." |
|
(interactive) |
|
(set-cursor-color "#e52b50") |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function next-line))) |
|
((quit error) (message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-vi/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote |
|
(keymap (t lambda nil (interactive) |
|
(message "An amaranth Hydra can only exit through a blue head") |
|
(hydra-set-transient-map hydra-curr-map t) |
|
(when hydra-is-helpful (unless hydra-lv (sit-for 0.8)) |
|
(hydra-vi/hint))) |
|
(7 . hydra-keyboard-quit) |
|
(113 . hydra-vi/nil) |
|
(107 . hydra-vi/previous-line) |
|
(106 . hydra-vi/next-line) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(defun hydra-vi/previous-line nil "Create a hydra with no body and the heads: |
|
|
|
\"j\": `next-line', |
|
\"k\": `previous-line', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-vi/body'. |
|
|
|
Call the head: `previous-line'." |
|
(interactive) |
|
(set-cursor-color "#e52b50") |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function previous-line))) |
|
((quit error) (message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-vi/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote |
|
(keymap (t lambda nil (interactive) |
|
(message "An amaranth Hydra can only exit through a blue head") |
|
(hydra-set-transient-map hydra-curr-map t) |
|
(when hydra-is-helpful (unless hydra-lv (sit-for 0.8)) |
|
(hydra-vi/hint))) |
|
(7 . hydra-keyboard-quit) |
|
(113 . hydra-vi/nil) |
|
(107 . hydra-vi/previous-line) |
|
(106 . hydra-vi/next-line) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(defun hydra-vi/nil nil "Create a hydra with no body and the heads: |
|
|
|
\"j\": `next-line', |
|
\"k\": `previous-line', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-vi/body'. |
|
|
|
Call the head: `nil'." |
|
(interactive) |
|
(set-cursor-color "#e52b50") |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable) |
|
(set-cursor-color "#ffffff"))) |
|
(defun hydra-vi/hint nil |
|
(if hydra-lv (lv-message (format #("vi: j, k, [q]: quit." 4 5 (face hydra-face-amaranth) |
|
7 8 (face hydra-face-amaranth) |
|
11 12 (face hydra-face-blue)))) |
|
(message (format #("vi: j, k, [q]: quit." 4 5 (face hydra-face-amaranth) |
|
7 8 (face hydra-face-amaranth) |
|
11 12 (face hydra-face-blue)))))) |
|
(defun hydra-vi/body nil "Create a hydra with no body and the heads: |
|
|
|
\"j\": `next-line', |
|
\"k\": `previous-line', |
|
\"q\": `nil' |
|
|
|
The body can be accessed via `hydra-vi/body'." |
|
(interactive) |
|
(set-cursor-color "#e52b50") |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(when hydra-is-helpful (hydra-vi/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote |
|
(keymap (t lambda nil (interactive) |
|
(message "An amaranth Hydra can only exit through a blue head") |
|
(hydra-set-transient-map hydra-curr-map t) |
|
(when hydra-is-helpful (unless hydra-lv (sit-for 0.8)) |
|
(hydra-vi/hint))) |
|
(7 . hydra-keyboard-quit) |
|
(113 . hydra-vi/nil) |
|
(107 . hydra-vi/previous-line) |
|
(106 . hydra-vi/next-line) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra--digit-argument) |
|
(48 . hydra--digit-argument) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))) |
|
(setq prefix-arg current-prefix-arg))))))) |
|
|
|
(ert-deftest defhydradio () |
|
(should (equal |
|
(macroexpand |
|
'(defhydradio hydra-test () |
|
(num "Num" [0 1 2 3 4 5 6 7 8 9 10]) |
|
(str "Str" ["foo" "bar" "baz"]))) |
|
'(progn |
|
(defvar hydra-test/num 0 |
|
"Num") |
|
(put 'hydra-test/num 'range [0 1 2 3 4 5 6 7 8 9 10]) |
|
(defun hydra-test/num () |
|
(hydra--cycle-radio 'hydra-test/num)) |
|
(defvar hydra-test/str "foo" |
|
"Str") |
|
(put 'hydra-test/str 'range ["foo" "bar" "baz"]) |
|
(defun hydra-test/str () |
|
(hydra--cycle-radio 'hydra-test/str)) |
|
(defvar hydra-test/names '(hydra-test/num hydra-test/str)))))) |
|
|
|
(ert-deftest hydra-blue-compat () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-toggle (:color blue) |
|
"toggle" |
|
("t" toggle-truncate-lines "truncate") |
|
("f" auto-fill-mode "fill") |
|
("a" abbrev-mode "abbrev") |
|
("q" nil "cancel"))) |
|
(macroexpand |
|
'(defhydra hydra-toggle (:exit t) |
|
"toggle" |
|
("t" toggle-truncate-lines "truncate") |
|
("f" auto-fill-mode "fill") |
|
("a" abbrev-mode "abbrev") |
|
("q" nil "cancel")))))) |
|
|
|
(ert-deftest hydra-amaranth-compat () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-vi |
|
(:pre |
|
(set-cursor-color "#e52b50") |
|
:post |
|
(set-cursor-color "#ffffff") |
|
:color amaranth) |
|
"vi" |
|
("j" next-line) |
|
("k" previous-line) |
|
("q" nil "quit"))) |
|
(macroexpand |
|
'(defhydra hydra-vi |
|
(:pre |
|
(set-cursor-color "#e52b50") |
|
:post |
|
(set-cursor-color "#ffffff") |
|
:foreign-keys warn) |
|
"vi" |
|
("j" next-line) |
|
("k" previous-line) |
|
("q" nil "quit")))))) |
|
|
|
(ert-deftest hydra-pink-compat () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-zoom (global-map "<f2>" |
|
:color pink) |
|
"zoom" |
|
("g" text-scale-increase "in") |
|
("l" text-scale-decrease "out") |
|
("q" nil "quit"))) |
|
(macroexpand |
|
'(defhydra hydra-zoom (global-map "<f2>" |
|
:foreign-keys run) |
|
"zoom" |
|
("g" text-scale-increase "in") |
|
("l" text-scale-decrease "out") |
|
("q" nil "quit")))))) |
|
|
|
(ert-deftest hydra-teal-compat () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-zoom (global-map "<f2>" |
|
:color teal) |
|
"zoom" |
|
("g" text-scale-increase "in") |
|
("l" text-scale-decrease "out") |
|
("q" nil "quit"))) |
|
(macroexpand |
|
'(defhydra hydra-zoom (global-map "<f2>" |
|
:foreign-keys warn |
|
:exit t) |
|
"zoom" |
|
("g" text-scale-increase "in") |
|
("l" text-scale-decrease "out") |
|
("q" nil "quit")))))) |
|
|
|
(ert-deftest hydra-format () |
|
(should (equal |
|
(let ((hydra-fontify-head-function |
|
'hydra-fontify-head-greyscale)) |
|
(hydra--format |
|
'hydra-toggle |
|
nil |
|
" |
|
_a_ abbrev-mode: %`abbrev-mode |
|
_d_ debug-on-error: %`debug-on-error |
|
_f_ auto-fill-mode: %`auto-fill-function |
|
" '(("a" abbrev-mode nil) |
|
("d" toggle-debug-on-error nil) |
|
("f" auto-fill-mode nil) |
|
("g" golden-ratio-mode nil) |
|
("t" toggle-truncate-lines nil) |
|
("w" whitespace-mode nil) |
|
("q" nil "quit")))) |
|
'(concat (format "%s abbrev-mode: %S |
|
%s debug-on-error: %S |
|
%s auto-fill-mode: %S |
|
" "{a}" abbrev-mode "{d}" debug-on-error "{f}" auto-fill-function) "[[q]]: quit")))) |
|
|
|
(ert-deftest hydra-format-with-sexp () |
|
(should (equal |
|
(let ((hydra-fontify-head-function |
|
'hydra-fontify-head-greyscale)) |
|
(hydra--format |
|
'hydra-toggle nil |
|
"\n_n_ narrow-or-widen-dwim %(progn (message \"checking\")(buffer-narrowed-p))asdf\n" |
|
'(("n" narrow-to-region nil) ("q" nil "cancel")))) |
|
'(concat (format "%s narrow-or-widen-dwim %Sasdf\n" |
|
"{n}" |
|
(progn |
|
(message "checking") |
|
(buffer-narrowed-p))) |
|
"[[q]]: cancel")))) |
|
|
|
(ert-deftest hydra-compat-colors-1 () |
|
(should (equal (hydra--head-color |
|
'("e" (message "Exiting now") "blue") |
|
'(nil nil :color blue)) |
|
'blue)) |
|
(should (equal (hydra--head-color |
|
'("c" (message "Continuing") "red" :color red) |
|
'(nil nil :color blue)) |
|
'red)) |
|
(should (equal (hydra--head-color |
|
'("e" (message "Exiting now") "blue") |
|
'(nil nil :exit t)) |
|
'blue)) |
|
(should (equal (hydra--head-color |
|
'("c" (message "Continuing") "red" :exit nil) |
|
'(nil nil :exit t)) |
|
'red)) |
|
(equal (hydra--head-color |
|
'("a" abbrev-mode nil) |
|
'(nil nil :color teal)) |
|
'teal) |
|
(equal (hydra--head-color |
|
'("a" abbrev-mode :exit nil) |
|
'(nil nil :color teal)) |
|
'amaranth)) |
|
|
|
(ert-deftest hydra-compat-colors-2 () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-test (:color amaranth) |
|
("a" fun-a) |
|
("b" fun-b :color blue) |
|
("c" fun-c :color blue) |
|
("d" fun-d :color blue) |
|
("e" fun-e :color blue) |
|
("f" fun-f :color blue))) |
|
(macroexpand |
|
'(defhydra hydra-test (:color teal) |
|
("a" fun-a :color red) |
|
("b" fun-b) |
|
("c" fun-c) |
|
("d" fun-d) |
|
("e" fun-e) |
|
("f" fun-f)))))) |
|
|
|
(ert-deftest hydra-compat-colors-3 () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-test () |
|
("a" fun-a) |
|
("b" fun-b :color blue) |
|
("c" fun-c :color blue) |
|
("d" fun-d :color blue) |
|
("e" fun-e :color blue) |
|
("f" fun-f :color blue))) |
|
(macroexpand |
|
'(defhydra hydra-test (:color blue) |
|
("a" fun-a :color red) |
|
("b" fun-b) |
|
("c" fun-c) |
|
("d" fun-d) |
|
("e" fun-e) |
|
("f" fun-f)))))) |
|
|
|
(ert-deftest hydra-compat-colors-4 () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-test () |
|
("a" fun-a) |
|
("b" fun-b :exit t) |
|
("c" fun-c :exit t) |
|
("d" fun-d :exit t) |
|
("e" fun-e :exit t) |
|
("f" fun-f :exit t))) |
|
(macroexpand |
|
'(defhydra hydra-test (:exit t) |
|
("a" fun-a :exit nil) |
|
("b" fun-b) |
|
("c" fun-c) |
|
("d" fun-d) |
|
("e" fun-e) |
|
("f" fun-f)))))) |
|
|
|
(ert-deftest hydra-zoom-duplicate-1 () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-zoom () |
|
"zoom" |
|
("r" (text-scale-set 0) "reset") |
|
("0" (text-scale-set 0) :bind nil :exit t) |
|
("1" (text-scale-set 0) nil :bind nil :exit t))) |
|
'(progn |
|
(defun hydra-zoom/lambda-r nil "Create a hydra with no body and the heads: |
|
|
|
\"r\": `(text-scale-set 0)', |
|
\"0\": `(text-scale-set 0)', |
|
\"1\": `(text-scale-set 0)' |
|
|
|
The body can be accessed via `hydra-zoom/body'. |
|
|
|
Call the head: `(text-scale-set 0)'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function (lambda nil (interactive) |
|
(text-scale-set 0))))) |
|
((quit error) |
|
(message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-zoom/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(114 . hydra-zoom/lambda-r) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra-zoom/lambda-0) |
|
(48 . hydra-zoom/lambda-0) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(defun hydra-zoom/lambda-0 nil "Create a hydra with no body and the heads: |
|
|
|
\"r\": `(text-scale-set 0)', |
|
\"0\": `(text-scale-set 0)', |
|
\"1\": `(text-scale-set 0)' |
|
|
|
The body can be accessed via `hydra-zoom/body'. |
|
|
|
Call the head: `(text-scale-set 0)'." |
|
(interactive) |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable) |
|
(call-interactively (function (lambda nil (interactive) |
|
(text-scale-set 0)))))) |
|
(defun hydra-zoom/hint nil |
|
(if hydra-lv (lv-message (format #("zoom: [r 0]: reset." 7 8 (face hydra-face-red) |
|
9 10 (face hydra-face-blue)))) |
|
(message (format #("zoom: [r 0]: reset." 7 8 (face hydra-face-red) |
|
9 10 (face hydra-face-blue)))))) |
|
(defun hydra-zoom/body nil "Create a hydra with no body and the heads: |
|
|
|
\"r\": `(text-scale-set 0)', |
|
\"0\": `(text-scale-set 0)', |
|
\"1\": `(text-scale-set 0)' |
|
|
|
The body can be accessed via `hydra-zoom/body'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(when hydra-is-helpful (hydra-zoom/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(114 . hydra-zoom/lambda-r) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra-zoom/lambda-0) |
|
(48 . hydra-zoom/lambda-0) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))) |
|
(setq prefix-arg current-prefix-arg))))))) |
|
|
|
(ert-deftest hydra-zoom-duplicate-2 () |
|
(should |
|
(equal |
|
(macroexpand |
|
'(defhydra hydra-zoom () |
|
"zoom" |
|
("r" (text-scale-set 0) "reset") |
|
("0" (text-scale-set 0) :bind nil :exit t) |
|
("1" (text-scale-set 0) nil :bind nil))) |
|
'(progn |
|
(defun hydra-zoom/lambda-r nil "Create a hydra with no body and the heads: |
|
|
|
\"r\": `(text-scale-set 0)', |
|
\"0\": `(text-scale-set 0)', |
|
\"1\": `(text-scale-set 0)' |
|
|
|
The body can be accessed via `hydra-zoom/body'. |
|
|
|
Call the head: `(text-scale-set 0)'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(condition-case err (prog1 t (call-interactively (function (lambda nil (interactive) |
|
(text-scale-set 0))))) |
|
((quit error) |
|
(message "%S" err) |
|
(unless hydra-lv (sit-for 0.8)) |
|
nil)) |
|
(when hydra-is-helpful (hydra-zoom/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(114 . hydra-zoom/lambda-r) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra-zoom/lambda-r) |
|
(48 . hydra-zoom/lambda-0) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))))) |
|
(defun hydra-zoom/lambda-0 nil "Create a hydra with no body and the heads: |
|
|
|
\"r\": `(text-scale-set 0)', |
|
\"0\": `(text-scale-set 0)', |
|
\"1\": `(text-scale-set 0)' |
|
|
|
The body can be accessed via `hydra-zoom/body'. |
|
|
|
Call the head: `(text-scale-set 0)'." |
|
(interactive) |
|
(hydra-disable) |
|
(hydra-cleanup) |
|
(catch (quote hydra-disable) |
|
(call-interactively (function (lambda nil (interactive) |
|
(text-scale-set 0)))))) |
|
(defun hydra-zoom/hint nil |
|
(if hydra-lv (lv-message (format #("zoom: [r 0]: reset." 7 8 (face hydra-face-red) |
|
9 10 (face hydra-face-blue)))) |
|
(message (format #("zoom: [r 0]: reset." 7 8 (face hydra-face-red) |
|
9 10 (face hydra-face-blue)))))) |
|
(defun hydra-zoom/body nil "Create a hydra with no body and the heads: |
|
|
|
\"r\": `(text-scale-set 0)', |
|
\"0\": `(text-scale-set 0)', |
|
\"1\": `(text-scale-set 0)' |
|
|
|
The body can be accessed via `hydra-zoom/body'." |
|
(interactive) |
|
(hydra-disable) |
|
(catch (quote hydra-disable) |
|
(when hydra-is-helpful (hydra-zoom/hint)) |
|
(setq hydra-last |
|
(hydra-set-transient-map |
|
(setq hydra-curr-map |
|
(quote (keymap (7 . hydra-keyboard-quit) |
|
(114 . hydra-zoom/lambda-r) |
|
(kp-subtract . hydra--negative-argument) |
|
(kp-9 . hydra--digit-argument) |
|
(kp-8 . hydra--digit-argument) |
|
(kp-7 . hydra--digit-argument) |
|
(kp-6 . hydra--digit-argument) |
|
(kp-5 . hydra--digit-argument) |
|
(kp-4 . hydra--digit-argument) |
|
(kp-3 . hydra--digit-argument) |
|
(kp-2 . hydra--digit-argument) |
|
(kp-1 . hydra--digit-argument) |
|
(kp-0 . hydra--digit-argument) |
|
(57 . hydra--digit-argument) |
|
(56 . hydra--digit-argument) |
|
(55 . hydra--digit-argument) |
|
(54 . hydra--digit-argument) |
|
(53 . hydra--digit-argument) |
|
(52 . hydra--digit-argument) |
|
(51 . hydra--digit-argument) |
|
(50 . hydra--digit-argument) |
|
(49 . hydra-zoom/lambda-r) |
|
(48 . hydra-zoom/lambda-0) |
|
(45 . hydra--negative-argument) |
|
(21 . hydra--universal-argument)))) |
|
t (lambda nil (hydra-cleanup)))) |
|
(setq prefix-arg current-prefix-arg))))))) |
|
|
|
(ert-deftest hydra--pad () |
|
(should (equal (hydra--pad '(a b c) 3) |
|
'(a b c))) |
|
(should (equal (hydra--pad '(a) 3) |
|
'(a nil nil)))) |
|
|
|
(ert-deftest hydra--matrix () |
|
(should (equal (hydra--matrix '(a b c) 2 2) |
|
'((a b) (c nil)))) |
|
(should (equal (hydra--matrix '(a b c d e f g h i) 4 3) |
|
'((a b c d) (e f g h) (i nil nil nil))))) |
|
|
|
(ert-deftest hydra--cell () |
|
(should (equal (hydra--cell "% -75s %%`%s" '(hydra-lv hydra-verbose)) |
|
"When non-nil, `lv-message' (not `message') will be used to display hints. %`hydra-lv^^^^^ |
|
When non-nil, hydra will issue some non essential style warnings. %`hydra-verbose"))) |
|
|
|
(ert-deftest hydra--vconcat () |
|
(should (equal (hydra--vconcat '("abc\ndef" "012\n34" "def\nabc")) |
|
"abc012def\ndef34abc"))) |
|
|
|
(defhydradio hydra-tng () |
|
(picard "_p_ Captain Jean Luc Picard:") |
|
(riker "_r_ Commander William Riker:") |
|
(data "_d_ Lieutenant Commander Data:") |
|
(worf "_w_ Worf:") |
|
(la-forge "_f_ Geordi La Forge:") |
|
(troi "_t_ Deanna Troi:") |
|
(dr-crusher "_c_ Doctor Beverly Crusher:") |
|
(phaser "_h_ Set phasers to " [stun kill])) |
|
|
|
(ert-deftest hydra--table () |
|
(let ((hydra-cell-format "% -30s %% -8`%s")) |
|
(should (equal (hydra--table hydra-tng/names 5 2) |
|
(substring " |
|
_p_ Captain Jean Luc Picard: % -8`hydra-tng/picard^^ _t_ Deanna Troi: % -8`hydra-tng/troi^^^^^^ |
|
_r_ Commander William Riker: % -8`hydra-tng/riker^^^ _c_ Doctor Beverly Crusher: % -8`hydra-tng/dr-crusher |
|
_d_ Lieutenant Commander Data: % -8`hydra-tng/data^^^^ _h_ Set phasers to % -8`hydra-tng/phaser^^^^ |
|
_w_ Worf: % -8`hydra-tng/worf^^^^ |
|
_f_ Geordi La Forge: % -8`hydra-tng/la-forge" 1))) |
|
(should (equal (hydra--table hydra-tng/names 4 3) |
|
(substring " |
|
_p_ Captain Jean Luc Picard: % -8`hydra-tng/picard _f_ Geordi La Forge: % -8`hydra-tng/la-forge^^ |
|
_r_ Commander William Riker: % -8`hydra-tng/riker^ _t_ Deanna Troi: % -8`hydra-tng/troi^^^^^^ |
|
_d_ Lieutenant Commander Data: % -8`hydra-tng/data^^ _c_ Doctor Beverly Crusher: % -8`hydra-tng/dr-crusher |
|
_w_ Worf: % -8`hydra-tng/worf^^ _h_ Set phasers to % -8`hydra-tng/phaser^^^^" 1))))) |
|
|
|
(provide 'hydra-test) |
|
|
|
;;; hydra-test.el ends here
|
|
|