1 ;;;; org-test.el --- Tests for Org-mode
3 ;; Copyright (c) 2010 Sebastian Rose, Eric Schulte
5 ;; Sebastian Rose, Hannover, Germany, sebastian_rose gmx de
6 ;; Eric Schulte, Santa Fe, New Mexico, USA, schulte.eric gmail com
8 ;; Released under the GNU General Public License version 3
9 ;; see: http://www.gnu.org/licenses/gpl-3.0.html
13 ;; Interactive testing for Org mode.
15 ;; The heart of all this is the commands `org-test-current-defun'. If
16 ;; called while in a `defun' all ert tests with names matching the
17 ;; name of the function are run.
21 ;; ERT and jump.el are both included as git submodules, install with
22 ;; $ git submodule init
23 ;; $ git submodule update
27 (let* ((org-test-dir (expand-file-name
29 (or load-file-name buffer-file-name
))))
31 (expand-file-name "ert" org-test-dir
)
33 (expand-file-name "jump" org-test-dir
)
45 (defconst org-test-default-test-file-name
"tests.el"
46 "For each defun a separate file with tests may be defined.
47 tests.el is the fallback or default if you like.")
49 (defconst org-test-default-directory-name
"testing"
50 "Basename or the directory where the tests live.
51 org-test searches this directory up the directory tree.")
53 (defconst org-test-dir
54 (expand-file-name (file-name-directory (or load-file-name buffer-file-name
))))
56 (defconst org-base-dir
57 (expand-file-name ".." org-test-dir
))
59 (defconst org-test-example-dir
60 (expand-file-name "examples" org-test-dir
))
62 (defconst org-test-file
63 (expand-file-name "normal.org" org-test-example-dir
))
65 (defconst org-test-no-heading-file
66 (expand-file-name "no-heading.org" org-test-example-dir
))
68 (defconst org-test-link-in-heading-file
69 (expand-file-name "link-in-heading.org" org-test-dir
))
72 ;;; Functions for writing tests
73 (defun org-test-buffer (&optional file
)
74 "TODO: Setup and return a buffer to work with.
75 If file is non-nil insert it's contents in there.")
77 (defun org-test-compare-with-file (&optional file
)
78 "TODO: Compare the contents of the test buffer with FILE.
79 If file is not given, search for a file named after the test
82 (defmacro org-test-at-id
(id &rest body
)
83 "Run body after placing the point in the headline identified by ID."
85 `(let* ((id-location (org-id-find ,id
))
86 (id-file (car id-location
))
87 (visited-p (get-file-buffer id-file
))
89 (save-window-excursion
92 (setq to-be-removed
(current-buffer))
98 (save-restriction ,@body
)))
100 (kill-buffer to-be-removed
))))
102 (defmacro org-test-in-example-file
(file &rest body
)
103 "Execute body in the Org-mode example file."
105 `(let* ((my-file (or ,file org-test-file
))
106 (visited-p (get-file-buffer my-file
))
108 (save-window-excursion
111 (setq to-be-removed
(current-buffer))
112 (goto-char (point-min))
115 (outline-next-visible-heading 1)
117 (org-show-block-all))
119 (save-restriction ,@body
)))
121 (kill-buffer to-be-removed
))))
123 (defmacro org-test-at-marker
(file marker
&rest body
)
124 "Run body after placing the point at MARKER in FILE.
125 Note the uuidgen command-line command can be useful for
126 generating unique markers for insertion as anchors into org
129 `(org-test-in-example-file ,file
130 (goto-char (point-min))
131 (re-search-forward (regexp-quote ,marker
))
135 ;;; Navigation Functions
136 (defjump org-test-jump
137 (("lisp/\\1.el" .
"testing/lisp/test-\\1.el")
138 ("lisp/\\1.el" .
"testing/lisp/\\1.el/test.*.el")
139 ("contrib/lisp/\\1.el" .
"testing/contrib/lisp/test-\\1.el")
140 ("contrib/lisp/\\1.el" .
"testing/contrib/lisp/\\1.el/test.*.el")
141 ("testing/lisp/test-\\1.el" .
"lisp/\\1.el")
142 ("testing/lisp/\\1.el" .
"lisp/\\1.el/test.*.el")
143 ("testing/contrib/lisp/test-\\1.el" .
"contrib/lisp/\\1.el")
144 ("testing/contrib/lisp/test-\\1.el" .
"contrib/lisp/\\1.el/test.*.el"))
145 (concat org-base-dir
"/")
146 "Jump between org-mode files and their tests."
148 (let* ((full-path (expand-file-name path org-base-dir
))
149 (file-name (file-name-nondirectory path
))
150 (name (file-name-sans-extension file-name
)))
151 (find-file full-path
)
153 ";;; " file-name
"\n\n"
154 ";; Copyright (c) " (nth 5 (decode-time (current-time)))
155 " " user-full-name
"\n"
156 ";; Authors: " user-full-name
"\n\n"
157 ";; Released under the GNU General Public License version 3\n"
158 ";; see: http://www.gnu.org/licenses/gpl-3.0.html\n\n"
160 ";; Template test file for Org-mode tests\n\n"
163 "(let ((load-path (cons (expand-file-name\n"
164 " \"..\" (file-name-directory\n"
165 " (or load-file-name buffer-file-name)))\n"
167 " (require 'org-test)\n"
168 " (require 'org-test-ob-consts))\n\n"
171 "(ert-deftest " name
"/example-test ()\n"
172 " \"Just an example to get you started.\"\n"
174 " (should-not nil)\n"
175 " (should-error (error \"errr...\")))\n\n\n"
176 "(provide '" name
")\n\n"
177 ";;; " file-name
" ends here\n") full-path
))
178 (lambda () ((lambda (res) (if (listp res
) (car res
) res
)) (which-function))))
180 (define-key emacs-lisp-mode-map
"\M-\C-j" 'org-test-jump
)
183 ;;; Load and Run tests
184 (defun org-test-load ()
185 "Load up the org-mode test suite."
190 (if (file-directory-p path
) (rload path
) (load-file path
)))
191 (directory-files base
'full
192 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*\\.el"))))
193 (rload (expand-file-name "lisp" org-test-dir
))
194 (rload (expand-file-name "lisp"
195 (expand-file-name "contrib" org-test-dir
)))))
197 (defun org-test-current-defun ()
198 "Test the current function."
200 (ert (which-function)))
202 (defun org-test-current-file ()
203 "Run all tests for current file."
206 (file-name-sans-extension
207 (file-name-nondirectory (buffer-file-name)))
210 (defun org-test-run-all-tests ()
211 "Run all defined tests matching \"\\(org\\|ob\\)\".
212 Load all test files first."
215 (ert "\\(org\\|ob\\)"))
219 ;;; org-test.el ends here