0.7.8.38:
[sbcl.git] / tests / mop.impure.lisp
1 ;;;; miscellaneous side-effectful tests of the MOP
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 ;;;; Note that the MOP is not in a supported state. Package issues
15 ;;;; (both MOP/SB-PCL and CL/SB-PCL) have yet to be resolved, and
16 ;;;; there is likely to be missing functionality.  However, this seems
17 ;;;; a good a way as any of ensuring that we have no regressions.
18
19 (defpackage "MOP-TEST"
20   ;; eventually, we might want "MOP" as well here.
21   (:use "CL"))
22
23 (in-package "MOP-TEST")
24 \f
25 ;;; Readers for Generic Function Metaobjects (pp. 216--218 of AMOP)
26 (defgeneric fn-with-odd-arg-precedence (a b c)
27   (:argument-precedence-order b c a))
28
29 (assert (equal
30          (sb-pcl:generic-function-lambda-list #'fn-with-odd-arg-precedence)
31          '(a b c)))
32 (assert (equal
33          (sb-pcl:generic-function-argument-precedence-order #'fn-with-odd-arg-precedence)
34          '(b c a)))
35
36 #||
37 This is actually a test of vanilla CLOS, not the MOP; however, there isn't
38 a terribly easy way of testing this without it (FIXME: one would have to
39 construct a series of DOCUMENTATION methods, probably involving
40 CALL-NEXT-METHOD). However, since we're actually getting this wrong
41 currently, better put in a quick test in the hope that we can fix it soon:
42
43 (assert (equal
44          (sb-pcl:generic-function-argument-precedence-order #'documentation)
45          (let ((ll (sb-pcl:generic-function-lambda-list #'documentation)))
46            (list (nth ll 1) (nth ll 0)))))
47 ||#
48 \f
49 ;;; Readers for Slot Definition Metaobjects (pp. 221--224 of AMOP)
50
51 ;;; Ensure that SLOT-DEFINITION-ALLOCATION returns :INSTANCE/:CLASS as
52 ;;; appropriate.
53 (defclass sdm-test-class ()
54   ((an-instance-slot :accessor an-instance-slot)
55    (a-class-slot :allocation :class :accessor a-class-slot)))
56 (dolist (m (list (list #'an-instance-slot :instance)
57                  (list #'a-class-slot :class)))
58   (let ((methods (sb-pcl:generic-function-methods (car m))))
59     (assert (= (length methods) 1))
60     (assert (eq (sb-pcl:slot-definition-allocation
61                  (sb-pcl:accessor-method-slot-definition
62                   (car methods)))
63                 (cadr m)))))
64 \f
65 ;;; Class Finalization Protocol (see section 5.5.2 of AMOP)
66 (let ((finalized-count 0))
67   (defmethod sb-pcl:finalize-inheritance :after ((x sb-pcl::standard-class))
68     (incf finalized-count))
69   (defun get-count () finalized-count))
70 (defclass finalization-test-1 () ())
71 (make-instance 'finalization-test-1)
72 (assert (= (get-count) 1))
73 (defclass finalization-test-2 (finalization-test-3) ())
74 (assert (= (get-count) 1))
75 (defclass finalization-test-3 () ())
76 (make-instance 'finalization-test-3)
77 (assert (or (= (get-count) 2) (= (get-count) 3)))
78 (make-instance 'finalization-test-2)
79 (assert (= (get-count) 3))
80 \f
81 ;;;; success
82 (sb-ext:quit :unix-status 104)