]> code.delx.au - gnu-emacs-elpa/blob - company-tests.el
5d08c94c8438ff3d8db25714f1b6f6be14c2b98b
[gnu-emacs-elpa] / company-tests.el
1 ;;; company-tests.el --- company-mode tests
2
3 ;; Copyright (C) 2011, 2013 Free Software Foundation, Inc.
4
5 ;; Author: Nikolaj Schumacher
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22
23 ;;; Commentary:
24 ;;
25
26 ;;; Code:
27
28 (require 'ert)
29 (require 'company)
30 (require 'company-keywords)
31
32 (ert-deftest company-sorted-keywords ()
33 "Test that keywords in `company-keywords-alist' are in alphabetical order."
34 (dolist (pair company-keywords-alist)
35 (when (consp (cdr pair))
36 (let ((prev (cadr pair)))
37 (dolist (next (cddr pair))
38 (should (not (equal prev next)))
39 (should (string< prev next))
40 (setq prev next))))))
41
42 (ert-deftest company-good-prefix ()
43 (let ((company-minimum-prefix-length 5)
44 company--explicit-action)
45 (should (eq t (company--good-prefix-p "!@#$%")))
46 (should (eq nil (company--good-prefix-p "abcd")))
47 (should (eq nil (company--good-prefix-p 'stop)))
48 (should (eq t (company--good-prefix-p '("foo" . 5))))
49 (should (eq nil (company--good-prefix-p '("foo" . 4))))))
50
51 (ert-deftest company-multi-backend-with-lambdas ()
52 (let ((company-backend
53 (list (lambda (command &optional arg &rest ignore)
54 (case command
55 (prefix "z")
56 (candidates '("a" "b"))))
57 (lambda (command &optional arg &rest ignore)
58 (case command
59 (prefix "z")
60 (candidates '("c" "d")))))))
61 (should (equal (company-call-backend 'candidates "z") '("a" "b" "c" "d")))))
62
63 (ert-deftest company-begin-backend-failure-doesnt-break-company-backends ()
64 (with-temp-buffer
65 (insert "a")
66 (company-mode)
67 (should-error
68 (company-begin-backend (lambda (command &rest ignore))))
69 (let (company-frontends
70 (company-backends
71 (list (lambda (command &optional arg)
72 (case command
73 (prefix "a")
74 (candidates '("a" "ab" "ac")))))))
75 (let (this-command)
76 (company-call 'complete))
77 (should (eq 3 company-candidates-length)))))
78
79 (ert-deftest company-require-match-explicit ()
80 (with-temp-buffer
81 (insert "ab")
82 (company-mode)
83 (let (company-frontends
84 (company-require-match 'company-explicit-action-p)
85 (company-backends
86 (list (lambda (command &optional arg)
87 (case command
88 (prefix (buffer-substring (point-min) (point)))
89 (candidates '("abc" "abd")))))))
90 (let (this-command)
91 (company-complete))
92 (let ((last-command-event ?e))
93 (company-call 'self-insert-command 1))
94 (should (eq 2 company-candidates-length))
95 (should (eq 3 (point))))))
96
97 (ert-deftest company-dont-require-match-when-idle ()
98 (with-temp-buffer
99 (insert "ab")
100 (company-mode)
101 (let (company-frontends
102 (company-require-match 'company-explicit-action-p)
103 (company-backends
104 (list (lambda (command &optional arg)
105 (case command
106 (prefix (buffer-substring (point-min) (point)))
107 (candidates '("abc" "abd")))))))
108 (company-idle-begin (current-buffer) (selected-window)
109 (buffer-chars-modified-tick) (point))
110 (let ((last-command-event ?e))
111 (company-call 'self-insert-command 1))
112 (should (eq nil company-candidates-length))
113 (should (eq 4 (point))))))
114
115 (ert-deftest company-auto-complete-explicit ()
116 (with-temp-buffer
117 (insert "ab")
118 (company-mode)
119 (let (company-frontends
120 (company-auto-complete 'company-explicit-action-p)
121 (company-auto-complete-chars '(? ))
122 (company-backends
123 (list (lambda (command &optional arg)
124 (case command
125 (prefix (buffer-substring (point-min) (point)))
126 (candidates '("abcd" "abef")))))))
127 (let (this-command)
128 (company-complete))
129 (let ((last-command-event ? ))
130 (company-call 'self-insert-command 1))
131 (should (string= "abcd " (buffer-string))))))
132
133 (ert-deftest company-no-auto-complete-when-idle ()
134 (with-temp-buffer
135 (insert "ab")
136 (company-mode)
137 (let (company-frontends
138 (company-auto-complete 'company-explicit-action-p)
139 (company-auto-complete-chars '(? ))
140 (company-backends
141 (list (lambda (command &optional arg)
142 (case command
143 (prefix (buffer-substring (point-min) (point)))
144 (candidates '("abcd" "abef")))))))
145 (company-idle-begin (current-buffer) (selected-window)
146 (buffer-chars-modified-tick) (point))
147 (let ((last-command-event ? ))
148 (company-call 'self-insert-command 1))
149 (should (string= "ab " (buffer-string))))))
150
151 (ert-deftest company-pseudo-tooltip-does-not-get-displaced ()
152 (with-temp-buffer
153 (save-window-excursion
154 (set-window-buffer nil (current-buffer))
155 (save-excursion (insert " ff"))
156 (company-mode)
157 (let ((company-frontends '(company-pseudo-tooltip-frontend))
158 (company-begin-commands '(self-insert-command))
159 (company-backends
160 (list (lambda (c &optional arg)
161 (case c (prefix "") (candidates '("a" "b" "c")))))))
162 (let (this-command)
163 (company-call 'complete))
164 (company-call 'open-line 1)
165 (should (eq 2 (overlay-start company-pseudo-tooltip-overlay)))))))
166
167 (ert-deftest company-template-removed-after-the-last-jump ()
168 (with-temp-buffer
169 (insert "{ }")
170 (goto-char 2)
171 (let ((tpl (company-template-declare-template (point) (1- (point-max)))))
172 (save-excursion
173 (dotimes (i 2)
174 (insert " ")
175 (company-template-add-field tpl (point) "foo")
176 (forward-char 3)))
177 (company-call 'template-forward-field)
178 (should (= 3 (point)))
179 (company-call 'template-forward-field)
180 (should (= 7 (point)))
181 (company-call 'template-forward-field)
182 (should (= 11 (point)))
183 (should (zerop (length (overlay-get tpl 'company-template-fields))))
184 (should (null (overlay-buffer tpl))))))
185
186 (ert-deftest company-template-removed-after-input-and-jump ()
187 (with-temp-buffer
188 (insert "{ }")
189 (goto-char 2)
190 (let ((tpl (company-template-declare-template (point) (1- (point-max)))))
191 (save-excursion
192 (insert " ")
193 (company-template-add-field tpl (point) "bar"))
194 (company-call 'template-move-to-first tpl)
195 (should (= 3 (point)))
196 (dolist (c (string-to-list "tee"))
197 (let ((last-command-event c))
198 (company-call 'self-insert-command 1)))
199 (should (string= "{ tee }" (buffer-string)))
200 (should (overlay-buffer tpl))
201 (company-call 'template-forward-field)
202 (should (= 7 (point)))
203 (should (null (overlay-buffer tpl))))))
204
205 (defun company-call (name &rest args)
206 (let* ((maybe (intern (format "company-%s" name)))
207 (command (if (fboundp maybe) maybe name)))
208 (apply command args)
209 (let ((this-command command))
210 (run-hooks 'post-command-hook))))