This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
evil-magit-tests.el
112 lines (98 loc) · 4.2 KB
/
evil-magit-tests.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
;;; evil-magit-tests.el --- evil-based key bindings for magit
;; Copyright (C) 2015-2016 Justin Burkett
;; Author: Justin Burkett <justin@burkett.cc>
;; Homepage: https://github.com/justbur/evil-magit
;; This file 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, or (at your
;; option) any later version.
;;
;; This file 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.
;;
;; For a full copy of the GNU General Public License
;; see <http://www.gnu.org/licenses/>.
(require 'evil-magit)
(ert-deftest evil-magit-mode-map-tests ()
"Test that original bindings in `evil-magit-mode-map-bindings'
are correct."
(dolist (binding evil-magit-mode-map-bindings)
(when (nth 4 binding)
(should (eq (lookup-key (symbol-value (nth 1 binding)) (kbd (nth 4 binding)))
(nth 3 binding)))))
(dolist (binding evil-magit-minor-mode-map-bindings)
(when (nth 4 binding)
(should (eq (lookup-key (symbol-value (nth 1 binding)) (kbd (nth 4 binding)))
(nth 3 binding))))))
(ert-deftest evil-magit-section-map-tests ()
"Test that original bindings in
`evil-magit-original-section-bindings' are correct."
(dolist (binding evil-magit-original-section-bindings)
(should (eq (lookup-key (nth 0 binding) (nth 1 binding))
(nth 2 binding)))))
;; (ert-deftest evil-magit-popup-action-tests ()
;; "Test that bindings are as expected in popups."
;; (when evil-magit-popup-keys-changed
;; (dolist (change evil-magit-popup-changes)
;; (let ((alist (plist-get (symbol-value (nth 0 change)) (nth 1 change))))
;; (should
;; (eq (nth 2 (assoc (string-to-char (nth 3 change)) alist))
;; (nth 4 change)))))))
(defun evil-magit-collect-magit-section-maps ()
(let (res)
(mapatoms
(lambda (sym)
(when (string-match-p "^magit-.*-section-map$" (symbol-name sym))
(push sym res))))
res))
(setq evil-magit-section-maps-test (evil-magit-collect-magit-section-maps))
;; (setq evil-magit-commands-in-section-maps
;; (let (res)
;; (dolist (map evil-magit-section-maps-test)
;; (when (and (boundp map) (keymapp (symbol-value map)))
;; (map-keymap
;; (lambda (_ def)
;; (when (commandp def)
;; (if res
;; (add-to-list 'res def)
;; (setq res (list def)))))
;; (symbol-value map))))
;; res))
(ert-deftest evil-magit-section-maps-accounted-for ()
"Check that `evil-magit-section-maps' includes all section-maps
we can find."
(dolist (map evil-magit-section-maps-test)
(when (and (boundp map) (keymapp (symbol-value map)))
(should (memq map evil-magit-section-maps)))))
(defun evil-magit-collect-git-magit-modes ()
(let (res)
(mapatoms
(lambda (sym)
(when (and (or (boundp sym)
(fboundp sym))
(string-match-p "^\\(git\\|magit\\)-.*-mode$" (symbol-name sym)))
(push sym res))))
res))
(ert-deftest evil-magit-all-modes-accounted-for ()
"Check that mode lists include all modes we can find."
(let ((modes (evil-magit-collect-git-magit-modes))
res)
(dolist (mode modes)
(when (boundp mode)
(should (memq mode
(append
evil-magit-emacs-to-default-state-modes
evil-magit-emacs-to-evil-magit-state-modes
evil-magit-default-to-evil-magit-state-modes
evil-magit-untouched-modes
evil-magit-ignored-modes)))))))
(ert-deftest evil-magit-expand-region-arg-number ()
"Check that the number of args accepted by
`evil-visual-expand-region' does not change."
(should-not (evil-visual-expand-region))
(should-not (evil-visual-expand-region t))
(should-error (evil-visual-expand-region t t) :type
'wrong-number-of-arguments))
;;; evil-magit-tests.el ends here