]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/testcover.el
Merge branch 'master' into cairo
[gnu-emacs] / lisp / emacs-lisp / testcover.el
1 ;;;; testcover.el -- Visual code-coverage tool -*- lexical-binding:t -*-
2
3 ;; Copyright (C) 2002-2015 Free Software Foundation, Inc.
4
5 ;; Author: Jonathan Yavner <jyavner@member.fsf.org>
6 ;; Maintainer: Jonathan Yavner <jyavner@member.fsf.org>
7 ;; Keywords: lisp utility
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24
25 ;;; Commentary:
26
27 ;; * Use `testcover-start' to instrument a Lisp file for coverage testing.
28 ;; * Use `testcover-mark-all' to add overlay "splotches" to the Lisp file's
29 ;; buffer to show where coverage is lacking. Normally, a red splotch
30 ;; indicates the form was never evaluated; a brown splotch means it always
31 ;; evaluated to the same value.
32 ;; * Use `testcover-next-mark' (bind it to a key!) to jump to the next spot
33 ;; that has a splotch.
34
35 ;; * Basic algorithm: use `edebug' to mark up the function text with
36 ;; instrumentation callbacks, then replace edebug's callbacks with ours.
37 ;; * To show good coverage, we want to see two values for every form, except
38 ;; functions that always return the same value and `defconst' variables
39 ;; need show only one value for good coverage. To avoid the brown
40 ;; splotch, the definitions for constants and 1-valued functions must
41 ;; precede the references.
42 ;; * Use the macro `1value' in your Lisp code to mark spots where the local
43 ;; code environment causes a function or variable to always have the same
44 ;; value, but the function or variable is not intrinsically 1-valued.
45 ;; * Use the macro `noreturn' in your Lisp code to mark function calls that
46 ;; never return, because of the local code environment, even though the
47 ;; function being called is capable of returning in other cases.
48
49 ;; Problems:
50 ;; * To detect different values, we store the form's result in a vector and
51 ;; compare the next result using `equal'. We don't copy the form's
52 ;; result, so if caller alters it (`setcar', etc.) we'll think the next
53 ;; call has the same value! Also, equal thinks two strings are the same
54 ;; if they differ only in properties.
55 ;; * Because we have only a "1value" class and no "always nil" class, we have
56 ;; to treat as potentially 1-valued any `and' whose last term is 1-valued,
57 ;; in case the last term is always nil. Example:
58 ;; (and (< (point) 1000) (forward-char 10))
59 ;; This form always returns nil. Similarly, `or', `if', and `cond' are
60 ;; treated as potentially 1-valued if all clauses are, in case those
61 ;; values are always nil. Unlike truly 1-valued functions, it is not an
62 ;; error if these "potentially" 1-valued forms actually return differing
63 ;; values.
64
65 (require 'edebug)
66 (provide 'testcover)
67
68
69 ;;;==========================================================================
70 ;;; User options
71 ;;;==========================================================================
72
73 (defgroup testcover nil
74 "Code-coverage tester."
75 :group 'lisp
76 :prefix "testcover-"
77 :version "21.1")
78
79 (defcustom testcover-constants
80 '(nil t emacs-build-time emacs-version emacs-major-version
81 emacs-minor-version)
82 "Variables whose values never change. No brown splotch is shown for
83 these. This list is quite incomplete!"
84 :group 'testcover
85 :type '(repeat variable))
86
87 (defcustom testcover-1value-functions
88 '(backward-char barf-if-buffer-read-only beginning-of-line
89 buffer-disable-undo buffer-enable-undo current-global-map
90 deactivate-mark delete-backward-char delete-char delete-region ding
91 forward-char function* insert insert-and-inherit kill-all-local-variables
92 kill-line kill-paragraph kill-region kill-sexp lambda
93 minibuffer-complete-and-exit narrow-to-region next-line push-mark
94 put-text-property run-hooks set-match-data signal
95 substitute-key-definition suppress-keymap undo use-local-map while widen
96 yank)
97 "Functions that always return the same value. No brown splotch is shown
98 for these. This list is quite incomplete! Notes: Nobody ever changes the
99 current global map. The macro `lambda' is self-evaluating, hence always
100 returns the same value (the function it defines may return varying values
101 when called)."
102 :group 'testcover
103 :type '(repeat symbol))
104
105 (defcustom testcover-noreturn-functions
106 '(error noreturn throw signal)
107 "Subset of `testcover-1value-functions' -- these never return. We mark
108 them as having returned nil just before calling them."
109 :group 'testcover
110 :type '(repeat symbol))
111
112 (defcustom testcover-compose-functions
113 '(+ - * / = append length list make-keymap make-sparse-keymap
114 mapcar message propertize replace-regexp-in-string
115 run-with-idle-timer set-buffer-modified-p)
116 "Functions that are 1-valued if all their args are either constants or
117 calls to one of the `testcover-1value-functions', so if that's true then no
118 brown splotch is shown for these. This list is quite incomplete! Most
119 side-effect-free functions should be here."
120 :group 'testcover
121 :type '(repeat symbol))
122
123 (defcustom testcover-progn-functions
124 '(define-key fset function goto-char mapc overlay-put progn
125 save-current-buffer save-excursion save-match-data
126 save-restriction save-selected-window save-window-excursion
127 set set-default set-marker-insertion-type setq setq-default
128 with-current-buffer with-output-to-temp-buffer with-syntax-table
129 with-temp-buffer with-temp-file with-temp-message with-timeout)
130 "Functions whose return value is the same as their last argument. No
131 brown splotch is shown for these if the last argument is a constant or a
132 call to one of the `testcover-1value-functions'. This list is probably
133 incomplete!"
134 :group 'testcover
135 :type '(repeat symbol))
136
137 (defcustom testcover-prog1-functions
138 '(prog1 unwind-protect)
139 "Functions whose return value is the same as their first argument. No
140 brown splotch is shown for these if the first argument is a constant or a
141 call to one of the `testcover-1value-functions'."
142 :group 'testcover
143 :type '(repeat symbol))
144
145 (defcustom testcover-potentially-1value-functions
146 '(add-hook and beep or remove-hook unless when)
147 "Functions that are potentially 1-valued. No brown splotch if actually
148 1-valued, no error if actually multi-valued."
149 :group 'testcover
150 :type '(repeat symbol))
151
152 (defface testcover-nohits
153 '((t (:background "DeepPink2")))
154 "Face for forms that had no hits during coverage test"
155 :group 'testcover)
156
157 (defface testcover-1value
158 '((t (:background "Wheat2")))
159 "Face for forms that always produced the same value during coverage test"
160 :group 'testcover)
161
162
163 ;;;=========================================================================
164 ;;; Other variables
165 ;;;=========================================================================
166
167 (defvar testcover-module-constants nil
168 "Symbols declared with defconst in the last file processed by
169 `testcover-start'.")
170
171 (defvar testcover-module-1value-functions nil
172 "Symbols declared with defun in the last file processed by
173 `testcover-start', whose functions should always return the same value.")
174
175 (defvar testcover-module-potentially-1value-functions nil
176 "Symbols declared with defun in the last file processed by
177 `testcover-start', whose functions might always return the same value.")
178
179 (defvar testcover-vector nil
180 "Locally bound to coverage vector for function in progress.")
181
182
183 ;;;=========================================================================
184 ;;; Add instrumentation to your module
185 ;;;=========================================================================
186
187 (defun testcover-start (filename &optional byte-compile)
188 "Uses edebug to instrument all macros and functions in FILENAME, then
189 changes the instrumentation from edebug to testcover--much faster, no
190 problems with type-ahead or post-command-hook, etc. If BYTE-COMPILE is
191 non-nil, byte-compiles each function after instrumenting."
192 (interactive "fStart covering file: ")
193 (let ((buf (find-file filename))
194 (load-read-function load-read-function))
195 (add-function :around load-read-function
196 #'testcover--read)
197 (setq edebug-form-data nil
198 testcover-module-constants nil
199 testcover-module-1value-functions nil)
200 (eval-buffer buf))
201 (when byte-compile
202 (dolist (x (reverse edebug-form-data))
203 (when (fboundp (car x))
204 (message "Compiling %s..." (car x))
205 (byte-compile (car x))))))
206
207 ;;;###autoload
208 (defun testcover-this-defun ()
209 "Start coverage on function under point."
210 (interactive)
211 (let ((x (let ((edebug-all-defs t))
212 (symbol-function (eval-defun nil)))))
213 (testcover-reinstrument x)
214 x))
215
216 (defun testcover--read (orig &optional stream)
217 "Read a form using edebug, changing edebug callbacks to testcover callbacks."
218 (or stream (setq stream standard-input))
219 (if (eq stream (current-buffer))
220 (let ((x (let ((edebug-all-defs t))
221 (edebug-read-and-maybe-wrap-form))))
222 (testcover-reinstrument x)
223 x)
224 (funcall (or orig #'read) stream)))
225
226 (defun testcover-reinstrument (form)
227 "Reinstruments FORM to use testcover instead of edebug. This
228 function modifies the list that FORM points to. Result is nil if
229 FORM should return multiple values, t if should always return same
230 value, `maybe' if either is acceptable."
231 (let ((fun (car-safe form))
232 id val)
233 (cond
234 ((not fun) ;Atom
235 (when (or (not (symbolp form))
236 (memq form testcover-constants)
237 (memq form testcover-module-constants))
238 t))
239 ((consp fun) ;Embedded list
240 (testcover-reinstrument fun)
241 (testcover-reinstrument-list (cdr form))
242 nil)
243 ((or (memq fun testcover-1value-functions)
244 (memq fun testcover-module-1value-functions))
245 ;;Should always return same value
246 (testcover-reinstrument-list (cdr form))
247 t)
248 ((or (memq fun testcover-potentially-1value-functions)
249 (memq fun testcover-module-potentially-1value-functions))
250 ;;Might always return same value
251 (testcover-reinstrument-list (cdr form))
252 'maybe)
253 ((memq fun testcover-progn-functions)
254 ;;1-valued if last argument is
255 (testcover-reinstrument-list (cdr form)))
256 ((memq fun testcover-prog1-functions)
257 ;;1-valued if first argument is
258 (testcover-reinstrument-list (cddr form))
259 (testcover-reinstrument (cadr form)))
260 ((memq fun testcover-compose-functions)
261 ;;1-valued if all arguments are. Potentially 1-valued if all
262 ;;arguments are either definitely or potentially.
263 (testcover-reinstrument-compose (cdr form) 'testcover-reinstrument))
264 ((eq fun 'edebug-enter)
265 ;;(edebug-enter 'SYM ARGS #'(lambda nil FORMS))
266 ;; => (testcover-enter 'SYM #'(lambda nil FORMS))
267 (setcar form 'testcover-enter)
268 (setcdr (nthcdr 1 form) (nthcdr 3 form))
269 (let ((testcover-vector (get (cadr (cadr form)) 'edebug-coverage)))
270 (testcover-reinstrument-list (nthcdr 2 (cadr (nth 2 form))))))
271 ((eq fun 'edebug-after)
272 ;;(edebug-after (edebug-before XXX) YYY FORM)
273 ;; => (testcover-after YYY FORM), mark XXX as ok-coverage
274 (unless (eq (cadr form) 0)
275 (aset testcover-vector (cadr (cadr form)) 'ok-coverage))
276 (setq id (nth 2 form))
277 (setcdr form (nthcdr 2 form))
278 (setq val (testcover-reinstrument (nth 2 form)))
279 (setcar form (if (eq val t)
280 'testcover-1value
281 'testcover-after))
282 (when val
283 ;;1-valued or potentially 1-valued
284 (aset testcover-vector id '1value))
285 (cond
286 ((memq (car-safe (nth 2 form)) testcover-noreturn-functions)
287 ;;This function won't return, so set the value in advance
288 ;;(edebug-after (edebug-before XXX) YYY FORM)
289 ;; => (progn (edebug-after YYY nil) FORM)
290 (setcar (cdr form) `(,(car form) ,id nil))
291 (setcar form 'progn)
292 (aset testcover-vector id '1value)
293 (setq val t))
294 ((eq (car-safe (nth 2 form)) '1value)
295 ;;This function is always supposed to return the same value
296 (setq val t)
297 (aset testcover-vector id '1value)
298 (setcar form 'testcover-1value)))
299 val)
300 ((eq fun 'defun)
301 (setq val (testcover-reinstrument-list (nthcdr 3 form)))
302 (when (eq val t)
303 (push (cadr form) testcover-module-1value-functions))
304 (when (eq val 'maybe)
305 (push (cadr form) testcover-module-potentially-1value-functions)))
306 ((memq fun '(defconst defcustom))
307 ;;Define this symbol as 1-valued
308 (push (cadr form) testcover-module-constants)
309 (testcover-reinstrument-list (cddr form)))
310 ((memq fun '(dotimes dolist))
311 ;;Always returns third value from SPEC
312 (testcover-reinstrument-list (cddr form))
313 (setq val (testcover-reinstrument-list (cadr form)))
314 (if (nth 2 (cadr form))
315 val
316 ;;No third value, always returns nil
317 t))
318 ((memq fun '(let let*))
319 ;;Special parsing for second argument
320 (mapc 'testcover-reinstrument-list (cadr form))
321 (testcover-reinstrument-list (cddr form)))
322 ((eq fun 'if)
323 ;;Potentially 1-valued if both THEN and ELSE clauses are
324 (testcover-reinstrument (cadr form))
325 (let ((then (testcover-reinstrument (nth 2 form)))
326 (else (testcover-reinstrument-list (nthcdr 3 form))))
327 (and then else 'maybe)))
328 ((eq fun 'cond)
329 ;;Potentially 1-valued if all clauses are
330 (when (testcover-reinstrument-compose (cdr form)
331 'testcover-reinstrument-list)
332 'maybe))
333 ((eq fun 'condition-case)
334 ;;Potentially 1-valued if BODYFORM is and all HANDLERS are
335 (let ((body (testcover-reinstrument (nth 2 form)))
336 (errs (testcover-reinstrument-compose
337 (mapcar #'cdr (nthcdr 3 form))
338 'testcover-reinstrument-list)))
339 (and body errs 'maybe)))
340 ((eq fun 'quote)
341 ;;Don't reinstrument what's inside!
342 ;;This doesn't apply within a backquote
343 t)
344 ((eq fun '\`)
345 ;;Quotes are not special within backquotes
346 (let ((testcover-1value-functions
347 (cons 'quote testcover-1value-functions)))
348 (testcover-reinstrument (cadr form))))
349 ((eq fun '\,)
350 ;;In commas inside backquotes, quotes are special again
351 (let ((testcover-1value-functions
352 (remq 'quote testcover-1value-functions)))
353 (testcover-reinstrument (cadr form))))
354 ((eq fun '1value)
355 ;;Hack - pretend the arg is 1-valued here
356 (cond
357 ((symbolp (cadr form))
358 ;;A pseudoconstant variable
359 t)
360 ((and (eq (car (cadr form)) 'edebug-after)
361 (symbolp (nth 3 (cadr form))))
362 ;;Reference to pseudoconstant
363 (aset testcover-vector (nth 2 (cadr form)) '1value)
364 (setcar (cdr form) `(testcover-1value ,(nth 2 (cadr form))
365 ,(nth 3 (cadr form))))
366 t)
367 (t
368 (setq id (car (if (eq (car (cadr form)) 'edebug-after)
369 (nth 3 (cadr form))
370 (cadr form))))
371 (let ((testcover-1value-functions
372 (cons id testcover-1value-functions)))
373 (testcover-reinstrument (cadr form))))))
374 ((eq fun 'noreturn)
375 ;;Hack - pretend the arg has no return
376 (cond
377 ((symbolp (cadr form))
378 ;;A pseudoconstant variable
379 'maybe)
380 ((and (eq (car (cadr form)) 'edebug-after)
381 (symbolp (nth 3 (cadr form))))
382 ;;Reference to pseudoconstant
383 (aset testcover-vector (nth 2 (cadr form)) '1value)
384 (setcar (cdr form) `(progn (testcover-after ,(nth 2 (cadr form)) nil)
385 ,(nth 3 (cadr form))))
386 'maybe)
387 (t
388 (setq id (car (if (eq (car (cadr form)) 'edebug-after)
389 (nth 3 (cadr form))
390 (cadr form))))
391 (let ((testcover-noreturn-functions
392 (cons id testcover-noreturn-functions)))
393 (testcover-reinstrument (cadr form))))))
394 ((and (eq fun 'apply)
395 (eq (car-safe (cadr form)) 'quote)
396 (symbolp (cadr (cadr form))))
397 ;;Apply of a constant symbol. Process as 1value or noreturn
398 ;;depending on symbol.
399 (setq fun (cons (cadr (cadr form)) (cddr form))
400 val (testcover-reinstrument fun))
401 (setcdr (cdr form) (cdr fun))
402 val)
403 (t ;Some other function or weird thing
404 (testcover-reinstrument-list (cdr form))
405 nil))))
406
407 (defun testcover-reinstrument-list (list)
408 "Reinstruments each form in LIST to use testcover instead of edebug.
409 This function modifies the forms in LIST. Result is `testcover-reinstrument's
410 value for the last form in LIST. If the LIST is empty, its evaluation will
411 always be nil, so we return t for 1-valued."
412 (let ((result t))
413 (while (consp list)
414 (setq result (testcover-reinstrument (pop list))))
415 result))
416
417 (defun testcover-reinstrument-compose (list fun)
418 "For a compositional function, the result is 1-valued if all
419 arguments are, potentially 1-valued if all arguments are either
420 definitely or potentially 1-valued, and multi-valued otherwise.
421 FUN should be `testcover-reinstrument' for compositional functions,
422 `testcover-reinstrument-list' for clauses in a `cond'."
423 (let ((result t))
424 (mapc #'(lambda (x)
425 (setq x (funcall fun x))
426 (cond
427 ((eq result t)
428 (setq result x))
429 ((eq result 'maybe)
430 (when (not x)
431 (setq result nil)))))
432 list)
433 result))
434
435 (defun testcover-end (filename)
436 "Turn off instrumentation of all macros and functions in FILENAME."
437 (interactive "fStop covering file: ")
438 (let ((buf (find-file-noselect filename)))
439 (eval-buffer buf)))
440
441
442 ;;;=========================================================================
443 ;;; Accumulate coverage data
444 ;;;=========================================================================
445
446 (defun testcover-enter (testcover-sym testcover-fun)
447 "Internal function for coverage testing. Invokes TESTCOVER-FUN while
448 binding `testcover-vector' to the code-coverage vector for TESTCOVER-SYM
449 \(the name of the current function)."
450 (let ((testcover-vector (get testcover-sym 'edebug-coverage)))
451 (funcall testcover-fun)))
452
453 (defun testcover-after (idx val)
454 "Internal function for coverage testing. Returns VAL after installing it in
455 `testcover-vector' at offset IDX."
456 (declare (gv-expander (lambda (do)
457 (gv-letplace (getter setter) val
458 (funcall do getter
459 (lambda (store)
460 `(progn (testcover-after ,idx ,getter)
461 ,(funcall setter store))))))))
462 (cond
463 ((eq (aref testcover-vector idx) 'unknown)
464 (aset testcover-vector idx val))
465 ((not (equal (aref testcover-vector idx) val))
466 (aset testcover-vector idx 'ok-coverage)))
467 val)
468
469 (defun testcover-1value (idx val)
470 "Internal function for coverage testing. Returns VAL after installing it in
471 `testcover-vector' at offset IDX. Error if FORM does not always return the
472 same value during coverage testing."
473 (cond
474 ((eq (aref testcover-vector idx) '1value)
475 (aset testcover-vector idx (cons '1value val)))
476 ((not (and (eq (car-safe (aref testcover-vector idx)) '1value)
477 (equal (cdr (aref testcover-vector idx)) val)))
478 (error "Value of form marked with `1value' does vary: %s" val)))
479 val)
480
481
482
483 ;;;=========================================================================
484 ;;; Display the coverage data as color splotches on your code.
485 ;;;=========================================================================
486
487 (defun testcover-mark (def)
488 "Marks one DEF (a function or macro symbol) to highlight its contained forms
489 that did not get completely tested during coverage tests.
490 A marking with the face `testcover-nohits' (default = red) indicates that the
491 form was never evaluated. A marking using the `testcover-1value' face
492 \(default = tan) indicates that the form always evaluated to the same value.
493 The forms throw, error, and signal are not marked. They do not return and
494 would always get a red mark. Some forms that always return the same
495 value (e.g., setq of a constant), always get a tan mark that can't be
496 eliminated by adding more test cases."
497 (let* ((data (get def 'edebug))
498 (def-mark (car data))
499 (points (nth 2 data))
500 (len (length points))
501 (changed (buffer-modified-p))
502 (coverage (get def 'edebug-coverage))
503 ov j)
504 (or (and def-mark points coverage)
505 (error "Missing edebug data for function %s" def))
506 (when (> len 0)
507 (set-buffer (marker-buffer def-mark))
508 (mapc 'delete-overlay
509 (overlays-in def-mark (+ def-mark (aref points (1- len)) 1)))
510 (while (> len 0)
511 (setq len (1- len)
512 data (aref coverage len))
513 (when (and (not (eq data 'ok-coverage))
514 (not (eq (car-safe data) '1value))
515 (setq j (+ def-mark (aref points len))))
516 (setq ov (make-overlay (1- j) j))
517 (overlay-put ov 'face
518 (if (memq data '(unknown 1value))
519 'testcover-nohits
520 'testcover-1value))))
521 (set-buffer-modified-p changed))))
522
523 (defun testcover-mark-all (&optional buffer)
524 "Mark all forms in BUFFER that did not get completely tested during
525 coverage tests. This function creates many overlays."
526 (interactive "bMark forms in buffer: ")
527 (if buffer
528 (switch-to-buffer buffer))
529 (goto-char 1)
530 (dolist (x edebug-form-data)
531 (if (get (car x) 'edebug)
532 (testcover-mark (car x)))))
533
534 (defun testcover-unmark-all (buffer)
535 "Remove all overlays from FILENAME."
536 (interactive "bUnmark forms in buffer: ")
537 (condition-case nil
538 (progn
539 (set-buffer buffer)
540 (mapc 'delete-overlay (overlays-in 1 (buffer-size))))
541 (error nil))) ;Ignore "No such buffer" errors
542
543 (defun testcover-next-mark ()
544 "Moves point to next line in current buffer that has a splotch."
545 (interactive)
546 (goto-char (next-overlay-change (point)))
547 (end-of-line))
548
549 ;; testcover.el ends here.