0.8.7.2:
[sbcl/lichteblau.git] / tests / reader.impure.lisp
blobb71a2eeb26d70a31f7b8539642088beae5759c58
1 ;;;; tests related to the Lisp reader
3 ;;;; This file is impure because we want to modify the readtable and stuff.
5 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; more information.
7 ;;;;
8 ;;;; While most of SBCL is derived from the CMU CL system, the test
9 ;;;; files (like this one) were written from scratch after the fork
10 ;;;; from CMU CL.
11 ;;;;
12 ;;;; This software is in the public domain and is provided with
13 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
14 ;;;; more information.
16 (load "assertoid.lisp")
17 (use-package "ASSERTOID")
19 ;;; Bug 30, involving mistakes in binding the read table, made this
20 ;;; code fail.
21 (defun read-vector (stream char)
22 (declare (ignorable char))
23 (coerce (read-delimited-list #\] stream t) 'vector))
24 (set-macro-character #\[ #'read-vector nil)
25 (set-macro-character #\] (get-macro-character #\)) nil)
26 (multiple-value-bind (res pos)
27 (read-from-string "[1 2 3]") ; ==> #(1 2 3), 7
28 (assert (equalp res #(1 2 3)))
29 (assert (= pos 7)))
30 (multiple-value-bind (res pos)
31 (read-from-string "#\\x") ; ==> #\x, 3
32 (assert (equalp res #\x))
33 (assert (= pos 3)))
34 (multiple-value-bind (res pos)
35 (read-from-string "[#\\x]")
36 (assert (equalp res #(#\x)))
37 (assert (= pos 5)))
39 ;;; Bug 51b. (try to throw READER-ERRORs when the reader encounters
40 ;;; dubious input)
41 (assert (raises-error? (read-from-string "1e1000") reader-error))
42 (assert (raises-error? (read-from-string "1/0") reader-error))
44 ;;; Bug reported by Antonio Martinez on comp.lang.lisp 2003-02-03 in
45 ;;; message <b32da960.0302030640.7d6fc610@posting.google.com>: reading
46 ;;; circular instances of CLOS classes didn't work:
47 (defclass box ()
48 ((value :initarg :value :reader value)))
49 (defun read-box (stream char)
50 (declare (ignore char))
51 (let ((objects (read-delimited-list #\] stream t)))
52 (unless (= 1 (length objects))
53 (error "Unknown box reader syntax"))
54 (make-instance 'box :value (first objects))))
55 (set-macro-character #\[ 'read-box)
56 (set-syntax-from-char #\] #\))
57 (multiple-value-bind (res pos)
58 (read-from-string "#1=[#1#]")
59 (assert (eq (value res) res))
60 (assert (= pos 8)))
62 ;;; CSR managed to break the #S reader macro in the process of merging
63 ;;; SB-PCL:CLASS and CL:CLASS -- make sure it works
64 (defstruct readable-struct a)
65 (assert (eq (readable-struct-a
66 (read-from-string "#S(READABLE-STRUCT :A T)"))
67 t))
69 ;;; reported by Henrik Motakef
70 (defpackage "")
71 (assert (eq (symbol-package (read-from-string "||::FOO"))
72 (find-package "")))
74 ;;; success
75 (quit :unix-status 104)