Convert consecutive FSF copyright years to ranges.
[emacs.git] / test / occur-testsuite.el
blob6f1107e5c1697e5e5440209e49767e19b9f10b27
1 ;;; occur-testsuite.el --- Test suite for occur.
3 ;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
5 ;; Author: Juri Linkov <juri@jurta.org>
6 ;; Keywords: matching, internal
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Type M-x test-occur RET to test the functionality of `occur'.
27 ;;; Code:
29 (defconst occur-tests
31 ;; * Test one-line matches (at bob, eob, bol, eol).
32 ("x" 0 "\
37 xex
39 " "\
40 5 matches for \"x\" in buffer: *temp*
41 1:xa
42 3:cx
43 4:xd
44 5:xex
45 6:fx
47 ;; * Test multi-line matches, this is the first test from
48 ;; http://lists.gnu.org/archive/html/emacs-devel/2005-06/msg01008.html
49 ;; where numbers are replaced with letters.
50 ("a\na" 0 "\
56 " "\
57 2 matches for \"a^Ja\" in buffer: *temp*
58 1:a
60 3:a
63 ;; * Test multi-line matches, this is the second test from
64 ;; http://lists.gnu.org/archive/html/emacs-devel/2005-06/msg01008.html
65 ;; where numbers are replaced with letters.
66 ("a\nb" 0 "\
72 " "\
73 2 matches for \"a^Jb\" in buffer: *temp*
74 1:a
76 4:a
79 ;; * Test line numbers for multi-line matches with empty last match line.
80 ("a\n" 0 "\
86 " "\
87 2 matches for \"a^J\" in buffer: *temp*
88 1:a
90 4:a
93 ;; * Test multi-line matches with 3 match lines.
94 ("x\n.x\n" 0 "\
101 " "\
102 2 matches for \"x^J.x^J\" in buffer: *temp*
103 1:ax
106 5:ex
110 ;; * Test non-overlapping context lines with matches at bob/eob.
111 ("x" 1 "\
120 " "\
121 3 matches for \"x\" in buffer: *temp*
122 1:ax
124 -------
126 5:ex
128 -------
130 8:hx
132 ;; * Test non-overlapping context lines with matches not at bob/eob.
133 ("x" 1 "\
140 " "\
141 2 matches for \"x\" in buffer: *temp*
143 2:bx
145 -------
147 5:ex
150 ;; * Test overlapping context lines with matches at bob/eob.
151 ("x" 2 "\
163 " "\
164 5 matches for \"x\" in buffer: *temp*
165 1:ax
166 2:bx
168 4:dx
171 7:gx
175 11:kx
177 ;; * Test overlapping context lines with matches not at bob/eob.
178 ("x" 2 "\
188 " "\
189 2 matches for \"x\" in buffer: *temp*
192 3:cx
196 7:gx
200 ;; * Test overlapping context lines with empty first and last line..
201 ("x" 2 "\
211 " "\
212 2 matches for \"x\" in buffer: *temp*
215 3:cx
219 7:gx
223 ;; * Test multi-line overlapping context lines.
224 ("x\n.x" 2 "\
236 " "\
237 3 matches for \"x^J.x\" in buffer: *temp*
238 1:ax
242 5:ex
247 10:jx
250 ;; * Test multi-line non-overlapping context lines.
251 ("x\n.x" 2 "\
260 " "\
261 2 matches for \"x^J.x\" in buffer: *temp*
262 1:ax
266 -------
269 7:gx
272 ;; * Test non-overlapping negative (before-context) lines.
273 ("x" -2 "\
283 " "\
284 3 matches for \"x\" in buffer: *temp*
286 2:bx
287 -------
290 6:fx
291 -------
294 9:ix
296 ;; * Test overlapping negative (before-context) lines.
297 ("x" -3 "\
306 " "\
307 3 matches for \"x\" in buffer: *temp*
309 2:bx
311 4:dx
314 7:gx
318 "List of tests for `occur'.
319 Each element has the format:
320 \(REGEXP NLINES INPUT-BUFFER-STRING OUTPUT-BUFFER-STRING).")
322 (defun test-occur ()
323 (interactive)
324 (let ((count 1)
325 failed
326 (occur-hook nil))
327 (dolist (test occur-tests)
328 (let ((regexp (nth 0 test))
329 (nlines (nth 1 test))
330 (input-buffer-string (nth 2 test))
331 (output-buffer-string (nth 3 test)))
332 (save-excursion
333 (with-temp-buffer
334 (insert input-buffer-string)
335 (occur regexp nlines)
336 (unless (equal output-buffer-string
337 (with-current-buffer "*Occur*"
338 (buffer-string)))
339 (setq failed (cons count failed))))))
340 (setq count (1+ count)))
341 (if failed
342 (message "FAILED TESTS: %S" (reverse failed))
343 (message "SUCCESS"))))
345 (provide 'occur-testsuite)
347 ;;; occur-testsuite.el ends here