2012-12-13 11:24:19 -05:00
|
|
|
|
;;; test-ob-lob.el --- test for ob-lob.el
|
2010-10-15 20:42:26 -04:00
|
|
|
|
|
2015-02-15 19:40:07 -05:00
|
|
|
|
;; Copyright (c) 2010-2015 Eric Schulte
|
2010-10-15 20:42:26 -04:00
|
|
|
|
;; Authors: Eric Schulte
|
|
|
|
|
|
2012-12-13 11:24:19 -05:00
|
|
|
|
;; This file is not part of GNU Emacs.
|
2010-10-15 20:42:26 -04:00
|
|
|
|
|
2012-12-13 11:24:19 -05:00
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-10-15 20:42:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Tests
|
2011-09-06 13:11:12 -04:00
|
|
|
|
(org-babel-lob-ingest
|
|
|
|
|
(expand-file-name
|
|
|
|
|
"library-of-babel.org"
|
|
|
|
|
(expand-file-name
|
2013-03-06 15:27:13 -05:00
|
|
|
|
"doc"
|
2011-09-06 13:11:12 -04:00
|
|
|
|
(expand-file-name
|
|
|
|
|
".."
|
|
|
|
|
(expand-file-name
|
|
|
|
|
".."
|
|
|
|
|
(file-name-directory
|
2013-03-06 15:27:13 -05:00
|
|
|
|
(or load-file-name buffer-file-name)))))))
|
2011-09-06 13:11:12 -04:00
|
|
|
|
|
2010-10-15 20:42:26 -04:00
|
|
|
|
(ert-deftest test-ob-lob/ingest ()
|
2016-08-23 16:13:56 -04:00
|
|
|
|
"Test the ingestion of an Org file."
|
2010-10-15 20:42:26 -04:00
|
|
|
|
(should (< 0 (org-babel-lob-ingest
|
|
|
|
|
(expand-file-name "babel.org" org-test-example-dir)))))
|
|
|
|
|
|
2010-10-16 12:02:57 -04:00
|
|
|
|
(ert-deftest test-ob-lob/call-with-header-arguments ()
|
|
|
|
|
"Test the evaluation of a library of babel #+call: line."
|
2015-01-25 05:20:02 -05:00
|
|
|
|
(letf (((symbol-function 'org-babel-insert-result)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(symbol-function 'ignore)))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(org-test-at-id "fab7e291-fde6-45fc-bf6e-a485b8bca2f0"
|
|
|
|
|
(move-beginning-of-line 1)
|
|
|
|
|
(forward-line 6)
|
|
|
|
|
(message (buffer-substring (point-at-bol) (point-at-eol)))
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (caar (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info)))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (caar (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info)))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (caar (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info)))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1) (beginning-of-line) (forward-char 27)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1) (beginning-of-line) (forward-char 27)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (caar (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info)))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1) (beginning-of-line)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (= 4 (org-babel-execute-src-block nil (org-babel-lob-get-info))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "testing" (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(forward-line 1)
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should (string= "123" (org-babel-execute-src-block
|
|
|
|
|
nil (org-babel-lob-get-info)))))))
|
2010-10-16 12:02:57 -04:00
|
|
|
|
|
2011-06-27 14:34:00 -04:00
|
|
|
|
(ert-deftest test-ob-lob/export-lob-lines ()
|
|
|
|
|
"Test the export of a variety of library babel call lines."
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(let ((org-babel-inline-result-wrap "=%s=")
|
2016-11-12 21:54:20 -05:00
|
|
|
|
(org-export-use-babel t))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(org-test-at-id "72ddeed3-2d17-4c7f-8192-a575d535d3fc"
|
|
|
|
|
(org-narrow-to-subtree)
|
2016-06-18 16:11:14 -04:00
|
|
|
|
(let ((string (org-with-wide-buffer (buffer-string)))
|
|
|
|
|
(narrowing (list (point-min) (point-max))))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(org-mode)
|
|
|
|
|
(insert string)
|
2016-06-18 16:11:14 -04:00
|
|
|
|
(apply #'narrow-to-region narrowing)
|
|
|
|
|
(org-babel-exp-process-buffer)
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(message (buffer-string))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(should (re-search-forward "^: 0" nil t))
|
2015-01-29 15:05:31 -05:00
|
|
|
|
(should (re-search-forward "call {{{results(=2=)}}} stuck" nil t))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(should (re-search-forward
|
|
|
|
|
"exported =call_double(it=2)= because" nil t))
|
2015-01-29 15:05:31 -05:00
|
|
|
|
(should (re-search-forward "^{{{results(=6=)}}} because" nil t))
|
2015-01-22 00:59:04 -05:00
|
|
|
|
(should (re-search-forward "results 8 should" nil t))
|
2015-01-29 15:05:31 -05:00
|
|
|
|
(should (re-search-forward "following 2\\*5={{{results(=10=)}}} should" nil t)))))))
|
2011-06-27 14:34:00 -04:00
|
|
|
|
|
2011-11-18 13:30:50 -05:00
|
|
|
|
(ert-deftest test-ob-lob/do-not-eval-lob-lines-in-example-blocks-on-export ()
|
2013-01-27 18:09:58 -05:00
|
|
|
|
(require 'ox)
|
2011-11-18 13:30:50 -05:00
|
|
|
|
(org-test-with-temp-text-in-file "
|
|
|
|
|
for export
|
|
|
|
|
#+begin_example
|
|
|
|
|
#+call: rubbish()
|
|
|
|
|
#+end_example"
|
2016-06-18 16:11:14 -04:00
|
|
|
|
(should (progn (org-babel-exp-process-buffer) t))))
|
2013-01-27 18:09:58 -05:00
|
|
|
|
|
2014-01-18 15:20:04 -05:00
|
|
|
|
(ert-deftest test-ob-lob/caching-call-line ()
|
2014-01-18 15:36:07 -05:00
|
|
|
|
(let ((temporary-value-for-test 0))
|
2014-01-18 15:20:04 -05:00
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
#+name: call-line-caching-example
|
|
|
|
|
#+begin_src emacs-lisp :var bar=\"baz\"
|
2014-01-18 15:36:07 -05:00
|
|
|
|
(setq temporary-value-for-test (+ 1 temporary-value-for-test))
|
2014-01-18 15:20:04 -05:00
|
|
|
|
#+end_src
|
|
|
|
|
|
2016-06-16 16:16:41 -04:00
|
|
|
|
<point>#+call: call-line-caching-example(\"qux\") :cache yes
|
2014-01-18 15:20:43 -05:00
|
|
|
|
"
|
|
|
|
|
;; first execution should flip value to t
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should
|
|
|
|
|
(eq (org-babel-execute-src-block nil (org-babel-lob-get-info)) 1))
|
2014-01-18 15:20:43 -05:00
|
|
|
|
;; if cached, second evaluation will retain the t value
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should
|
|
|
|
|
(eq (org-babel-execute-src-block nil (org-babel-lob-get-info)) 1)))))
|
2014-01-18 15:20:43 -05:00
|
|
|
|
|
|
|
|
|
(ert-deftest test-ob-lob/named-caching-call-line ()
|
2014-01-18 15:36:07 -05:00
|
|
|
|
(let ((temporary-value-for-test 0))
|
2014-01-18 15:20:43 -05:00
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
#+name: call-line-caching-example
|
|
|
|
|
#+begin_src emacs-lisp :var bar=\"baz\"
|
2014-01-18 15:36:07 -05:00
|
|
|
|
(setq temporary-value-for-test (+ 1 temporary-value-for-test))
|
2014-01-18 15:20:43 -05:00
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
#+name: call-line-caching-called
|
2016-06-16 16:16:41 -04:00
|
|
|
|
<point>#+call: call-line-caching-example(\"qux\") :cache yes
|
2014-01-18 15:20:04 -05:00
|
|
|
|
"
|
|
|
|
|
;; first execution should flip value to t
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should
|
|
|
|
|
(eq (org-babel-execute-src-block nil (org-babel-lob-get-info)) 1))
|
2014-01-18 15:20:04 -05:00
|
|
|
|
;; if cached, second evaluation will retain the t value
|
2016-06-16 17:32:58 -04:00
|
|
|
|
(should
|
|
|
|
|
(eq (org-babel-execute-src-block nil (org-babel-lob-get-info)) 1)))))
|
2011-11-18 13:30:50 -05:00
|
|
|
|
|
2010-10-15 20:42:26 -04:00
|
|
|
|
(provide 'test-ob-lob)
|
|
|
|
|
|
|
|
|
|
;;; test-ob-lob.el ends here
|