b6e85dbd6d9a20de7088a19aec8f31c2fa97ae94
[fiveam.git] / src / test.lisp
1 ;; -*- lisp -*-
2
3 (in-package :it.bese.FiveAM)
4
5 ;;;; * Tests
6
7 ;;;; While executing checks and collecting the results is the core job
8 ;;;; of a testing framework it is also important to be able to
9 ;;;; organize checks into groups, FiveAM provides two mechanisms for
10 ;;;; organizing checks: tests and test suites. A test is a named
11 ;;;; collection of checks which can be run and a test suite is a named
12 ;;;; collection of tests and test suites.
13
14 (deflookup-table test
15   :at-redefinition nil
16   :documentation "Lookup table mapping test (and test suite)
17   names to objects.")
18
19 (defun test-names ()
20   (loop for test being the hash-keys of *test*
21         collect test))
22
23 (defmacro test (name &body body)
24   "Create a test named NAME. If NAME is a list it must be of the
25 form:
26
27   (name &key depends-on suite)
28
29 NAME is the symbol which names the test.
30
31 DEPENDS-ON is a list of the form:
32
33  (AND . test-names) - This test is run only if all of the tests
34  in TEST-NAMES have passed, otherwise a single test-skipped
35  result is generated.
36
37  (OR . test-names) - If any of TEST-NAMES has passed this test is
38  run, otherwise a test-skipped result is generated.
39
40  (NOT test-name) - This is test is run only if TEST-NAME failed.
41
42 AND, OR and NOT can be combined to produce complex dependencies.
43
44 If DEPENDS-ON is a symbol it is interpreted as `(AND
45 ,depends-on), this is accomadate the common case of one test
46 depending on another.
47
48 SUITE defaults to the current value of *SUITE*."
49   (destructuring-bind (name &key depends-on (suite nil suite-supplied-p) (compile-at :run-time))
50       (ensure-list name)
51     (declare (type (member :run-time :definition-time) compile-at))
52     (let (description)
53       (setf description (if (stringp (car body))
54                             (pop body)
55                             ""))
56       `(progn
57          (setf (get-test ',name) (make-instance 'test-case
58                                                 :name ',name
59                                                 :runtime-package ,*package*
60                                                 :test-lambda
61                                                 (lambda ()
62                                                   ,@(ecase compile-at
63                                                            (:run-time `((funcall (let ((*package* ,*package*))
64                                                                                           (compile nil '(lambda () ,@body))))))
65                                                            (:definition-time body)))
66                                                 :description ,description
67                                                 :depends-on ',depends-on))
68          ,(if suite-supplied-p
69               `(setf (gethash ',name (tests (get-test ',suite)))
70                      ',name)
71               `(setf (gethash ',name (tests (or *suite* (get-test 'NIL))))
72                      ',name))
73          (when *run-test-when-defined*
74            (run! ',name))
75          ',name))))
76
77 (defvar *run-test-when-defined* nil
78   "When non-NIL tests are run as soon as they are defined.")
79
80 ;; Copyright (c) 2002-2003, Edward Marco Baringer
81 ;; All rights reserved. 
82 ;; 
83 ;; Redistribution and use in source and binary forms, with or without
84 ;; modification, are permitted provided that the following conditions are
85 ;; met:
86 ;; 
87 ;;  - Redistributions of source code must retain the above copyright
88 ;;    notice, this list of conditions and the following disclaimer.
89 ;; 
90 ;;  - Redistributions in binary form must reproduce the above copyright
91 ;;    notice, this list of conditions and the following disclaimer in the
92 ;;    documentation and/or other materials provided with the distribution.
93 ;;
94 ;;  - Neither the name of Edward Marco Baringer, nor BESE, nor the names
95 ;;    of its contributors may be used to endorse or promote products
96 ;;    derived from this software without specific prior written permission.
97 ;; 
98 ;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
99 ;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
100 ;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
101 ;; A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
102 ;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
103 ;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
104 ;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
105 ;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
106 ;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
107 ;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
108 ;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.