1 ;;;; the ASSERTOID macro, asserting something with added generality
2 ;;;; to help in regression tests
4 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; While most of SBCL is derived from the CMU CL system, the test
8 ;;;; files (like this one) were written from scratch after the fork
11 ;;;; This software is in the public domain and is provided with
12 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
13 ;;;; more information.
15 (cl:defpackage
"ASSERTOID"
17 (:export
"GRAB-CONDITION" "RAISES-ERROR?" "ASSERTOID"))
19 (cl:in-package
"ASSERTOID")
21 (defmacro grab-condition
(&body body
)
23 (ignore-errors ,@body
)))
25 (defmacro raises-error?
(form &optional
(error-subtype-spec 'error
))
26 `(typep (nth-value 1 (ignore-errors ,form
)) ',error-subtype-spec
))
28 ;;; EXPR is an expression to evaluate (both with EVAL and with
29 ;;; COMPILE/FUNCALL). EXTRA-OPTIMIZATIONS is a list of lists of
30 ;;; optimizations to pass to (DECLARE (OPTIMIZE ..)), to cause the
31 ;;; expression to be tested in other than the default optimization
34 ;;; The messiness with the various flavors of EXPECTED stuff is
35 ;;; to handle various issues:
36 ;;; * Some things are expected to signal errors instead of returning
38 ;;; * Some things are expected to return multiple values.
39 ;;; * Some things can return any of several values (e.g. generalized
41 ;;; The default is to expect a generalized boolean true.
43 ;;; Use EXPECTED-LAMBDA to require an answer which satisfies the given
44 ;;; LAMBDA. EXPECTED-EQL, EXPECTED-EQUAL, and EXPECTED-EQUALP are
45 ;;; shorthand for special cases of EXPECTED-LAMBDA.
47 ;;; Use EXPECTED-ERROR to require an error to be signalled. Use
48 ;;; EXPECTED-ERROR-LAMBDA to require that an error be signalled and
49 ;;; that further it satisfies the given lambda.
50 (defmacro assertoid
(expr
53 (expected-eql nil expected-eql-p
)
54 (expected-equal nil expected-equal-p
)
55 (expected-equalp nil expected-equalp-p
)
56 (expected-lambda (cond
59 (eql x
(eval expected-eql
))))
62 (equal x
(eval expected-equal
))))
65 (equalp x
(eval expected-equalp
))))
70 (expected-error-type nil expected-error-type-p
)
71 (expected-error-lambda (if expected-error-type
76 expected-error-lambda-p
))
77 (when (> (count-if #'identity
78 (vector expected-eql-p
83 expected-error-lambda-p
))
85 (error "multiple EXPECTED-FOO arguments"))
86 (when expected-error-lambda
87 (error "stub: expected-error functionality not supported yet"))
88 (let ((eval-expected-lambda (eval expected-lambda
)))
89 (flet ((frob (evaloid)
90 (let ((result (funcall evaloid expr
)))
91 (unless (funcall eval-expected-lambda result
)
92 (error "failed assertoid ~S" expr
))))
93 (compile-as-evaloid (optimizations)
97 (declare (optimize ,@optimizations
))
100 (frob (compile-as-evaloid ()))
101 (dolist (i extra-optimizations
)
102 (frob (compile-as-evaloid i
))))))
105 (assertoid (= 2 (length (list 1 2))))
106 (assertoid (= 2 (length (list 1 2)))
107 :extra-optimizations
(((speed 2) (space 3))
108 ((speed 1) (space 3))))
109 (assertoid (cons 1 2)
110 :expected-lambda
(lambda (x) (equal x
'(1 .
2))))
111 (assertoid (cons (list 1 2) (list 1 2))
112 :expected-equal
'((1 2) 1 2))
113 ;;; not implemented yet:
114 #+nil
(assertoid (length (eval (find-package :cl
)))
115 :expected-error-type
'type-error
)