X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-introspect%2Ftest-driver.lisp;h=f1c896b1d50f934f758e171092e6401afc073e85;hb=4e77726ecbe2bb33d3208610266db3b8c9cb2719;hp=f482b8d17b67cfc76da1f2396f791cc5bc36027e;hpb=3893e84021b2466d34e44e97340b96c6325a4b8d;p=sbcl.git diff --git a/contrib/sb-introspect/test-driver.lisp b/contrib/sb-introspect/test-driver.lisp index f482b8d..f1c896b 100644 --- a/contrib/sb-introspect/test-driver.lisp +++ b/contrib/sb-introspect/test-driver.lisp @@ -151,12 +151,10 @@ (matchp-name :function '(setf cl-user::o) 23) t) - (deftest find-source-stuff.24 (matchp-name :method '(setf cl-user::p) 24) t) - (deftest find-source-stuff.25 (matchp-name :macro 'cl-user::q 25) t) @@ -344,3 +342,183 @@ (deftest allocation-information.thread.3 (thread-tai2) t)) + +;;;; Test FUNCTION-TYPE + +(defun type-equal (typespec1 typespec2) + (or (equal typespec1 typespec2) ; TYPE= punts on &keywords in FTYPEs. + (sb-kernel:type= (sb-kernel:values-specifier-type typespec1) + (sb-kernel:values-specifier-type typespec2)))) + +(defmacro interpret (form) + `(let ((sb-ext:*evaluator-mode* :interpret)) + (eval ',form))) + +;; Functions + +(declaim (ftype (function (integer &optional string) string) moon)) +(defun moon (int &optional suffix) + (concatenate 'string (princ-to-string int) suffix)) + +(deftest function-type.1 + (values (type-equal (function-type 'moon) (function-type #'moon)) + (type-equal (function-type #'moon) + '(function (integer &optional string) + (values string &rest t)))) + t t) + +(defun sun (x y &key k1) + (declare (fixnum x y)) + (declare (boolean k1)) + (declare (ignore x y k1)) + t) + +(deftest function-type.2 + (values (type-equal (function-type 'sun) (function-type #'sun)) + ;; Does not currently work due to Bug #384892. (1.0.31.26) + #+nil + (type-equal (function-type #'sun) + '(function (fixnum fixnum &key (:k1 (member nil t))) + (values (member t) &optional)))) + t #+nil t) + +;; Local functions + +(deftest function-type.5 + (flet ((f (s) + (declare (symbol s)) + (values (symbol-name s)))) + (type-equal (function-type #'f) + '(function (symbol) (values simple-string &optional)))) + t) + +;; Closures + +(deftest function-type.6 + (let ((x 10)) + (declare (fixnum x)) + (flet ((closure (y) + (declare (fixnum y)) + (setq x (+ x y)))) + (type-equal (function-type #'closure) + '(function (fixnum) (values fixnum &optional))))) + t) + +;; Anonymous functions + +(deftest function-type.7 + (type-equal (function-type #'(lambda (x) (declare (fixnum x)) x)) + '(function (fixnum) (values fixnum &optional))) + t) + +;; Interpreted functions + +(deftest function-type.8 + (type-equal (function-type (interpret (lambda (x) (declare (fixnum x)) x))) + '(function (&rest t) *)) + t) + +;; Generic functions + +(defgeneric earth (x y)) + +(deftest function-type+gfs.1 + (values (type-equal (function-type 'earth) (function-type #'earth)) + (type-equal (function-type 'earth) '(function (t t) *))) + t t) + +;; Implicitly created generic functions. + +;; (FUNCTION-TYPE 'MARS) => FUNCTION at the moment. (1.0.31.26) + +;; See LP #520695. + +(defmethod mars (x y) (+ x y)) + +#+ nil +(deftest function-type+gfs.2 + (values (type-equal (function-type 'mars) (function-type #'mars)) + (type-equal (function-type 'mars) '(function (t t) *))) + t t) + +;; DEFSTRUCT created functions + +;; These do not yet work because SB-KERNEL:%FUN-NAME does not work on +;; functions defined by DEFSTRUCT. (1.0.35.x) + +;; See LP #520692. + +#+nil +(progn + + (defstruct (struct (:predicate our-struct-p) + (:copier copy-our-struct)) + (a 42 :type fixnum)) + + (deftest function-type+defstruct.1 + (values (type-equal (function-type 'struct-a) + (function-type #'struct-a)) + (type-equal (function-type 'struct-a) + '(function (struct) (values fixnum &optional)))) + t t) + + (deftest function-type+defstruct.2 + (values (type-equal (function-type 'our-struct-p) + (function-type #'our-struct-p)) + (type-equal (function-type 'our-struct-p) + '(function (t) (values (member t nil) &optional)))) + t t) + + (deftest function-type+defstruct.3 + (values (type-equal (function-type 'copy-our-struct) + (function-type #'copy-our-struct)) + (type-equal (function-type 'copy-our-struct) + '(function (struct) (values struct &optional)))) + t t) + + (defstruct (typed-struct :named (:type list) + (:predicate typed-struct-p)) + (a 42 :type fixnum)) + + (deftest function-type+defstruct.4 + (values (type-equal (function-type 'typed-struct-a) + (function-type #'typed-struct-a)) + (type-equal (function-type 'typed-struct-a) + '(function (list) (values fixnum &optional)))) + t t) + + (deftest function-type+defstruct.5 + (values (type-equal (function-type 'typed-struct-p) + (function-type #'typed-struct-p)) + (type-equal (function-type 'typed-struct-p) + '(function (t) (values (member t nil) &optional)))) + t t) + + ) ; #+nil (progn ... + +;; SETF functions + +(defun (setf sun) (value x y &key k1) + (declare (boolean value)) + (declare (fixnum x y)) + (declare (boolean k1)) + (declare (ignore x y k1)) + value) + +(deftest function-type+setf.1 + (values (type-equal (function-type '(setf sun)) + (function-type #'(setf sun))) + (type-equal (function-type '(setf sun)) + '(function ((member nil t) + fixnum fixnum + &key (:k1 (member nil t))) + *))) + t t) + +;; Misc + +(deftest function-type+misc.1 + (flet ((nullary ())) + (type-equal (function-type #'nullary) + '(function () (values null &optional)))) + t)