Newer
Older
;;; Tests for PCL, taken from src/pcl/rt.
;;;
;;; It's clear that the tests used mk defsystem to load the tests, but
;;; it's not clear if the tests were compiled or not before running.
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(defpackage "PCL-TESTS"
(:use "COMMON-LISP" "PCL" "LISP-UNIT"))
(in-package "PCL-TESTS")
(defmacro deftest (name form &rest values)
(let ((results (gensym "RESULTS-")))
`(define-test ,name
(:tag :pcl)
(let ((,results (multiple-value-list ,form)))
(assert-equalp ,results
',values)))))
(defmacro define-compiled-test (name form &rest values)
`(progn
(defun ,name () ,form)
(deftest ,name (,name) ,@values)))
;; ctor.lisp
(deftest plist-keys.0
(pcl::plist-keys '())
nil)
(deftest plist-keys.1
(pcl::plist-keys '(:a 1 :b 2))
(:a :b))
(deftest plist-keys.2
(multiple-value-bind (result condition)
(ignore-errors (pcl::plist-keys '(:a)))
(values result (typep condition 'condition)))
nil
t)
(deftest make-instance->constructor-call.0
(pcl::make-instance->constructor-call '(make-instance 'foo a x))
nil)
(deftest make-instance->constructor-call.1
(pcl::make-instance->constructor-call '(make-instance foo :a x))
nil)
(deftest make-instance->constructor-call.2
(pcl::make-instance->constructor-call '(make-instance 'foo x))
nil)
(deftest make-instance->constructor-call.4
(pcl::make-instance->constructor-call '(make-instance 1))
nil)
(deftest make-instance->constructor-call.5
(let* ((form (pcl::make-instance->constructor-call
'(make-instance 'foo)))
(call (car (last form))))
(values (eq (first call) 'funcall)
(cddr call)))
t ())
(deftest make-instance->constructor-call.6
(let* ((form (pcl::make-instance->constructor-call
'(make-instance 'foo :x 1 :y 2)))
(call (car (last form))))
(values (eq (first call) 'funcall)
(cddr call)))
t ())
(deftest make-instance->constructor-call.7
(let* ((form (pcl::make-instance->constructor-call
'(make-instance 'foo :x x :y 2)))
(call (car (last form))))
(values (eq (first call) 'funcall)
(cddr call)))
t (x))
(deftest make-instance->constructor-call.8
(let* ((form (pcl::make-instance->constructor-call
'(make-instance 'foo :x x :y y)))
(call (car (last form))))
(values (eq (first call) 'funcall)
(cddr call)))
t (x y))
(deftest make-instance->constructor-call.9
(let* ((form (pcl::make-instance->constructor-call
'(make-instance 'foo :x x :y 1)))
(call (car (last form))))
(values (eq (first call) 'funcall)
(cddr call)))
t (x))
(deftest make-instance->constructor-call.10
(let* ((form (pcl::make-instance->constructor-call
'(make-instance 'foo :x x :y 1 :z z)))
(call (car (last form))))
(values (eq (first call) 'funcall)
(cddr call)))
t (x z))
(deftest make-ctor.0
(let ((ctor (pcl::make-ctor '(pcl::ctor bar) 'bar '(:x 1 :y 2))))
(values (pcl::ctor-function-name ctor)
(pcl::ctor-class-name ctor)
(pcl::ctor-initargs ctor)))
(pcl::ctor bar)
bar
(:x 1 :y 2))
(defclass foo ()
((a :initarg :a :initform 1)
(b :initarg :b :initform 2)))
(defun call-generator (generator function-name class-name args)
(declare (ignore function-name))
(let* ((ctor
(pcl::make-ctor (list 'pcl::ctor class-name) class-name args))
(class (find-class class-name))
(proto (pcl::class-prototype class))
(ii (pcl::compute-applicable-methods
#'initialize-instance (list proto)))
(si (pcl::compute-applicable-methods
#'shared-initialize (list proto t))))
(setf (pcl::ctor-class ctor) class)
(if (eq generator #'pcl::fallback-generator)
(funcall generator ctor)
(funcall generator ctor ii si))))
(deftest fallback-generator.0
(let ((fn (call-generator #'pcl::fallback-generator
'make-foo 'foo '(:a 0 :b 1))))
(values (second fn)
(type-of (second (third fn)))
(nthcdr 2 (third fn))))
()
pcl::standard-class
(:a 0 :b 1))
(deftest fallback-generator.1
(let ((fn (call-generator #'pcl::fallback-generator
'make-foo 'foo '(:a 0))))
(values (second fn)
(first (third fn))
(type-of (second (third fn)))
(nthcdr 2 (third fn))))
()
make-instance
pcl::standard-class
(:a 0))
(deftest fallback-generator.2
(let ((fn (call-generator #'pcl::fallback-generator
'make-foo 'foo '())))
(values (second fn)
(type-of (second (third fn)))
(nthcdr 2 (third fn))))
()
pcl::standard-class
())
(deftest fallback-generator.3
(let ((fn (call-generator #'pcl::fallback-generator
'make-foo 'foo '(:a .p0.))))
(values (second fn)
(type-of (second (third fn)))
(nthcdr 2 (third fn))))
(.p0.)
pcl::standard-class
(:a .p0.))
(deftest fallback-generator.4
(let ((fn (call-generator #'pcl::fallback-generator
'make-foo 'foo '(:a a :b b))))
(values (second fn)
(type-of (second (third fn)))
(nthcdr 2 (third fn))))
(a b)
pcl::standard-class
(:a a :b b))
;;; These depend on the actual slot definition location computation,
;;; which may be different in my PCL than in the CVS PCL.
(deftest compute-initarg-locations.0
(let ((class (find-class 'foo)))
(pcl::compute-initarg-locations class '(:a :b)))
((:a (0 . t)) (:b (1 . t))))
(defclass foo2 (foo)
((c :initarg :a)))
(deftest compute-initarg-locations.1
(let ((class (find-class 'foo2)))
(pcl::compute-initarg-locations class '(:a :b)))
((:a (0 . t) (2 . t)) (:b (1 . t))))
(defclass foo3 (foo)
((c :initarg :a :allocation :class)))
;;;
;;; This test must be compiled for the case that PCL::+SLOT-UNBOUND+
;;; is a symbol macro calling PCL::MAKE-UNBOUND-MARKER, otherwise
;;; we'll get a complaint that C::%%PRIMITIVE is not defined.
;;;
(define-compiled-test compute-initarg-locations.2
(let ((class (find-class 'foo3)))
(subst 'unbound pcl::+slot-unbound+
(pcl::compute-initarg-locations class '(:a :b))))
((:a (0 . t) ((c . unbound) . t)) (:b (1 . t))))
(defclass foo4 ()
((a :initarg :a :initarg :both)
(b :initarg :b :initarg :both)))
(deftest compute-initarg-locations.3
(let ((class (find-class 'foo4)))
(pcl::compute-initarg-locations class '(:both :a :b)))
((:both (0 . t) (1 . t)) (:a) (:b)))
(deftest compute-initarg-locations.4
(let ((class (find-class 'foo4)))
(pcl::compute-initarg-locations class '(:a :both)))
((:a (0 . t)) (:both (1 . t))))
(deftest slot-init-forms.0
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo '(:a a :b b))))
(setf (pcl::ctor-class ctor) (find-class 'foo))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) (the t a))
(setf (svref pcl::.slots. 1) (the t b)))
nil)
(deftest slot-init-forms.1
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo '(:a a))))
(setf (pcl::ctor-class ctor) (find-class 'foo))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) (the t a))
(setf (svref pcl::.slots. 1) (the t '2)))
nil)
(defclass foo5 ()
((a :initarg :a :initform 0)
(b :initarg :b)))
(deftest slot-init-forms.2
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo5 '(:a a))))
(setf (pcl::ctor-class ctor) (find-class 'foo5))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) (the t a))
(setf (svref pcl::.slots. 1) pcl::+slot-unbound+))
nil)
(defclass foo5a ()
((a :initarg :a :initform 0)
(b :initarg :b :initform 0)))
(deftest slot-init-forms.2a
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo5a '())))
(setf (pcl::ctor-class ctor) (find-class 'foo5a))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) (the t '0))
(setf (svref pcl::.slots. 1) (the t '0)))
nil)
(defclass foo6 ()
((a :initarg :a :initform 0 :allocation :class)
(b :initarg :b)))
(deftest slot-init-forms.3
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo6 '(:a a))))
(setf (pcl::ctor-class ctor) (find-class 'foo6))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) pcl::+slot-unbound+)
(setf (cdr '(a . 0)) (the t a)))
nil)
(defun foo ()
(error "should never be called"))
(defclass foo7 ()
((a :initarg :a :initform (foo))
(b :initarg :b)))
(deftest slot-init-forms.4
(let* ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo7 '())))
(setf (pcl::ctor-class ctor) (find-class 'foo7))
(let ((form (pcl::slot-init-forms ctor nil)))
(destructuring-bind (let vars declare setf1 setf2) form
(declare (ignore let vars declare))
(values setf2 (second setf1) (first (third (third setf1)))
(functionp (second (third (third setf1))))))))
(setf (svref pcl::.slots. 1) pcl::+slot-unbound+)
(svref pcl::.slots. 0)
funcall
t)
(deftest slot-init-forms.5
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo '(:a '(foo)))))
(setf (pcl::ctor-class ctor) (find-class 'foo))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) (the t '(foo)))
(setf (svref pcl::.slots. 1) (the t '2)))
nil)
(deftest slot-init-forms.6
(let ((ctor (pcl::make-ctor
(list 'pcl::ctor 'make-foo)
'foo '(:a 'x))))
(setf (pcl::ctor-class ctor) (find-class 'foo))
(pcl::slot-init-forms ctor nil))
(let ()
(declare (ignorable) (optimize (safety 3)))
(setf (svref pcl::.slots. 0) (the t 'x))
(setf (svref pcl::.slots. 1) (the t '2)))
nil)
(defmethod bar1 ((x integer))
(* x 2))
(defmethod bar2 ((x integer)) x)
(defmethod bar2 :around ((x integer)) x)
(deftest around-or-nonstandard-primary-method-p.0
(pcl::around-or-nonstandard-primary-method-p
(pcl::compute-applicable-methods #'bar2 (list 1)))
t)
(defmethod bar3 ((x integer)) x)
(defmethod bar3 :after ((x integer)) x)
(deftest around-or-nonstandard-primary-method-p.1
(pcl::around-or-nonstandard-primary-method-p
(pcl::compute-applicable-methods #'bar3 (list 1)))
nil)
(deftest optimizing-generator.0
(let ((fn (call-generator #'pcl::optimizing-generator
'make-foo 'foo '(:a 0 :b 1))))
(second fn))
())
(defun construct (class-name initargs &rest args)
(let* ((form (call-generator #'pcl::optimizing-generator
'some-function-name
class-name
initargs))
(fn (pcl::compile-lambda form)))
(apply fn args)))
(deftest optimizing-generator.1
(with-slots (a b) (construct 'foo '(:a 0 :b 1))
(values a b))
0 1)
(deftest optimizing-generator.2
(with-slots (a b) (construct 'foo '())
(values a b))
1 2)
(defclass g1 ()
((a :initform 0)
(b)))
(deftest optimizing-generator.3
(let ((instance (construct 'g1 '())))
(values (slot-value instance 'a)
(slot-boundp instance 'b)))
0 nil)
;; Test for default-initargs bug.
(defclass g2 ()
((a :initarg :aa)))
(defmethod initialize-instance :after ((f g2) &key aa)
(princ aa))
(defclass g3 (g2)
((b :initarg :b))
(:default-initargs :aa 5))
(deftest defaulting-initargs.1
(with-output-to-string (*standard-output*)
(make-instance 'g3))
"5")
;; defclass.lisp
(deftest defclass-subtypep.0
(progn
(defclass st0 () ())
(defclass st1 () ())
(subtypep 'st1 'st0))
nil t)
(deftest defclass-subtypep.1
(progn
(defclass st1 (st0) ())
(subtypep 'st1 'st0))
t t)
(deftest defclass-subtypep.2
(progn
(defclass st1 () ())
(subtypep 'st1 'st0))
nil t)
(defvar *instance* nil)
(defvar *update-instance-result* nil)
(defclass st2 ()
((a :initform 0 :accessor a)))
(defclass st3 ()
((b :initform 0 :accessor b)))
(deftest update-instance-for-redefined-class.0
(progn
(setq *instance* (make-instance 'st3))
t)
t)
(defmethod update-instance-for-redefined-class :after
((instance st3) added-slots discarded-slots property-list &rest initargs)
(setq *update-instance-result*
(list instance added-slots discarded-slots property-list initargs)))
(deftest update-instance-for-redefined-class.1
(progn
(defclass st3 (st2)
((b :initform 0 :accessor b)))
(values (slot-value *instance* 'b)
(eq *instance* (first *update-instance-result*))
(rest *update-instance-result*)))
0 t ((a) nil nil nil))
(deftest update-instance-for-redefined-class.2
(progn
(defclass st3 ()
((b :initform 0 :accessor b)))
(values (slot-value *instance* 'b)
(eq *instance* (first *update-instance-result*))
(rest *update-instance-result*)))
0 t (nil (a) (a 0) nil))
(deftest defclass-sxhash.0
(let ((i1 (make-instance 'st2))
(i2 (make-instance 'st2)))
(/= (sxhash i1) (sxhash i2)))
t)
(deftest generic-function-sxhash.0
(/= (sxhash #'allocate-instance)
(sxhash #'make-instance))
t)
(deftest defclass-redefinition.0
(multiple-value-bind (r c)
(ignore-errors
(defclass rd0 () ())
(defclass rd1 (rd0) ())
(defclass rd2 () ())
(defclass rd0 (rd2) ())
(make-instance 'rd1))
(values (not (null r)) (null c)))
t t)
;;; This failed to compile in an old version, that's why it's here.
(deftest defclass-inherited-class-slots.0
(multiple-value-bind (r c)
(ignore-errors
(defclass ics0 ()
((a :allocation :class :accessor ics0-a)))
(defclass ics1 (ics0)
())
(make-instance 'ics1))
(values (not (null r)) (null c)))
t t)
(defmacro define-defclass-syntax-test (name class-body &rest options)
`(deftest ,name
(multiple-value-bind (r c)
(ignore-errors
(defclass dc0 ()
,class-body ,@options))
(declare (ignore r))
(typep c 'error))
t))
;; CLHS: allocation should be :class or :instance
(define-defclass-syntax-test defclass.0 ((a :allocation :foo)))
;; Reader names should be symbols.
(define-defclass-syntax-test defclass.1 ((a :reader (setf a))))
;;; initarg names must be symbols.
(define-defclass-syntax-test defclass.2 ((a :initarg 1)))
;; Duplicate :default-initargs is an error.
(define-defclass-syntax-test defclass.3 ()
(:default-initargs :a 1)
(:default-initargs :b 2))
;; Duplicate :metaclass.
(define-defclass-syntax-test defclass.4 ()
(:metaclass pcl::funcallable-standard-class)
(:metaclass 1))
;; class option that is not implemented locally -> error
(define-defclass-syntax-test defclass.5 ()
(:foo t))
(deftest defclass-structure-class.0
(multiple-value-bind (r c)
(ignore-errors
(defclass dscl.0 ()
(a b)
(:metaclass pcl::structure-class))
t)
(values r (null c)))
t t)
(deftest defclass-structure-class.1
(multiple-value-bind (r c)
(ignore-errors
(make-instance 'dscl.0)
t)
(values r (null c)))
t t)
;;;
;;; The change of DFR1 from forward-referenced to standard class
;;; caused problems at some point, which were fixed by passing
;;; initargs to CHANGE-CLASS in ENSURE-CLASS-USING-CLASS.
;;;
(deftest defclass-forward-referenced-class.0
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr0 (dfr1 dfr2) ())
(defclass dfr1 (dfr3 dfr4) ())
t)
(values r (null c)))
t t)
(deftest defclass-forward-referenced-class.1
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr.c1 (dfr.c2) ())
(defclass dfr.c2 (dfr.c3) ())
(defclass dfr.c3 () ())
(make-instance 'dfr.c1)
t)
(values r (null c)))
t t)
;;;
;;; TYPEP and SUBTYPEP used to fail with forward-referenced/unfinalized
;;; classes.
;;;
(deftest defclass-types.0
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr5 (dfr6) ())
(typep t (find-class 'dfr6)))
(values r (null c)))
nil t)
(deftest defclass-types.2
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr7 (dfr8) ())
(multiple-value-list
(subtypep (find-class 'dfr7) (find-class 'dfr8))))
(values r (null c)))
(t t) t)
(deftest defclass-types.3
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr7 (dfr8) ())
(multiple-value-list
(subtypep (find-class 'dfr8) (find-class 'dfr7))))
(values r (null c)))
(nil t) t)
(deftest defclass-types.4
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr9 (dfr10) ())
(defclass dfr11 (dfr9 dfr12) ())
(append
(multiple-value-list
(subtypep (find-class 'dfr9) (find-class 'dfr10)))
(multiple-value-list
(subtypep (find-class 'dfr11) (find-class 'dfr10)))
(multiple-value-list
(subtypep (find-class 'dfr11) (find-class 'dfr9)))
(multiple-value-list
(subtypep (find-class 'dfr11) (find-class 'dfr12)))))
(values r (null c)))
(t t t t t t t t) t)
(deftest defclass-types.5
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr13 () ())
(defclass dfr14 (dfr15 dfr13) ())
(defclass dfr16 (dfr14 dfr17) ())
(append
(multiple-value-list
(subtypep (find-class 'dfr16) (find-class 'dfr14)))
(multiple-value-list
(subtypep (find-class 'dfr16) (find-class 'dfr17)))
(multiple-value-list
(subtypep (find-class 'dfr16) (find-class 'dfr15)))
(multiple-value-list
(subtypep (find-class 'dfr16) (find-class 'dfr13)))))
(values r (null c)))
(t t t t t t t t) t)
(deftest defclass-types.6
(multiple-value-bind (r c)
(ignore-errors
(defclass dfr20 (dfr21) ())
(defclass dfr21 (dfr22) ())
(append
(multiple-value-list
(subtypep (find-class 'dfr20) (find-class 'dfr21)))
(multiple-value-list
(subtypep (find-class 'dfr21) (find-class 'dfr22)))
(multiple-value-list
(subtypep (find-class 'dfr20) (find-class 'dfr22)))))
(values r (null c)))
(t t t t t t) t)
;; defmethod.lisp
(defmethod dm0 (x)
x)
(defmethod dm1 (x &rest y)
(list x y))
(defmethod dm2 (x &optional y)
(list x y))
(defmacro define-defmethod-test (name method qual lambda-list
&rest values)
`(deftest ,name
(multiple-value-bind (r c)
(ignore-errors
(defmethod ,method ,@(when qual `(,qual)) ,lambda-list
#+cmu (declare (optimize (ext:inhibit-warnings 3)))
nil))
(values (typep r 'method)
(typep c 'error)
(length (pcl:generic-function-methods #',method))))
,@values))
(defmacro define-defmethod-test-1 (name method qual lambda-list)
`(define-defmethod-test ,name ,method ,qual ,lambda-list nil t 1))
(define-defmethod-test-1 defmethod.0 dm0 nil (x y))
(define-defmethod-test-1 defmethod.1 dm0 nil (x &rest y))
(define-defmethod-test-1 defmethod.2 dm0 nil (x &key y))
(define-defmethod-test-1 defmethod.4 dm0 :before (x y))
(define-defmethod-test-1 defmethod.5 dm0 :before (x &rest y))
(define-defmethod-test-1 defmethod.6 dm0 :before (x &key y))
(define-defmethod-test defmethod.7 dm0 nil (x) t nil 1)
(define-defmethod-test-1 defmethod.10 dm1 nil (x y))
(define-defmethod-test-1 defmethod.11 dm1 nil (x))
(define-defmethod-test defmethod.12 dm1 nil (x &key y) t nil 1)
(define-defmethod-test defmethod.13 dm1 nil (x &key y z) t nil 1)
(define-defmethod-test defmethod.14 dm1 nil (x &rest y) t nil 1)
(define-defmethod-test-1 defmethod.20 dm2 nil (x))
(define-defmethod-test-1 defmethod.21 dm2 nil (x &optional y z))
(define-defmethod-test-1 defmethod.22 dm2 nil (x &key y))
;;;
;;; A forward-referenced class used as specializer signaled an
;;; error at some point.
;;;
(deftest defmethod-forwared-referenced.0
(multiple-value-bind (r c)
(ignore-errors
(defclass dm.3 () ())
(defclass dm.4 (dm.forward) ())
(defmethod dm.5 ((x dm.3)) x)
(defmethod dm.5 ((x dm.4)) x)
t)
(values r (null c)))
t t)
(deftest defmethod-forwared-referenced.1
(multiple-value-bind (r c)
(ignore-errors
(defclass dm.3 () ())
(defclass dm.4 (dm.forward) ())
(defmethod dm.5 ((x dm.3)) x)
(defmethod dm.5 ((x dm.4)) x)
(dm.5 (make-instance 'dm.3))
t)
(values r (null c)))
t t)
(deftest defmethod-metacircle.0
(multiple-value-bind (r c)
(ignore-errors
(defclass dmm.0 () ())
(defclass dmm.1 () ())
(defclass dmm.0+1 (dmm.0 dmm.1) ())
(defmethod dmm.0 ((x dmm.0) (y dmm.1)) 1)
(defmethod dmm.0 ((x dmm.1) (y dmm.0)) 2)
(dmm.0 (make-instance 'dmm.0+1) (make-instance 'dmm.0+1))
(defmethod dmm.0 ((x dmm.0+1) (y dmm.0+1)) 3)
(dmm.0 (make-instance 'dmm.0+1) (make-instance 'dmm.0+1)))
(values r (null c)))
3 t)
(deftest defmethod-setf-fdefinition.0
(multiple-value-bind (r c)
(ignore-errors
(defgeneric dsf.0 (x))
(defmethod dsf.0 ((x integer)) x)
(setf (fdefinition 'dsf.1) #'dsf.0)
(defmethod dsf.1 ((x string)) x)
(list (length (mop:generic-function-methods #'dsf.0))
(equal (mop:generic-function-methods #'dsf.1)
(mop:generic-function-methods #'dsf.0))))
(values r (null c)))
(2 t) t)
(deftest defmethod-setf-fdefinition.1
(multiple-value-bind (r c)
(ignore-errors
(defgeneric dsf.2 (x))
(defmethod dsf.2 ((x integer)) x)
(setf (fdefinition 'dsf.3) #'dsf.2)
(defmethod dsf.3 ((x integer)) x)
(list (length (mop:generic-function-methods #'dsf.2))
(equal (mop:generic-function-methods #'dsf.3)
(mop:generic-function-methods #'dsf.2))))
(values r (null c)))
(1 t) t)
;; find-method.lisp
(defmethod fm0 (x y)
(list x y))
(deftest find-method.0
(multiple-value-bind (r c)
(ignore-errors
(find-method #'fm0 nil (list t)))
(values r (typep c 'error)))
nil t)
(deftest find-method.1
(multiple-value-bind (r c)
(ignore-errors
(find-method #'fm0 nil (list t t)))
(values (typep r 'method) (typep c 'error)))
t nil)
;; inline-access.lisp
(defun test-walk (form test-function &optional env)
(let ((result nil))
(flet ((walk-function (form context env)
(declare (ignore context))
(when (and (consp form) (eq (car form) 'test))
(push (funcall test-function env) result))
form))
(walker:walk-form form env #'walk-function)
(nreverse result))))
(defmacro define-declaration-test (name declaration test &key values)
`(deftest ,name
(test-walk '(defun dummy () ,declaration (test))
(lambda (env) ,test))
,@values))
(define-declaration-test slot-declaration.0
(declare (ext:slots (slot-boundp xx)))
(pcl::slot-declaration env 'slot-boundp 'xx)
:values ((t)))
(define-declaration-test slot-declaration.1
(declare (ext:slots (inline xx)))
(pcl::slot-declaration env 'inline 'xx)
:values ((t)))
(define-declaration-test slot-declaration.2
(declare (ext:slots (inline (xx))))
(pcl::slot-declaration env 'inline 'xx)
:values ((t)))
(define-declaration-test slot-declaration.3
(declare (ext:slots (inline (xx a))))
(pcl::slot-declaration env 'inline 'xx 'a)
:values ((t)))
(define-declaration-test slot-declaration.4
(declare (ext:slots (inline (xx a))))
(pcl::slot-declaration env 'inline 'xx 'b)
:values ((nil)))
(define-declaration-test slot-declaration.5
(declare (ext:slots (inline (xx a) yy)))
(pcl::slot-declaration env 'inline 'yy)
:values ((t)))
(define-declaration-test slot-declaration.6
(declare (ext:slots (inline (xx a) (yy a))))
(pcl::slot-declaration env 'inline 'yy 'a)
:values ((t)))
(define-declaration-test slot-declaration.7
(declare (ext:slots (inline (xx a) (yy a))))
(pcl::slot-declaration env 'inline 'yy 'b)
:values ((nil)))
(deftest global-slot-declaration.0
(progn
(proclaim '(ext:slots (slot-boundp gsd)))
(not (null (pcl::slot-declaration nil 'slot-boundp 'gsd))))
t)
(deftest global-slot-declaration.1
(progn
(proclaim '(ext:slots (inline (gsd gsd-a))))
(not (null (pcl::slot-declaration nil 'inline 'gsd 'gsd-a))))
t)
(deftest auto-compile-declaration.0
(progn
(proclaim '(ext:auto-compile acd))
(pcl::auto-compile-p 'acd nil nil))
t)
(deftest auto-compile-declaration.1
(progn
(proclaim '(ext:auto-compile acd))
(pcl::auto-compile-p 'acd '(:around) '(t t)))
t)
(deftest auto-compile-declaration.2
(progn
(proclaim '(ext:not-auto-compile acd))
(proclaim '(ext:auto-compile (acd :around (t t))))
(values (pcl::auto-compile-p 'acd nil nil)
(pcl::auto-compile-p 'acd nil '(t t))
(pcl::auto-compile-p 'acd '(:around) '(t t))))
nil nil t)
(deftest auto-compile-declaration.3
(progn
(proclaim '(ext:auto-compile acd))
(proclaim '(ext:not-auto-compile (acd :around (t t))))
(values (pcl::auto-compile-p 'acd nil nil)
(pcl::auto-compile-p 'acd nil '(t t))
(pcl::auto-compile-p 'acd '(:around) '(t t))))
t t nil)
(deftest auto-compile-declaration.4
(progn
(proclaim '(ext:auto-compile))
(proclaim '(ext:not-auto-compile acd))
(values (pcl::auto-compile-p 'foo nil nil)
(pcl::auto-compile-p 'acd nil '(t t))
(pcl::auto-compile-p 'acd '(:around) '(t t))))
t nil nil)
(deftest auto-compile-declaration.5
(progn
(proclaim '(ext:auto-compile (setf acd)))
(pcl::auto-compile-p '(setf acd) '(:around) '(t t)))
t)
(declaim (ext:slots (inline sacc.0)))
(defclass sacc.0 ()
((a :initform 0 :initarg :a :accessor sacc.0-a)))
(defclass sacc.1 (sacc.0)
((b :initform 0 :initarg :b :accessor sacc.1-b)
(a :initform 0 :initarg :a :accessor sacc.0-a)))
(defmethod sacc.0.0 ((x sacc.0))
(slot-value x 'a))
(defmethod sacc.0.1 ((x sacc.0))
(sacc.0-a x))
(defmethod sacc.0.2 ((x sacc.0) nv)
(setf (slot-value x 'a) nv))
(defmethod sacc.0.3 ((x sacc.0) nv)
(setf (sacc.0-a x) nv))
(defun method-using-inline-access-p (class-name method-name qualifiers
specializers)
(let ((method (find-method (fdefinition method-name) qualifiers
specializers)))
(car (member class-name (pcl::plist-value method 'pcl::inline-access)
:test #'eq))))
(deftest inline-access-p.0
(and (method-using-inline-access-p 'sacc.0 'sacc.0.0 nil '(sacc.0))
(method-using-inline-access-p 'sacc.0 'sacc.0.1 nil '(sacc.0))
(method-using-inline-access-p 'sacc.0 'sacc.0.2 nil '(sacc.0 t))
(method-using-inline-access-p 'sacc.0 'sacc.0.3 nil '(sacc.0 t)))
sacc.0)
(deftest inline-access-p.1
(let ((methods (pcl::methods-using-inline-slot-access
(pcl::find-class 'sacc.0))))
(length methods))
4)
(deftest inline-access.0
(sacc.0.0 (make-instance 'sacc.0))
0)
(deftest inline-access.1
(let ((instance (make-instance 'sacc.0 :a 11)))
(values (sacc.0.0 instance)
(sacc.0.1 instance)))
11 11)
(deftest inline-access.2
(let ((instance (make-instance 'sacc.0 :a 11)))
(sacc.0.2 instance 10)
(slot-value instance 'a))
10)
(deftest inline-access.3
(let ((instance (make-instance 'sacc.0 :a 11)))
(sacc.0.3 instance 10)
(slot-value instance 'a))
10)
(defmacro define-warning-test (name (value) &body body)
`(deftest ,name
(let (warning)
(flet ((note-warning (c)
(declare (ignore c))
(setq warning t)
(muffle-warning)))
(handler-bind ((warning #'note-warning))
,@body)
warning))
,value))
(define-warning-test warn.0 (t) (warn "Test the test"))
(define-warning-test warn.1 (nil) nil)
(define-warning-test inline-warn.0 (nil)
(defclass sacc.0 ()
((a :initform 0 :initarg :a :accessor sacc.0-a))))
(define-warning-test inline-warn.1 (t)
(defclass sacc.0 ()
((a :initform 0 :initarg :a :accessor sacc.0-a)
(b :initform 0))))
(define-warning-test inline-warn.2 (t)
(progn
(defmethod inline-warn.2.method ((x sacc.1))
(declare (pcl::slots (inline sacc.1)))
(slot-value x 'b))