Reenable ALLOCATION-INFORMATION.4, mark as known failure
[sbcl.git] / contrib / sb-introspect / test-driver.lisp
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3 ;;;;
4 ;;;; This software is derived from the CMU CL system, which was
5 ;;;; written at Carnegie Mellon University and released into the
6 ;;;; public domain. The software is in the public domain and is
7 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
8 ;;;; files for more information.
9
10 (defpackage :sb-introspect-test
11   (:use "SB-INTROSPECT" "CL" "SB-RT"))
12
13 (in-package :sb-introspect-test)
14
15 (defmacro deftest* ((name &key fails-on) form &rest results)
16   `(progn
17      (when (sb-impl::featurep ',fails-on)
18        (pushnew ',name sb-rt::*expected-failures*))
19      (deftest ,name ,form ,@results)))
20
21 (deftest function-lambda-list.1
22     (function-lambda-list 'cl-user::one)
23   (cl-user::a cl-user::b cl-user::c))
24
25 (deftest function-lambda-list.2
26     (function-lambda-list 'the)
27   (sb-c::value-type sb-c::form))
28
29 (deftest function-lambda-list.3
30     (function-lambda-list #'(sb-pcl::slow-method cl-user::j (t)))
31   (sb-pcl::method-args sb-pcl::next-methods))
32
33 (deftest definition-source-plist.1
34     (let* ((source (find-definition-source #'cl-user::one))
35            (plist (definition-source-plist source)))
36       (values (= (definition-source-file-write-date source)
37                  (file-write-date "test.lisp"))
38               (or (equal (getf plist :test-outer)
39                          "OUT")
40                   plist)))
41   t t)
42
43 (deftest definition-source-plist.2
44     (let ((plist (definition-source-plist
45                      (find-definition-source #'cl-user::four))))
46       (values (or (equal (getf plist :test-outer) "OUT")
47                   plist)
48               (or (equal (getf plist :test-inner) "IN")
49                   plist)))
50   t t)
51
52 (defun matchp (object form-number)
53   (let ((ds (sb-introspect:find-definition-source object)))
54     (and (pathnamep (sb-introspect:definition-source-pathname ds))
55          (= form-number
56             (first (sb-introspect:definition-source-form-path ds))))))
57
58 (defun matchp-name (type object form-number)
59   (let ((ds (car (sb-introspect:find-definition-sources-by-name object type))))
60     (and (pathnamep (sb-introspect:definition-source-pathname ds))
61          (= form-number
62             (first (sb-introspect:definition-source-form-path ds))))))
63
64 (defun matchp-length (type object form-numbers)
65   (let ((ds (sb-introspect:find-definition-sources-by-name object type)))
66     (= (length ds) form-numbers)))
67
68 (deftest find-source-stuff.1
69     (matchp-name :function 'cl-user::one 2)
70   t)
71
72 (deftest find-source-stuff.2
73     (matchp #'cl-user::one 2)
74   t)
75
76 (deftest find-source-stuff.3
77     (matchp-name :generic-function 'cl-user::two 3)
78   t)
79
80 (deftest find-source-stuff.4
81     (matchp (car (sb-pcl:generic-function-methods #'cl-user::two)) 4)
82   t)
83
84 (deftest find-source-stuff.5
85     (matchp-name :variable 'cl-user::*a* 8)
86   t)
87
88 (deftest find-source-stuff.6
89     (matchp-name :variable 'cl-user::*b* 9)
90   t)
91
92 (deftest find-source-stuff.7
93     (matchp-name :class 'cl-user::a 10)
94   t)
95
96 (deftest find-source-stuff.8
97     (matchp-name :condition 'cl-user::b 11)
98   t)
99
100 (deftest find-source-stuff.9
101     (matchp-name :structure 'cl-user::c 12)
102   t)
103
104 (deftest find-source-stuff.10
105     (matchp-name :function 'cl-user::make-c 12)
106   t)
107
108 (deftest find-source-stuff.11
109     (matchp-name :function 'cl-user::c-e 12)
110   t)
111
112 (deftest find-source-stuff.12
113     (matchp-name :structure 'cl-user::d 13)
114   t)
115
116 (deftest find-source-stuff.13
117     (matchp-name :function 'cl-user::make-d 13)
118   t)
119
120 (deftest find-source-stuff.14
121     (matchp-name :function 'cl-user::d-e 13)
122   t)
123
124 (deftest find-source-stuff.15
125     (matchp-name :package 'cl-user::e 14)
126   t)
127
128 (deftest find-source-stuff.16
129     (matchp-name :symbol-macro 'cl-user::f 15)
130   t)
131
132 (deftest find-source-stuff.17
133     (matchp-name :type 'cl-user::g 16)
134   t)
135
136 (deftest find-source-stuff.18
137     (matchp-name :constant 'cl-user::+h+ 17)
138   t)
139
140 (deftest find-source-stuff.19
141     (matchp-length :method 'cl-user::j 2)
142   t)
143
144 (deftest find-source-stuff.20
145     (matchp-name :macro 'cl-user::l 20)
146   t)
147
148 (deftest find-source-stuff.21
149     (matchp-name :compiler-macro 'cl-user::m 21)
150   t)
151
152 (deftest find-source-stuff.22
153     (matchp-name :setf-expander 'cl-user::n 22)
154   t)
155
156 (deftest find-source-stuff.23
157     (matchp-name :function  '(setf cl-user::o) 23)
158   t)
159
160 (deftest find-source-stuff.24
161     (matchp-name :method  '(setf cl-user::p) 24)
162   t)
163
164 (deftest find-source-stuff.25
165     (matchp-name :macro  'cl-user::q 25)
166   t)
167
168
169 (deftest find-source-stuff.26
170     (matchp-name :method-combination 'cl-user::r 26)
171   t)
172
173
174 (deftest find-source-stuff.27
175     (matchp-name :setf-expander 'cl-user::s 27)
176   t)
177
178 (deftest find-source-stuff.28
179     (let ((fin (make-instance 'sb-mop:funcallable-standard-object)))
180       (sb-mop:set-funcallable-instance-function fin #'cl-user::one)
181       (matchp fin 2))
182   t)
183
184 (deftest find-source-stuff.29
185     (unwind-protect
186          (progn
187            (sb-profile:profile cl-user::one)
188            (matchp-name :function 'cl-user::one 2))
189       (sb-profile:unprofile cl-user::one))
190   t)
191
192 (deftest find-source-stuff.30
193     ;; Test finding a type that isn't one
194     (not (find-definition-sources-by-name 'fboundp :type))
195   t)
196
197 (deftest find-source-stuff.31
198     (matchp-name :function 'cl-user::compile-time-too-fun 28)
199   t)
200
201 (deftest find-source-stuff.32
202     (matchp-name :function 'cl-user::loaded-as-source-fun 3)
203   t)
204
205 ;;; Check wrt. interplay of generic functions and their methods.
206
207 (defgeneric xuuq (gf.a gf.b          &rest gf.rest &key gf.k-X))
208 (defmethod  xuuq ((m1.a number) m1.b &rest m1.rest &key gf.k-X m1.k-Y m1.k-Z)
209   (declare (ignore m1.a m1.b m1.rest gf.k-X m1.k-Y m1.k-Z))
210   'm1)
211 (defmethod  xuuq ((m2.a string) m2.b &rest m2.rest &key gf.k-X m1.k-Y m2.k-Q)
212   (declare (ignore m2.a m2.b m2.rest gf.k-X m1.k-Y m2.k-Q))
213   'm2)
214
215 ;; XUUQ's lambda list should look similiar to
216 ;;
217 ;;    (GF.A GF.B &REST GF.REST &KEY GF.K-X M1.K-Z M1.K-Y M2.K-Q)
218 ;;
219 (deftest gf-interplay.1
220     (multiple-value-bind (required optional restp rest keyp keys allowp
221                                 auxp aux morep more-context more-count)
222         (sb-int:parse-lambda-list (function-lambda-list #'xuuq))
223       (and (equal required '(gf.a gf.b))
224            (null optional)
225            (and restp (eql rest 'gf.rest))
226            (and keyp
227                 (member 'gf.k-X keys)
228                 (member 'm1.k-Y keys)
229                 (member 'm1.k-Z keys)
230                 (member 'm2.k-Q keys))
231            (not allowp)
232            (and (not auxp) (null aux))
233            (and (not morep) (null more-context) (not more-count))))
234   t)
235
236 ;;; Check what happens when there's no explicit DEFGENERIC.
237
238 (defmethod kroolz (r1 r2 &optional opt &aux aux)
239   (declare (ignore r1 r2 opt aux))
240   'kroolz)
241
242 (deftest gf-interplay.2
243     (equal (function-lambda-list #'kroolz) '(r1 r2 &optional opt))
244   t)
245
246 ;;;; Check correctness of DEFTYPE-LAMBDA-LIST.
247 (deftype foobar-type
248     (&whole w &environment e r1 r2 &optional o &rest rest &key k1 k2 k3)
249   (declare (ignore w e r1 r2 o rest k1 k2 k3))
250   nil)
251
252 (deftest deftype-lambda-list.1
253     (deftype-lambda-list 'foobar-type)
254   (&whole w &environment e r1 r2 &optional o &rest rest &key k1 k2 k3)
255   t)
256
257 (deftest deftype-lambda-list.2
258     (deftype-lambda-list (gensym))
259   nil
260   nil)
261
262 ;; ARRAY is a primitive type with associated translator function.
263 (deftest deftype-lambda-list.3
264     (deftype-lambda-list 'array)
265   (&optional (sb-kernel::element-type '*) (sb-kernel::dimensions '*))
266   t)
267
268 ;; VECTOR is a primitive type that is defined by means of DEFTYPE.
269 (deftest deftype-lambda-list.4
270     (deftype-lambda-list 'vector)
271   (&optional sb-kernel::element-type sb-kernel::size)
272   t)
273
274 ;;; Test allocation-information
275
276 (defun tai (x kind info &key ignore)
277   (multiple-value-bind (kind2 info2) (sb-introspect:allocation-information x)
278     (unless (eq kind kind2)
279       (error "wanted ~S, got ~S" kind kind2))
280     (when (not (null ignore))
281       (setf info2 (copy-list info2))
282       (dolist (key ignore)
283         (remf info2 key))
284       (setf info (copy-list info))
285       (dolist (key ignore)
286         (remf info key)))
287     (equal info info2)))
288
289 (deftest allocation-infromation.1
290     (tai nil :heap '(:space :static))
291   t)
292
293 (deftest allocation-information.2
294     (tai t :heap '(:space :static))
295   t)
296
297 (deftest allocation-information.3
298     (tai 42 :immediate nil)
299   t)
300
301 ;;; Skip the whole damn test on GENCGC PPC -- the combination is just
302 ;;; to flaky for this to make too much sense.
303 ;;;
304 ;;; -- It appears that this test can also fail due to systematic issues
305 ;;; (possibly with the C compiler used) which we cannot detect based on
306 ;;; *features*.  Until this issue has been fixed, I am marking this test
307 ;;; as failing on Windows to allow installation of the contrib on
308 ;;; affected builds, even if the underlying issue is (possibly?) not even
309 ;;; strictly related to windows.  C.f. lp1057631.  --DFL
310 ;;;
311 (deftest* (allocation-information.4
312            ;; Ignored as per the comment above, even though it seems
313            ;; unlikely that this is the right condition.
314            :fails-on (or :win32 (and :ppc :gencgc)))
315     #+gencgc
316     (tai #'cons :heap
317          ;; FIXME: This is the canonical GENCGC result. On PPC we sometimes get
318          ;; :LARGE T, which doesn't seem right -- but ignore that for now.
319          '(:space :dynamic :generation 6 :write-protected t :boxed t :pinned nil :large nil)
320          :ignore (list :page #+ppc :large))
321     #-gencgc
322     (tai :cons :heap
323          ;; FIXME: Figure out what's the right cheney-result. SPARC at least
324          ;; has exhibited both :READ-ONLY and :DYNAMIC, which seems wrong.
325          '()
326          :ignore '(:space))
327   t)
328
329 #+sb-thread
330 (deftest allocation-information.thread.1
331     (let ((x (list 1 2 3)))
332       (declare (dynamic-extent x))
333       (tai x :stack sb-thread:*current-thread*))
334   t)
335
336 #+sb-thread
337 (progn
338    (defun thread-tai ()
339      (let ((x (list 1 2 3)))
340        (declare (dynamic-extent x))
341        (let ((child (sb-thread:make-thread
342                      (lambda ()
343                        (sb-introspect:allocation-information x)))))
344          (equal (list :stack sb-thread:*current-thread*)
345                 (multiple-value-list (sb-thread:join-thread child))))))
346
347    (deftest allocation-information.thread.2
348        (thread-tai)
349      t)
350
351    (defun thread-tai2 ()
352      (let* ((sem (sb-thread:make-semaphore))
353             (obj nil)
354             (child (sb-thread:make-thread
355                     (lambda ()
356                       (let ((x (list 1 2 3)))
357                         (declare (dynamic-extent x))
358                         (setf obj x)
359                         (sb-thread:wait-on-semaphore sem)))
360                     :name "child")))
361        (loop until obj)
362        (unwind-protect
363             (equal (list :stack child)
364                    (multiple-value-list
365                     (sb-introspect:allocation-information obj)))
366          (sb-thread:signal-semaphore sem)
367          (sb-thread:join-thread child))))
368
369    (deftest allocation-information.thread.3
370        (thread-tai2)
371      t))
372
373 ;;;; Test FUNCTION-TYPE
374
375 (defun type-equal (typespec1 typespec2)
376   (or (equal typespec1 typespec2)   ; TYPE= punts on &keywords in FTYPEs.
377       (sb-kernel:type= (sb-kernel:values-specifier-type typespec1)
378                        (sb-kernel:values-specifier-type typespec2))))
379
380 (defmacro interpret (form)
381   `(let ((sb-ext:*evaluator-mode* :interpret))
382      (eval ',form)))
383
384 ;; Functions
385
386 (declaim (ftype (function (integer &optional string) string) moon))
387 (defun moon (int &optional suffix)
388   (concatenate 'string (princ-to-string int) suffix))
389
390 (deftest function-type.1
391     (values (type-equal (function-type 'moon) (function-type #'moon))
392             (type-equal (function-type #'moon)
393                         '(function (integer &optional string)
394                           (values string &rest t))))
395   t t)
396
397 (defun sun (x y &key k1)
398   (declare (fixnum x y))
399   (declare (boolean k1))
400   (declare (ignore x y k1))
401   t)
402
403 (deftest function-type.2
404     (values (type-equal (function-type 'sun) (function-type #'sun))
405             (type-equal (function-type #'sun)
406                         '(function (fixnum fixnum &key (:k1 (member nil t)))
407                           (values (member t) &optional))))
408   t t)
409
410 ;; Local functions
411
412 (deftest function-type.5
413     (flet ((f (s)
414              (declare (symbol s))
415              (values (symbol-name s))))
416       (type-equal (function-type #'f)
417                   '(function (symbol) (values simple-string &optional))))
418   t)
419
420 ;; Closures
421
422 (deftest function-type.6
423     (let ((x 10))
424       (declare (fixnum x))
425       (flet ((closure (y)
426                (declare (fixnum y))
427                (setq x (+ x y))))
428         (type-equal (function-type #'closure)
429                     '(function (fixnum) (values fixnum &optional)))))
430   t)
431
432 ;; Anonymous functions
433
434 (deftest function-type.7
435     (type-equal (function-type #'(lambda (x) (declare (fixnum x)) x))
436                 '(function (fixnum) (values fixnum &optional)))
437   t)
438
439 ;; Interpreted functions
440
441 #+sb-eval
442 (deftest function-type.8
443     (type-equal (function-type (interpret (lambda (x) (declare (fixnum x)) x)))
444                 '(function (&rest t) *))
445   t)
446
447 ;; Generic functions
448
449 (defgeneric earth (x y))
450
451 (deftest function-type+gfs.1
452     (values (type-equal (function-type 'earth) (function-type #'earth))
453             (type-equal (function-type 'earth) '(function (t t) *)))
454   t t)
455
456 ;; Implicitly created generic functions.
457
458 ;; (FUNCTION-TYPE 'MARS) => FUNCTION at the moment. (1.0.31.26)
459
460 ;; See LP #520695.
461
462 (defmethod mars (x y) (+ x y))
463
464 #+ nil
465 (deftest function-type+gfs.2
466     (values (type-equal (function-type 'mars) (function-type #'mars))
467             (type-equal (function-type 'mars) '(function (t t) *)))
468   t t)
469
470 ;; DEFSTRUCT created functions
471
472 ;; These do not yet work because SB-KERNEL:%FUN-NAME does not work on
473 ;; functions defined by DEFSTRUCT. (1.0.35.x)
474
475 ;; See LP #520692.
476
477 #+nil
478 (progn
479
480   (defstruct (struct (:predicate our-struct-p)
481                      (:copier copy-our-struct))
482     (a 42 :type fixnum))
483
484   (deftest function-type+defstruct.1
485       (values (type-equal (function-type 'struct-a)
486                           (function-type #'struct-a))
487               (type-equal (function-type 'struct-a)
488                           '(function (struct) (values fixnum &optional))))
489     t t)
490
491   (deftest function-type+defstruct.2
492       (values (type-equal (function-type 'our-struct-p)
493                           (function-type #'our-struct-p))
494               (type-equal (function-type 'our-struct-p)
495                           '(function (t) (values (member t nil) &optional))))
496     t t)
497
498   (deftest function-type+defstruct.3
499       (values (type-equal (function-type 'copy-our-struct)
500                           (function-type #'copy-our-struct))
501               (type-equal (function-type 'copy-our-struct)
502                           '(function (struct) (values struct &optional))))
503     t t)
504
505   (defstruct (typed-struct :named (:type list)
506                            (:predicate typed-struct-p))
507     (a 42 :type fixnum))
508
509   (deftest function-type+defstruct.4
510       (values (type-equal (function-type 'typed-struct-a)
511                           (function-type #'typed-struct-a))
512               (type-equal (function-type 'typed-struct-a)
513                           '(function (list) (values fixnum &optional))))
514     t t)
515
516   (deftest function-type+defstruct.5
517       (values (type-equal (function-type 'typed-struct-p)
518                           (function-type #'typed-struct-p))
519               (type-equal (function-type 'typed-struct-p)
520                           '(function (t) (values (member t nil) &optional))))
521     t t)
522
523   ) ; #+nil (progn ...
524
525 ;; SETF functions
526
527 (defun (setf sun) (value x y &key k1)
528   (declare (boolean value))
529   (declare (fixnum x y))
530   (declare (boolean k1))
531   (declare (ignore x y k1))
532   value)
533
534 (deftest function-type+setf.1
535     (values (type-equal (function-type '(setf sun))
536                         (function-type #'(setf sun)))
537             (type-equal (function-type '(setf sun))
538                         '(function ((member nil t)
539                                     fixnum fixnum
540                                     &key (:k1 (member nil t)))
541                           (values (member nil t) &optional))))
542   t t)
543
544 ;; Misc
545
546 (deftest function-type+misc.1
547     (flet ((nullary ()))
548       (type-equal (function-type #'nullary)
549                   '(function () (values null &optional))))
550   t)
551
552 ;;; Defstruct accessor, copier, and predicate
553
554 (deftest defstruct-fun-sources
555     (let ((copier (find-definition-source #'cl-user::copy-three))
556           (accessor (find-definition-source #'cl-user::three-four))
557           (predicate (find-definition-source #'cl-user::three-p)))
558       (values (and (equalp copier accessor)
559                    (equalp copier predicate))
560               (equal "test.lisp"
561                      (file-namestring (definition-source-pathname copier)))
562               (equal '(5)
563                      (definition-source-form-path copier))))
564  t
565  t
566  t)
567
568 (deftest defstruct-fun-sources-by-name
569     (let ((copier (car (find-definition-sources-by-name 'cl-user::copy-three :function)))
570           (accessor (car (find-definition-sources-by-name 'cl-user::three-four :function)))
571           (predicate (car (find-definition-sources-by-name 'cl-user::three-p :function))))
572       (values (and (equalp copier accessor)
573                    (equalp copier predicate))
574               (equal "test.lisp"
575                      (file-namestring (definition-source-pathname copier)))
576               (equal '(5)
577                      (definition-source-form-path copier))))
578  t
579  t
580  t)