1 ;;;; CLOS tests with no side effects
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
14 (cl:in-package
:cl-user
)
16 ;;; not really a test for observable behaviour, but: make sure that
17 ;;; all generic functions on startup have lambda lists known to the
18 ;;; system, because some functionality (e.g. &key argument checking)
19 ;;; depends on it. The basic functionality is tested elsewhere, but
20 ;;; this is to investigate the internals for possible inconsistency.
23 (sb-pcl::map-all-generic-functions
25 (let ((arg-info (sb-pcl::gf-arg-info gf
)))
26 (when (eq (sb-pcl::arg-info-lambda-list arg-info
)
29 (print (nreverse collect
)))))
31 ;;; Regressing test for invalid slot specification error printing
32 (multiple-value-bind (value err
)
33 (ignore-errors (macroexpand '(defclass foo
() (frob (frob bar
)))))
34 (declare (ignore value
))
35 (assert (typep err
'simple-condition
))
36 (multiple-value-bind (value format-err
)
37 (ignore-errors (apply #'format nil
38 (simple-condition-format-control err
)
39 (simple-condition-format-arguments err
)))
40 (declare (ignore value
))
41 (assert (not format-err
))))
43 ;;; another not (user-)observable behaviour: make sure that
44 ;;; sb-pcl::map-all-classes calls its function on each class once and
47 (sb-pcl::map-all-classes
(lambda (c) (push c result
)))
48 (assert (equal result
(remove-duplicates result
))))
50 ;;; this one's user-observable
51 (with-test (:name
:type-of-setf-class-name
)
52 (assert (typep #'(setf class-name
) 'generic-function
)))
54 ;;; CLHS 1.4.4.5. We could test for this by defining methods
55 ;;; (i.e. portably) but it's much easier using the MOP and
57 (with-test (:name
:check-standard-superclasses
)
58 (flet ((standardized-class-p (c)
60 (eq (symbol-package (class-name c
))
61 (find-package :cl
)))))
63 (sb-pcl::map-all-classes
64 (lambda (c) (when (standardized-class-p c
)
65 (let* ((cpl (sb-mop:class-precedence-list c
))
66 (std (position (find-class 'standard-object
) cpl
))
67 (str (position (find-class 'structure-object
) cpl
))
69 #'standardized-class-p
(butlast cpl
)
72 (push `(:and
,c
) result
))
73 (when (and str
(< str last
))
74 (push `(:str
,c
) result
))
75 (when (and std
(< std last
))
76 (push `(:std
,c
) result
))))))
77 (assert (null result
)))))
79 ;; No compiler-notes for non-constant slot-names in default policy.
81 (compile nil
'(lambda (x y z
)
82 (setf (slot-value x z
)
84 (sb-ext:compiler-note
(e)
87 (with-test (:name
:slot-table-of-symbol-works
)
89 ;; the error that I want is about a missing slot,
90 ;; not a missing method, so don't let the compiler turn
91 ;; this into (funcall #'(SLOT-ACCESSOR :GLOBAL A READER)...)
92 (handler-case (eval '(slot-value 'a
'a
))
94 (and (search "slot ~S is missing"
95 (simple-condition-format-control c
))