More procedure-arguments-alist documentation and a bugfix
[bpt/guile.git] / test-suite / tests / regexp.test
1 ;;;; regexp.test --- test Guile's regexps -*- coding: utf-8; mode: scheme -*-
2 ;;;; Jim Blandy <jimb@red-bean.com> --- September 1999
3 ;;;;
4 ;;;; Copyright (C) 1999, 2004, 2006, 2007, 2008, 2009, 2010,
5 ;;;; 2012 Free Software Foundation, Inc.
6 ;;;;
7 ;;;; This library is free software; you can redistribute it and/or
8 ;;;; modify it under the terms of the GNU Lesser General Public
9 ;;;; License as published by the Free Software Foundation; either
10 ;;;; version 3 of the License, or (at your option) any later version.
11 ;;;;
12 ;;;; This library is distributed in the hope that it will be useful,
13 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;;;; Lesser General Public License for more details.
16 ;;;;
17 ;;;; You should have received a copy of the GNU Lesser General Public
18 ;;;; License along with this library; if not, write to the Free Software
19 ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
21 (define-module (test-suite test-regexp)
22 #:use-module (test-suite lib)
23 #:use-module (srfi srfi-1)
24 #:use-module (ice-9 regex))
25
26 (if (defined? 'setlocale)
27 (setlocale LC_ALL "C"))
28
29 ;; Don't fail if we can't display a test name to stdout/stderr.
30 (set-port-conversion-strategy! (current-output-port) 'escape)
31 (set-port-conversion-strategy! (current-error-port) 'escape)
32
33 \f
34 ;;; Run a regexp-substitute or regexp-substitute/global test, once
35 ;;; providing a real port and once providing #f, requesting direct
36 ;;; string output.
37 (define (vary-port func expected . args)
38 (pass-if "port is string port"
39 (equal? expected
40 (call-with-output-string
41 (lambda (port)
42 (apply func port args)))))
43 (pass-if "port is #f"
44 (equal? expected
45 (apply func #f args))))
46
47 (define (object->string obj)
48 (call-with-output-string
49 (lambda (port)
50 (write obj port))))
51
52 ;;;
53 ;;; make-regexp
54 ;;;
55
56 (with-test-prefix "make-regexp"
57
58 (pass-if-exception "no args" exception:wrong-num-args
59 (make-regexp))
60
61 (pass-if-exception "bad pat arg" exception:wrong-type-arg
62 (make-regexp 'blah))
63
64 ;; in guile prior to 1.6.5 make-regex didn't validate its flags args
65 (pass-if-exception "bad arg 2" exception:wrong-type-arg
66 (make-regexp "xyz" 'abc))
67
68 (pass-if-exception "bad arg 3" exception:wrong-type-arg
69 (make-regexp "xyz" regexp/icase 'abc)))
70
71 ;;;
72 ;;; match:string
73 ;;;
74
75 (with-test-prefix "match:string"
76
77 (pass-if "foo"
78 (string=? "foo" (match:string (string-match ".*" "foo"))))
79
80 (pass-if "foo offset 1"
81 (string=? "foo" (match:string (string-match ".*" "foo" 1)))))
82
83 ;;;
84 ;;; regexp-exec
85 ;;;
86
87 (with-test-prefix "regexp-exec"
88
89 (pass-if-exception "non-integer offset" exception:wrong-type-arg
90 (let ((re (make-regexp "ab+")))
91 (regexp-exec re "aaaabbbb" 1.5 'bogus-flags-arg)))
92
93 (pass-if-exception "non-string input" exception:wrong-type-arg
94 (let ((re (make-regexp "ab+")))
95 (regexp-exec re 'not-a-string)))
96
97 (pass-if-exception "non-string input, with offset" exception:wrong-type-arg
98 (let ((re (make-regexp "ab+")))
99 (regexp-exec re 'not-a-string 5)))
100
101 ;; in guile 1.8.1 and earlier, a #\nul character in the input string was
102 ;; only detected in a critical section, and the resulting error throw
103 ;; abort()ed the program
104 (pass-if-exception "nul in input" exception:string-contains-nul
105 (let ((re (make-regexp "ab+")))
106 (regexp-exec re (string #\a #\b (integer->char 0)))))
107
108 ;; in guile 1.8.1 and earlier, a bogus flags argument was only detected
109 ;; inside a critical section, and the resulting error throw abort()ed the
110 ;; program
111 (pass-if-exception "non-integer flags" exception:wrong-type-arg
112 (let ((re (make-regexp "ab+")))
113 (regexp-exec re "aaaabbbb" 0 'bogus-flags-arg))))
114
115 ;;;
116 ;;; fold-matches
117 ;;;
118
119 (with-test-prefix "fold-matches"
120
121 (pass-if "without flags"
122 (equal? '("hello")
123 (fold-matches "^[a-z]+$" "hello" '()
124 (lambda (match result)
125 (cons (match:substring match)
126 result)))))
127
128 (pass-if "with flags"
129 ;; Prior to 1.8.6, passing an additional flag would not work.
130 (null?
131 (fold-matches "^[a-z]+$" "hello" '()
132 (lambda (match result)
133 (cons (match:substring match)
134 result))
135 (logior regexp/notbol regexp/noteol))))
136
137 (pass-if "regexp/notbol is set correctly"
138 (equal? '("foo")
139 (fold-matches "^foo" "foofoofoofoo" '()
140 (lambda (match result)
141 (cons (match:substring match)
142 result))))))
143
144
145 ;;;
146 ;;; regexp-quote
147 ;;;
148
149 (define-syntax with-ascii-or-latin1-locale
150 (syntax-rules ()
151 ((_ chr body ...)
152 (if (> chr 127)
153 (with-latin1-locale body ...)
154 (begin body ...)))))
155
156 ;; Since `regexp-quote' uses string ports, and since it is used below
157 ;; with non-ASCII characters, these ports must be Unicode-capable.
158 (define-syntax with-unicode
159 (syntax-rules ()
160 ((_ exp)
161 (with-fluids ((%default-port-encoding "UTF-8"))
162 exp))))
163
164 (with-test-prefix "regexp-quote"
165
166 (pass-if-exception "no args" exception:wrong-num-args
167 (regexp-quote))
168
169 (pass-if-exception "bad string arg" exception:wrong-type-arg
170 (regexp-quote 'blah))
171
172 (let ((lst `((regexp/basic ,regexp/basic)
173 (regexp/extended ,regexp/extended)))
174 ;; string of all characters, except #\nul which doesn't work because
175 ;; it's the usual end-of-string for the underlying C regexec()
176 (allchars (list->string (map integer->char
177 (cdr (iota char-code-limit))))))
178 (for-each
179 (lambda (elem)
180 (let ((name (car elem))
181 (flag (cadr elem)))
182
183 (with-test-prefix name
184
185 ;; try on each individual character, except #\nul
186 (do ((i 1 (1+ i)))
187 ((>= i char-code-limit))
188 (let* ((c (integer->char i))
189 (s (string c)))
190 (pass-if (list "char" i (format #f "~s ~s" c s))
191 (with-ascii-or-latin1-locale i
192 (let* ((q (with-unicode (regexp-quote s)))
193 (m (regexp-exec (make-regexp q flag) s)))
194 (and (= 0 (match:start m))
195 (= 1 (match:end m))))))))
196
197 ;; try on pattern "aX" where X is each character, except #\nul
198 ;; this exposes things like "?" which are special only when they
199 ;; follow a pattern to repeat or whatever ("a" in this case)
200 (do ((i 1 (1+ i)))
201 ((>= i char-code-limit))
202 (let* ((c (integer->char i))
203 (s (string #\a c))
204 (q (with-unicode (regexp-quote s))))
205 (pass-if (list "string \"aX\"" i (format #f "~s ~s ~s" c s q))
206 (with-ascii-or-latin1-locale i
207 (let* ((m (regexp-exec (make-regexp q flag) s)))
208 (and (= 0 (match:start m))
209 (= 2 (match:end m))))))))
210
211 (pass-if "string of all chars"
212 (with-latin1-locale
213 (let ((m (regexp-exec (make-regexp (with-unicode
214 (regexp-quote allchars))
215 flag) allchars)))
216 (and (= 0 (match:start m))
217 (= (string-length allchars) (match:end m)))))))))
218 lst)))
219
220 ;;;
221 ;;; regexp-substitute
222 ;;;
223
224 (with-test-prefix "regexp-substitute"
225 (let ((match
226 (string-match "patleft(sub1)patmid(sub2)patright"
227 "contleftpatleftsub1patmidsub2patrightcontright")))
228 (define (try expected . args)
229 (with-test-prefix (object->string args)
230 (apply vary-port regexp-substitute expected match args)))
231
232 (try "")
233 (try "string1" "string1")
234 (try "string1string2" "string1" "string2")
235 (try "patleftsub1patmidsub2patright" 0)
236 (try "hi-patleftsub1patmidsub2patright-bye" "hi-" 0 "-bye")
237 (try "sub1" 1)
238 (try "hi-sub1-bye" "hi-" 1 "-bye")
239 (try "hi-sub2-bye" "hi-" 2 "-bye")
240 (try "contleft" 'pre)
241 (try "contright" 'post)
242 (try "contrightcontleft" 'post 'pre)
243 (try "contrightcontleftcontrightcontleft" 'post 'pre 'post 'pre)
244 (try "contrightsub2sub1contleft" 'post 2 1 'pre)
245 (try "foosub1sub1sub1sub1bar" "foo" 1 1 1 1 "bar")))
246
247 (with-test-prefix "regexp-substitute/global"
248
249 (define (try expected . args)
250 (with-test-prefix (object->string args)
251 (apply vary-port regexp-substitute/global expected args)))
252
253 (try "hi" "a(x*)b" "ab" "hi")
254 (try "" "a(x*)b" "ab" 1)
255 (try "xx" "a(x*)b" "axxb" 1)
256 (try "xx" "a(x*)b" "_axxb_" 1)
257 (try "pre" "a(x*)b" "preaxxbpost" 'pre)
258 (try "post" "a(x*)b" "preaxxbpost" 'post)
259 (try "string" "x" "string" 'pre "y" 'post)
260 (try "4" "a(x*)b" "_axxb_" (lambda (m)
261 (number->string (match:end m 1))))
262
263 (try "_aybycyd_" "x+" "_axbxxcxxxd_" 'pre "y" 'post)
264
265 ;; This should not go into an infinite loop, just because the regexp
266 ;; can match the empty string. This test also kind of beats on our
267 ;; definition of where a null string can match.
268 (try "y_yaybycydy_y" "x*" "_axbxxcxxxd_" 'pre "y" 'post)
269
270 ;; These kind of bother me. The extension from regexp-substitute to
271 ;; regexp-substitute/global is only natural if your item list
272 ;; includes both pre and post. If those are required, why bother
273 ;; to include them at all?
274 (try "4:7:12:_" "a(x*)b" "_axxbaxbaxxxb_"
275 (lambda (m) (number->string (match:end m 1))) ":"
276 'post)
277 (try "4:10:19:_:19:10:4" "a(x*)b" "_axxbaxxxxbaxxxxxxxb_"
278 (lambda (m) (number->string (match:end m 1))) ":"
279 'post
280 ":" (lambda (m) (number->string (match:end m 1))))
281
282 ;; Jan Nieuwenhuizen's bug, 2 Sep 1999
283 (try "" "_" (make-string 500 #\_)
284 'post))
285
286 (with-test-prefix "nonascii locales"
287 (pass-if "match structures refer to char offsets"
288 (with-locale "en_US.utf8"
289 ;; bug #31650
290 (equal? (match:substring (string-match ".*" "calçot") 0)
291 "calçot")))
292
293 (pass-if "match structures refer to char offsets, non-ASCII pattern"
294 (with-locale "en_US.utf8"
295 ;; bug #31650
296 (equal? (match:substring (string-match "λ: The Ultimate (.*)"
297 "λ: The Ultimate GOTO")
298 1)
299 "GOTO"))))