summaryrefslogtreecommitdiff
path: root/test/evil-collection-magit-tests.el
blob: 9b4c892efe1022ae5d5460559e8afc62297b6ac4 (plain)
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-collection-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/emacs-evil/evil-collection

;; 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-collection)
(evil-collection-require 'magit)

(ert-deftest evil-collection-magit-mode-map-tests ()
    "Test that original bindings in `evil-collection-magit-mode-map-bindings'
are correct."
  (dolist (binding evil-collection-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-collection-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-collection-magit-section-map-tests ()
  "Test that original bindings in
`evil-collection-magit-original-section-bindings' are correct."
  (dolist (binding evil-collection-magit-original-section-bindings)
    (should (eq (lookup-key (nth 0 binding) (nth 1 binding))
                (nth 2 binding)))))

;; (ert-deftest evil-collection-magit-popup-action-tests ()
;;   "Test that bindings are as expected in popups."
;;   (when evil-collection-magit-popup-keys-changed
;;     (dolist (change evil-collection-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-collection-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-collection-magit-section-maps-test (evil-collection-magit-collect-magit-section-maps))
;; (setq evil-collection-magit-commands-in-section-maps
;;       (let (res)
;;         (dolist (map evil-collection-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-collection-magit-section-maps-accounted-for ()
  "Check that `evil-collection-magit-section-maps' includes all section-maps
we can find."
  (dolist (map evil-collection-magit-section-maps-test)
    (when (and (boundp map) (keymapp (symbol-value map)))
      (should (memq map evil-collection-magit-section-maps)))))

(defun evil-collection-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-collection-magit-all-modes-accounted-for ()
  "Check that mode lists include all modes we can find."
  (let ((modes (evil-collection-magit-collect-git-magit-modes))
        res)
    (dolist (mode modes)
      (when (boundp mode)
        (should (memq mode
                      (append
                       evil-collection-magit-emacs-to-default-state-modes
                       evil-collection-magit-emacs-to-evil-collection-magit-state-modes
                       evil-collection-magit-default-to-evil-collection-magit-state-modes
                       evil-collection-magit-untouched-modes
                       evil-collection-magit-ignored-modes)))))))

(ert-deftest evil-collection-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-collection-magit-tests.el ends here