forked from emacs-evil/evil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evil-test-helpers.el
418 lines (389 loc) · 17.5 KB
/
evil-test-helpers.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
;;; evil-test-helpers.el --- unit test helpers for Evil -*- coding: utf-8; lexical-binding: t -*-
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
;; Package-Requires: ((evil "1.14.0"))
;; Version: 1.14.0
;; This file is NOT part of GNU Emacs.
;;; License:
;; This file is part of Evil.
;;
;; Evil 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.
;;
;; Evil 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 Evil. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This file contains helper functions for writing tests for
;; evil-mode. These helpers can also be used by other packages which
;; extend evil-mode.
;; To write a test use `evil-test-buffer':
;; (require 'evil-test-helpers)
;;
;; (ert-deftest evil-test ()
;; :tags '(evil)
;; (evil-test-buffer
;; "[T]his creates a test buffer." ; cursor on "T"
;; ("w") ; key sequence
;; "This [c]reates a test buffer."))) ; cursor moved to "c"
;;
;; The initial state, the cursor syntax, etc., can be changed
;; with keyword arguments. See the documentation string of
;; `evil-test-buffer' for more details.
;;
;; This file is NOT part of Evil itself.
(require 'elp)
(require 'ert)
(require 'evil)
;;; Code:
(when (fboundp 'font-lock-add-keywords)
(font-lock-add-keywords 'emacs-lisp-mode
'(("(\\(evil-test-buffer\\)\\>"
1 font-lock-keyword-face))))
(defvar evil-test-point nil
"Marker for point.")
(make-variable-buffer-local 'evil-test-point)
(defvar evil-test-visual-start nil
"Marker for Visual beginning.")
(make-variable-buffer-local 'evil-test-visual-start)
(defvar evil-test-visual-end nil
"Marker for Visual end.")
(make-variable-buffer-local 'evil-test-visual-end)
(defvaralias 'evil-test-select-enable-clipboard
(if (boundp 'select-enable-clipboard)
'select-enable-clipboard
'x-select-enable-clipboard))
(defmacro evil-test-buffer (&rest body)
"Execute FORMS in a temporary buffer.
The following optional keywords specify the buffer's properties:
:state STATE The initial state, defaults to `normal'.
:visual SELECTION The Visual selection, defaults to `char'.
:point-start STRING String for matching beginning of point,
defaults to \"[\".
:point-end STRING String for matching end of point,
defaults to \"]\".
:visual-start STRING String for matching beginning of
Visual selection, defaults to \"<\".
:visual-end STRING String for matching end of
Visual selection, defaults to \">\".
Then follows one or more forms. If the first form is a string,
it is taken to be a buffer description as passed to
`evil-test-buffer-from-string', and initializes the buffer.
Subsequent string forms validate the buffer.
If a form is a list of strings or vectors, it is taken to be a
key sequence and is passed to `execute-kbd-macro'. If the form
is \(file FILENAME CONTENTS), then the test fails unless the
contents of FILENAME equal CONTENTS. If the form is \(error
SYMBOL ...) then the test fails unless an error of type SYMBOL is
raised. Remaining forms are evaluated as-is.
\(fn [[KEY VALUE]...] FORMS...)"
(declare (indent defun))
(let ((state 'normal)
arg key point-start point-end string
visual visual-start visual-end)
;; collect keywords
(while (keywordp (car-safe body))
(setq key (pop body)
arg (pop body))
(cond
((eq key :point-start)
(setq point-start (or arg "")))
((eq key :point-end)
(setq point-end (or arg "")))
((eq key :state)
(setq state arg))
((eq key :visual)
(setq visual arg))
((eq key :visual-start)
(setq visual-start (or arg "")))
((eq key :visual-end)
(setq visual-end (or arg "")))))
;; collect buffer initialization
(when (stringp (car-safe body))
(setq string (pop body)))
;; macro expansion
`(let ((buffer (evil-test-buffer-from-string
,string ',state
,point-start ,point-end
',visual ,visual-start ,visual-end))
(kill-ring kill-ring)
(kill-ring-yank-pointer kill-ring-yank-pointer)
evil-test-select-enable-clipboard
message-log-max)
(unwind-protect
(save-window-excursion
(with-current-buffer buffer
;; necessary for keyboard macros to work
(switch-to-buffer-other-window (current-buffer))
(buffer-enable-undo)
;; parse remaining forms
,@(mapcar
#'(lambda (form)
(let (error-symbol)
(when (and (listp form)
(eq (car-safe form) 'error))
(setq error-symbol (car-safe (cdr-safe form))
form (cdr-safe (cdr-safe form))))
(let ((result
(cond
((stringp form)
`(evil-test-buffer-string
,form
',point-start ',point-end
',visual-start ',visual-end))
((eq (car-safe form) 'file)
`(evil-test-file-contents ,(cadr form)
,(car (cddr form))))
((or (stringp (car-safe form))
(vectorp (car-safe form))
(memq (car-safe (car-safe form))
'(kbd vconcat)))
;; we need to execute everything as a single
;; sequence for command loop hooks to work
`(execute-kbd-macro
(apply #'vconcat
(mapcar #'listify-key-sequence
(mapcar #'eval ',form)))))
((memq (car-safe form) '(kbd vconcat))
`(execute-kbd-macro ,form))
(t
form))))
(if error-symbol
`(should-error ,result :type ',error-symbol)
result))))
body)))
(and (buffer-name buffer)
(kill-buffer buffer))))))
(defmacro evil-test-selection (string &optional end-string
before-predicate after-predicate)
"Verify that the Visual selection contains STRING."
(declare (indent defun))
`(progn
(save-excursion
(goto-char (or evil-visual-beginning (region-beginning)))
(evil-test-text nil (or ,string ,end-string) ,before-predicate))
(save-excursion
(goto-char (or evil-visual-end (region-end)))
(evil-test-text (or ,end-string ,string) nil nil ,after-predicate))))
(defun evil-test-buffer-string (string &optional
point-start point-end
visual-start visual-end)
"Validate the current buffer according to STRING.
If STRING contains an occurrence of POINT-START immediately
followed by POINT-END, that position is compared against point.
If STRING contains an occurrence of VISUAL-START followed by
VISUAL-END, those positions are compared against the Visual selection.
POINT-START and POINT-END default to [ and ].
VISUAL-START and VISUAL-END default to < and >."
(let ((actual-buffer (current-buffer))
(marker-buffer (evil-test-marker-buffer-from-string
string
point-start point-end
visual-start visual-end))
before-point after-point string selection)
(unwind-protect
(with-current-buffer marker-buffer
(setq string (buffer-string))
(when evil-test-point
(setq before-point (buffer-substring (point-min) evil-test-point)
after-point (buffer-substring evil-test-point (point-max))))
(when (and evil-test-visual-start evil-test-visual-end)
(setq selection (buffer-substring
evil-test-visual-start evil-test-visual-end)))
(with-current-buffer actual-buffer
(if (or before-point after-point)
(evil-test-text before-point after-point)
;; if the cursor isn't specified, just test the whole buffer
(save-excursion
(goto-char (point-min))
(evil-test-text nil string #'bobp #'eobp)))
(when selection
(evil-test-selection selection))))
(kill-buffer marker-buffer))))
(defun evil-test-buffer-from-string (string &optional
state
point-start point-end
visual visual-start visual-end)
"Create a new buffer according to STRING.
If STRING contains an occurrence of POINT-START immediately
followed by POINT-END, then point is moved to that position.
If STRING contains an occurrence of VISUAL-START followed by
VISUAL-END, then a Visual selection is created with those boundaries.
POINT-START and POINT-END default to [ and ].
VISUAL-START and VISUAL-END default to < and >.
STATE is the initial state; it defaults to `normal'.
VISUAL is the Visual selection: it defaults to `char'."
(let ((type (evil-visual-type (or visual 'char)))
(buffer (evil-test-marker-buffer-from-string
string point-start point-end
visual-start visual-end)))
(with-current-buffer buffer
(prog1 buffer
(evil-change-state state)
;; let the buffer change its major mode without disabling Evil
(add-hook 'after-change-major-mode-hook #'evil-initialize)
(when (and (markerp evil-test-visual-start)
(markerp evil-test-visual-end))
(evil-visual-select
evil-test-visual-start evil-test-visual-end type)
(when evil-test-point
(goto-char evil-test-point)
(evil-visual-refresh)
(unless (and (= evil-visual-beginning
evil-test-visual-start)
(= evil-visual-end
evil-test-visual-end))
(evil-visual-select
evil-test-visual-start evil-test-visual-end type -1)
(goto-char evil-test-point)
(evil-visual-refresh))))
(when (markerp evil-test-point)
(goto-char evil-test-point))))))
(defun evil-test-marker-buffer-from-string (string &optional
point-start point-end
visual-start visual-end)
"Create a new marker buffer according to STRING.
If STRING contains an occurrence of POINT-START immediately
followed by POINT-END, that position is stored in the
buffer-local variable `evil-test-point'. Similarly,
if STRING contains an occurrence of VISUAL-START followed by
VISUAL-END, those positions are stored in the variables
`evil-test-visual-beginning' and `evil-test-visual-end'.
POINT-START and POINT-END default to [ and ].
VISUAL-START and VISUAL-END default to < and >."
(let ((string (or string ""))
(point-start (regexp-quote
(if (characterp point-start)
(string point-start)
(or point-start "["))))
(point-end (regexp-quote
(if (characterp point-end)
(string point-end)
(or point-end "]"))))
(visual-start (regexp-quote
(if (characterp visual-start)
(string visual-start)
(or visual-start "<"))))
(visual-end (regexp-quote
(if (characterp visual-end)
(string visual-end)
(or visual-end ">")))))
(with-current-buffer (generate-new-buffer " *test*")
(prog1 (current-buffer)
(save-excursion
(insert string))
(save-excursion
(when (> (length point-start) 0)
(if (> (length point-end) 0)
(when (re-search-forward
(format "\\(%s\\)[^%s]?\\(%s\\)"
point-start point-end point-end) nil t)
(goto-char (match-beginning 0))
(delete-region (match-beginning 2) (match-end 2))
(delete-region (match-beginning 1) (match-end 1))
(setq evil-test-point
(move-marker (make-marker) (point))))
(when (re-search-forward point-start nil t)
(goto-char (match-beginning 0))
(delete-region (match-beginning 0) (match-end 0))
(setq evil-test-point
(move-marker (make-marker) (point)))))))
(save-excursion
(when (and (> (length visual-start) 0)
(> (length visual-end) 0))
(when (re-search-forward visual-start nil t)
(goto-char (match-beginning 0))
(delete-region (match-beginning 0) (match-end 0))
(setq evil-test-visual-start
(move-marker (make-marker) (point))))
(when (re-search-forward visual-end nil t)
(goto-char (match-beginning 0))
(delete-region (match-beginning 0) (match-end 0))
(setq evil-test-visual-end
(move-marker (make-marker) (point))))))))))
(defun evil-test-text (before after &optional before-predicate after-predicate)
"Verify the text around point.
BEFORE is the expected text before point, and AFTER is
the text after point. BEFORE-PREDICATE is a predicate function
to execute at the beginning of the text, and AFTER-PREDICATE
is executed at the end."
(when before
(if (functionp before)
(setq before-predicate before
before nil)
(should (string= (buffer-substring
(max (point-min) (- (point) (length before)))
(point))
before))))
(when after
(if (functionp after)
(setq after-predicate after
after nil)
(should (string= (buffer-substring
(point)
(min (point-max) (+ (point) (length after))))
after))))
(when before-predicate
(ert-info ((format "Expect `%s' at the beginning" before-predicate))
(save-excursion
(backward-char (length before))
(should (funcall before-predicate)))))
(when after-predicate
(ert-info ((format "Expect `%s' at the end" after-predicate))
(save-excursion
(forward-char (length after))
(should (funcall after-predicate))))))
(defmacro evil-test-region (string &optional end-string
before-predicate after-predicate)
"Verify that the region contains STRING."
(declare (indent defun))
`(progn
(save-excursion
(goto-char (region-beginning))
(evil-test-text nil (or ,string ,end-string) ,before-predicate))
(save-excursion
(goto-char (region-end))
(evil-test-text (or ,end-string ,string) nil nil ,after-predicate))))
(defmacro evil-test-overlay (overlay string &optional end-string
before-predicate after-predicate)
"Verify that OVERLAY contains STRING."
(declare (indent defun))
`(progn
(save-excursion
(goto-char (overlay-start ,overlay))
(evil-test-text nil (or ,string ,end-string) ,before-predicate))
(save-excursion
(goto-char (overlay-end ,overlay))
(evil-test-text (or ,end-string ,string) nil nil ,after-predicate))))
(defmacro evil-with-temp-file (file-var content &rest body)
"Create a temp file with CONTENT and bind its name to FILE-VAR within BODY.
FILE-VAR must be a symbol which contains the name of the
temporary file within the macro body. CONTENT is either a string
to be used as the content of the temporary file or a form to be
executed with the temporary file's buffer as \(current-buffer),
see `with-temp-file'. BODY contains the forms to be executed
while the temporary file exists. The temporary file is deleted at
the end of the execution of BODY."
(declare (indent 2)
(debug (symbolp form body)))
`(let ((,file-var (make-temp-file "evil-test")))
(with-temp-file ,file-var
,(if (stringp content)
`(insert ,content)
content))
,@body
(delete-file ,file-var)))
(defun evil-test-file-contents (name contents)
"Ensure that the contents of file with NAME equal CONTENTS."
(with-temp-buffer
(insert-file-contents name)
(should (string= (buffer-string)
contents))))
(provide 'evil-test-helpers)
;;; evil-test-helpers.el ends here