X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fstream.impure.lisp;h=9b671c5c163cbb53f044823e11f19d61d5520c29;hb=c44f2e6960733edc383244f3e39db3b6581255c4;hp=caf58cc1ea28d781a691145fb38eca68822c410a;hpb=ebbaa0e11a4d5c9bf021d28f212cfb6d5cd4aaab;p=sbcl.git diff --git a/tests/stream.impure.lisp b/tests/stream.impure.lisp index caf58cc..9b671c5 100644 --- a/tests/stream.impure.lisp +++ b/tests/stream.impure.lisp @@ -11,9 +11,8 @@ ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. -(in-package :cl-user) - (load "assertoid.lisp") +(use-package "ASSERTOID") ;;; type errors for inappropriate stream arguments, fixed in ;;; sbcl-0.7.8.19 @@ -41,6 +40,69 @@ (make-string-output-stream) (make-string-input-stream "foo")) type-error))) + +;;; bug 225: STRING-STREAM was not a class +(eval `(defgeneric bug225 (s) + ,@(mapcar (lambda (class) + `(:method :around ((s ,class)) (cons ',class (call-next-method)))) + '(stream string-stream sb-impl::string-input-stream + sb-impl::string-output-stream)) + (:method (class) nil))) + +(assert (equal (bug225 (make-string-input-stream "hello")) + '(sb-impl::string-input-stream string-stream stream))) +(assert (equal (bug225 (make-string-output-stream)) + '(sb-impl::string-output-stream string-stream stream))) + + +;;; improper buffering on (SIGNED-BYTE 8) streams (fixed by David Lichteblau): +(let ((p "signed-byte-8-test.data")) + (with-open-file (s p + :direction :output + :element-type '(unsigned-byte 8) + :if-exists :supersede) + (write-byte 255 s)) + (with-open-file (s p :element-type '(signed-byte 8)) + (assert (= (read-byte s) -1))) + (delete-file p)) + +;;; :IF-EXISTS got :ERROR and NIL the wrong way round (reported by +;;; Milan Zamazal) +(let* ((p "this-file-will-exist") + (stream (open p :direction :output :if-exists :error))) + (assert (null (with-open-file (s p :direction :output :if-exists nil) s))) + (assert (raises-error? + (with-open-file (s p :direction :output :if-exists :error)))) + (close stream) + (delete-file p)) + +(assert (raises-error? (read-byte (make-string-input-stream "abc")) + type-error)) +(assert (raises-error? (with-open-file (s "/dev/zero") + (read-byte s)) + type-error)) +;;; bidirectional streams getting confused about their position +(let ((p "bidirectional-stream-test")) + (with-open-file (s p :direction :output :if-exists :supersede) + (with-standard-io-syntax + (format s "~S ~S ~S~%" 'these 'are 'symbols))) + (with-open-file (s p :direction :io :if-exists :overwrite) + (read s) + (with-standard-io-syntax + (prin1 'insert s))) + (with-open-file (s p) + (assert (string= (read-line s) "THESE INSERTMBOLS"))) + (delete-file p)) + +;;; :DIRECTION :IO didn't work on non-existent pathnames +(let ((p "direction-io-test")) + (ignore-errors (delete-file p)) + (with-open-file (s p :direction :io) + (format s "1") + (finish-output s) + (file-position s :start) + (assert (char= (read-char s) #\1))) + (delete-file p)) ;;; success (quit :unix-status 104)