README 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # -*- mode:org -*-
  2. #+TITLE: Org-mode Testing
  3. #+PROPERTY: results silent
  4. * Dependencies
  5. The only dependency is [[http://www.emacswiki.org/emacs/ErtTestLibrary][ERT]] the Emacs testing library which ships with
  6. Emacs24. If you are running an older version of Emacs and don't
  7. already have ERT installed it can be installed from its old [[https://github.com/ohler/ert][git
  8. repository]].
  9. * Non-interactive batch testing from the command line
  10. The simplest way to run the Org-mode test suite is from the command
  11. line with the following invocation. Note that the paths below are
  12. relative to the base of the Org-mode directory.
  13. #+BEGIN_SRC sh :dir (expand-file-name "..")
  14. # For Emacs earlier than 24, add -L /path/to/ert
  15. emacs -Q --batch \
  16. -L lisp/ -L testing/ -L testing/lisp -l lisp/org.el \
  17. -l lisp/org-id.el -l testing/org-test.el \
  18. --eval "(progn (org-reload) (setq org-confirm-babel-evaluate nil))" \
  19. -f org-test-run-batch-tests
  20. #+END_SRC
  21. The options in the above command are explained below.
  22. | -Q | ignores any personal configuration ensuring a vanilla Emacs instance is used |
  23. | --batch | runs Emacs in "batch" mode with no gui and termination after execution |
  24. | -l | loads Org-mode and the org mode test suite defined in testing/org-test.el |
  25. | --eval | reloads Org-mode and allows evaluation of code blocks by the tests |
  26. | -f | actually runs the tests using the `org-test-run-batch-tests' function |
  27. * Interactive testing from within Emacs
  28. To run the Org-mode test suite from a current Emacs instance simply
  29. load and run the test suite with the following commands.
  30. 1) First load the test suite.
  31. #+BEGIN_SRC emacs-lisp :var here=(buffer-file-name)
  32. (add-to-list 'load-path (file-name-directory here))
  33. (require 'org-test)
  34. #+END_SRC
  35. 2) Then run the test suite,
  36. #+BEGIN_SRC emacs-lisp
  37. (org-test-run-all-tests)
  38. #+END_SRC
  39. or when a test fails run it interactively and investigate the
  40. problem in the ERT results buffer.
  41. How to run one test:
  42. Use this as a demo example of a failing test
  43. #+BEGIN_SRC emacs-lisp
  44. (ert-deftest test-org/org-link-escape-ascii-character-demo-of-fail ()
  45. (should (string= "%5B" ;; expected is right
  46. (org-link-escape "[")))
  47. (should (string= "%5C" ;; expected is wrong, "%5D" would be right
  48. (org-link-escape "]"))))
  49. #+END_SRC
  50. or evaluate the ert-deftest form of the test you want to run. Then
  51. "M-x ert RET test-org/org-link-escape-ascii-character-demo-of-fail RET"
  52. When not visible yet switch to the ERT results buffer named
  53. "\*ert\*". When a test failed the ERT results buffer shows the
  54. details of the first "should" that failed. See
  55. (info "(ert)Running Tests Interactively") on how to re-run, start
  56. the debugger etc.
  57. How to run all tests of a single test file:
  58. "M-x ert-delete-all-tests RET", confirm. Open the file
  59. ./lisp/test-*.el, "M-x eval-buffer RET", "M-x ert RET t RET"
  60. Consider to set pp-escape-newlines nil before running the test when
  61. looking at "should" in the ERT results buffer. Especially when
  62. using "l" to look at passed test results and possibly missing an
  63. appropriate setting of pp-escape-newlines made only temporarily for
  64. the running time of the test as e. g. tests using
  65. org-test-table-target-expect-tblfm do.
  66. * Troubleshooting
  67. - If the value of the =org-babel-no-eval-on-ctrl-c-ctrl-c= is non-nil
  68. then it will result in some test failure, as there are tests which
  69. rely on this behavior.