1 ;;; occur-testsuite.el --- Test suite for occur.
3 ;; Copyright (C) 2010 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/>.
25 ;; Type M-x test-occur RET to test the functionality of `occur'.
31 ;; * Test one-line matches (at bob, eob, bol, eol).
40 5 matches for \"x\" in buffer: *temp*
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.
57 2 matches for \"a^Ja\" in buffer: *temp*
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.
73 2 matches for \"a^Jb\" in buffer: *temp*
79 ;; * Test line numbers for multi-line matches with empty last match line.
87 2 matches for \"a^J\" in buffer: *temp*
93 ;; * Test multi-line matches with 3 match lines.
102 2 matches for \"x^J.x^J\" in buffer: *temp*
111 "List of tests for `occur'.
112 Each element has the format:
113 \(REGEXP NLINES INPUT-BUFFER-STRING OUTPUT-BUFFER-STRING).")
120 (dolist (test occur-tests
)
121 (let ((regexp (nth 0 test
))
122 (nlines (nth 1 test
))
123 (input-buffer-string (nth 2 test
))
124 (output-buffer-string (nth 3 test
)))
127 (insert input-buffer-string
)
128 (occur regexp nlines
)
129 (unless (equal output-buffer-string
130 (with-current-buffer "*Occur*"
132 (setq failed
(cons count failed
))))))
133 (setq count
(1+ count
)))
135 (message "FAILED TESTS: %S" (reverse failed
))
136 (message "SUCCESS"))))
138 (provide 'occur-testsuite
)
140 ;;; occur-testsuite.el ends here