1 ;;; occur-tests.el --- Test suite for occur.
3 ;; Copyright (C) 2010-2015 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/>.
29 ;; * Test one-line matches (at bob, eob, bol, eol).
38 6 matches in 5 lines for \"x\" in buffer: *test-occur*
45 ;; * Test multi-line matches, this is the first test from
46 ;; http://lists.gnu.org/archive/html/emacs-devel/2005-06/msg01008.html
47 ;; where numbers are replaced with letters.
55 2 matches for \"a\na\" in buffer: *test-occur*
61 ;; * Test multi-line matches, this is the second test from
62 ;; http://lists.gnu.org/archive/html/emacs-devel/2005-06/msg01008.html
63 ;; where numbers are replaced with letters.
71 2 matches for \"a\nb\" in buffer: *test-occur*
77 ;; * Test line numbers for multi-line matches with empty last match line.
85 2 matches for \"a\n\" in buffer: *test-occur*
91 ;; * Test multi-line matches with 3 match lines.
100 2 matches for \"x\n.x\n\" in buffer: *test-occur*
108 ;; * Test non-overlapping context lines with matches at bob/eob.
119 3 matches for \"x\" in buffer: *test-occur*
130 ;; * Test non-overlapping context lines with matches not at bob/eob.
139 2 matches for \"x\" in buffer: *test-occur*
148 ;; * Test overlapping context lines with matches at bob/eob.
162 5 matches for \"x\" in buffer: *test-occur*
175 ;; * Test overlapping context lines with matches not at bob/eob.
187 2 matches for \"x\" in buffer: *test-occur*
198 ;; * Test overlapping context lines with empty first and last line..
210 2 matches for \"x\" in buffer: *test-occur*
221 ;; * Test multi-line overlapping context lines.
235 3 matches for \"x\n.x\" in buffer: *test-occur*
248 ;; * Test multi-line non-overlapping context lines.
259 2 matches for \"x\n.x\" in buffer: *test-occur*
270 ;; * Test non-overlapping negative (before-context) lines.
282 3 matches for \"x\" in buffer: *test-occur*
294 ;; * Test overlapping negative (before-context) lines.
305 3 matches for \"x\" in buffer: *test-occur*
316 "List of tests for `occur'.
317 Each element has the format:
318 \(REGEXP NLINES INPUT-BUFFER-STRING OUTPUT-BUFFER-STRING).")
320 (defun occur-test-case (test)
321 (let ((regexp (nth 0 test
))
322 (nlines (nth 1 test
))
323 (input-buffer-string (nth 2 test
))
324 (temp-buffer (get-buffer-create " *test-occur*")))
326 (save-window-excursion
327 (with-current-buffer temp-buffer
329 (insert input-buffer-string
)
330 (occur regexp nlines
)
331 (with-current-buffer "*Occur*"
332 (buffer-substring-no-properties (point-min) (point-max)))))
333 (and (buffer-name temp-buffer
)
334 (kill-buffer temp-buffer
)))))
336 (defun occur-test-create (n)
337 "Create a test for element N of the `occur-tests' constant."
338 (let ((testname (intern (format "occur-test-%.2d" n
)))
339 (testdoc (format "Test element %d of `occur-tests'." n
)))
341 `(ert-deftest ,testname
()
344 (should (equal (occur-test-case (nth ,n occur-tests
))
345 (nth 3 (nth ,n occur-tests
)))))))))
347 (dotimes (i (length occur-tests
))
348 (occur-test-create i
))
350 (provide 'occur-tests
)
352 ;;; occur-tests.el ends here