1.0.1.11:
[sbcl.git] / tests / stream.impure.lisp
1 ;;;; tests related to Lisp streams
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 (load "assertoid.lisp")
15 (use-package "ASSERTOID")
16
17 ;;; type errors for inappropriate stream arguments, fixed in
18 ;;; sbcl-0.7.8.19
19 (locally
20     (declare (optimize (safety 3)))
21   (assert (raises-error? (make-two-way-stream (make-string-output-stream)
22                                               (make-string-output-stream))
23                          type-error))
24   (assert (raises-error? (make-two-way-stream (make-string-input-stream "foo")
25                                               (make-string-input-stream "bar"))
26                          type-error))
27   ;; the following two aren't actually guaranteed, because ANSI, as it
28   ;; happens, doesn't say "should signal an error" for
29   ;; MAKE-ECHO-STREAM. It's still good to have, but if future
30   ;; maintenance work causes this test to fail because of these
31   ;; MAKE-ECHO-STREAM clauses, consider simply removing these clauses
32   ;; from the test. -- CSR, 2002-10-06
33   (assert (raises-error? (make-echo-stream (make-string-output-stream)
34                                            (make-string-output-stream))
35                          type-error))
36   (assert (raises-error? (make-echo-stream (make-string-input-stream "foo")
37                                            (make-string-input-stream "bar"))
38                          type-error))
39   (assert (raises-error? (make-concatenated-stream
40                           (make-string-output-stream)
41                           (make-string-input-stream "foo"))
42                          type-error)))
43
44 ;;; bug 225: STRING-STREAM was not a class
45 (eval `(defgeneric bug225 (s)
46          ,@(mapcar (lambda (class)
47                      `(:method :around ((s ,class)) (cons ',class (call-next-method))))
48                    '(stream string-stream sb-impl::string-input-stream
49                      sb-impl::string-output-stream))
50          (:method (class) nil)))
51
52 (assert (equal (bug225 (make-string-input-stream "hello"))
53                '(sb-impl::string-input-stream string-stream stream)))
54 (assert (equal (bug225 (make-string-output-stream))
55                '(sb-impl::string-output-stream string-stream stream)))
56
57 \f
58 ;;; improper buffering on (SIGNED-BYTE 8) streams (fixed by David Lichteblau):
59 (let ((p "signed-byte-8-test.data"))
60   (with-open-file (s p
61                      :direction :output
62                      :element-type '(unsigned-byte 8)
63                      :if-exists :supersede)
64     (write-byte 255 s))
65   (with-open-file (s p :element-type '(signed-byte 8))
66     (assert (= (read-byte s) -1)))
67   (delete-file p))
68 \f
69 ;;; :IF-EXISTS got :ERROR and NIL the wrong way round (reported by
70 ;;; Milan Zamazal)
71 (let* ((p "this-file-will-exist")
72        (stream (open p :direction :output :if-exists :error)))
73   (assert (null (with-open-file (s p :direction :output :if-exists nil) s)))
74   (assert (raises-error?
75            (with-open-file (s p :direction :output :if-exists :error))))
76   (close stream)
77   (delete-file p))
78 \f
79 (assert (raises-error? (read-byte (make-string-input-stream "abc"))
80                        type-error))
81 (assert (raises-error? (with-open-file (s "/dev/zero")
82                          (read-byte s))
83                        type-error))
84 ;;; bidirectional streams getting confused about their position
85 (let ((p "bidirectional-stream-test"))
86   (with-open-file (s p :direction :output :if-exists :supersede)
87     (with-standard-io-syntax
88       (format s "~S ~S ~S~%" 'these 'are 'symbols)))
89   (with-open-file (s p :direction :io :if-exists :overwrite)
90     (read s)
91     (with-standard-io-syntax
92       (prin1 'insert s)))
93   (with-open-file (s p)
94     (assert (string= (read-line s) "THESE INSERTMBOLS")))
95   (delete-file p))
96 \f
97 ;;; :DIRECTION :IO didn't work on non-existent pathnames
98 (let ((p "direction-io-test"))
99   (ignore-errors (delete-file p))
100   (with-open-file (s p :direction :io)
101     (format s "1")
102     (finish-output s)
103     (file-position s :start)
104     (assert (char= (read-char s) #\1)))
105   (delete-file p))
106 \f
107 ;;; FILE-POSITION on broadcast-streams is mostly uncontroversial
108 (assert (= 0 (file-position (make-broadcast-stream))))
109 (assert (file-position (make-broadcast-stream) :start))
110 (assert (file-position (make-broadcast-stream) 0))
111 (assert (not (file-position (make-broadcast-stream) 1)))
112 (let ((s (make-broadcast-stream)))
113   (write-char #\a s)
114   (assert (not (file-position s 1)))
115   (assert (= 0 (file-position s))))
116
117 (let ((p "broadcast-stream-test"))
118   (ignore-errors (delete-file p))
119   (with-open-file (f p :direction :output)
120     (let ((s (make-broadcast-stream f)))
121       (assert (= 0 (file-position s)))
122       (assert (file-position s :start))
123       (assert (file-position s 0))
124       (write-char #\a s)
125       (assert (= 1 (file-position s))) ; unicode...
126       (assert (file-position s 0))))
127   (delete-file p))
128
129 ;;; CLOSING a non-new streams should not delete them, and superseded
130 ;;; files should be restored.
131 (let ((test "test-file-for-close-should-not-delete"))
132   (macrolet ((test-mode (mode)
133                `(progn
134                  (catch :close-test-exit
135                    (with-open-file (f test :direction :output :if-exists ,mode)
136                      (write-line "test" f)
137                      (throw :close-test-exit t)))
138                  (assert (and (probe-file test) ,mode)))))
139     (unwind-protect
140          (progn
141            (with-open-file (f test :direction :output)
142              (write-line "test" f))
143            (test-mode :append)
144            (test-mode :overwrite)
145            ;; FIXME: We really should recover supersede files as well, according to
146            ;; CLOSE in CLHS, but at the moment we don't.
147            ;; (test-mode :supersede)
148            (test-mode :rename)
149            (test-mode :rename-and-delete))
150       (when (probe-file test)
151         (delete-file test)))))
152
153 ;;; test for read-write invariance of signed bytes, from Bruno Haible
154 ;;; cmucl-imp 2004-09-06
155 (defun bin-stream-test (&key (size (integer-length most-positive-fixnum))
156                         (type 'unsigned-byte) (file-name "stream-impure.tmp")
157                         (num-bytes 10)
158                         (bytes (if (eq type 'signed-byte)
159                                    (loop :repeat num-bytes :collect
160                                          (- (random (ash 1 size))
161                                             (ash 1 (1- size))))
162                                    (loop :repeat num-bytes :collect
163                                          (random (ash 1 size))))))
164   (with-open-file (foo file-name :direction :output :if-exists :supersede
165                        :element-type (list type size))
166     (dolist (byte bytes)
167       (write-byte byte foo)))
168   (unwind-protect
169        (with-open-file (foo file-name :direction :input
170                             :element-type (list type size))
171          (list (stream-element-type foo) (file-length foo) bytes
172                (loop :for byte :in bytes :for nb = (read-byte foo) :collect nb
173                      :unless (= nb byte) :do
174                      (flet ((by-out (sz by)
175                               (format nil "~v,'0,' ,4:b"
176                                       (+ sz (floor sz 4)) by)))
177                        (error "~& * [(~s ~s)] ~a != ~a~%" type size
178                               (by-out size byte) (by-out size nb))))))
179     (delete-file file-name)))
180 (loop for size from 2 to 40 do (bin-stream-test :size size :type 'signed-byte))
181 \f
182 ;;; Check READ-SEQUENCE signals a TYPE-ERROR when the sequence can't
183 ;;; contain a stream element.
184 ;;;
185 ;;; These tests check READ-SEQUENCE correctness, not whether the fast
186 ;;; or slow paths are being taken for each element type.  To check the
187 ;;; fast or slow paths, trace ANSI-STREAM-READ-BYTE (slow path) and/or
188 ;;; READ-N-BYTES:
189 ;;;
190 ;;; (trace sb-impl::ansi-stream-read-byte sb-impl::read-n-bytes)
191 ;;;
192 ;;; The order should be ANSI-STREAM-READ-BYTE, READ-N-BYTES,
193 ;;; READ-N-BYTES, ANSI-STREAM-READ-BYTE, ANSI-STREAM-READ-BYTE.
194
195 (let ((pathname "read-sequence.data"))
196
197   ;; Create the binary data.
198   (with-open-file (stream pathname
199                           :direction :output
200                           :if-exists :supersede
201                           :element-type '(unsigned-byte 8))
202     (write-byte 255 stream))
203
204   ;; Check the slow path for generic vectors.
205   (let ((sequence (make-array 1)))
206     (with-open-file (stream pathname
207                             :direction :input
208                             :element-type '(unsigned-byte 8))
209     (read-sequence sequence stream)
210     (assert (equalp sequence #(255)))))
211
212   ;; Check the fast path works for (UNSIGNED-BYTE 8) and (SIGNED-BYTE
213   ;; 8) vectors.
214   (let ((sequence (make-array 1 :element-type '(unsigned-byte 8))))
215     (with-open-file (stream pathname
216                             :direction :input
217                             :element-type '(unsigned-byte 8))
218       (read-sequence sequence stream)
219       (assert (equalp sequence #(255)))))
220
221   (let ((sequence (make-array 1 :element-type '(signed-byte 8))))
222     (with-open-file (stream pathname
223                             :direction :input
224                             :element-type '(signed-byte 8))
225     (read-sequence sequence stream)
226     (assert (equalp sequence #(-1)))))
227
228   ;; A bivalent stream can be read to a unsigned-byte vector or a
229   ;; string
230
231   (let ((sequence (make-array 1 :element-type '(unsigned-byte 8))))
232     (with-open-file (stream pathname
233                             :direction :input
234                             :element-type :default)
235       (read-sequence sequence stream)
236       (assert (equalp sequence #(255)))))
237
238   (let ((sequence (make-array 1 :element-type 'character)))
239     (with-open-file (stream pathname
240                             :direction :input
241                             :external-format :latin-1
242                             :element-type :default)
243       (read-sequence sequence stream)
244       (assert (equalp sequence #(#.(code-char 255))))))
245
246   ;; Check that a TYPE-ERROR is signalled for incompatible (sequence,
247   ;; stream) pairs.
248
249   (let ((sequence (make-array 1 :element-type '(signed-byte 8))))
250     (with-open-file (stream pathname
251                             :direction :input
252                             :element-type '(unsigned-byte 8))
253       (handler-case (progn
254                       (read-sequence sequence stream)
255                       (error "READ-SEQUENCE didn't signal an error"))
256         (type-error (condition)
257           (assert (= (type-error-datum condition) 255))
258           (assert (subtypep (type-error-expected-type condition)
259                             '(signed-byte 8)))))))
260
261   (let ((sequence (make-array 1 :element-type '(unsigned-byte 8))))
262     (with-open-file (stream pathname
263                             :direction :input
264                             :element-type '(signed-byte 8))
265       (handler-case (progn
266                       (read-sequence sequence stream)
267                       (error "READ-SEQUENCE didn't signal an error"))
268         (type-error (condition)
269           (assert (= (type-error-datum condition) -1))
270           (assert (subtypep (type-error-expected-type condition)
271                             '(unsigned-byte 8)))))))
272
273   ;; Can't read a signed-byte from a bivalent stream
274
275   (let ((sequence (make-array 1 :element-type '(signed-byte 8))))
276     (with-open-file (stream pathname
277                             :direction :input
278                             :element-type :default)
279       (handler-case (progn
280                       (read-sequence sequence stream)
281                       (error "READ-SEQUENCE didn't signal an error"))
282         (type-error (condition)
283           (assert (= (type-error-datum condition) 255))
284           (assert (subtypep (type-error-expected-type condition)
285                             '(signed-byte 8))))))))
286
287 \f
288 ;;; Check WRITE-SEQUENCE signals a TYPE-ERROR when the stream can't
289 ;;; write a sequence element.
290 ;;;
291 ;;; These tests check WRITE-SEQUENCE correctness, not whether the fast
292 ;;; or slow paths are being taken for each element type.  See the
293 ;;; READ-SEQUENCE tests above for more information.
294 ;;;
295 ;;; (trace sb-impl::output-unsigned-byte-full-buffered sb-impl::output-signed-byte-full-buffered sb-impl::output-raw-bytes)
296
297 (let ((pathname "write-sequence.data")
298       (generic-sequence (make-array 1 :initial-contents '(255)))
299       (string (make-array 1 :element-type 'character
300                           :initial-element (code-char 255)))
301       (unsigned-sequence (make-array 1
302                                      :element-type '(unsigned-byte 8)
303                                      :initial-contents '(255)))
304       (signed-sequence (make-array 1
305                                    :element-type '(signed-byte 8)
306                                    :initial-contents '(-1))))
307   ;; Check the slow path for generic vectors.
308   (with-open-file (stream pathname
309                            :direction :output
310                            :if-exists :supersede
311                            :element-type '(unsigned-byte 8))
312     (write-sequence generic-sequence stream))
313
314   ;; Check the fast path for unsigned and signed vectors.
315   (with-open-file (stream pathname
316                           :direction :output
317                           :if-exists :supersede
318                           :element-type '(unsigned-byte 8))
319     (write-sequence unsigned-sequence stream))
320
321   (with-open-file (stream pathname
322                           :direction :output
323                           :if-exists :supersede
324                           :element-type '(signed-byte 8))
325     (write-sequence signed-sequence stream))
326
327   ;; Bivalent streams on unsigned-byte and strings
328
329   (with-open-file (stream pathname
330                           :direction :output
331                           :if-exists :supersede
332                           :element-type :default)
333     (write-sequence unsigned-sequence stream))
334
335   (with-open-file (stream pathname
336                           :direction :output
337                           :external-format :latin-1
338                           :if-exists :supersede
339                           :element-type :default)
340     (write-sequence string stream))
341
342   ;; Check a TYPE-ERROR is signalled for unsigned and signed vectors
343   ;; which are incompatible with the stream element type.
344   (with-open-file (stream pathname
345                           :direction :output
346                           :if-exists :supersede
347                           :element-type '(signed-byte 8))
348     (handler-case (progn
349                     (write-sequence unsigned-sequence stream)
350                     (error "WRITE-SEQUENCE didn't signal an error"))
351       (type-error (condition)
352         (assert (= (type-error-datum condition) 255))
353         (assert (subtypep (type-error-expected-type condition)
354                           '(signed-byte 8))))))
355
356   (with-open-file (stream pathname
357                           :direction :output
358                           :if-exists :supersede
359                           :element-type '(unsigned-byte 8))
360     (handler-case (progn
361                     (write-sequence signed-sequence stream)
362                     (error "WRITE-SEQUENCE didn't signal an error"))
363       (type-error (condition)
364         (assert (= (type-error-datum condition) -1))
365         (assert (subtypep (type-error-expected-type condition)
366                           '(unsigned-byte 8))))))
367
368   (with-open-file (stream pathname
369                           :direction :output
370                           :if-exists :supersede
371                           :element-type :default)
372     (handler-case (progn
373                     (write-sequence signed-sequence stream)
374                     (error "WRITE-SEQUENCE didn't signal an error"))
375       (type-error (condition)
376         (assert (= (type-error-datum condition) -1))
377         (assert (subtypep (type-error-expected-type condition)
378                           '(unsigned-byte 8)))))))
379
380 ;;; success