org-test.el 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. ;;;; org-test.el --- Tests for Org
  2. ;; Copyright (c) 2010-2015 Sebastian Rose, Eric Schulte
  3. ;; Authors:
  4. ;; Sebastian Rose, Hannover, Germany, sebastian_rose gmx de
  5. ;; Eric Schulte, Santa Fe, New Mexico, USA, schulte.eric gmail com
  6. ;; David Maus, Brunswick, Germany, dmaus ictsoc de
  7. ;; Released under the GNU General Public License version 3
  8. ;; see: http://www.gnu.org/licenses/gpl-3.0.html
  9. ;; Definition of `special-mode' copied from Emacs23's simple.el to be
  10. ;; provide a testing environment for Emacs22.
  11. ;;;; Comments:
  12. ;; Interactive testing for Org mode.
  13. ;; The heart of all this is the commands `org-test-current-defun'. If
  14. ;; called while in a `defun' all ert tests with names matching the
  15. ;; name of the function are run.
  16. ;;; Test Development
  17. ;; For test development purposes a number of navigation and test
  18. ;; function construction routines are available as a git submodule
  19. ;; (jump.el)
  20. ;; Install with...
  21. ;; $ git submodule init
  22. ;; $ git submodule update
  23. ;;;; Code:
  24. ;;; Ob constants
  25. (defconst org-test-file-ob-anchor
  26. "94839181-184f-4ff4-a72f-94214df6f5ba")
  27. (defconst org-test-link-in-heading-file-ob-anchor
  28. "a8b1d111-eca8-49f0-8930-56d4f0875155")
  29. (unless (and (boundp 'org-batch-test) org-batch-test)
  30. (let* ((org-test-dir (expand-file-name
  31. (file-name-directory
  32. (or load-file-name buffer-file-name))))
  33. (org-lisp-dir (expand-file-name
  34. (concat org-test-dir "../lisp"))))
  35. (unless (featurep 'org)
  36. (setq load-path (cons org-lisp-dir load-path))
  37. (require 'org)
  38. (require 'org-id)
  39. (require 'ox)
  40. (org-babel-do-load-languages
  41. 'org-babel-load-languages '((shell . t) (org . t))))
  42. (let ((load-path (cons org-test-dir
  43. (cons (expand-file-name "jump" org-test-dir)
  44. load-path))))
  45. (require 'cl-lib)
  46. (require 'ert)
  47. (require 'ert-x)
  48. (when (file-exists-p (expand-file-name "jump/jump.el" org-test-dir))
  49. (require 'jump)
  50. (require 'which-func)))))
  51. (defconst org-test-default-test-file-name "tests.el"
  52. "For each defun a separate file with tests may be defined.
  53. tests.el is the fallback or default if you like.")
  54. (defconst org-test-default-directory-name "testing"
  55. "Basename or the directory where the tests live.
  56. org-test searches this directory up the directory tree.")
  57. (defconst org-test-dir
  58. (expand-file-name (file-name-directory (or load-file-name buffer-file-name))))
  59. (defconst org-base-dir
  60. (expand-file-name ".." org-test-dir))
  61. (defconst org-test-example-dir
  62. (expand-file-name "examples" org-test-dir))
  63. (defconst org-test-file
  64. (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))
  67. (defconst org-test-link-in-heading-file
  68. (expand-file-name "link-in-heading.org" org-test-dir))
  69. (defconst org-id-locations-file
  70. (expand-file-name ".test-org-id-locations" org-test-dir))
  71. ;;; Functions for writing tests
  72. (put 'missing-test-dependency
  73. 'error-conditions
  74. '(error missing-test-dependency))
  75. (defun org-test-for-executable (exe)
  76. "Throw an error if EXE is not available.
  77. This can be used at the top of code-block-language specific test
  78. files to avoid loading the file on systems without the
  79. executable."
  80. (unless (cl-reduce
  81. (lambda (acc dir)
  82. (or acc (file-exists-p (expand-file-name exe dir))))
  83. exec-path :initial-value nil)
  84. (signal 'missing-test-dependency (list exe))))
  85. (defun org-test-buffer (&optional file)
  86. "TODO: Setup and return a buffer to work with.
  87. If file is non-nil insert its contents in there.")
  88. (defun org-test-compare-with-file (&optional file)
  89. "TODO: Compare the contents of the test buffer with FILE.
  90. If file is not given, search for a file named after the test
  91. currently executed.")
  92. (defmacro org-test-at-id (id &rest body)
  93. "Run body after placing the point in the headline identified by ID."
  94. (declare (indent 1))
  95. `(let* ((id-location (org-id-find ,id))
  96. (id-file (car id-location))
  97. (visited-p (get-file-buffer id-file))
  98. to-be-removed)
  99. (unwind-protect
  100. (save-window-excursion
  101. (save-match-data
  102. (org-id-goto ,id)
  103. (setq to-be-removed (current-buffer))
  104. (condition-case nil
  105. (progn
  106. (org-show-subtree)
  107. (org-show-all '(blocks)))
  108. (error nil))
  109. (save-restriction ,@body)))
  110. (unless (or visited-p (not to-be-removed))
  111. (kill-buffer to-be-removed)))))
  112. (def-edebug-spec org-test-at-id (form body))
  113. (defmacro org-test-in-example-file (file &rest body)
  114. "Execute body in the Org example file."
  115. (declare (indent 1))
  116. `(let* ((my-file (or ,file org-test-file))
  117. (visited-p (get-file-buffer my-file))
  118. to-be-removed
  119. results)
  120. (save-window-excursion
  121. (save-match-data
  122. (find-file my-file)
  123. (unless (eq major-mode 'org-mode)
  124. (org-mode))
  125. (setq to-be-removed (current-buffer))
  126. (goto-char (point-min))
  127. (condition-case nil
  128. (progn
  129. (outline-next-visible-heading 1)
  130. (org-show-subtree)
  131. (org-show-all '(blocks)))
  132. (error nil))
  133. (setq results (save-restriction ,@body))))
  134. (unless visited-p
  135. (kill-buffer to-be-removed))
  136. results))
  137. (def-edebug-spec org-test-in-example-file (form body))
  138. (defmacro org-test-at-marker (file marker &rest body)
  139. "Run body after placing the point at MARKER in FILE.
  140. Note the uuidgen command-line command can be useful for
  141. generating unique markers for insertion as anchors into org
  142. files."
  143. (declare (indent 2))
  144. `(org-test-in-example-file ,file
  145. (goto-char (point-min))
  146. (re-search-forward (regexp-quote ,marker))
  147. ,@body))
  148. (def-edebug-spec org-test-at-marker (form form body))
  149. (defmacro org-test-with-temp-text (text &rest body)
  150. "Run body in a temporary buffer with Org mode as the active
  151. mode holding TEXT. If the string \"<point>\" appears in TEXT
  152. then remove it and place the point there before running BODY,
  153. otherwise place the point at the beginning of the inserted text."
  154. (declare (indent 1))
  155. `(let ((inside-text (if (stringp ,text) ,text (eval ,text)))
  156. (org-mode-hook nil))
  157. (with-temp-buffer
  158. (org-mode)
  159. (let ((point (string-match "<point>" inside-text)))
  160. (if point
  161. (progn
  162. (insert (replace-match "" nil nil inside-text))
  163. (goto-char (1+ (match-beginning 0))))
  164. (insert inside-text)
  165. (goto-char (point-min))))
  166. ,@body)))
  167. (def-edebug-spec org-test-with-temp-text (form body))
  168. (defmacro org-test-with-temp-text-in-file (text &rest body)
  169. "Run body in a temporary file buffer with Org mode as the active mode.
  170. If the string \"<point>\" appears in TEXT then remove it and
  171. place the point there before running BODY, otherwise place the
  172. point at the beginning of the buffer."
  173. (declare (indent 1))
  174. `(let ((file (make-temp-file "org-test"))
  175. (inside-text (if (stringp ,text) ,text (eval ,text)))
  176. buffer)
  177. (with-temp-file file (insert inside-text))
  178. (unwind-protect
  179. (progn
  180. (setq buffer (find-file file))
  181. (when (re-search-forward "<point>" nil t)
  182. (replace-match ""))
  183. (org-mode)
  184. (progn ,@body))
  185. (let ((kill-buffer-query-functions nil))
  186. (when buffer
  187. (set-buffer buffer)
  188. ;; Ignore changes, we're deleting the file in the next step
  189. ;; anyways.
  190. (set-buffer-modified-p nil)
  191. (kill-buffer))
  192. (delete-file file)))))
  193. (def-edebug-spec org-test-with-temp-text-in-file (form body))
  194. (defun org-test-table-target-expect (target &optional expect laps
  195. &rest tblfm)
  196. "For all TBLFM: Apply the formula to TARGET, compare EXPECT with result.
  197. Either LAPS and TBLFM are nil and the table will only be aligned
  198. or LAPS is the count of recalculations that should be made on
  199. each TBLFM. To save ERT run time keep LAPS as low as possible to
  200. get the table stable. Anyhow, if LAPS is 'iterate then iterate,
  201. but this will run one recalculation longer. When EXPECT is nil
  202. it will be set to TARGET.
  203. When running a test interactively in ERT is not enough and you
  204. need to examine the target table with e. g. the Org formula
  205. debugger or an Emacs Lisp debugger (e. g. with point in a data
  206. field and calling the instrumented `org-table-eval-formula') then
  207. copy and paste the table with formula from the ERT results buffer
  208. or temporarily substitute the `org-test-with-temp-text' of this
  209. function with `org-test-with-temp-text-in-file'. Also consider
  210. setting `pp-escape-newlines' to nil manually."
  211. (require 'pp)
  212. (require 'ert)
  213. (let ((back pp-escape-newlines) (current-tblfm))
  214. (unless tblfm
  215. (should-not laps)
  216. (push "" tblfm)) ; Dummy formula.
  217. (unless expect (setq expect target))
  218. (while (setq current-tblfm (pop tblfm))
  219. (org-test-with-temp-text (concat target current-tblfm)
  220. ;; Search the last of possibly several tables, let the ERT
  221. ;; test fail if not found.
  222. (goto-char (point-max))
  223. (while (not (org-at-table-p))
  224. (should (eq 0 (forward-line -1))))
  225. (when laps
  226. (if (and (symbolp laps) (eq laps 'iterate))
  227. (should (org-table-recalculate 'iterate t))
  228. (should (integerp laps))
  229. (should (< 0 laps))
  230. (let ((cnt laps))
  231. (while (< 0 cnt)
  232. (should (org-table-recalculate 'all t))
  233. (setq cnt (1- cnt))))))
  234. (org-table-align)
  235. (setq pp-escape-newlines nil)
  236. ;; Declutter the ERT results buffer by giving only variables
  237. ;; and not directly the forms to `should'.
  238. (let ((expect (concat expect current-tblfm))
  239. (result (buffer-substring-no-properties
  240. (point-min) (point-max))))
  241. (should (equal expect result)))
  242. ;; If `should' passed then set back `pp-escape-newlines' here,
  243. ;; else leave it nil as a side effect to see the failed table
  244. ;; on multiple lines in the ERT results buffer.
  245. (setq pp-escape-newlines back)))))
  246. ;;; Navigation Functions
  247. (when (featurep 'jump)
  248. (defjump org-test-jump
  249. (("lisp/\\1.el" . "testing/lisp/test-\\1.el")
  250. ("lisp/\\1.el" . "testing/lisp/\\1.el/test.*.el")
  251. ("testing/lisp/test-\\1.el" . "lisp/\\1.el")
  252. ("testing/lisp/\\1.el" . "lisp/\\1.el/test.*.el"))
  253. (concat org-base-dir "/")
  254. "Jump between Org files and their tests."
  255. (lambda (path)
  256. (let* ((full-path (expand-file-name path org-base-dir))
  257. (file-name (file-name-nondirectory path))
  258. (name (file-name-sans-extension file-name)))
  259. (find-file full-path)
  260. (insert
  261. ";;; " file-name "\n\n"
  262. ";; Copyright (c) " (nth 5 (decode-time (current-time)))
  263. " " user-full-name "\n"
  264. ";; Authors: " user-full-name "\n\n"
  265. ";; Released under the GNU General Public License version 3\n"
  266. ";; see: http://www.gnu.org/licenses/gpl-3.0.html\n\n"
  267. ";;;; Comments:\n\n"
  268. ";; Template test file for Org tests\n\n"
  269. " \n"
  270. ";;; Code:\n"
  271. "(let ((load-path (cons (expand-file-name\n"
  272. " \"..\" (file-name-directory\n"
  273. " (or load-file-name buffer-file-name)))\n"
  274. " load-path)))\n"
  275. " (require 'org-test)\n\n"
  276. " \n"
  277. ";;; Tests\n"
  278. "(ert-deftest " name "/example-test ()\n"
  279. " \"Just an example to get you started.\"\n"
  280. " (should t)\n"
  281. " (should-not nil)\n"
  282. " (should-error (error \"errr...\")))\n\n\n"
  283. "(provide '" name ")\n\n"
  284. ";;; " file-name " ends here\n") full-path))
  285. (lambda () ((lambda (res) (if (listp res) (car res) res)) (which-function)))))
  286. (define-key emacs-lisp-mode-map "\M-\C-j" 'org-test-jump)
  287. ;;; Miscellaneous helper functions
  288. (defun org-test-strip-text-props (s)
  289. "Return S without any text properties."
  290. (let ((noprop (copy-sequence s)))
  291. (set-text-properties 0 (length noprop) nil noprop)
  292. noprop))
  293. (defun org-test-string-exact-match (regex string &optional start)
  294. "Case sensitive string-match"
  295. (let ((case-fold-search nil)
  296. (case-replace nil))
  297. (if(and (equal regex "")
  298. (not(equal string "")))
  299. nil
  300. (if (equal 0 (string-match regex string start))
  301. t
  302. nil))))
  303. ;;; Load and Run tests
  304. (defun org-test-load ()
  305. "Load up the Org test suite."
  306. (interactive)
  307. (cl-flet ((rld (base)
  308. ;; Recursively load all files, if files throw errors
  309. ;; then silently ignore the error and continue to the
  310. ;; next file. This allows files to error out if
  311. ;; required executables aren't available.
  312. (mapc
  313. (lambda (path)
  314. (if (file-directory-p path)
  315. (rld path)
  316. (condition-case err
  317. (when (string-match "^[A-Za-z].*\\.el$"
  318. (file-name-nondirectory path))
  319. (load-file path))
  320. (missing-test-dependency
  321. (let ((name (intern
  322. (concat "org-missing-dependency/"
  323. (file-name-nondirectory
  324. (file-name-sans-extension path))))))
  325. (eval `(ert-deftest ,name ()
  326. :expected-result :failed (should nil))))))))
  327. (directory-files base 'full
  328. "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*\\.el$"))))
  329. (rld (expand-file-name "lisp" org-test-dir))))
  330. (defun org-test-current-defun ()
  331. "Test the current function."
  332. (interactive)
  333. (ert (which-function)))
  334. (defun org-test-current-file ()
  335. "Run all tests for current file."
  336. (interactive)
  337. (ert (concat "test-"
  338. (file-name-sans-extension
  339. (file-name-nondirectory (buffer-file-name)))
  340. "/")))
  341. (defvar org-test-buffers nil
  342. "Hold buffers open for running Org tests.")
  343. (defun org-test-touch-all-examples ()
  344. (dolist (file (directory-files
  345. org-test-example-dir 'full
  346. "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*\\.org$"))
  347. (unless (get-file-buffer file)
  348. (add-to-list 'org-test-buffers (find-file file)))))
  349. (defun org-test-kill-all-examples ()
  350. (while org-test-buffers
  351. (let ((b (pop org-test-buffers)))
  352. (when (buffer-live-p b) (kill-buffer b)))))
  353. (defun org-test-update-id-locations ()
  354. (org-id-update-id-locations
  355. (directory-files
  356. org-test-example-dir 'full
  357. "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*\\.org$")))
  358. (defun org-test-run-batch-tests (&optional org-test-selector)
  359. "Run all tests matching an optional regex which defaults to \"\\(org\\|ob\\)\".
  360. Load all test files first."
  361. (interactive)
  362. (let ((org-id-track-globally t)
  363. (org-test-selector
  364. (if org-test-selector org-test-selector "\\(org\\|ob\\)"))
  365. org-confirm-babel-evaluate org-startup-folded vc-handled-backends)
  366. (org-test-touch-all-examples)
  367. (org-test-update-id-locations)
  368. (org-test-load)
  369. (message "selected tests: %s" org-test-selector)
  370. (ert-run-tests-batch-and-exit org-test-selector)))
  371. (defun org-test-run-all-tests ()
  372. "Run all defined tests matching \"\\(org\\|ob\\)\".
  373. Load all test files first."
  374. (interactive)
  375. (org-test-touch-all-examples)
  376. (org-test-update-id-locations)
  377. (org-test-load)
  378. (ert "\\(org\\|ob\\)")
  379. (org-test-kill-all-examples))
  380. (defmacro org-test-at-time (time &rest body)
  381. "Run body while pretending that the current time is TIME.
  382. TIME can be a non-nil Lisp time value, or a string specifying a date and time."
  383. (declare (indent 1))
  384. (let ((tm (cl-gensym))
  385. (at (cl-gensym)))
  386. `(let* ((,tm ,time)
  387. (,at (if (stringp ,tm)
  388. (apply #'encode-time (org-parse-time-string ,tm))
  389. ,tm)))
  390. (cl-letf
  391. ;; Wrap builtins whose behavior can depend on the current time.
  392. (((symbol-function 'current-time)
  393. (lambda () ,at))
  394. ((symbol-function 'current-time-string)
  395. (lambda (&optional time &rest args)
  396. (apply ,(symbol-function 'current-time-string)
  397. (or time ,at) args)))
  398. ((symbol-function 'current-time-zone)
  399. (lambda (&optional time &rest args)
  400. (apply ,(symbol-function 'current-time-zone)
  401. (or time ,at) args)))
  402. ((symbol-function 'decode-time)
  403. (lambda (&optional time) (funcall ,(symbol-function 'decode-time)
  404. (or time ,at))))
  405. ((symbol-function 'encode-time)
  406. (lambda (time &rest args)
  407. (apply ,(symbol-function 'encode-time) (or time ,at) args)))
  408. ((symbol-function 'float-time)
  409. (lambda (&optional time)
  410. (funcall ,(symbol-function 'float-time) (or time ,at))))
  411. ((symbol-function 'format-time-string)
  412. (lambda (format &optional time &rest args)
  413. (apply ,(symbol-function 'format-time-string)
  414. format (or time ,at) args)))
  415. ((symbol-function 'set-file-times)
  416. (lambda (file &optional time)
  417. (funcall ,(symbol-function 'set-file-times) file (or time ,at))))
  418. ((symbol-function 'time-add)
  419. (lambda (a b) (funcall ,(symbol-function 'time-add)
  420. (or a ,at) (or b ,at))))
  421. ((symbol-function 'time-equal-p)
  422. (lambda (a b) (funcall ,(symbol-function 'time-equal-p)
  423. (or a ,at) (or b ,at))))
  424. ((symbol-function 'time-less-p)
  425. (lambda (a b) (funcall ,(symbol-function 'time-less-p)
  426. (or a ,at) (or b ,at))))
  427. ((symbol-function 'time-subtract)
  428. (lambda (a b) (funcall ,(symbol-function 'time-subtract)
  429. (or a ,at) (or b ,at)))))
  430. ,@body))))
  431. (provide 'org-test)
  432. ;;; org-test.el ends here