* tests/ports.test: add seek/tell tests for unidirectional ports.
[bpt/guile.git] / test-suite / tests / ports.test
1 ;;;; ports.test --- test suite for Guile I/O ports -*- scheme -*-
2 ;;;; Jim Blandy <jimb@red-bean.com> --- May 1999
3 ;;;;
4 ;;;; Copyright (C) 1999 Free Software Foundation, Inc.
5 ;;;;
6 ;;;; This program is free software; you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation; either version 2, or (at your option)
9 ;;;; any later version.
10 ;;;;
11 ;;;; This program is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with this software; see the file COPYING. If not, write to
18 ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 ;;;; Boston, MA 02111-1307 USA
20
21 (use-modules (test-suite lib)
22 (ice-9 popen))
23
24 (define (display-line . args)
25 (for-each display args)
26 (newline))
27
28 (define (test-file)
29 (tmpnam))
30
31 \f
32 ;;;; Some general utilities for testing ports.
33
34 ;;; Read from PORT until EOF, and return the result as a string.
35 (define (read-all port)
36 (let loop ((chars '()))
37 (let ((char (read-char port)))
38 (if (eof-object? char)
39 (list->string (reverse! chars))
40 (loop (cons char chars))))))
41
42 (define (read-file filename)
43 (let* ((port (open-input-file filename))
44 (string (read-all port)))
45 (close-port port)
46 string))
47
48 \f
49 ;;;; Normal file ports.
50
51 ;;; Write out an s-expression, and read it back.
52 (catch-test-errors
53 (let ((string '("From fairest creatures we desire increase,"
54 "That thereby beauty's rose might never die,"))
55 (filename (test-file)))
56 (let ((port (open-output-file filename)))
57 (write string port)
58 (close-port port))
59 (let ((port (open-input-file filename)))
60 (let ((in-string (read port)))
61 (pass-if "file: write and read back list of strings"
62 (equal? string in-string)))
63 (close-port port))
64 (delete-file filename)))
65
66 ;;; Write out a string, and read it back a character at a time.
67 (catch-test-errors
68 (let ((string "This is a test string\nwith no newline at the end")
69 (filename (test-file)))
70 (let ((port (open-output-file filename)))
71 (display string port)
72 (close-port port))
73 (let ((in-string (read-file filename)))
74 (pass-if "file: write and read back characters"
75 (equal? string in-string)))
76 (delete-file filename)))
77
78 ;;; Buffered input/output port with seeking.
79 (catch-test-errors
80 (let* ((filename (test-file))
81 (port (open-file filename "w+")))
82 (display "J'Accuse" port)
83 (seek port -1 SEEK_CUR)
84 (pass-if "file: r/w 1"
85 (char=? (read-char port) #\e))
86 (pass-if "file: r/w 2"
87 (eof-object? (read-char port)))
88 (seek port -1 SEEK_CUR)
89 (write-char #\x port)
90 (seek port 7 SEEK_SET)
91 (pass-if "file: r/w 3"
92 (char=? (read-char port) #\x))
93 (seek port -2 SEEK_END)
94 (pass-if "file: r/w 4"
95 (char=? (read-char port) #\s))
96 (delete-file filename)))
97
98 ;;; Unbuffered input/output port with seeking.
99 (catch-test-errors
100 (let* ((filename (test-file))
101 (port (open-file filename "w+0")))
102 (display "J'Accuse" port)
103 (seek port -1 SEEK_CUR)
104 (pass-if "file: ub r/w 1"
105 (char=? (read-char port) #\e))
106 (pass-if "file: ub r/w 2"
107 (eof-object? (read-char port)))
108 (seek port -1 SEEK_CUR)
109 (write-char #\x port)
110 (seek port 7 SEEK_SET)
111 (pass-if "file: ub r/w 3"
112 (char=? (read-char port) #\x))
113 (seek port -2 SEEK_END)
114 (pass-if "file: ub r/w 4"
115 (char=? (read-char port) #\s))
116 (delete-file filename)))
117
118 ;;; Buffered output-only and input-only ports with seeking.
119 (catch-test-errors
120 (let* ((filename (test-file))
121 (port (open-output-file filename)))
122 (display "J'Accuse" port)
123 (pass-if "file: out tell"
124 (= (seek port 0 SEEK_CUR) 8))
125 (seek port -1 SEEK_CUR)
126 (write-char #\x port)
127 (close-port port)
128 (let ((iport (open-input-file filename)))
129 (pass-if "file: in tell 0"
130 (= (seek iport 0 SEEK_CUR) 0))
131 (read-char iport)
132 (pass-if "file: in tell 1"
133 (= (seek iport 0 SEEK_CUR) 1))
134 (seek iport 7 SEEK_SET)
135 (pass-if "file: in last char"
136 (char=? (read-char iport) #\x))
137 (close-port iport))
138 (delete-file filename)))
139
140 ;;; unusual characters.
141 (catch-test-errors
142 (let* ((filename (test-file))
143 (port (open-output-file filename)))
144 (display (string #\nul (integer->char 255) (integer->char 128)
145 #\nul) port)
146 (close-port port)
147 (let* ((port (open-input-file filename))
148 (line (read-line port)))
149 (pass-if "file: read back NUL 1"
150 (char=? (string-ref line 0) #\nul))
151 (pass-if "file: read back 255"
152 (char=? (string-ref line 1) (integer->char 255)))
153 (pass-if "file: read back 128"
154 (char=? (string-ref line 2) (integer->char 128)))
155 (pass-if "file: read back NUL 2"
156 (char=? (string-ref line 3) #\nul))
157 (pass-if "file: EOF"
158 (eof-object? (read-char port))))
159 (delete-file filename)))
160
161 ;;; line buffering mode.
162 (catch-test-errors
163 (let* ((filename (test-file))
164 (port (open-file filename "wl"))
165 (test-string "one line more or less"))
166 (write-line test-string port)
167 (let* ((in-port (open-input-file filename))
168 (line (read-line in-port)))
169 (close-port in-port)
170 (close-port port)
171 (pass-if "file: line buffering"
172 (string=? line test-string)))
173 (delete-file filename)))
174
175 ;;; ungetting characters and strings.
176 (catch-test-errors
177 (with-input-from-string "walk on the moon\nmoon"
178 (lambda ()
179 (read-char)
180 (unread-char #\a (current-input-port))
181 (pass-if "unread-char"
182 (char=? (read-char) #\a))
183 (read-line)
184 (let ((replacenoid "chicken enchilada"))
185 (unread-char #\newline (current-input-port))
186 (unread-string replacenoid (current-input-port))
187 (pass-if "unread-string"
188 (string=? (read-line) replacenoid)))
189 (pass-if "unread residue"
190 (string=? (read-line) "moon")))))
191
192 ;;; non-blocking mode on a port. create a pipe and set O_NONBLOCK on
193 ;;; the reading end. try to read a byte: should get EAGAIN error.
194 (catch-test-errors
195 (let* ((p (pipe))
196 (r (car p)))
197 (fcntl r F_SETFL O_NONBLOCK)
198 (pass-if "non-blocking-I/O"
199 (catch 'system-error
200 (lambda () (read-char r) #f)
201 (lambda (key . args)
202 (and (eq? key 'system-error)
203 (= (car (list-ref args 3)) EAGAIN)))))))
204
205 \f
206 ;;;; Pipe (popen) ports.
207
208 ;;; Run a command, and read its output.
209 (catch-test-errors
210 (let* ((pipe (open-pipe "echo 'Howdy there, partner!'" "r"))
211 (in-string (read-all pipe)))
212 (close-pipe pipe)
213 (pass-if "pipe: read"
214 (equal? in-string "Howdy there, partner!\n"))))
215
216 ;;; Run a command, send some output to it, and see if it worked.
217 (catch-test-errors
218 (let* ((filename (test-file))
219 (pipe (open-pipe (string-append "grep Mommy > " filename) "w")))
220 (display "Now Jimmy lives on a mushroom cloud\n" pipe)
221 (display "Mommy, why does everybody have a bomb?\n" pipe)
222 (close-pipe pipe)
223 (let ((in-string (read-file filename)))
224 (pass-if "pipe: write"
225 (equal? in-string "Mommy, why does everybody have a bomb?\n")))
226 (delete-file filename)))
227
228 \f
229 ;;;; Void ports. These are so trivial we don't test them.
230
231 \f
232 ;;;; String ports.
233
234 (with-test-prefix "string ports"
235
236 ;; Write text to a string port.
237 (catch-test-errors
238 (let* ((string "Howdy there, partner!")
239 (in-string (call-with-output-string
240 (lambda (port)
241 (display string port)
242 (newline port)))))
243 (pass-if "display text"
244 (equal? in-string (string-append string "\n")))))
245
246 ;; Write an s-expression to a string port.
247 (catch-test-errors
248 (let* ((sexpr '("more utterly random text" 1729 #(a vector) 3.1415926))
249 (in-sexpr
250 (call-with-input-string (call-with-output-string
251 (lambda (port)
252 (write sexpr port)))
253 read)))
254 (pass-if "write/read sexpr"
255 (equal? in-sexpr sexpr)))))
256
257 \f
258 ;;;; Soft ports. No tests implemented yet.
259
260 \f
261 ;;;; Generic operations across all port types.
262
263 (let ((port-loop-temp (test-file)))
264
265 ;; Return a list of input ports that all return the same text.
266 ;; We map tests over this list.
267 (define (input-port-list text)
268
269 ;; Create a text file some of the ports will use.
270 (let ((out-port (open-output-file port-loop-temp)))
271 (display text out-port)
272 (close-port out-port))
273
274 (list (open-input-file port-loop-temp)
275 (open-input-pipe (string-append "cat " port-loop-temp))
276 (call-with-input-string text (lambda (x) x))
277 ;; We don't test soft ports at the moment.
278 ))
279
280 (define port-list-names '("file" "pipe" "string"))
281
282 ;; Test the line counter.
283 (define (test-line-counter text second-line final-column)
284 (with-test-prefix "line counter"
285 (let ((ports (input-port-list text)))
286 (for-each
287 (lambda (port port-name)
288 (with-test-prefix port-name
289 (pass-if "at beginning of input"
290 (= (port-line port) 0))
291 (pass-if "read first character"
292 (eqv? (read-char port) #\x))
293 (pass-if "after reading one character"
294 (= (port-line port) 0))
295 (pass-if "read first newline"
296 (eqv? (read-char port) #\newline))
297 (pass-if "after reading first newline char"
298 (= (port-line port) 1))
299 (pass-if "second line read correctly"
300 (equal? (read-line port) second-line))
301 (pass-if "read-line increments line number"
302 (= (port-line port) 2))
303 (pass-if "read-line returns EOF"
304 (let loop ((i 0))
305 (cond
306 ((eof-object? (read-line port)) #t)
307 ((> i 20) #f)
308 (else (loop (+ i 1))))))
309 (pass-if "line count is 5 at EOF"
310 (= (port-line port) 5))
311 (pass-if "column is correct at EOF"
312 (= (port-column port) final-column))))
313 ports port-list-names)
314 (for-each close-port ports)
315 (delete-file port-loop-temp))))
316
317 (catch-test-errors
318 (with-test-prefix "newline"
319 (test-line-counter
320 (string-append "x\n"
321 "He who receives an idea from me, receives instruction\n"
322 "himself without lessening mine; as he who lights his\n"
323 "taper at mine, receives light without darkening me.\n"
324 " --- Thomas Jefferson\n")
325 "He who receives an idea from me, receives instruction"
326 0)))
327
328 (catch-test-errors
329 (with-test-prefix "no newline"
330 (test-line-counter
331 (string-append "x\n"
332 "He who receives an idea from me, receives instruction\n"
333 "himself without lessening mine; as he who lights his\n"
334 "taper at mine, receives light without darkening me.\n"
335 " --- Thomas Jefferson\n"
336 "no newline here")
337 "He who receives an idea from me, receives instruction"
338 15))))
339
340 \f
341 ;;;; testing read-delimited and friends
342
343 (with-test-prefix "read-delimited!"
344 (let ((c (make-string 20 #\!)))
345 (call-with-input-string
346 "defdef\nghighi\n"
347 (lambda (port)
348
349 (read-delimited! "\n" c port 'concat)
350 (pass-if "read-delimited! reads a first line"
351 (string=? c "defdef\n!!!!!!!!!!!!!"))
352
353 (read-delimited! "\n" c port 'concat 3)
354 (pass-if "read-delimited! reads a first line"
355 (string=? c "defghighi\n!!!!!!!!!!"))))))
356
357 \f
358 ;;;; char-ready?
359
360 (call-with-input-string
361 "howdy"
362 (lambda (port)
363 (pass-if "char-ready? returns true on string port"
364 (char-ready? port))))
365
366 ;;; This segfaults on some versions of Guile. We really should run
367 ;;; the tests in a subprocess...
368
369 (call-with-input-string
370 "howdy"
371 (lambda (port)
372 (with-input-from-port
373 port
374 (lambda ()
375 (pass-if "char-ready? returns true on string port as default port"
376 (char-ready?))))))
377
378 \f
379 ;;;; Close current-input-port, and make sure everyone can handle it.
380
381 (with-test-prefix "closing current-input-port"
382 (for-each (lambda (procedure name)
383 (with-input-from-port
384 (call-with-input-string "foo" (lambda (p) p))
385 (lambda ()
386 (close-port (current-input-port))
387 (pass-if name
388 (signals-error? 'wrong-type-arg (procedure))))))
389 (list read read-char read-line)
390 '("read" "read-char" "read-line")))