Changes from arch/CVS synchronization
[bpt/guile.git] / test-suite / tests / reader.test
CommitLineData
7337d56d
LC
1;;;; reader.test --- Exercise the reader. -*- Scheme -*-
2;;;;
3;;;; Copyright (C) 1999, 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
4;;;; Jim Blandy <jimb@red-bean.com>
5;;;;
6;;;; This library is free software; you can redistribute it and/or
7;;;; modify it under the terms of the GNU Lesser General Public
8;;;; License as published by the Free Software Foundation; either
9;;;; version 2.1 of the License, or (at your option) any later version.
10;;;;
11;;;; This library 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 GNU
14;;;; Lesser General Public License for more details.
15;;;;
16;;;; You should have received a copy of the GNU Lesser General Public
17;;;; License along with this library; if not, write to the Free Software
18;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
20(define-module (test-suite reader)
21 :use-module (test-suite lib))
22
0c76ebbd 23
ef9709da 24(define exception:eof
ba1b2226 25 (cons 'read-error "end of file$"))
ef9709da 26(define exception:unexpected-rparen
ba1b2226 27 (cons 'read-error "unexpected \")\"$"))
7337d56d
LC
28(define exception:unterminated-block-comment
29 (cons 'read-error "unterminated `#! ... !#' comment$"))
30(define exception:unknown-character-name
31 (cons 'read-error "unknown character name .*$"))
32(define exception:unknown-sharp-object
33 (cons 'read-error "Unknown # object: .*$"))
34(define exception:eof-in-string
35 (cons 'read-error "end of file in string constant$"))
36(define exception:illegal-escape
37 (cons 'read-error "illegal character in escape sequence: .*$"))
38
ef9709da 39
6b4113af
DH
40(define (read-string s)
41 (with-input-from-string s (lambda () (read))))
0c76ebbd 42
7337d56d
LC
43(define (with-read-options opts thunk)
44 (let ((saved-options (read-options)))
45 (dynamic-wind
46 (lambda ()
47 (read-options opts))
48 thunk
49 (lambda ()
50 (read-options saved-options)))))
51
52\f
6b4113af
DH
53(with-test-prefix "reading"
54 (pass-if "0"
55 (equal? (read-string "0") 0))
56 (pass-if "1++i"
57 (equal? (read-string "1++i") '1++i))
58 (pass-if "1+i+i"
59 (equal? (read-string "1+i+i") '1+i+i))
60 (pass-if "1+e10000i"
b7d22e03
KR
61 (equal? (read-string "1+e10000i") '1+e10000i))
62
63 ;; At one time the arg list for "Unknown # object: ~S" didn't make it out
64 ;; of read.c. Check that `format' can be applied to this error.
65 (pass-if "error message on bad #"
66 (catch #t
67 (lambda ()
68 (read-string "#ZZZ")
69 ;; oops, this # is supposed to be unrecognised
70 #f)
71 (lambda (key subr message args rest)
72 (apply format #f message args)
73 ;; message and args are ok
7337d56d
LC
74 #t)))
75
76 (pass-if "block comment"
77 (equal? '(+ 1 2 3)
78 (read-string "(+ 1 #! this is a\ncomment !# 2 3)")))
06974184 79
7337d56d
LC
80 (pass-if "unprintable symbol"
81 ;; The reader tolerates unprintable characters for symbols.
82 (equal? (string->symbol "\001\002\003")
83 (read-string "\001\002\003"))))
84
85\f
6b4113af
DH
86(pass-if-exception "radix passed to number->string can't be zero"
87 exception:out-of-range
88 (number->string 10 0))
89(pass-if-exception "radix passed to number->string can't be one either"
90 exception:out-of-range
91 (number->string 10 1))
ef9709da 92
7337d56d 93\f
ef9709da
DH
94(with-test-prefix "mismatching parentheses"
95 (pass-if-exception "opening parenthesis"
96 exception:eof
97 (read-string "("))
98 (pass-if-exception "closing parenthesis following mismatched opening"
99 exception:unexpected-rparen
100 (read-string ")"))
101 (pass-if-exception "opening vector parenthesis"
102 exception:eof
103 (read-string "#("))
104 (pass-if-exception "closing parenthesis following mismatched vector opening"
105 exception:unexpected-rparen
106 (read-string ")")))
7337d56d
LC
107
108\f
109(with-test-prefix "exceptions"
110
111 ;; Reader exceptions: although they are not documented, they may be relied
112 ;; on by some programs, hence these tests.
113
114 (pass-if-exception "unterminated block comment"
115 exception:unterminated-block-comment
116 (read-string "(+ 1 #! comment\n..."))
117 (pass-if-exception "unknown character name"
118 exception:unknown-character-name
119 (read-string "#\\theunknowncharacter"))
120 (pass-if-exception "unknown sharp object"
121 exception:unknown-sharp-object
122 (read-string "#?"))
123 (pass-if-exception "eof in string"
124 exception:eof-in-string
125 (read-string "\"the string that never ends"))
126 (pass-if-exception "illegal escape in string"
127 exception:illegal-escape
128 (read-string "\"some string \\???\"")))
129
130\f
131(with-test-prefix "read-options"
132 (pass-if "case-sensitive"
133 (not (eq? 'guile 'GuiLe)))
134 (pass-if "case-insensitive"
135 (eq? 'guile
136 (with-read-options '(case-insensitive)
137 (lambda ()
138 (read-string "GuiLe")))))
139 (pass-if "prefix keywords"
140 (eq? #:keyword
141 (with-read-options '(keywords prefix case-insensitive)
142 (lambda ()
143 (read-string ":KeyWord")))))
144 (pass-if "no positions"
145 (let ((sexp (with-read-options '()
146 (lambda ()
147 (read-string "(+ 1 2 3)")))))
148 (and (not (source-property sexp 'line))
149 (not (source-property sexp 'column)))))
150 (pass-if "positions"
151 (let ((sexp (with-read-options '(positions)
152 (lambda ()
153 (read-string "(+ 1 2 3)")))))
154 (and (equal? (source-property sexp 'line) 0)
155 (equal? (source-property sexp 'column) 0)))))
156