1 ;;;; tests related to Lisp streams
3 ;;;; This software is part of the SBCL system. See the README file for
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
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.
14 (load "assertoid.lisp")
15 (use-package "ASSERTOID")
17 ;;; type errors for inappropriate stream arguments, fixed in
20 (declare (optimize (safety 3)))
21 (assert (raises-error?
(make-two-way-stream (make-string-output-stream)
22 (make-string-output-stream))
24 (assert (raises-error?
(make-two-way-stream (make-string-input-stream "foo")
25 (make-string-input-stream "bar"))
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))
36 (assert (raises-error?
(make-echo-stream (make-string-input-stream "foo")
37 (make-string-input-stream "bar"))
39 (assert (raises-error?
(make-concatenated-stream
40 (make-string-output-stream)
41 (make-string-input-stream "foo"))
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
)))
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
)))
58 ;;; improper buffering on (SIGNED-BYTE 8) streams (fixed by David Lichteblau):
59 (let ((p "signed-byte-8-test.data"))
62 :element-type
'(unsigned-byte 8)
63 :if-exists
:supersede
)
65 (with-open-file (s p
:element-type
'(signed-byte 8))
66 (assert (= (read-byte s
) -
1)))
69 ;;; :IF-EXISTS got :ERROR and NIL the wrong way round (reported by
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
))))
79 (assert (raises-error?
(read-byte (make-string-input-stream "abc"))
81 (assert (raises-error?
(with-open-file (s "/dev/zero")
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
)
91 (with-standard-io-syntax
94 (let ((line (read-line s
))
95 (want "THESE INSERTMBOLS"))
96 (unless (equal line want
)
97 (error "wanted ~S, got ~S" want line
))))
100 ;;; :DIRECTION :IO didn't work on non-existent pathnames
101 (let ((p "direction-io-test"))
102 (ignore-errors (delete-file p
))
103 (with-open-file (s p
:direction
:io
)
106 (file-position s
:start
)
107 (assert (char= (read-char s
) #\
1)))
110 ;;; FILE-POSITION on broadcast-streams is mostly uncontroversial
111 (assert (= 0 (file-position (make-broadcast-stream))))
112 (assert (file-position (make-broadcast-stream) :start
))
113 (assert (file-position (make-broadcast-stream) 0))
114 (assert (not (file-position (make-broadcast-stream) 1)))
115 (let ((s (make-broadcast-stream)))
117 (assert (not (file-position s
1)))
118 (assert (= 0 (file-position s
))))
120 (let ((p "broadcast-stream-test"))
121 (ignore-errors (delete-file p
))
122 (with-open-file (f p
:direction
:output
)
123 (let ((s (make-broadcast-stream f
)))
124 (assert (= 0 (file-position s
)))
125 (assert (file-position s
:start
))
126 (assert (file-position s
0))
128 (assert (= 1 (file-position s
))) ; unicode...
129 (assert (file-position s
0))))
132 ;;; CLOSING a non-new streams should not delete them, and superseded
133 ;;; files should be restored.
134 (let ((test "test-file-for-close-should-not-delete"))
135 (macrolet ((test-mode (mode)
137 (catch :close-test-exit
138 (with-open-file (f test
:direction
:output
:if-exists
,mode
)
139 (write-line "test" f
)
140 (throw :close-test-exit t
)))
141 (assert (and (probe-file test
) ,mode
)))))
144 (with-open-file (f test
:direction
:output
)
145 (write-line "test" f
))
147 (test-mode :overwrite
)
148 ;; FIXME: We really should recover supersede files as well, according to
149 ;; CLOSE in CLHS, but at the moment we don't.
150 ;; (test-mode :supersede)
152 (test-mode :rename-and-delete
))
153 (when (probe-file test
)
154 (delete-file test
)))))
156 ;;; test for read-write invariance of signed bytes, from Bruno Haible
157 ;;; cmucl-imp 2004-09-06
158 (defun bin-stream-test (&key
(size (integer-length most-positive-fixnum
))
159 (type 'unsigned-byte
) (file-name "stream-impure.tmp")
161 (bytes (if (eq type
'signed-byte
)
162 (loop :repeat num-bytes
:collect
163 (- (random (ash 1 size
))
165 (loop :repeat num-bytes
:collect
166 (random (ash 1 size
))))))
167 (with-open-file (foo file-name
:direction
:output
:if-exists
:supersede
168 :element-type
(list type size
))
170 (write-byte byte foo
)))
172 (with-open-file (foo file-name
:direction
:input
173 :element-type
(list type size
))
174 (list (stream-element-type foo
) (file-length foo
) bytes
175 (loop :for byte
:in bytes
:for nb
= (read-byte foo
) :collect nb
176 :unless
(= nb byte
) :do
177 (flet ((by-out (sz by
)
178 (format nil
"~v,'0,' ,4:b"
179 (+ sz
(floor sz
4)) by
)))
180 (error "~& * [(~s ~s)] ~a != ~a~%" type size
181 (by-out size byte
) (by-out size nb
))))))
182 (delete-file file-name
)))
183 (loop for size from
2 to
40 do
(bin-stream-test :size size
:type
'signed-byte
))
185 ;;; Check READ-SEQUENCE signals a TYPE-ERROR when the sequence can't
186 ;;; contain a stream element.
188 ;;; These tests check READ-SEQUENCE correctness, not whether the fast
189 ;;; or slow paths are being taken for each element type. To check the
190 ;;; fast or slow paths, trace ANSI-STREAM-READ-BYTE (slow path) and/or
193 ;;; (trace sb-impl::ansi-stream-read-byte sb-impl::read-n-bytes)
195 ;;; The order should be ANSI-STREAM-READ-BYTE, READ-N-BYTES,
196 ;;; READ-N-BYTES, ANSI-STREAM-READ-BYTE, ANSI-STREAM-READ-BYTE.
198 (let ((pathname "read-sequence.data"))
200 ;; Create the binary data.
201 (with-open-file (stream pathname
203 :if-exists
:supersede
204 :element-type
'(unsigned-byte 8))
205 (write-byte 255 stream
))
207 ;; Check the slow path for generic vectors.
208 (let ((sequence (make-array 1)))
209 (with-open-file (stream pathname
211 :element-type
'(unsigned-byte 8))
212 (read-sequence sequence stream
)
213 (assert (equalp sequence
#(255)))))
215 (let ((sequence (make-array 1)))
216 (with-open-file (stream pathname
218 :external-format
:latin-1
219 :element-type
'character
)
220 (read-sequence sequence stream
)
221 (assert (equalp sequence
#(#.
(code-char 255))))))
223 ;; Check the fast path works for (UNSIGNED-BYTE 8) and (SIGNED-BYTE
225 (let ((sequence (make-array 1 :element-type
'(unsigned-byte 8))))
226 (with-open-file (stream pathname
228 :element-type
'(unsigned-byte 8))
229 (read-sequence sequence stream
)
230 (assert (equalp sequence
#(255)))))
232 (let ((sequence (make-array 1 :element-type
'(signed-byte 8))))
233 (with-open-file (stream pathname
235 :element-type
'(signed-byte 8))
236 (read-sequence sequence stream
)
237 (assert (equalp sequence
#(-1)))))
239 ;; A bivalent stream can be read to a unsigned-byte vector, a
240 ;; string, or a generic vector
242 (let ((sequence (make-array 1 :element-type
'(unsigned-byte 8))))
243 (with-open-file (stream pathname
245 :element-type
:default
)
246 (read-sequence sequence stream
)
247 (assert (equalp sequence
#(255)))))
249 (let ((sequence (make-array 1 :element-type
'character
)))
250 (with-open-file (stream pathname
252 :external-format
:latin-1
253 :element-type
:default
)
254 (read-sequence sequence stream
)
255 (assert (equalp sequence
#(#.
(code-char 255))))))
257 (let ((sequence (make-array 1)))
258 (with-open-file (stream pathname
260 :external-format
:latin-1
261 :element-type
:default
)
262 (read-sequence sequence stream
)
263 (assert (equalp sequence
#(#.
(code-char 255))))))
265 ;; Check that a TYPE-ERROR is signalled for incompatible (sequence,
268 (let ((sequence (make-array 1 :element-type
'(signed-byte 8))))
269 (with-open-file (stream pathname
271 :element-type
'(unsigned-byte 8))
273 (read-sequence sequence stream
)
274 (error "READ-SEQUENCE didn't signal an error"))
275 (type-error (condition)
276 (assert (= (type-error-datum condition
) 255))
277 (assert (subtypep (type-error-expected-type condition
)
278 '(signed-byte 8)))))))
280 (let ((sequence (make-array 1 :element-type
'(unsigned-byte 8))))
281 (with-open-file (stream pathname
283 :element-type
'(signed-byte 8))
285 (read-sequence sequence stream
)
286 (error "READ-SEQUENCE didn't signal an error"))
287 (type-error (condition)
288 (assert (= (type-error-datum condition
) -
1))
289 (assert (subtypep (type-error-expected-type condition
)
290 '(unsigned-byte 8)))))))
292 ;; Can't read a signed-byte from a bivalent stream
294 (let ((sequence (make-array 1 :element-type
'(signed-byte 8))))
295 (with-open-file (stream pathname
297 :external-format
:latin1
298 :element-type
:default
)
300 (read-sequence sequence stream
)
301 (error "READ-SEQUENCE didn't signal an error"))
302 (type-error (condition)
303 (assert (eql (type-error-datum condition
) (code-char 255)))
304 (assert (subtypep (type-error-expected-type condition
)
305 '(signed-byte 8)))))))
306 (delete-file pathname
))
308 ;;; Check WRITE-SEQUENCE signals a TYPE-ERROR when the stream can't
309 ;;; write a sequence element.
311 ;;; These tests check WRITE-SEQUENCE correctness, not whether the fast
312 ;;; or slow paths are being taken for each element type. See the
313 ;;; READ-SEQUENCE tests above for more information.
315 ;;; (trace sb-impl::output-unsigned-byte-full-buffered sb-impl::output-signed-byte-full-buffered sb-impl::output-raw-bytes)
317 (let ((pathname "write-sequence.data")
318 (generic-sequence (make-array 1 :initial-contents
'(255)))
319 (generic-character-sequence (make-array 1 :initial-element
#\a))
320 (generic-mixed-sequence (make-array 2 :initial-element
#\a))
321 (string (make-array 1 :element-type
'character
322 :initial-element
(code-char 255)))
323 (unsigned-sequence (make-array 1
324 :element-type
'(unsigned-byte 8)
325 :initial-contents
'(255)))
326 (signed-sequence (make-array 1
327 :element-type
'(signed-byte 8)
328 :initial-contents
'(-1))))
330 (setf (aref generic-mixed-sequence
1) 255)
332 ;; Check the slow path for generic vectors.
333 (with-open-file (stream pathname
335 :if-exists
:supersede
336 :element-type
'(unsigned-byte 8))
337 (write-sequence generic-sequence stream
))
339 (with-open-file (stream pathname
341 :if-exists
:supersede
342 :element-type
'character
)
343 (write-sequence generic-character-sequence stream
))
345 ;; Check the fast path for unsigned and signed vectors.
346 (with-open-file (stream pathname
348 :if-exists
:supersede
349 :element-type
'(unsigned-byte 8))
350 (write-sequence unsigned-sequence stream
))
352 (with-open-file (stream pathname
354 :if-exists
:supersede
355 :element-type
'(signed-byte 8))
356 (write-sequence signed-sequence stream
))
358 ;; Bivalent streams on unsigned-byte vectors, strings, and a simple
359 ;; vector with mixed characters and bytes
361 (with-open-file (stream pathname
363 :if-exists
:supersede
364 :element-type
:default
)
365 (write-sequence unsigned-sequence stream
))
367 (with-open-file (stream pathname
369 :external-format
:latin-1
370 :if-exists
:supersede
371 :element-type
:default
)
372 (write-sequence string stream
))
374 (with-open-file (stream pathname
376 :external-format
:latin-1
377 :if-exists
:supersede
378 :element-type
:default
)
379 (write-sequence generic-mixed-sequence stream
))
381 ;; Check a TYPE-ERROR is signalled for unsigned and signed vectors
382 ;; which are incompatible with the stream element type.
383 (with-open-file (stream pathname
385 :if-exists
:supersede
386 :element-type
'(signed-byte 8))
388 (write-sequence unsigned-sequence stream
)
389 (error "WRITE-SEQUENCE didn't signal an error"))
390 (type-error (condition)
391 (assert (= (type-error-datum condition
) 255))
392 (assert (subtypep (type-error-expected-type condition
)
393 '(signed-byte 8))))))
395 (with-open-file (stream pathname
397 :if-exists
:supersede
398 :element-type
'(unsigned-byte 8))
400 (write-sequence signed-sequence stream
)
401 (error "WRITE-SEQUENCE didn't signal an error"))
402 (type-error (condition)
403 (assert (= (type-error-datum condition
) -
1))
404 (assert (subtypep (type-error-expected-type condition
)
405 '(unsigned-byte 8))))))
407 (with-open-file (stream pathname
409 :if-exists
:supersede
410 :element-type
:default
)
412 (write-sequence signed-sequence stream
)
413 (error "WRITE-SEQUENCE didn't signal an error"))
414 (type-error (condition)
415 (assert (= (type-error-datum condition
) -
1))
416 (assert (subtypep (type-error-expected-type condition
)
417 '(unsigned-byte 8))))))
419 (delete-file pathname
))
421 ;;; writing looong lines. takes way too long and way too much space
422 ;;; to test on 64 bit platforms
423 #-
#.
(cl:if
(cl:= sb-vm
:n-word-bits
64) '(and) '(or))
425 (defun write-n-chars (n stream
)
426 (format t
"~&/writing ~D chars on a single line~%" n
)
429 do
(write-char #\x stream
))
433 (let ((test "long-lines-write-test.tmp"))
435 (with-open-file (f test
437 :external-format
:ascii
438 :element-type
'character
439 :if-does-not-exist
:create
440 :if-exists
:supersede
)
441 (write-n-chars (+ most-positive-fixnum
7) f
))
442 (when (probe-file test
)
443 (delete-file test
)))))