0.7.9.37:
[sbcl.git] / tests / clos.impure.lisp
1 ;;;; miscellaneous side-effectful tests of CLOS
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
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
8 ;;;; from CMU CL.
9 ;;;; 
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.
13
14 (defpackage "FOO"
15   (:use "CL"))
16 (in-package "FOO")
17 \f
18 ;;; It should be possible to do DEFGENERIC and DEFMETHOD referring to
19 ;;; structure types defined earlier in the file.
20 (defstruct struct-a x y)
21 (defstruct struct-b x y z)
22 (defmethod wiggle ((a struct-a))
23   (+ (struct-a-x a)
24      (struct-a-y a)))
25 (defgeneric jiggle (arg))
26 (defmethod jiggle ((a struct-a))
27   (- (struct-a-x a)
28      (struct-a-y a)))
29 (defmethod jiggle ((b struct-b))
30   (- (struct-b-x b)
31      (struct-b-y b)
32      (struct-b-z b)))
33 (assert (= (wiggle (make-struct-a :x 6 :y 5))
34            (jiggle (make-struct-b :x 19 :y 6 :z 2))))
35
36 ;;; Compiling DEFGENERIC should prevent "undefined function" style
37 ;;; warnings from code within the same file.
38 (defgeneric gf-defined-in-this-file (x y))
39 (defun function-using-gf-defined-in-this-file (x y n)
40   (unless (minusp n)
41     (gf-defined-in-this-file x y)))
42
43 ;;; Until Martin Atzmueller ported Pierre Mai's CMU CL fixes in
44 ;;; sbcl-0.6.12.25, the implementation of NO-APPLICABLE-METHOD was
45 ;;; broken in such a way that the code here would signal an error.
46 (defgeneric zut-n-a-m (a b c))
47 (defmethod no-applicable-method ((zut-n-a-m (eql #'zut-n-a-m)) &rest args)
48   (format t "~&No applicable method for ZUT-N-A-M ~S, yet.~%" args))
49 (zut-n-a-m 1 2 3)
50
51 ;;; bug reported and fixed by Alexey Dejneka sbcl-devel 2001-09-10:
52 ;;; This DEFGENERIC shouldn't cause an error.
53 (defgeneric ad-gf (a) (:method :around (x) x))
54
55 ;;; DEFGENERIC and DEFMETHOD shouldn't accept &REST when it's not
56 ;;; followed by a variable:
57 ;;; e.g. (DEFMETHOD FOO ((X T) &REST) NIL) should signal an error.
58 (eval-when (:load-toplevel :compile-toplevel :execute)
59   (defmacro expect-error (&body body)
60     `(multiple-value-bind (res condition)
61       (ignore-errors (progn ,@body))
62       (declare (ignore res))
63       (typep condition 'error))))
64 (assert (expect-error
65          (macroexpand-1
66           '(defmethod foo0 ((x t) &rest) nil))))
67 (assert (expect-error (defgeneric foo1 (x &rest))))
68 (assert (expect-error (defgeneric foo2 (x a &rest))))
69 (defgeneric foo3 (x &rest y))
70 (defmethod foo3 ((x t) &rest y) nil)
71 (defmethod foo4 ((x t) &key y &rest z) nil)
72 (defgeneric foo4 (x &rest z &key y))
73 (assert (expect-error (defgeneric foo5 (x &rest))))
74 (assert (expect-error (macroexpand-1 '(defmethod foo6 (x &rest)))))
75
76 ;;; more lambda-list checking
77 ;;;
78 ;;; DEFGENERIC lambda lists are subject to various limitations, as per
79 ;;; section 3.4.2 of the ANSI spec. Since Alexey Dejneka's patch for
80 ;;; bug 191-b ca. sbcl-0.7.22, these limitations should be enforced.
81 (labels ((coerce-to-boolean (x)
82            (if x t nil))
83          (%like-or-dislike (expr expected-failure-p)
84            (declare (type boolean expected-failure-p))
85            (format t "~&trying ~S~%" expr)
86            (multiple-value-bind (fun warnings-p failure-p)
87              (compile nil
88                       `(lambda ()
89                          ,expr))
90              (declare (ignore fun))
91              ;; In principle the constraint on WARNINGS-P below seems
92              ;; reasonable, but in practice we get warnings about
93              ;; undefined functions from the DEFGENERICs, apparently
94              ;; because the DECLAIMs which ordinarily prevent such
95              ;; warnings don't take effect because EVAL-WHEN
96              ;; (:COMPILE-TOPLEVEL) loses its magic when compiled
97              ;; within a LAMBDA. So maybe we can't test WARNINGS-P
98              ;; after all?
99              ;;(unless expected-failure-p
100              ;;  (assert (not warnings-p)))
101              (assert (eq (coerce-to-boolean failure-p) expected-failure-p))))
102          (like (expr)
103            (%like-or-dislike expr nil))
104          (dislike (expr)
105            (%like-or-dislike expr t)))
106   ;; basic sanity
107   (dislike '(defgeneric gf-for-ll-test-0 ("a" #p"b")))
108   (like    '(defgeneric gf-for-ll-test-1 ()))
109   (like    '(defgeneric gf-for-ll-test-2 (x)))
110   ;; forbidden default or supplied-p for &OPTIONAL or &KEY arguments
111   (dislike '(defgeneric gf-for-ll-test-3 (x &optional (y 0)))) 
112   (like    '(defgeneric gf-for-ll-test-4 (x &optional y))) 
113   (dislike '(defgeneric gf-for-ll-test-5 (x y &key (z :z z-p)))) 
114   (like    '(defgeneric gf-for-ll-test-6 (x y &key z)))
115   (dislike '(defgeneric gf-for-ll-test-7 (x &optional (y 0) &key z))) 
116   (like    '(defgeneric gf-for-ll-test-8 (x &optional y &key z))) 
117   (dislike '(defgeneric gf-for-ll-test-9 (x &optional y &key (z :z)))) 
118   (like    '(defgeneric gf-for-ll-test-10 (x &optional y &key z))) 
119   (dislike '(defgeneric gf-for-ll-test-11 (&optional &key (k :k k-p))))
120   (like    '(defgeneric gf-for-ll-test-12 (&optional &key k)))
121   ;; forbidden &AUX
122   (dislike '(defgeneric gf-for-ll-test-13 (x y z &optional a &aux g h)))
123   (like    '(defgeneric gf-for-ll-test-14 (x y z &optional a)))
124   (dislike '(defgeneric gf-for-ll-test-bare-aux-1 (x &aux)))
125   (like    '(defgeneric gf-for-ll-test-bare-aux-2 (x)))
126   ;; also can't use bogoDEFMETHODish type-qualifier-ish decorations
127   ;; on required arguments
128   (dislike '(defgeneric gf-for-11-test-15 ((arg t))))
129   (like '(defgeneric gf-for-11-test-16 (arg))))
130
131 ;;; structure-class tests setup
132 (defclass structure-class-foo1 () () (:metaclass cl:structure-class))
133 (defclass structure-class-foo2 (structure-class-foo1)
134   () (:metaclass cl:structure-class))
135
136 ;;; standard-class tests setup
137 (defclass standard-class-foo1 () () (:metaclass cl:standard-class))
138 (defclass standard-class-foo2 (standard-class-foo1)
139   () (:metaclass cl:standard-class))
140
141 (assert (typep (class-of (make-instance 'structure-class-foo1))
142                'structure-class))
143 (assert (typep (make-instance 'structure-class-foo1) 'structure-class-foo1))
144 (assert (typep (make-instance 'standard-class-foo1) 'standard-class-foo1))
145
146 ;;; DEFGENERIC's blow-away-old-methods behavior is specified to have
147 ;;; special hacks to distinguish between defined-with-DEFGENERIC-:METHOD
148 ;;; methods and defined-with-DEFMETHOD methods, so that reLOADing
149 ;;; DEFGENERIC-containing files does the right thing instead of 
150 ;;; randomly slicing your generic functions. (APD made this work
151 ;;; in sbcl-0.7.0.2.)
152 (defgeneric born-to-be-redefined (x)
153   (:method ((x integer))
154     'integer))
155 (defmethod born-to-be-redefined ((x real))
156   'real)
157 (assert (eq (born-to-be-redefined 1) 'integer))
158 (defgeneric born-to-be-redefined (x))
159 (assert (eq (born-to-be-redefined 1) 'real)) ; failed until sbcl-0.7.0.2
160 (defgeneric born-to-be-redefined (x)
161   (:method ((x integer))
162     'integer))
163 (defmethod born-to-be-redefined ((x integer))
164   'int)
165 (assert (eq (born-to-be-redefined 1) 'int))
166 (defgeneric born-to-be-redefined (x))
167 (assert (eq (born-to-be-redefined 1) 'int))
168 \f
169 ;;; In the removal of ITERATE from SB-PCL, a bug was introduced
170 ;;; preventing forward-references and also change-class (which
171 ;;; forward-references used interally) from working properly.  One
172 ;;; symptom was reported by Brian Spilsbury (sbcl-devel 2002-04-08),
173 ;;; and another on IRC by Dan Barlow simultaneously.  Better check
174 ;;; that it doesn't happen again.
175 ;;;
176 ;;; First, the forward references:
177 (defclass a (b) ())
178 (defclass b () ())
179 ;;; Then change-class
180 (defclass class-with-slots ()
181   ((a-slot :initarg :a-slot :accessor a-slot)
182    (b-slot :initarg :b-slot :accessor b-slot)
183    (c-slot :initarg :c-slot :accessor c-slot)))
184 (let ((foo (make-instance 'class-with-slots
185                           :a-slot 1
186                           :b-slot 2
187                           :c-slot 3)))
188   (let ((bar (change-class foo 'class-with-slots)))
189     (assert (= (a-slot bar) 1))
190     (assert (= (b-slot bar) 2))
191     (assert (= (c-slot bar) 3))))
192
193 ;;; some more CHANGE-CLASS testing, now that we have an ANSI-compliant
194 ;;; version (thanks to Espen Johnsen)
195 (defclass from-class ()
196   ((foo :initarg :foo :accessor foo)))
197 (defclass to-class ()
198   ((foo :initarg :foo :accessor foo)
199    (bar :initarg :bar :accessor bar)))
200 (let* ((from (make-instance 'from-class :foo 1))
201        (to (change-class from 'to-class :bar 2)))
202   (assert (= (foo to) 1))
203   (assert (= (bar to) 2)))
204
205 ;;; Until Pierre Mai's patch (sbcl-devel 2002-06-18, merged in
206 ;;; sbcl-0.7.4.39) the :MOST-SPECIFIC-LAST option had no effect.
207 (defgeneric bug180 (x)
208   (:method-combination list :most-specific-last))
209 (defmethod bug180 list ((x number))
210   'number)
211 (defmethod bug180 list ((x fixnum))
212   'fixnum)
213 (assert (equal (bug180 14) '(number fixnum)))
214 \f
215 ;;; printing a structure class should not loop indefinitely (or cause
216 ;;; a stack overflow):
217 (defclass test-printing-structure-class ()
218   ((slot :initarg :slot))
219   (:metaclass structure-class))
220 (print (make-instance 'test-printing-structure-class :slot 2))
221
222 ;;; structure-classes should behave nicely when subclassed
223 (defclass super-structure ()
224   ((a :initarg :a :accessor a-accessor)
225    (b :initform 2 :reader b-reader))
226   (:metaclass structure-class))
227 (defclass sub-structure (super-structure)
228   ((c :initarg :c :writer c-writer :accessor c-accessor))
229   (:metaclass structure-class))
230 (let ((foo (make-instance 'sub-structure :a 1 :c 3)))
231   (assert (= (a-accessor foo) 1))
232   (assert (= (b-reader foo) 2))
233   (assert (= (c-accessor foo) 3))
234   (setf (a-accessor foo) 4)
235   (c-writer 5 foo)
236   (assert (= (a-accessor foo) 4))
237   (assert (= (c-accessor foo) 5)))
238 \f
239 ;;; At least as of sbcl-0.7.4, PCL has code to support a special
240 ;;; encoding of effective method functions for slot accessors as
241 ;;; FIXNUMs. Given this special casing, it'd be easy for slot accessor
242 ;;; functions to get broken in special ways even though ordinary
243 ;;; generic functions work. As of sbcl-0.7.4 we didn't have any tests
244 ;;; for that possibility. Now we have a few tests:
245 (defclass fish ()
246   ((fin :reader ffin :writer ffin!)
247    (tail :reader ftail :writer ftail!)))
248 (defvar *fish* (make-instance 'fish))
249 (ffin! 'triangular-fin *fish*)
250 (defclass cod (fish) ())
251 (defvar *cod* (make-instance 'cod))
252 (defparameter *clos-dispatch-side-fx* (make-array 0 :fill-pointer 0))
253 (defmethod ffin! (new-fin (cod cod))
254   (format t "~&about to set ~S fin to ~S~%" cod new-fin)
255   (vector-push-extend '(cod) *clos-dispatch-side-fx*)
256   (prog1
257       (call-next-method)
258     (format t "~&done setting ~S fin to ~S~%" cod new-fin)))
259 (defmethod ffin! :before (new-fin (cod cod))
260   (vector-push-extend '(:before cod) *clos-dispatch-side-fx*)
261   (format t "~&exploring the CLOS dispatch zoo with COD fins~%"))
262 (ffin! 'almost-triang-fin *cod*)
263 (assert (eq (ffin *cod*) 'almost-triang-fin))
264 (assert (equalp #((:before cod) (cod)) *clos-dispatch-side-fx*))
265 \f
266 ;;; Until sbcl-0.7.6.21, the long form of DEFINE-METHOD-COMBINATION
267 ;;; ignored its options; Gerd Moellmann found and fixed the problem
268 ;;; for cmucl (cmucl-imp 2002-06-18).
269 (define-method-combination test-mc (x)
270   ;; X above being a method-group-specifier
271   ((primary () :required t))
272   `(call-method ,(first primary)))
273
274 (defgeneric gf (obj)
275   (:method-combination test-mc 1))
276
277 (defmethod gf (obj)
278   obj)
279 \f
280 ;;; Until sbcl-0.7.7.20, some conditions weren't being signalled, and
281 ;;; some others were of the wrong type:
282 (macrolet ((assert-program-error (form)
283              `(multiple-value-bind (value error)
284                   (ignore-errors ,form)
285                 (assert (null value))
286                 (assert (typep error 'program-error)))))
287   (assert-program-error (defclass foo001 () (a b a)))
288   (assert-program-error (defclass foo002 () 
289                           (a b) 
290                           (:default-initargs x 'a x 'b)))
291   (assert-program-error (defclass foo003 ()
292                           ((a :allocation :class :allocation :class))))
293   (assert-program-error (defclass foo004 ()
294                           ((a :silly t))))
295   ;; and some more, found by Wolfhard Buss and fixed for cmucl by Gerd
296   ;; Moellmann in 0.7.8.x:
297   (assert-program-error (progn
298                           (defmethod odd-key-args-checking (&key (key 42)) key)
299                           (odd-key-args-checking 3)))
300   (assert (= (odd-key-args-checking) 42))
301   (assert (eq (odd-key-args-checking :key t) t)))
302 \f
303 ;;; DOCUMENTATION's argument-precedence-order wasn't being faithfully
304 ;;; preserved through the bootstrap process until sbcl-0.7.8.39.
305 ;;; (thanks to Gerd Moellmann)
306 (let ((answer (documentation '+ 'function)))
307   (assert (stringp answer))
308   (defmethod documentation ((x (eql '+)) y) "WRONG")
309   (assert (string= (documentation '+ 'function) answer)))
310 \f
311 ;;; only certain declarations are permitted in DEFGENERIC
312 (macrolet ((assert-program-error (form)
313              `(multiple-value-bind (value error)
314                   (ignore-errors ,form)
315                 (assert (null value))
316                 (assert (typep error 'program-error)))))
317   (assert-program-error (defgeneric bogus-declaration (x)
318                           (declare (special y))))
319   (assert-program-error (defgeneric bogus-declaration2 (x)
320                           (declare (notinline concatenate)))))
321 ;;; CALL-NEXT-METHOD should call NO-NEXT-METHOD if there is no next
322 ;;; method.
323 (defmethod no-next-method-test ((x integer)) (call-next-method))
324 (assert (null (ignore-errors (no-next-method-test 1))))
325 (defmethod no-next-method ((g (eql #'no-next-method-test)) m &rest args)
326   'success)
327 (assert (eq (no-next-method-test 1) 'success))
328 (assert (null (ignore-errors (no-next-method-test 'foo))))
329 \f
330 ;;; regression test for bug 176, following a fix that seems
331 ;;; simultaneously to fix 140 while not exposing 176 (by Gerd
332 ;;; Moellmann, merged in sbcl-0.7.9.12).
333 (dotimes (i 10)
334   (let ((lastname (intern (format nil "C176-~D" (1- i))))
335         (name (intern (format nil "C176-~D" i))))
336   (eval `(defclass ,name
337              (,@(if (= i 0) nil (list lastname)))
338            ()))
339   (eval `(defmethod initialize-instance :after ((x ,name) &rest any)
340            (declare (ignore any))))))
341 (defclass b176 () (aslot-176))
342 (defclass c176-0 (b176) ())
343 (assert (= 1 (setf (slot-value (make-instance 'c176-9) 'aslot-176) 1)))
344 \f
345 ;;; DEFINE-METHOD-COMBINATION was over-eager at checking for duplicate
346 ;;; primary methods:
347 (define-method-combination dmc-test-mc (&optional (order :most-specific-first))
348   ((around (:around))
349    (primary (dmc-test-mc) :order order :required t))
350    (let ((form (if (rest primary)
351                    `(and ,@(mapcar #'(lambda (method)
352                                        `(call-method ,method))
353                                    primary))
354                    `(call-method ,(first primary)))))
355      (if around
356          `(call-method ,(first around)
357                        (,@(rest around)
358                         (make-method ,form)))
359          form)))
360
361 (defgeneric dmc-test-mc (&key k)
362   (:method-combination dmc-test-mc))
363
364 (defmethod dmc-test-mc dmc-test-mc (&key k)
365            k)
366
367 (dmc-test-mc :k 1)
368 ;;; While I'm at it, DEFINE-METHOD-COMBINATION is defined to return
369 ;;; the NAME argument, not some random method object. So:
370 (assert (eq (define-method-combination dmc-test-return-foo)
371             'dmc-test-return-foo))
372 (assert (eq (define-method-combination dmc-test-return-bar :operator and)
373             'dmc-test-return-bar))
374 (assert (eq (define-method-combination dmc-test-return
375                 (&optional (order :most-specific-first))
376               ((around (:around))
377                (primary (dmc-test-return) :order order :required t))
378               (let ((form (if (rest primary)
379                               `(and ,@(mapcar #'(lambda (method)
380                                                   `(call-method ,method))
381                                               primary))
382                               `(call-method ,(first primary)))))
383                 (if around
384                     `(call-method ,(first around)
385                       (,@(rest around)
386                        (make-method ,form)))
387                     form)))
388             'dmc-test-return))
389 \f
390 ;;; DEFMETHOD should signal a PROGRAM-ERROR if an incompatible lambda
391 ;;; list is given:
392 (defmethod incompatible-ll-test-1 (x) x)
393 (multiple-value-bind (result error)
394     (ignore-errors (defmethod incompatible-ll-test-1 (x y) y))
395   (assert (null result))
396   (assert (typep error 'program-error)))
397 (multiple-value-bind (result error)
398     (ignore-errors (defmethod incompatible-ll-test-1 (x &rest y) y))
399   (assert (null result))
400   (assert (typep error 'program-error)))
401 ;;; Sneakily using a bit of MOPness to check some consistency
402 (assert (= (length
403             (sb-pcl:generic-function-methods #'incompatible-ll-test-1)) 1))
404
405 (defmethod incompatible-ll-test-2 (x &key bar) bar)
406 (multiple-value-bind (result error)
407     (ignore-errors (defmethod incompatible-ll-test-2 (x) x))
408   (assert (null result))
409   (assert (typep error 'program-error)))
410 (defmethod incompatible-ll-test-2 (x &rest y) y)
411 (assert (= (length
412             (sb-pcl:generic-function-methods #'incompatible-ll-test-2)) 1))
413 (defmethod incompatible-ll-test-2 ((x integer) &key bar) bar)
414 (assert (= (length
415             (sb-pcl:generic-function-methods #'incompatible-ll-test-2)) 2))
416 (assert (equal (incompatible-ll-test-2 t 1 2) '(1 2)))
417 (assert (eq (incompatible-ll-test-2 1 :bar 'yes) 'yes))
418 \f
419 ;;;; success
420
421 (sb-ext:quit :unix-status 104)