1.0.22.9: SB-INTROSPECT regression from 1.0.22.8
[sbcl/tcr.git] / contrib / sb-introspect / test-driver.lisp
blob9ae4e63dd924296290040496625d484a55d8e90a
1 (require :sb-introspect)
3 (defpackage :sb-introspect-test
4 (:use "SB-INTROSPECT" "CL"))
5 (in-package :sb-introspect-test)
7 (with-compilation-unit (:source-plist (list :test-outer "OUT"))
8 (load (compile-file (merge-pathnames "test.lisp" *load-pathname*))))
10 (assert (equal (function-arglist 'cl-user::one)
11 '(cl-user::a cl-user::b cl-user::c)))
12 (assert (equal (function-arglist 'the)
13 '(sb-c::value-type sb-c::form)))
15 (assert (equal (function-arglist #'(sb-pcl::slow-method cl-user::j (t)))
16 '(sb-pcl::method-args sb-pcl::next-methods)))
18 (let ((source (find-definition-source #'cl-user::one)))
19 (assert (= (definition-source-file-write-date source)
20 (file-write-date (merge-pathnames "test.lisp" *load-pathname*))))
21 (assert (equal (getf (definition-source-plist source) :test-outer)
22 "OUT")))
24 (let ((plist (definition-source-plist
25 (find-definition-source #'cl-user::four))))
26 (assert (equal (getf plist :test-outer) "OUT"))
27 (assert (equal (getf plist :test-inner) "IN")))
29 (defun matchp (object form-number)
30 (let ((ds (sb-introspect:find-definition-source object)))
31 (and (pathnamep (sb-introspect:definition-source-pathname ds))
32 (= form-number
33 (first (sb-introspect:definition-source-form-path ds))))))
35 (defun matchp-name (type object form-number)
36 (let ((ds (car (sb-introspect:find-definition-sources-by-name object type))))
37 (and (pathnamep (sb-introspect:definition-source-pathname ds))
38 (= form-number
39 (first (sb-introspect:definition-source-form-path ds))))))
41 (defun matchp-length (type object form-numbers)
42 (let ((ds (sb-introspect:find-definition-sources-by-name object type)))
43 (= (length ds) form-numbers)))
45 (assert (matchp-name :function 'cl-user::one 2))
46 (assert (matchp #'cl-user::one 2))
47 (assert (matchp-name :generic-function 'cl-user::two 3))
48 (assert (matchp (car (sb-pcl:generic-function-methods #'cl-user::two)) 4))
50 (assert (matchp-name :variable 'cl-user::*a* 8))
51 (assert (matchp-name :variable 'cl-user::*b* 9))
52 (assert (matchp-name :class 'cl-user::a 10))
53 (assert (matchp-name :condition 'cl-user::b 11))
54 (assert (matchp-name :structure 'cl-user::c 12))
55 (assert (matchp-name :function 'cl-user::make-c 12))
56 (assert (matchp-name :function 'cl-user::c-e 12))
57 (assert (matchp-name :structure 'cl-user::d 13))
58 (assert (matchp-name :function 'cl-user::make-d 13))
59 (assert (matchp-name :function 'cl-user::d-e 13))
60 (assert (matchp-name :package 'cl-user::e 14))
61 (assert (matchp-name :symbol-macro 'cl-user::f 15))
62 (assert (matchp-name :type 'cl-user::g 16))
63 (assert (matchp-name :constant 'cl-user::+h+ 17))
64 (assert (matchp-length :method 'cl-user::j 2))
65 (assert (matchp-name :macro 'cl-user::l 20))
66 (assert (matchp-name :compiler-macro 'cl-user::m 21))
67 (assert (matchp-name :setf-expander 'cl-user::n 22))
68 (assert (matchp-name :function '(setf cl-user::o) 23))
69 (assert (matchp-name :method '(setf cl-user::p) 24))
70 (assert (matchp-name :macro 'cl-user::q 25))
71 (assert (matchp-name :method-combination 'cl-user::r 26))
72 (assert (matchp-name :setf-expander 'cl-user::s 27))
74 (sb-profile:profile cl-user::one)
75 (assert (matchp-name :function 'cl-user::one 2))
76 (sb-profile:unprofile cl-user::one)
79 ;;;; Check correctness of FUNCTION-ARGLIST.
81 (assert (equal (function-arglist 'cl-user::one)
82 '(cl-user::a cl-user::b cl-user::c)))
83 (assert (equal (function-arglist 'the)
84 '(sb-c::value-type sb-c::form)))
86 ;;; Check wrt. interplay of generic functions and their methods.
88 (defgeneric xuuq (gf.a gf.b &rest gf.rest &key gf.k-X))
89 (defmethod xuuq ((m1.a number) m1.b &rest m1.rest &key gf.k-X m1.k-Y m1.k-Z)
90 (declare (ignore m1.a m1.b m1.rest gf.k-X m1.k-Y m1.k-Z))
91 'm1)
92 (defmethod xuuq ((m2.a string) m2.b &rest m2.rest &key gf.k-X m1.k-Y m2.k-Q)
93 (declare (ignore m2.a m2.b m2.rest gf.k-X m1.k-Y m2.k-Q))
94 'm2)
96 ;; XUUQ's lambda list should look similiar to
98 ;; (GF.A GF.B &REST GF.REST &KEY GF.K-X M1.K-Z M1.K-Y M2.K-Q)
100 (multiple-value-bind (required optional restp rest keyp keys allowp
101 auxp aux morep more-context more-count)
102 (sb-int:parse-lambda-list (function-arglist #'xuuq))
103 (assert (equal required '(gf.a gf.b)))
104 (assert (null optional))
105 (assert (and restp (eql rest 'gf.rest)))
106 (assert (and keyp
107 (member 'gf.k-X keys)
108 (member 'm1.k-Y keys)
109 (member 'm1.k-Z keys)
110 (member 'm2.k-Q keys)))
111 (assert (not allowp))
112 (assert (and (not auxp) (null aux)))
113 (assert (and (not morep) (null more-context) (not more-count))))
115 ;;; Check what happens when there's no explicit DEFGENERIC.
117 (defmethod kroolz (r1 r2 &optional opt &aux aux)
118 (declare (ignore r1 r2 opt aux))
119 'kroolz)
120 (assert (equal (function-arglist #'kroolz) '(r1 r2 &optional opt)))
122 ;;;; Test finding a type that isn't one
123 (assert (not (find-definition-sources-by-name 'fboundp :type)))
125 ;;;; Test the xref facility
127 (load (merge-pathnames "xref-test.lisp" *load-pathname*))
129 ;;;; Unix success convention for exit codes
130 (sb-ext:quit :unix-status 0)