add reader support for #; #` #' #, and #,@. fix bug in compile-and-load.
[bpt/guile.git] / test-suite / tests / reader.test
CommitLineData
7337d56d
LC
1;;;; reader.test --- Exercise the reader. -*- Scheme -*-
2;;;;
ef4cbc08 3;;;; Copyright (C) 1999, 2001, 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
7337d56d
LC
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
454866e0
LC
80 (pass-if "block comment finishing s-exp"
81 (equal? '(+ 2)
82 (read-string "(+ 2 #! a comment\n!#\n) ")))
83
7337d56d
LC
84 (pass-if "unprintable symbol"
85 ;; The reader tolerates unprintable characters for symbols.
86 (equal? (string->symbol "\001\002\003")
d41668fa
LC
87 (read-string "\001\002\003")))
88
89 (pass-if "CR recognized as a token delimiter"
90 ;; In 1.8.3, character 0x0d was not recognized as a delimiter.
1ffa6923
LC
91 (equal? (read-string "one\x0dtwo") 'one))
92
93 (pass-if "returned strings are mutable"
94 ;; Per R5RS Section 3.4, "Storage Model", `read' is supposed to return
95 ;; mutable objects.
96 (let ((str (with-input-from-string "\"hello, world\"" read)))
97 (string-set! str 0 #\H)
98 (string=? str "Hello, world"))))
7337d56d
LC
99
100\f
6b4113af
DH
101(pass-if-exception "radix passed to number->string can't be zero"
102 exception:out-of-range
103 (number->string 10 0))
104(pass-if-exception "radix passed to number->string can't be one either"
105 exception:out-of-range
106 (number->string 10 1))
ef9709da 107
7337d56d 108\f
ef9709da
DH
109(with-test-prefix "mismatching parentheses"
110 (pass-if-exception "opening parenthesis"
111 exception:eof
112 (read-string "("))
113 (pass-if-exception "closing parenthesis following mismatched opening"
114 exception:unexpected-rparen
115 (read-string ")"))
116 (pass-if-exception "opening vector parenthesis"
117 exception:eof
118 (read-string "#("))
119 (pass-if-exception "closing parenthesis following mismatched vector opening"
120 exception:unexpected-rparen
121 (read-string ")")))
7337d56d
LC
122
123\f
124(with-test-prefix "exceptions"
125
126 ;; Reader exceptions: although they are not documented, they may be relied
127 ;; on by some programs, hence these tests.
128
129 (pass-if-exception "unterminated block comment"
130 exception:unterminated-block-comment
131 (read-string "(+ 1 #! comment\n..."))
132 (pass-if-exception "unknown character name"
133 exception:unknown-character-name
134 (read-string "#\\theunknowncharacter"))
135 (pass-if-exception "unknown sharp object"
136 exception:unknown-sharp-object
137 (read-string "#?"))
138 (pass-if-exception "eof in string"
139 exception:eof-in-string
140 (read-string "\"the string that never ends"))
141 (pass-if-exception "illegal escape in string"
142 exception:illegal-escape
143 (read-string "\"some string \\???\"")))
144
145\f
146(with-test-prefix "read-options"
147 (pass-if "case-sensitive"
148 (not (eq? 'guile 'GuiLe)))
149 (pass-if "case-insensitive"
150 (eq? 'guile
151 (with-read-options '(case-insensitive)
152 (lambda ()
153 (read-string "GuiLe")))))
154 (pass-if "prefix keywords"
155 (eq? #:keyword
156 (with-read-options '(keywords prefix case-insensitive)
157 (lambda ()
158 (read-string ":KeyWord")))))
ef4cbc08
LC
159 (pass-if "prefix non-keywords"
160 (symbol? (with-read-options '(keywords prefix)
161 (lambda ()
162 (read-string "srfi88-keyword:")))))
163 (pass-if "postfix keywords"
164 (eq? #:keyword
165 (with-read-options '(keywords postfix)
166 (lambda ()
167 (read-string "keyword:")))))
168 (pass-if "`:' is not a postfix keyword (per SRFI-88)"
169 (eq? ':
170 (with-read-options '(keywords postfix)
171 (lambda ()
172 (read-string ":")))))
7337d56d
LC
173 (pass-if "no positions"
174 (let ((sexp (with-read-options '()
175 (lambda ()
176 (read-string "(+ 1 2 3)")))))
177 (and (not (source-property sexp 'line))
178 (not (source-property sexp 'column)))))
179 (pass-if "positions"
180 (let ((sexp (with-read-options '(positions)
181 (lambda ()
182 (read-string "(+ 1 2 3)")))))
492faee1
LC
183 (and (equal? (source-property sexp 'line) 0)
184 (equal? (source-property sexp 'column) 0))))
185 (pass-if "positions on quote"
186 (let ((sexp (with-read-options '(positions)
187 (lambda ()
188 (read-string "'abcde")))))
7337d56d
LC
189 (and (equal? (source-property sexp 'line) 0)
190 (equal? (source-property sexp 'column) 0)))))
191