]> code.delx.au - gnu-emacs/blob - test/automated/add-log-tests.el
auto upstream
[gnu-emacs] / test / automated / add-log-tests.el
1 ;;; add-log-tests.el --- Test suite for add-log.
2
3 ;; Copyright (C) 2013 Free Software Foundation, Inc.
4
5 ;; Author: Masatake YAMATO <yamato@redhat.com>
6 ;; Keywords: vc tools
7
8 ;; This file is part of GNU Emacs.
9
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.
14
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.
19
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/>.
22
23 ;;; Code:
24
25 (require 'add-log)
26
27 (defmacro add-log-current-defun-deftest (name doc major-mode
28 content marker expected-defun)
29 "Generate an ert test for mode-own `add-log-current-defun-function'.
30 Run `add-log-current-defun' at the point where MARKER specifies in a
31 buffer which content is CONTENT under MAJOR-MODE. Then it compares the
32 result with EXPECTED-DEFUN."
33 (let ((xname (intern (concat "add-log-current-defun-test-"
34 (symbol-name name)
35 ))))
36 `(ert-deftest ,xname ()
37 ,doc
38 (with-temp-buffer
39 (insert ,content)
40 (goto-char (point-min))
41 (funcall ',major-mode)
42 (should (equal (when (search-forward ,marker nil t)
43 (replace-match "" nil t)
44 (add-log-current-defun))
45 ,expected-defun))))))
46
47 (add-log-current-defun-deftest
48 sh-func1
49 "Test sh-current-defun-name can find function."
50 sh-mode "
51 function foo
52 {
53 ><
54 }" "><" "foo")
55
56 (add-log-current-defun-deftest
57 sh-func2
58 "Test sh-current-defun-name can find function."
59 sh-mode "
60 foo()
61 {
62 ><
63 }" "><" "foo")
64
65 (add-log-current-defun-deftest
66 sh-func3
67 "Test sh-current-defun-name can find function."
68 sh-mode "
69 function foo()
70 {
71 ><
72 }" "><" "foo")
73
74 (add-log-current-defun-deftest
75 sh-var
76 "Test sh-current-defun-name can find variable definition."
77 sh-mode "
78 PATH=a:/ab:/usr/abc
79 DIR=/pr><oc"
80 "><" "DIR")
81
82 (provide 'add-log-tests)
83
84 ;;; add-log-tests.el ends here