Merge branch 'master' into comment-cache
[emacs.git] / lisp / emacs-lisp / testcover.el
blob433ad38a1475ac56c65e0e4a025f565dd79fd598
1 ;;;; testcover.el -- Visual code-coverage tool -*- lexical-binding:t -*-
3 ;; Copyright (C) 2002-2017 Free Software Foundation, Inc.
5 ;; Author: Jonathan Yavner <jyavner@member.fsf.org>
6 ;; Maintainer: Jonathan Yavner <jyavner@member.fsf.org>
7 ;; Keywords: lisp utility
9 ;; This file is part of GNU Emacs.
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.
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.
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/>.
25 ;;; Commentary:
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.
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.
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.
65 (require 'edebug)
66 (provide 'testcover)
69 ;;;==========================================================================
70 ;;; User options
71 ;;;==========================================================================
73 (defgroup testcover nil
74 "Code-coverage tester."
75 :group 'lisp
76 :prefix "testcover-"
77 :version "21.1")
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))
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))
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))
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))
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))
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))
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))
152 (defface testcover-nohits
153 '((t (:background "DeepPink2")))
154 "Face for forms that had no hits during coverage test"
155 :group 'testcover)
157 (defface testcover-1value
158 '((t (:background "Wheat2")))
159 "Face for forms that always produced the same value during coverage test"
160 :group 'testcover)
163 ;;;=========================================================================
164 ;;; Other variables
165 ;;;=========================================================================
167 (defvar testcover-module-constants nil
168 "Symbols declared with defconst in the last file processed by
169 `testcover-start'.")
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.")
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.")
179 (defvar testcover-vector nil
180 "Locally bound to coverage vector for function in progress.")
183 ;;;=========================================================================
184 ;;; Add instrumentation to your module
185 ;;;=========================================================================
187 ;;;###autoload
188 (defun testcover-start (filename &optional byte-compile)
189 "Uses edebug to instrument all macros and functions in FILENAME, then
190 changes the instrumentation from edebug to testcover--much faster, no
191 problems with type-ahead or post-command-hook, etc. If BYTE-COMPILE is
192 non-nil, byte-compiles each function after instrumenting."
193 (interactive "fStart covering file: ")
194 (let ((buf (find-file filename))
195 (load-read-function load-read-function))
196 (add-function :around load-read-function
197 #'testcover--read)
198 (setq edebug-form-data nil
199 testcover-module-constants nil
200 testcover-module-1value-functions nil)
201 (eval-buffer buf))
202 (when byte-compile
203 (dolist (x (reverse edebug-form-data))
204 (when (fboundp (car x))
205 (message "Compiling %s..." (car x))
206 (byte-compile (car x))))))
208 ;;;###autoload
209 (defun testcover-this-defun ()
210 "Start coverage on function under point."
211 (interactive)
212 (let ((x (let ((edebug-all-defs t))
213 (symbol-function (eval-defun nil)))))
214 (testcover-reinstrument x)
217 (defun testcover--read (orig &optional stream)
218 "Read a form using edebug, changing edebug callbacks to testcover callbacks."
219 (or stream (setq stream standard-input))
220 (if (eq stream (current-buffer))
221 (let ((x (let ((edebug-all-defs t))
222 (edebug-read-and-maybe-wrap-form))))
223 (testcover-reinstrument x)
225 (funcall (or orig #'read) stream)))
227 (defun testcover-reinstrument (form)
228 "Reinstruments FORM to use testcover instead of edebug. This
229 function modifies the list that FORM points to. Result is nil if
230 FORM should return multiple values, t if should always return same
231 value, `maybe' if either is acceptable."
232 (let ((fun (car-safe form))
233 id val)
234 (cond
235 ((not fun) ;Atom
236 (when (or (not (symbolp form))
237 (memq form testcover-constants)
238 (memq form testcover-module-constants))
240 ((consp fun) ;Embedded list
241 (testcover-reinstrument fun)
242 (testcover-reinstrument-list (cdr form))
243 nil)
244 ((or (memq fun testcover-1value-functions)
245 (memq fun testcover-module-1value-functions))
246 ;;Should always return same value
247 (testcover-reinstrument-list (cdr form))
249 ((or (memq fun testcover-potentially-1value-functions)
250 (memq fun testcover-module-potentially-1value-functions))
251 ;;Might always return same value
252 (testcover-reinstrument-list (cdr form))
253 'maybe)
254 ((memq fun testcover-progn-functions)
255 ;;1-valued if last argument is
256 (testcover-reinstrument-list (cdr form)))
257 ((memq fun testcover-prog1-functions)
258 ;;1-valued if first argument is
259 (testcover-reinstrument-list (cddr form))
260 (testcover-reinstrument (cadr form)))
261 ((memq fun testcover-compose-functions)
262 ;;1-valued if all arguments are. Potentially 1-valued if all
263 ;;arguments are either definitely or potentially.
264 (testcover-reinstrument-compose (cdr form) 'testcover-reinstrument))
265 ((eq fun 'edebug-enter)
266 ;;(edebug-enter 'SYM ARGS #'(lambda nil FORMS))
267 ;; => (testcover-enter 'SYM #'(lambda nil FORMS))
268 (setcar form 'testcover-enter)
269 (setcdr (nthcdr 1 form) (nthcdr 3 form))
270 (let ((testcover-vector (get (cadr (cadr form)) 'edebug-coverage)))
271 (testcover-reinstrument-list (nthcdr 2 (cadr (nth 2 form))))))
272 ((eq fun 'edebug-after)
273 ;;(edebug-after (edebug-before XXX) YYY FORM)
274 ;; => (testcover-after YYY FORM), mark XXX as ok-coverage
275 (unless (eq (cadr form) 0)
276 (aset testcover-vector (cadr (cadr form)) 'ok-coverage))
277 (setq id (nth 2 form))
278 (setcdr form (nthcdr 2 form))
279 (setq val (testcover-reinstrument (nth 2 form)))
280 (setcar form (if (eq val t)
281 'testcover-1value
282 'testcover-after))
283 (when val
284 ;;1-valued or potentially 1-valued
285 (aset testcover-vector id '1value))
286 (cond
287 ((memq (car-safe (nth 2 form)) testcover-noreturn-functions)
288 ;;This function won't return, so set the value in advance
289 ;;(edebug-after (edebug-before XXX) YYY FORM)
290 ;; => (progn (edebug-after YYY nil) FORM)
291 (setcar (cdr form) `(,(car form) ,id nil))
292 (setcar form 'progn)
293 (aset testcover-vector id '1value)
294 (setq val t))
295 ((eq (car-safe (nth 2 form)) '1value)
296 ;;This function is always supposed to return the same value
297 (setq val t)
298 (aset testcover-vector id '1value)
299 (setcar form 'testcover-1value)))
300 val)
301 ((eq fun 'defun)
302 (setq val (testcover-reinstrument-list (nthcdr 3 form)))
303 (when (eq val t)
304 (push (cadr form) testcover-module-1value-functions))
305 (when (eq val 'maybe)
306 (push (cadr form) testcover-module-potentially-1value-functions)))
307 ((memq fun '(defconst defcustom))
308 ;;Define this symbol as 1-valued
309 (push (cadr form) testcover-module-constants)
310 (testcover-reinstrument-list (cddr form)))
311 ((memq fun '(dotimes dolist))
312 ;;Always returns third value from SPEC
313 (testcover-reinstrument-list (cddr form))
314 (setq val (testcover-reinstrument-list (cadr form)))
315 (if (nth 2 (cadr form))
317 ;;No third value, always returns nil
319 ((memq fun '(let let*))
320 ;;Special parsing for second argument
321 (mapc 'testcover-reinstrument-list (cadr form))
322 (testcover-reinstrument-list (cddr form)))
323 ((eq fun 'if)
324 ;;Potentially 1-valued if both THEN and ELSE clauses are
325 (testcover-reinstrument (cadr form))
326 (let ((then (testcover-reinstrument (nth 2 form)))
327 (else (testcover-reinstrument-list (nthcdr 3 form))))
328 (and then else 'maybe)))
329 ((eq fun 'cond)
330 ;;Potentially 1-valued if all clauses are
331 (when (testcover-reinstrument-compose (cdr form)
332 'testcover-reinstrument-list)
333 'maybe))
334 ((eq fun 'condition-case)
335 ;;Potentially 1-valued if BODYFORM is and all HANDLERS are
336 (let ((body (testcover-reinstrument (nth 2 form)))
337 (errs (testcover-reinstrument-compose
338 (mapcar #'cdr (nthcdr 3 form))
339 'testcover-reinstrument-list)))
340 (and body errs 'maybe)))
341 ((eq fun 'quote)
342 ;;Don't reinstrument what's inside!
343 ;;This doesn't apply within a backquote
345 ((eq fun '\`)
346 ;;Quotes are not special within backquotes
347 (let ((testcover-1value-functions
348 (cons 'quote testcover-1value-functions)))
349 (testcover-reinstrument (cadr form))))
350 ((eq fun '\,)
351 ;;In commas inside backquotes, quotes are special again
352 (let ((testcover-1value-functions
353 (remq 'quote testcover-1value-functions)))
354 (testcover-reinstrument (cadr form))))
355 ((eq fun '1value)
356 ;;Hack - pretend the arg is 1-valued here
357 (cond
358 ((symbolp (cadr form))
359 ;;A pseudoconstant variable
361 ((and (eq (car (cadr form)) 'edebug-after)
362 (symbolp (nth 3 (cadr form))))
363 ;;Reference to pseudoconstant
364 (aset testcover-vector (nth 2 (cadr form)) '1value)
365 (setcar (cdr form) `(testcover-1value ,(nth 2 (cadr form))
366 ,(nth 3 (cadr form))))
369 (setq id (car (if (eq (car (cadr form)) 'edebug-after)
370 (nth 3 (cadr form))
371 (cadr form))))
372 (let ((testcover-1value-functions
373 (cons id testcover-1value-functions)))
374 (testcover-reinstrument (cadr form))))))
375 ((eq fun 'noreturn)
376 ;;Hack - pretend the arg has no return
377 (cond
378 ((symbolp (cadr form))
379 ;;A pseudoconstant variable
380 'maybe)
381 ((and (eq (car (cadr form)) 'edebug-after)
382 (symbolp (nth 3 (cadr form))))
383 ;;Reference to pseudoconstant
384 (aset testcover-vector (nth 2 (cadr form)) '1value)
385 (setcar (cdr form) `(progn (testcover-after ,(nth 2 (cadr form)) nil)
386 ,(nth 3 (cadr form))))
387 'maybe)
389 (setq id (car (if (eq (car (cadr form)) 'edebug-after)
390 (nth 3 (cadr form))
391 (cadr form))))
392 (let ((testcover-noreturn-functions
393 (cons id testcover-noreturn-functions)))
394 (testcover-reinstrument (cadr form))))))
395 ((and (eq fun 'apply)
396 (eq (car-safe (cadr form)) 'quote)
397 (symbolp (cadr (cadr form))))
398 ;;Apply of a constant symbol. Process as 1value or noreturn
399 ;;depending on symbol.
400 (setq fun (cons (cadr (cadr form)) (cddr form))
401 val (testcover-reinstrument fun))
402 (setcdr (cdr form) (cdr fun))
403 val)
404 (t ;Some other function or weird thing
405 (testcover-reinstrument-list (cdr form))
406 nil))))
408 (defun testcover-reinstrument-list (list)
409 "Reinstruments each form in LIST to use testcover instead of edebug.
410 This function modifies the forms in LIST. Result is `testcover-reinstrument's
411 value for the last form in LIST. If the LIST is empty, its evaluation will
412 always be nil, so we return t for 1-valued."
413 (let ((result t))
414 (while (consp list)
415 (setq result (testcover-reinstrument (pop list))))
416 result))
418 (defun testcover-reinstrument-compose (list fun)
419 "For a compositional function, the result is 1-valued if all
420 arguments are, potentially 1-valued if all arguments are either
421 definitely or potentially 1-valued, and multi-valued otherwise.
422 FUN should be `testcover-reinstrument' for compositional functions,
423 `testcover-reinstrument-list' for clauses in a `cond'."
424 (let ((result t))
425 (mapc #'(lambda (x)
426 (setq x (funcall fun x))
427 (cond
428 ((eq result t)
429 (setq result x))
430 ((eq result 'maybe)
431 (when (not x)
432 (setq result nil)))))
433 list)
434 result))
436 (defun testcover-end (filename)
437 "Turn off instrumentation of all macros and functions in FILENAME."
438 (interactive "fStop covering file: ")
439 (let ((buf (find-file-noselect filename)))
440 (eval-buffer buf)))
443 ;;;=========================================================================
444 ;;; Accumulate coverage data
445 ;;;=========================================================================
447 (defun testcover-enter (testcover-sym testcover-fun)
448 "Internal function for coverage testing. Invokes TESTCOVER-FUN while
449 binding `testcover-vector' to the code-coverage vector for TESTCOVER-SYM
450 \(the name of the current function)."
451 (let ((testcover-vector (get testcover-sym 'edebug-coverage)))
452 (funcall testcover-fun)))
454 (defun testcover-after (idx val)
455 "Internal function for coverage testing. Returns VAL after installing it in
456 `testcover-vector' at offset IDX."
457 (declare (gv-expander (lambda (do)
458 (gv-letplace (getter setter) val
459 (funcall do getter
460 (lambda (store)
461 `(progn (testcover-after ,idx ,getter)
462 ,(funcall setter store))))))))
463 (cond
464 ((eq (aref testcover-vector idx) 'unknown)
465 (aset testcover-vector idx val))
466 ((not (equal (aref testcover-vector idx) val))
467 (aset testcover-vector idx 'ok-coverage)))
468 val)
470 (defun testcover-1value (idx val)
471 "Internal function for coverage testing. Returns VAL after installing it in
472 `testcover-vector' at offset IDX. Error if FORM does not always return the
473 same value during coverage testing."
474 (cond
475 ((eq (aref testcover-vector idx) '1value)
476 (aset testcover-vector idx (cons '1value val)))
477 ((not (and (eq (car-safe (aref testcover-vector idx)) '1value)
478 (equal (cdr (aref testcover-vector idx)) val)))
479 (error "Value of form marked with `1value' does vary: %s" val)))
480 val)
484 ;;;=========================================================================
485 ;;; Display the coverage data as color splotches on your code.
486 ;;;=========================================================================
488 (defun testcover-mark (def)
489 "Marks one DEF (a function or macro symbol) to highlight its contained forms
490 that did not get completely tested during coverage tests.
491 A marking with the face `testcover-nohits' (default = red) indicates that the
492 form was never evaluated. A marking using the `testcover-1value' face
493 \(default = tan) indicates that the form always evaluated to the same value.
494 The forms throw, error, and signal are not marked. They do not return and
495 would always get a red mark. Some forms that always return the same
496 value (e.g., setq of a constant), always get a tan mark that can't be
497 eliminated by adding more test cases."
498 (let* ((data (get def 'edebug))
499 (def-mark (car data))
500 (points (nth 2 data))
501 (len (length points))
502 (changed (buffer-modified-p))
503 (coverage (get def 'edebug-coverage))
504 ov j)
505 (or (and def-mark points coverage)
506 (error "Missing edebug data for function %s" def))
507 (when (> len 0)
508 (set-buffer (marker-buffer def-mark))
509 (mapc 'delete-overlay
510 (overlays-in def-mark (+ def-mark (aref points (1- len)) 1)))
511 (while (> len 0)
512 (setq len (1- len)
513 data (aref coverage len))
514 (when (and (not (eq data 'ok-coverage))
515 (not (eq (car-safe data) '1value))
516 (setq j (+ def-mark (aref points len))))
517 (setq ov (make-overlay (1- j) j))
518 (overlay-put ov 'face
519 (if (memq data '(unknown 1value))
520 'testcover-nohits
521 'testcover-1value))))
522 (set-buffer-modified-p changed))))
524 (defun testcover-mark-all (&optional buffer)
525 "Mark all forms in BUFFER that did not get completely tested during
526 coverage tests. This function creates many overlays."
527 (interactive "bMark forms in buffer: ")
528 (if buffer
529 (switch-to-buffer buffer))
530 (goto-char 1)
531 (dolist (x edebug-form-data)
532 (if (get (car x) 'edebug)
533 (testcover-mark (car x)))))
535 (defun testcover-unmark-all (buffer)
536 "Remove all overlays from FILENAME."
537 (interactive "bUnmark forms in buffer: ")
538 (condition-case nil
539 (progn
540 (set-buffer buffer)
541 (mapc 'delete-overlay (overlays-in 1 (buffer-size))))
542 (error nil))) ;Ignore "No such buffer" errors
544 (defun testcover-next-mark ()
545 "Moves point to next line in current buffer that has a splotch."
546 (interactive)
547 (goto-char (next-overlay-change (point)))
548 (end-of-line))
550 ;; testcover.el ends here.