1 ;;; test-ob.el --- tests for ob.el
3 ;; Copyright (c) 2010-2015 Eric Schulte
4 ;; Authors: Eric Schulte, Martyn Jago
6 ;; This file is not part of GNU Emacs.
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
23 (ert-deftest test-ob
/indented-cached-org-bracket-link
()
24 "When the result of a source block is a cached indented link it
25 should still return the link."
27 (let ((default-directory temporary-file-directory
))
28 (org-test-with-temp-text
31 #+<point>BEGIN_SRC emacs-lisp :file test.txt :cache yes
34 ;; Execute twice as the first time creates the cache.
35 (org-babel-execute-src-block)
36 (string= (expand-file-name "test.txt")
37 (org-babel-execute-src-block))))))
39 (ert-deftest test-ob
/multi-line-header-regexp
()
40 (should(equal "^[ \t]*#\\+headers?:[ \t]*\\([^\n]*\\)$"
41 org-babel-multi-line-header-regexp
))
42 ;;TODO can be optimised - and what about blah4 blah5 blah6?
44 org-babel-multi-line-header-regexp
45 " \t #+headers: blah1 blah2 blah3 \t\n\t\n blah4 blah5 blah6 \n"))
48 "blah1 blah2 blah3 \t"
51 " \t #+headers: blah1 blah2 blah3 \t\n\t\n blah4 blah5 blah6 \n")))
53 ;;TODO Check - should this fail?
55 (not (org-test-string-exact-match
56 org-babel-multi-line-header-regexp
57 " \t #+headers : blah1 blah2 blah3 \t\n\t\n blah4 blah5 blah6 \n"))))
59 (ert-deftest test-ob
/src-block-regexp
()
62 "#+begin_src language -n-r-a-b -c :argument-1 yes :argument-2 no\n"
63 "echo this is a test\n"
64 "echo Currently in ' $PWD\n"
67 (flags "-n-r-a-b -c ")
68 (arguments ":argument-1 yes :argument-2 no")
69 (body "echo this is a test\necho Currently in ' $PWD\n"))
70 (should (string-match org-babel-src-block-regexp test-block
))
71 (should (string-match org-babel-src-block-regexp
(upcase test-block
)))
72 (should (equal language
(match-string 2 test-block
)))
73 ;;TODO Consider refactoring
74 (should (equal flags
(match-string 3 test-block
)))
75 (should (equal arguments
(match-string 4 test-block
)))
76 (should (equal body
(match-string 5 test-block
)))
78 (should (org-test-string-exact-match
79 org-babel-src-block-regexp
80 (replace-regexp-in-string flags
"" test-block
)))
82 (should (org-test-string-exact-match
83 org-babel-src-block-regexp
84 (replace-regexp-in-string arguments
"" test-block
)))
85 ;; should be valid with no body
86 (should (org-test-string-exact-match
87 org-babel-src-block-regexp
88 (replace-regexp-in-string body
"" test-block
)))))
90 (ert-deftest test-ob
/default-inline-header-args
()
93 (:results .
"replace")
94 (:exports .
"results")
96 org-babel-default-inline-header-args
)))
98 (ert-deftest ob-test
/org-babel-combine-header-arg-lists
()
99 (let ((results (org-babel-combine-header-arg-lists
102 (baz .
((foo bar
) (baz)))
103 (qux .
((foo bar baz qux
)))
104 (quux .
((foo bar
))))
108 (dolist (pair '((foo .
:any
)
112 (qux .
((foo bar baz qux
)))))
113 (should (equal (cdr pair
)
114 (cdr (assoc (car pair
) results
)))))))
116 ;;; ob-get-src-block-info
117 (ert-deftest test-ob
/get-src-block-info-language
()
118 (org-test-at-marker nil org-test-file-ob-anchor
119 (let ((info (org-babel-get-src-block-info)))
120 (should (string= "emacs-lisp" (nth 0 info
))))))
122 (ert-deftest test-ob
/get-src-block-info-body
()
123 (org-test-at-marker nil org-test-file-ob-anchor
124 (let ((info (org-babel-get-src-block-info)))
125 (should (string-match (regexp-quote org-test-file-ob-anchor
)
128 (ert-deftest test-ob
/get-src-block-info-tangle
()
129 (org-test-at-marker nil org-test-file-ob-anchor
130 (let ((info (org-babel-get-src-block-info)))
131 (should (string= "no" (cdr (assq :tangle
(nth 2 info
))))))))
133 (ert-deftest test-ob
/elisp-in-header-arguments
()
134 "Test execution of elisp forms in header arguments."
135 (org-test-with-temp-text-in-file "
137 * elisp forms in header arguments
139 :header-args: :var prop = (* 7 6)
141 #+begin_src emacs-lisp
144 (goto-char (point-min))
145 (org-babel-next-src-block)
146 (should (= 42 (org-babel-execute-src-block)))))
148 (ert-deftest test-ob
/simple-named-code-block
()
149 "Test that simple named code blocks can be evaluated."
150 (org-test-with-temp-text-in-file "
152 #+name: i-have-a-name
153 #+begin_src emacs-lisp
156 (org-babel-next-src-block 1)
157 (should (= 42 (org-babel-execute-src-block)))))
159 (ert-deftest test-ob
/simple-variable-resolution
()
160 "Test that simple variable resolution is working."
161 (org-test-with-temp-text-in-file "
164 #+begin_src emacs-lisp
168 #+begin_src emacs-lisp :var four=four
172 (org-babel-next-src-block 2)
173 (should (= 4 (org-babel-execute-src-block)))
175 (should (string= ": 4" (buffer-substring
179 (ert-deftest test-ob
/multi-line-header-arguments
()
180 "Test that multi-line header arguments and can be read."
181 (org-test-with-temp-text-in-file "
183 #+headers: :var letters='(a b c d e f g)
184 #+begin_src emacs-lisp :var numbers='(1 2 3 4 5 6 7)
186 (cl-map 'list #'list numbers letters)
188 (org-babel-next-src-block)
189 (let ((results (org-babel-execute-src-block)))
190 (should (eq 'a
(cadr (assoc 1 results
))))
191 (should (eq 'd
(cadr (assoc 4 results
)))))))
193 (ert-deftest test-ob
/parse-header-args
()
194 (org-test-with-temp-text-in-file "
196 #+begin_src example-lang :session :results output :var num=9
200 (org-babel-next-src-block)
201 (let* ((info (org-babel-get-src-block-info))
202 (params (nth 2 info
)))
203 (message "%S" params
)
204 (should (equal "example-lang" (nth 0 info
)))
205 (should (string= "the body" (org-trim (nth 1 info
))))
206 (should-not (member '(:session\ \ \ \
) params
))
207 (should (equal '(:session
) (assq :session params
)))
208 (should (equal '(:result-type . output
) (assq :result-type params
)))
209 (should (equal '(num .
9) (cdr (assq :var params
)))))))
211 (ert-deftest test-ob
/parse-header-args2
()
212 (org-test-with-temp-text-in-file "
214 * resolving sub-trees as references
216 #+begin_src emacs-lisp :var text=d4faa7b3-072b-4dcf-813c-dd7141c633f3
220 #+begin_src org :noweb yes
222 <<d4faa7b3-072b-4dcf-813c-dd7141c633f3>>
225 ** simple subtree with custom ID
227 :CUSTOM_ID: simple-subtree
231 (should (string-match (regexp-quote "this is simple")
232 (org-babel-ref-resolve "simple-subtree")))
233 (org-babel-next-src-block)
234 (should (= 14 (org-babel-execute-src-block)))))
236 (ert-deftest test-ob
/inline-src-blocks
()
239 (org-test-with-temp-text
240 "In the middle <point>src_emacs-lisp{(+ 0 1)} of a line"
241 (org-babel-execute-src-block))))
244 (org-test-with-temp-text
245 "One at the end of a line: <point>src_emacs-lisp{(+ 1 1)}"
246 (org-babel-execute-src-block))))
249 (org-test-with-temp-text
250 "src_emacs-lisp{(+ 2 1)} at the beginning of a line."
251 (org-babel-execute-src-block))))
254 (org-test-with-temp-text
255 "In the middle <point>src_emacs-lisp[:results silent\
256 :exports code]{(+ 3 1)} of a line"
257 (org-babel-execute-src-block))))
260 (org-test-with-temp-text
261 "One at the end of a line: <point>src_emacs-lisp[:results silent\
262 :exports code]{(+ 4 1)}"
263 (org-babel-execute-src-block))))
266 (org-test-with-temp-text
267 "src_emacs-lisp[:results silent :exports code]{(+ 5 1)}\
268 at the beginning of a line."
269 (org-babel-execute-src-block))))
272 (org-test-with-temp-text
273 "One also evaluated: <point>src_emacs-lisp[:exports both\
274 :results silent]{(+ 6 1)}"
275 (org-babel-execute-src-block)))))
277 (ert-deftest test-ob
/inline-src_blk-default-results-replace-line-1
()
278 (let ((test-line "src_sh{echo 1}")
279 (org-babel-inline-result-wrap "=%s="))
280 ;; src_ at bol line 1...
281 (org-test-with-temp-text
283 (goto-char (point-min)) (org-babel-execute-maybe)
285 (concat test-line
" {{{results(=1=)}}}")
286 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
287 (forward-char) (org-babel-execute-maybe)
289 (concat test-line
" {{{results(=1=)}}}")
290 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
291 (re-search-forward "{{{")
292 ;;(should-error (org-ctrl-c-ctrl-c))
293 (backward-char 4) ;; last char of block body
294 (org-babel-execute-maybe)
296 (concat test-line
" {{{results(=1=)}}}")
297 (buffer-substring-no-properties (point-at-bol) (point-at-eol)))))
298 ;; src_ follows space line 1...
299 (let ((test-line " src_emacs-lisp{ 1 }"))
300 (org-test-with-temp-text
302 (should-error (org-ctrl-c-ctrl-c))
303 (forward-char) (org-babel-execute-maybe)
305 (concat test-line
" {{{results(=1=)}}}")
306 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
307 (re-search-forward "{ 1 ") (org-babel-execute-maybe)
309 (concat test-line
" {{{results(=1=)}}}")
310 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
312 (should-error (org-ctrl-c-ctrl-c))))
313 ;; Results on a subsequent line are replaced.
316 "src_emacs-lisp{(+ 1 2)}\n {{{results(=3=)}}}"
317 (org-test-with-temp-text "src_emacs-lisp{(+ 1 2)}\n {{{results(=2=)}}}"
318 (let ((org-babel-inline-result-wrap "=%s=")) (org-babel-execute-maybe))
320 ;; Also handle results at the beginning of a line.
323 "src_emacs-lisp{(+ 1 2)}\n{{{results(=3=)}}}"
324 (org-test-with-temp-text "src_emacs-lisp{(+ 1 2)}\n{{{results(=2=)}}}"
325 (let ((org-babel-inline-result-wrap "=%s=")) (org-babel-execute-maybe))
328 (ert-deftest test-ob
/inline-src_blk-default-results-replace-line-2
()
329 ;; src_ at bol line 2...
330 (let ((test-line " src_emacs-lisp{ \"x\" }")
331 (org-babel-inline-result-wrap "=%s="))
332 (org-test-with-temp-text
333 (concat "\n" test-line
)
334 (should-error (org-ctrl-c-ctrl-c))
335 (goto-char (point-min))
336 (should-error (org-ctrl-c-ctrl-c))
338 (should-error (org-ctrl-c-ctrl-c))
339 (forward-char) (org-babel-execute-maybe)
341 (concat test-line
" {{{results(=x=)}}}")
342 (buffer-substring-no-properties
343 (point-at-bol) (point-at-eol))))))
344 (let ((test-line "Some text prior to block src_emacs-lisp{ \"y\" }")
345 (org-babel-inline-result-wrap "=%s="))
346 (org-test-with-temp-text
348 (goto-char (point-max))
349 (insert (concat "\n" test-line
" end"))
350 (re-search-backward "src") (org-babel-execute-maybe)
352 (concat test-line
" {{{results(=y=)}}} end")
353 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
354 (re-search-forward "\" ") (org-babel-execute-maybe)
356 (concat test-line
" {{{results(=y=)}}} end")
357 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
359 (should-error (org-ctrl-c-ctrl-c)))))
361 (ert-deftest test-ob
/inline-src_blk-manual-results-replace
()
362 (let ((test-line " src_emacs-lisp[:results replace]{ \"x\" }")
363 (org-babel-inline-result-wrap "=%s="))
364 (org-test-with-temp-text
365 (concat "\n" test-line
)
366 (should-error (org-ctrl-c-ctrl-c))
367 (goto-char (point-max))
368 (org-babel-execute-maybe)
370 (should-error (org-ctrl-c-ctrl-c))
371 (forward-char) (org-babel-execute-maybe)
373 (concat test-line
" {{{results(=x=)}}}")
374 (buffer-substring-no-properties
375 (point-at-bol) (point-at-eol))))))
376 (let ((test-line (concat " Some text prior to block "
377 "src_emacs-lisp[:results replace]{ \"y\" }"))
378 (org-babel-inline-result-wrap "=%s="))
379 (org-test-with-temp-text test-line
380 (goto-char (point-max))
381 (insert (concat "\n" test-line
" end"))
382 (re-search-backward "src") (org-babel-execute-maybe)
384 (concat test-line
" {{{results(=y=)}}} end")
385 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
386 (re-search-forward "\" ") (org-babel-execute-maybe)
388 (concat test-line
" {{{results(=y=)}}} end")
389 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
391 (should-error (org-ctrl-c-ctrl-c)))))
393 (ert-deftest test-ob
/inline-src_blk-results-silent
()
394 (let ((test-line "src_emacs-lisp[ :results silent ]{ \"x\" }"))
395 (org-test-with-temp-text test-line
396 (org-babel-execute-maybe)
397 (should (string= test-line
398 (buffer-substring-no-properties
399 (point-at-bol) (point-at-eol))))))
400 (let ((test-line (concat " Some text prior to block src_emacs-lisp"
401 "[ :results silent ]{ \"y\" }")))
402 (org-test-with-temp-text
404 (goto-char (point-max))
405 (insert (concat "\n" test-line
" end"))
406 (re-search-backward "src_") (org-babel-execute-maybe)
407 (should (string= (concat test-line
" end")
408 (buffer-substring-no-properties
409 (point-at-bol) (point-at-eol))))
410 (re-search-forward "\" ") (org-babel-execute-maybe)
411 (should (string= (concat test-line
" end")
412 (buffer-substring-no-properties
413 (point-at-bol) (point-at-eol))))
415 (should-error (org-ctrl-c-ctrl-c)))))
417 (ert-deftest test-ob
/inline-src_blk-results-raw
()
418 (let ((test-line "src_emacs-lisp[ :results raw ]{ \"x\" }"))
419 (org-test-with-temp-text test-line
420 (org-babel-execute-maybe)
421 (should (string= (concat test-line
" x")
423 (let ((test-line (concat " Some text prior to block "
424 "src_emacs-lisp[ :results raw ]{ \"the\" }")))
425 (org-test-with-temp-text (concat test-line
" end")
426 (re-search-forward "src_") (org-babel-execute-maybe)
427 (should (string= (concat test-line
" the end")
428 (buffer-substring-no-properties
429 (point-at-bol) (point-at-eol))))
430 (re-search-forward "\" ") (org-babel-execute-maybe)
431 (should (string= (concat test-line
" the the end")
432 (buffer-substring-no-properties
433 (point-at-bol) (point-at-eol))))
435 (should-error (org-ctrl-c-ctrl-c)))))
437 (ert-deftest test-ob
/inline-src_blk-results-file
()
438 (let ((test-line "src_emacs-lisp[ :results file ]{ \"~/test-file\" }"))
439 (org-test-with-temp-text
441 (org-babel-execute-maybe)
442 (should (string= (concat test-line
" {{{results([[file:~/test-file]])}}}")
443 (buffer-substring-no-properties
444 (point-min) (point-max)))))))
446 (ert-deftest test-ob
/inline-src_blk-results-scalar
()
447 (let ((test-line "src_emacs-lisp[ :results scalar ]{ \"x\" }")
448 (org-babel-inline-result-wrap "=%s="))
449 (org-test-with-temp-text
451 (org-babel-execute-maybe)
452 (should (string= (concat test-line
" {{{results(=\"x\"=)}}}")
453 (buffer-substring-no-properties
454 (point-min) (point-max)))))))
456 (ert-deftest test-ob
/inline-src_blk-results-verbatim
()
457 (let ((test-line "src_emacs-lisp[ :results verbatim ]{ \"x\" }")
458 (org-babel-inline-result-wrap "=%s="))
459 (org-test-with-temp-text
461 (org-babel-execute-maybe)
462 (should (string= (concat test-line
" {{{results(=\"x\"=)}}}")
463 (buffer-substring-no-properties
464 (point-min) (point-max)))))))
466 (ert-deftest test-ob
/combining-scalar-and-raw-result-types
()
467 (org-test-with-temp-text-in-file "
469 #+begin_src sh :results scalar
470 echo \"[[file:./cv.cls]]\"
476 #+begin_src sh :results raw scalar
477 echo \"[[file:./cv.cls]]\"
480 (cl-flet ((next-result ()
481 (org-babel-next-src-block)
482 (org-babel-execute-src-block)
483 (goto-char (org-babel-where-is-src-block-result))
485 (goto-char (point-min))
487 (should (eq (org-element-type (org-element-at-point)) 'fixed-width
))
490 (eq (org-element-type (org-element-at-point)) 'fixed-width
)))))
492 (ert-deftest test-ob
/no-defaut-value-for-var
()
493 "Test that the absence of a default value for a variable DOES THROW
495 (org-test-at-id "f2df5ba6-75fa-4e6b-8441-65ed84963627"
496 (org-babel-next-src-block)
498 (should-error (org-babel-execute-src-block) :type
'error
)))
502 "Variable \"x\" must be assigned a default value")
505 (ert-deftest test-ob
/just-one-results-block
()
506 "Test that evaluating two times the same code block does not result in a
507 duplicate results block."
508 (org-test-with-temp-text "#+begin_src sh\necho Hello\n#+end_src\n"
509 (org-babel-execute-src-block)
510 (org-babel-execute-src-block) ; second code block execution
511 (should (search-forward "Hello")) ; the string inside the source code block
512 (should (search-forward "Hello")) ; the same string in the results block
513 (should-error (search-forward "Hello"))))
515 (ert-deftest test-ob
/nested-code-block
()
516 "Test nested code blocks inside code blocks don't cause problems."
518 (string= "#+begin_src emacs-lisp\n 'foo\n#+end_src"
519 (org-test-with-temp-text "#+begin_src org :results silent
520 ,#+begin_src emacs-lisp
524 (let ((org-edit-src-content-indentation 2)
525 (org-src-preserve-indentation nil
))
526 (org-babel-execute-src-block))))))
528 (ert-deftest test-ob
/partial-nested-code-block
()
529 "Test nested code blocks inside code blocks don't cause problems."
530 (org-test-with-temp-text "#+begin_src org :results silent
531 ,#+begin_src emacs-lisp
533 (should (string= "#+begin_src emacs-lisp" (org-babel-execute-src-block)))))
535 (ert-deftest test-ob
/does-not-replace-a-block-with-the-results
()
536 (org-test-with-temp-text "#+NAME: foo
537 #+BEGIN_SRC emacs-lisp
540 (org-babel-next-src-block 1)
541 (should (eq 'foo
(org-babel-execute-src-block)))
542 (goto-char (point-min))
543 (org-babel-next-src-block 1)
544 (should (looking-at org-babel-src-block-regexp
))))
546 (ert-deftest test-ob
/catches-all-references
()
547 (org-test-with-temp-text "
548 #+NAME: literal-example
554 #+NAME: read-literal-example
555 #+BEGIN_SRC emacs-lisp :var x=literal-example
556 (concatenate 'string x \" for me.\")
558 (org-babel-next-src-block 1)
559 (should (string= (org-babel-execute-src-block)
560 "A literal example\non two lines\n for me."))))
562 (ert-deftest test-ob
/ignore-reference-in-commented-headings
()
565 (org-test-with-temp-text
577 <point>#+BEGIN_SRC emacs-lisp :var x=n
580 (org-babel-execute-src-block)))))
582 (ert-deftest test-ob
/do-not-resolve-to-partial-names-data
()
583 (org-test-with-temp-text "
592 #+begin_src emacs-lisp :var x=base
595 (org-babel-next-src-block 1)
596 (should (equal (org-babel-execute-src-block) '((3) (4))))))
598 (ert-deftest test-ob
/do-not-resolve-to-partial-names-code
()
599 (org-test-with-temp-text "
601 #+begin_src emacs-lisp
606 #+begin_src emacs-lisp
610 #+begin_src emacs-lisp :var x=base
613 (org-babel-next-src-block 3)
614 (should (equal (org-babel-execute-src-block) "foo"))))
616 (ert-deftest test-ob
/allow-spaces-around-
=-in-var-specs
()
617 (org-test-with-temp-text "#+begin_src emacs-lisp :var a = 1 b = 2 c= 3 d =4
621 (should (= 10 (org-babel-execute-src-block)))))
623 (ert-deftest test-ob
/org-babel-update-intermediate
()
624 (org-test-with-temp-text "#+name: foo
625 #+begin_src emacs-lisp
632 #+begin_src emacs-lisp :var it=foo
635 (let ((org-babel-update-intermediate nil
))
636 (goto-char (point-min))
637 (org-babel-next-src-block 2)
638 (should (= 3 (org-babel-execute-src-block)))
639 (goto-char (point-min))
641 (should (looking-at ": 4")))
642 (let ((org-babel-update-intermediate t
))
643 (goto-char (point-min))
644 (org-babel-next-src-block 2)
645 (should (= 3 (org-babel-execute-src-block)))
646 (goto-char (point-min))
648 (should (looking-at ": 2")))))
650 (ert-deftest test-ob
/eval-header-argument
()
651 (cl-flet ((check-eval (eval runp
)
652 (org-test-with-temp-text (format "#+begin_src emacs-lisp :eval %s
655 (let ((foo :not-run
))
657 (progn (should (org-babel-execute-src-block))
658 (should (eq foo
:evald
)))
659 (progn (should-not (org-babel-execute-src-block))
660 (should-not (eq foo
:evald
))))))))
661 (check-eval "never" nil
)
662 (check-eval "no" nil
)
663 (check-eval "never-export" t
)
664 (check-eval "no-export" t
)
665 (let ((org-babel-exp-reference-buffer (current-buffer)))
666 (check-eval "never" nil
)
667 (check-eval "no" nil
)
668 (check-eval "never-export" nil
)
669 (check-eval "no-export" nil
))))
671 (ert-deftest test-ob
/noweb-expansion-1
()
672 (org-test-with-temp-text "#+begin_src sh :results output :tangle yes
680 (should (string= (org-babel-expand-noweb-references) "bar"))))
682 (ert-deftest test-ob
/noweb-expansion-2
()
683 (org-test-with-temp-text "#+begin_src sh :results output :tangle yes
688 #+begin_src sh :noweb-sep \"\"
692 #+begin_src sh :noweb-ref foo :noweb-sep \"\"
695 (should (string= (org-babel-expand-noweb-references) "barbaz"))))
697 (ert-deftest test-ob
/splitting-variable-lists-in-references
()
698 (org-test-with-temp-text ""
699 (should (= 1 (length (org-babel-ref-split-args
700 "a=\"this, no work\""))))
701 (should (= 2 (length (org-babel-ref-split-args
702 "a=\"this, no work\", b=1"))))))
704 (ert-deftest test-ob
/balanced-split
()
705 "Test `org-babel-balanced-split' specifications."
707 '(":a 1" "b [2 3]" "c (4 :d (5 6))")
708 (org-babel-balanced-split ":a 1 :b [2 3] :c (4 :d (5 6))"
710 ;; Handle un-balanced parens.
712 (equal '(":foo ((6)" "bar 1")
713 (org-babel-balanced-split ":foo ((6) :bar 1" '((32 9) .
58))))
715 (equal '(":foo \"(foo\"" "bar 2")
716 (org-babel-balanced-split ":foo \"(foo\" :bar 2" '((32 9) .
58))))
717 ;; Handle un-balanced quotes.
719 (equal '(":foo \"1" "bar 3")
720 (org-babel-balanced-split ":foo \"1 :bar 3" '((32 9) .
58))))
721 ;; Handle empty string.
723 (equal '(":foo \"\"")
724 (org-babel-balanced-split ":foo \"\"" '((32 9) .
58))))
725 ;; Handle control characters within double quotes.
727 (equal '(":foo \"\\n\"")
728 (org-babel-balanced-split ":foo \"\\n\"" '((32 9) .
58)))))
730 (ert-deftest test-ob
/commented-last-block-line-no-var
()
731 (org-test-with-temp-text-in-file "
732 #+begin_src emacs-lisp
735 (org-babel-next-src-block)
736 (org-babel-execute-maybe)
737 (should (re-search-forward "\\#\\+results:" nil t
))
742 (buffer-substring-no-properties (point-at-bol) (point-at-eol)))))
743 (org-test-with-temp-text-in-file "
744 #+begin_src emacs-lisp
747 (org-babel-next-src-block)
748 (org-babel-execute-maybe)
749 (should (re-search-forward "\\#\\+results:" nil t
))
754 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))))
756 (ert-deftest test-ob
/commented-last-block-line-with-var
()
757 (org-test-with-temp-text-in-file "
758 #+begin_src emacs-lisp :var a=1
761 (org-babel-next-src-block)
762 (org-babel-execute-maybe)
763 (re-search-forward "\\#\\+results:" nil t
)
767 (buffer-substring-no-properties (point-at-bol) (point-at-eol)))))
768 (org-test-with-temp-text-in-file "
769 #+begin_src emacs-lisp :var a=2
772 (org-babel-next-src-block)
773 (org-babel-execute-maybe)
774 (re-search-forward "\\#\\+results:" nil t
)
778 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))))
780 (ert-deftest test-ob
/org-babel-insert-result
()
781 "Test `org-babel-insert-result' specifications."
782 ;; Do not error when output is an improper list.
784 (org-test-with-temp-text
786 <point>#+BEGIN_SRC emacs-lisp
790 (org-babel-execute-maybe) t
))
791 ;; Escape headlines when producing an example block.
794 ",\\* Not an headline"
795 (org-test-with-temp-text
797 <point>#+BEGIN_SRC emacs-lisp
798 \"* Not an headline\"
801 (let ((org-babel-min-lines-for-block-output 1)) (org-babel-execute-maybe))
803 ;; Escape special syntax in example blocks.
807 (org-test-with-temp-text
809 <point>#+BEGIN_SRC emacs-lisp
813 (let ((org-babel-min-lines-for-block-output 1)) (org-babel-execute-maybe))
815 ;; No escaping is done with other blocks or raw type.
818 ",\\* Not an headline"
819 (org-test-with-temp-text
821 <point>#+BEGIN_SRC emacs-lisp
822 \"* Not an headline\"
825 (let ((org-babel-min-lines-for-block-output 10))
826 (org-babel-execute-maybe))
830 ",\\* Not an headline"
831 (org-test-with-temp-text
833 <point>#+BEGIN_SRC emacs-lisp :results raw
834 \"* Not an headline\"
837 (org-babel-execute-maybe)
841 ",\\* Not an headline"
842 (org-test-with-temp-text
844 <point>#+BEGIN_SRC emacs-lisp :results drawer
845 \"* Not an headline\"
848 (org-babel-execute-maybe)
851 (ert-deftest test-ob
/remove-inline-result
()
852 "Test `org-babel-remove-inline-result' honors whitespace."
854 ((inline-sb "src_emacs-lisp{(+ 1 2)}")
855 (inline-res " {{{results(=3=)}}}")
856 (inline-sb-dot (concat inline-sb
"."))
857 (inline-sb-res-dot (concat inline-sb inline-res
".")))
858 (org-test-with-temp-text
859 ;; Insert inline_src_block followed by dot.
861 ;; Insert result before dot.
862 (org-babel-execute-maybe)
863 (should (string= inline-sb-res-dot
864 (buffer-substring-no-properties
865 (point-at-bol) (point-at-eol))))
866 ;; Delete whitespace and result.
867 (org-babel-remove-inline-result)
868 (should (string= inline-sb-dot
869 (buffer-substring-no-properties
870 (point-at-bol) (point-at-eol))))
871 ;; Add whitespace and result before dot.
872 (search-forward inline-sb
)
873 (insert " " inline-res
)
874 (goto-char (point-at-bol))
875 ;; Remove whitespace and result.
876 (org-babel-remove-inline-result)
877 (should (string= inline-sb-dot
878 (buffer-substring-no-properties
879 (point-at-bol) (point-at-eol))))
880 ;; Add whitespace before dot.
881 (search-forward inline-sb
)
883 (goto-char (point-at-bol))
884 ;; Add result before whitespace.
885 (org-babel-execute-maybe)
886 ;; Remove result - leave trailing whitespace and dot.
887 (org-babel-remove-inline-result)
888 (should (string= (concat inline-sb
" .")
889 (buffer-substring-no-properties
890 (point-at-bol) (point-at-eol)))))))
892 (ert-deftest test-ob
/org-babel-remove-result--results-default
()
893 "Test `org-babel-remove-result' with default :results."
894 (mapcar (lambda (language)
895 (test-ob-verify-result-and-removed-result
898 "* org-babel-remove-result
899 #+begin_src " language
"
903 '("sh" "emacs-lisp")))
905 (ert-deftest test-ob
/org-babel-results-indented-wrap
()
906 "Ensure that wrapped results are inserted correction when indented.
907 If not inserted correctly then the second evaluation will fail
908 trying to find the :END: marker."
909 (org-test-with-temp-text
911 #+begin_src sh :results file wrap
914 (org-babel-next-src-block 1)
915 (org-babel-execute-src-block)
916 (org-babel-execute-src-block)))
918 (ert-deftest test-ob
/file-desc-header-argument
()
919 "Test that the :file-desc header argument is used."
920 (org-test-with-temp-text "#+begin_src emacs-lisp :results file :file-desc bar
924 #+begin_src emacs-lisp :results file :file-desc
927 (org-babel-execute-src-block)
928 (org-babel-next-src-block 1)
929 (org-babel-execute-src-block)
930 (goto-char (point-min))
931 (should (search-forward "[[file:foo][bar]]" nil t
))
932 (should (search-forward "[[file:foo][foo]]" nil t
))))
934 (ert-deftest test-ob
/inline-src_blk-preceded-punct-preceded-by-point
()
935 (let ((test-line ".src_emacs-lisp[ :results verbatim ]{ \"x\" }")
936 (org-babel-inline-result-wrap "=%s="))
937 (org-test-with-temp-text
940 (org-babel-execute-maybe)
941 (should (re-search-forward "=\"x\"=" nil t
))
944 (ert-deftest test-ob
/commented-last-block-line-with-var
()
945 (org-test-with-temp-text-in-file "
946 #+begin_src emacs-lisp :var a=1
949 (org-babel-next-src-block)
950 (org-babel-execute-maybe)
951 (re-search-forward "\\#\\+results:" nil t
)
955 (buffer-substring-no-properties (point-at-bol) (point-at-eol)))))
956 (org-test-with-temp-text-in-file "
957 #+begin_src emacs-lisp :var a=2
960 (org-babel-next-src-block)
961 (org-babel-execute-maybe)
962 (re-search-forward "\\#\\+results:" nil t
)
966 (buffer-substring-no-properties (point-at-bol) (point-at-eol))))))
968 (defun test-ob-verify-result-and-removed-result (result buffer-text
)
969 "Test helper function to test `org-babel-remove-result'.
970 A temp buffer is populated with BUFFER-TEXT, the first block is executed,
971 and the result of execution is verified against RESULT.
973 The block is actually executed /twice/ to ensure result
974 replacement happens correctly."
975 (org-test-with-temp-text
977 (org-babel-next-src-block) (org-babel-execute-maybe) (org-babel-execute-maybe)
978 (should (re-search-forward "\\#\\+results:" nil t
))
980 (should (string= result
981 (buffer-substring-no-properties
983 (- (point-max) 16))))
984 (org-babel-previous-src-block) (org-babel-remove-result)
985 (should (string= buffer-text
986 (buffer-substring-no-properties
987 (point-min) (point-max))))))
989 (ert-deftest test-ob
/org-babel-remove-result--results-list
()
990 "Test `org-babel-remove-result' with :results list."
991 (test-ob-verify-result-and-removed-result
997 "* org-babel-remove-result
998 #+begin_src emacs-lisp :results list
1004 (ert-deftest test-ob
/org-babel-remove-result--results-wrap
()
1005 "Test `org-babel-remove-result' with :results wrap."
1006 (test-ob-verify-result-and-removed-result
1011 "* org-babel-remove-result
1013 #+begin_src emacs-lisp :results wrap
1019 (ert-deftest test-ob
/org-babel-remove-result--results-org
()
1020 "Test `org-babel-remove-result' with :results org."
1021 (test-ob-verify-result-and-removed-result
1028 "* org-babel-remove-result
1029 #+begin_src emacs-lisp :results org
1037 (ert-deftest test-ob
/org-babel-remove-result--results-html
()
1038 "Test `org-babel-remove-result' with :results html."
1039 (test-ob-verify-result-and-removed-result
1040 "#+BEGIN_EXPORT html
1041 <head><body></body></head>
1044 "* org-babel-remove-result
1045 #+begin_src emacs-lisp :results html
1046 \"<head><body></body></head>\"
1051 (ert-deftest test-ob
/org-babel-remove-result--results-latex
()
1052 "Test `org-babel-remove-result' with :results latex."
1053 (test-ob-verify-result-and-removed-result
1054 "#+BEGIN_EXPORT latex
1060 "* org-babel-remove-result
1061 #+begin_src emacs-lisp :results latex
1069 (ert-deftest test-ob
/org-babel-remove-result--results-code
()
1070 "Test `org-babel-remove-result' with :results code."
1072 (test-ob-verify-result-and-removed-result
1073 "#+BEGIN_SRC emacs-lisp
1077 "* org-babel-remove-result
1078 #+begin_src emacs-lisp :results code
1079 (message \"I am working!\")
1084 (ert-deftest test-ob
/org-babel-remove-result--results-pp
()
1085 "Test `org-babel-remove-result' with :results pp."
1086 (test-ob-verify-result-and-removed-result
1087 ": \"I /am/ working!\""
1089 "* org-babel-remove-result
1090 #+begin_src emacs-lisp :results pp
1091 \"I /am/ working!\")
1096 (ert-deftest test-ob
/org-babel-remove-result--no-blank-line
()
1097 "Test `org-babel-remove-result' without blank line between code and results."
1100 #+begin_src emacs-lisp
1106 (org-test-with-temp-text
1108 <point>#+begin_src emacs-lisp
1114 (org-babel-execute-maybe)
1117 (ert-deftest test-ob
/results-do-not-replace-code-blocks
()
1118 (org-test-with-temp-text "Block two has a space after the name.
1121 #+begin_src emacs-lisp
1126 #+begin_src emacs-lisp
1131 #+begin_src emacs-lisp
1138 (dolist (num '(1 2 3))
1139 ;; execute the block
1140 (goto-char (point-min))
1141 (org-babel-next-src-block num
) (org-babel-execute-src-block)
1142 ;; check the results
1143 (goto-char (point-max))
1144 (move-beginning-of-line 0)
1145 (should (looking-at (format ": %d" num
))))))
1147 (ert-deftest test-ob
/blocks-with-spaces
()
1148 "Test expansion of blocks followed by blank lines."
1149 ;; Preserve number of blank lines after block.
1151 (equal "#+BEGIN_SRC emacs-lisp
1157 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp
1160 (let ((org-babel-next-src-block "RESULTS"))
1161 (org-babel-execute-src-block))
1163 ;; Do not add spurious blank lines after results.
1169 #+begin_src emacs-lisp
1177 (org-test-with-temp-text "
1180 #+begin_src emacs-lisp<point>
1185 (org-babel-execute-src-block)
1192 #+begin_src emacs-lisp
1200 (org-test-with-temp-text "
1203 #+begin_src emacs-lisp<point>
1211 (org-babel-execute-src-block)
1214 (ert-deftest test-ob
/results-in-narrowed-buffer
()
1215 "Test block execution in a narrowed buffer."
1216 ;; If results don't exist, they should be inserted in visible part
1220 "#+BEGIN_SRC emacs-lisp\n(+ 1 2)\n#+END_SRC\n\n#+RESULTS:\n: 3"
1221 (org-test-with-temp-text
1222 "#+BEGIN_SRC emacs-lisp\n(+ 1 2)\n#+END_SRC\n\nParagraph"
1223 (narrow-to-region (point) (save-excursion (forward-line 3) (point)))
1224 (let ((org-babel-results-keyword "RESULTS"))
1225 (org-babel-execute-src-block))
1226 (org-trim (buffer-string)))))
1229 "#+NAME: test\n#+BEGIN_SRC emacs-lisp\n(+ 1 2)\n#+END_SRC\n\n#+RESULTS: test\n: 3"
1230 (org-test-with-temp-text
1231 "#+NAME: test\n#+BEGIN_SRC emacs-lisp\n(+ 1 2)\n#+END_SRC\n\nParagraph"
1232 (narrow-to-region (point) (save-excursion (forward-line 4) (point)))
1233 (let ((org-babel-results-keyword "RESULTS"))
1234 (org-babel-execute-src-block))
1235 (org-trim (buffer-string)))))
1236 ;; Results in visible part of buffer, should be updated here.
1240 #+BEGIN_SRC emacs-lisp
1246 (org-test-with-temp-text
1248 #+BEGIN_SRC emacs-lisp
1256 (narrow-to-region (point-min) (point))
1257 (goto-char (point-min))
1258 (let ((org-babel-results-keyword "RESULTS"))
1259 (org-babel-execute-src-block))
1260 (org-trim (buffer-string)))))
1261 ;; Results in invisible part of buffer, should be updated there.
1262 (org-test-with-temp-text
1264 #+BEGIN_SRC emacs-lisp
1272 (narrow-to-region (point) (save-excursion (forward-line 4) (point)))
1273 (let ((org-babel-results-keyword "RESULTS"))
1274 (org-babel-execute-src-block))
1275 (should-not (re-search-forward "^#\\+RESULTS:" nil t
))
1277 (should (re-search-forward "^: 3" nil t
))))
1279 (ert-deftest test-ob
/specific-colnames
()
1280 "Test passing specific column names."
1282 (equal "#+name: input-table
1288 #+begin_src sh :var data=input-table :exports results :colnames '(Rev Author)
1298 (org-test-with-temp-text
1299 "#+name: input-table
1305 #+begin_src sh :var data=input-table :exports results :colnames '(Rev Author)
1309 ;; we should find a code block
1310 (should (re-search-forward org-babel-src-block-regexp nil t
))
1311 (goto-char (match-beginning 0))
1312 ;; now that we've located the code block, it may be evaluated
1313 (let ((org-babel-execute-src-block "RESULTS"))
1314 (org-babel-execute-src-block))
1317 (ert-deftest test-ob
/location-of-header-arg-eval
()
1318 "Test location of header argument evaluation."
1319 (org-test-with-temp-text "
1321 #+begin_src emacs-lisp :var pt=(point)
1325 #+name: bottom-block
1326 #+begin_src emacs-lisp :var pt=top-block()
1330 ;; the value of the second block should be greater than the first
1332 (< (progn (re-search-forward org-babel-src-block-regexp nil t
)
1333 (goto-char (match-beginning 0))
1334 (prog1 (save-match-data (org-babel-execute-src-block))
1335 (goto-char (match-end 0))))
1336 (progn (re-search-forward org-babel-src-block-regexp nil t
)
1337 (goto-char (match-beginning 0))
1338 (org-babel-execute-src-block))))))
1340 (ert-deftest test-ob
/preserve-results-indentation
()
1341 "Preserve indentation when executing a src block."
1345 (org-test-with-temp-text " #+begin_src emacs-lisp\n(+ 1 1)\n #+end_src"
1346 (org-babel-execute-src-block)
1347 (let ((case-fold-search t
)) (search-forward "RESULTS"))
1348 (list (org-get-indentation)
1349 (progn (forward-line) (org-get-indentation))))))
1353 (org-test-with-temp-text
1354 " #+name: block\n #+begin_src emacs-lisp\n(+ 1 1)\n #+end_src"
1355 (org-babel-execute-src-block)
1356 (let ((case-fold-search t
)) (search-forward "RESULTS"))
1357 (list (org-get-indentation)
1358 (progn (forward-line) (org-get-indentation))))))
1359 ;; Don't get fooled by TAB-based indentation.
1363 (org-test-with-temp-text
1364 "\t #+begin_src emacs-lisp\n\t (+ 1 1)\n\t #+end_src"
1366 (org-babel-execute-src-block)
1367 (let ((case-fold-search t
)) (search-forward "RESULTS"))
1368 (list (org-get-indentation)
1369 (progn (forward-line) (org-get-indentation))))))
1370 ;; Properly indent examplified blocks.
1386 (org-test-with-temp-text
1387 " #+begin_src emacs-lisp :results output
1388 (dotimes (i 10) (princ i) (princ \"\\n\"))
1390 (org-babel-execute-src-block)
1391 (search-forward "begin_example")
1393 (buffer-substring-no-properties (line-beginning-position)
1395 ;; Properly indent "org" blocks.
1411 (org-test-with-temp-text
1412 " #+begin_src emacs-lisp :results output org
1413 (dotimes (i 10) (princ i) (princ \"\\n\"))
1415 (org-babel-execute-src-block)
1416 (search-forward "begin_src org")
1418 (buffer-substring-no-properties (line-beginning-position)
1421 (ert-deftest test-ob
/safe-header-args
()
1422 "Detect safe and unsafe header args."
1423 (let ((safe-args '((:cache .
"foo")
1424 (:results .
"output")
1427 (unsafe-args '((:eval .
"yes")
1428 (:results .
"output file")
1430 (malformed-args '((bar .
"foo")
1433 (safe-p (org-babel-header-args-safe-fn org-babel-safe-header-args
)))
1434 (dolist (arg safe-args
)
1435 (should (org-babel-one-header-arg-safe-p arg org-babel-safe-header-args
)))
1436 (dolist (arg unsafe-args
)
1437 (should (not (org-babel-one-header-arg-safe-p arg org-babel-safe-header-args
))))
1438 (dolist (arg malformed-args
)
1439 (should (not (org-babel-one-header-arg-safe-p arg org-babel-safe-header-args
))))
1440 (should (not (funcall safe-p
(append safe-args unsafe-args
))))))
1442 (ert-deftest test-ob
/noweb-expansions-in-cache
()
1443 "Ensure that noweb expansions are expanded before caching."
1444 (let ((noweb-expansions-in-cache-var 0))
1445 (org-test-with-temp-text "
1447 #+begin_src emacs-lisp
1452 #+begin_src emacs-lisp :noweb yes :cache yes
1453 (setq noweb-expansions-in-cache-var
1454 (+ 1 noweb-expansions-in-cache-var))
1455 (concat <<foo>> \" check noweb expansions\")
1458 ;; run the second block to create the cache
1459 (goto-char (point-min))
1460 (re-search-forward (regexp-quote "#+name: bar"))
1461 (should (string= "I said check noweb expansions"
1462 (org-babel-execute-src-block)))
1463 (should (= noweb-expansions-in-cache-var
1))
1464 ;; change the value of the first block
1465 (goto-char (point-min))
1466 (re-search-forward (regexp-quote "said"))
1467 (goto-char (match-beginning 0))
1469 (re-search-forward (regexp-quote "#+name: bar"))
1470 (should (string= "I haven't said check noweb expansions"
1471 (org-babel-execute-src-block)))
1472 (should (= noweb-expansions-in-cache-var
2)))))
1474 (ert-deftest test-ob
/file-ext-and-output-dir
()
1475 (org-test-at-id "93573e1d-6486-442e-b6d0-3fedbdc37c9b"
1476 (org-babel-next-src-block)
1477 (should (equal "file-ext-basic.txt"
1478 (cdr (assq :file
(nth 2 (org-babel-get-src-block-info t
))))))
1479 (org-babel-next-src-block)
1480 (should (equal "foo/file-ext-dir-relative.txt"
1481 (cdr (assq :file
(nth 2 (org-babel-get-src-block-info t
))))))
1482 (org-babel-next-src-block)
1483 (should (equal "foo/file-ext-dir-relative-slash.txt"
1484 (cdr (assq :file
(nth 2 (org-babel-get-src-block-info t
))))))
1485 (org-babel-next-src-block)
1486 (should (equal "/tmp/file-ext-dir-absolute.txt"
1487 (cdr (assq :file
(nth 2 (org-babel-get-src-block-info t
))))))
1488 (org-babel-next-src-block)
1489 (should (equal "foo.bar"
1490 (cdr (assq :file
(nth 2 (org-babel-get-src-block-info t
))))))
1491 (org-babel-next-src-block)
1492 (should (equal "xxx/foo.bar"
1493 (cdr (assq :file
(nth 2 (org-babel-get-src-block-info t
))))))
1496 (ert-deftest test-ob
/script-escape
()
1497 ;; Delimited lists of numbers
1498 (should (equal '(1 2 3)
1499 (org-babel-script-escape "[1 2 3]")))
1500 (should (equal '(1 2 3)
1501 (org-babel-script-escape "{1 2 3}")))
1502 (should (equal '(1 2 3)
1503 (org-babel-script-escape "(1 2 3)")))
1504 ;; Delimited lists of double-quoted strings
1505 (should (equal '("foo" "bar")
1506 (org-babel-script-escape "(\"foo\" \"bar\")")))
1507 (should (equal '("foo" "bar")
1508 (org-babel-script-escape "[\"foo\" \"bar\"]")))
1509 (should (equal '("foo" "bar")
1510 (org-babel-script-escape "{\"foo\" \"bar\"}")))
1512 (should (equal '("foo" "bar")
1513 (org-babel-script-escape "(\"foo\", \"bar\")")))
1514 (should (equal '("foo" "bar")
1515 (org-babel-script-escape "[\"foo\", \"bar\"]")))
1516 (should (equal '("foo" "bar")
1517 (org-babel-script-escape "{\"foo\", \"bar\"}")))
1518 ;; Delimited lists of single-quoted strings
1519 (should (equal '("foo" "bar")
1520 (org-babel-script-escape "('foo' 'bar')")))
1521 (should (equal '("foo" "bar")
1522 (org-babel-script-escape "['foo' 'bar']")))
1523 (should (equal '("foo" "bar")
1524 (org-babel-script-escape "{'foo' 'bar'}")))
1526 (should (equal '("foo" "bar")
1527 (org-babel-script-escape "('foo', 'bar')")))
1528 (should (equal '("foo" "bar")
1529 (org-babel-script-escape "['foo', 'bar']")))
1530 (should (equal '("foo" "bar")
1531 (org-babel-script-escape "{'foo', 'bar'}")))
1532 ;; Single quoted strings
1533 (should (equal "foo"
1534 (org-babel-script-escape "'foo'")))
1535 ;; ... with internal double quote
1536 (should (equal "foo\"bar"
1537 (org-babel-script-escape "'foo\"bar'")))
1538 ;; ... with internal backslash
1539 (should (equal "foo\\bar"
1540 (org-babel-script-escape "'foo\\bar'")))
1541 ;; ... with internal escaped backslash
1542 (should (equal "foo\\bar"
1543 (org-babel-script-escape "'foo\\\\bar'")))
1544 ;; ... with internal backslash-double quote
1545 (should (equal "foo\\\"bar"
1546 (org-babel-script-escape "'foo\\\"bar'")))
1547 ;; ... with internal escaped backslash-double quote
1548 (should (equal "foo\\\"bar"
1549 (org-babel-script-escape "'foo\\\\\"bar'")))
1550 ;; ... with internal escaped single quote
1551 (should (equal "foo'bar"
1552 (org-babel-script-escape "'foo\\'bar'")))
1553 ;; ... with internal escaped backslash-escaped single quote
1554 (should (equal "foo\\'bar"
1555 (org-babel-script-escape "'foo\\\\\\'bar'")))
1556 ;; Double quoted strings
1557 (should (equal "foo"
1558 (org-babel-script-escape "\"foo\"")))
1559 ;; ... with internal single quote
1560 (should (equal "foo'bar"
1561 (org-babel-script-escape "\"foo'bar\"")))
1562 ;; ... with internal backslash
1563 (should (equal "foo\\bar"
1564 (org-babel-script-escape "\"foo\\bar\"")))
1565 ;; ... with internal escaped backslash
1566 (should (equal "foo\\bar"
1567 (org-babel-script-escape "\"foo\\\\bar\"")))
1568 ;; ... with internal backslash-single quote
1569 (should (equal "foo\\'bar"
1570 (org-babel-script-escape "\"foo\\'bar\"")))
1571 ;; ... with internal escaped backslash-single quote
1572 (should (equal "foo\\'bar"
1573 (org-babel-script-escape "\"foo\\\\'bar\"")))
1574 ;; ... with internal escaped double quote
1575 (should (equal "foo\"bar"
1576 (org-babel-script-escape "\"foo\\\"bar\"")))
1577 ;; ... with internal escaped backslash-escaped double quote
1578 (should (equal "foo\\\"bar"
1579 (org-babel-script-escape "\"foo\\\\\\\"bar\""))))
1581 (ert-deftest test-ob
/process-params-no-duplicates
()
1583 (equal (org-babel-process-params '((:colname-names
)
1587 (:var .
"\"foo\"")))
1592 (:result-type . value
)))))
1594 (defun org-test-babel-confirm-evaluate (eval-value)
1595 (org-test-with-temp-text (format "#+begin_src emacs-lisp :eval %s
1597 #+end_src" eval-value
)
1598 (goto-char (point-min))
1599 (let ((info (org-babel-get-src-block-info)))
1600 (org-babel-check-confirm-evaluate info
))))
1602 (ert-deftest test-ob
/check-eval
()
1603 (let ((org-confirm-babel-evaluate t
))
1605 (dolist (pair '(("no" . nil
)
1609 (should (eq (org-test-babel-confirm-evaluate (car pair
)) (cdr pair
))))
1611 (let ((org-babel-exp-reference-buffer t
))
1612 (dolist (pair '(("no" . nil
)
1616 ("never-export" . nil
)
1618 ("query-export" . query
)))
1619 (message (car pair
))
1620 (should (eq (org-test-babel-confirm-evaluate (car pair
)) (cdr pair
))))))
1621 (let ((org-confirm-babel-evaluate nil
))
1623 (dolist (pair '(("no" . nil
)
1627 (should (eq (org-test-babel-confirm-evaluate (car pair
)) (cdr pair
))))
1629 (let ((org-babel-exp-reference-buffer t
))
1630 (dolist (pair '(("no" . nil
)
1634 ("never-export" . nil
)
1636 ("query-export" . query
)))
1637 (message (car pair
))
1638 (should (eq (org-test-babel-confirm-evaluate (car pair
)) (cdr pair
)))))))
1640 (defun org-test-ob/update-block-body
()
1641 "Test `org-babel-update-block-body' specifications."
1643 (equal "#+begin_src elisp\n 2\n#+end_src"
1644 (let ((org-edit-src-content-indentation 2))
1645 (org-test-with-temp-text "#+begin_src elisp\n(+ 1 1)\n#+end_src"
1646 (org-babel-update-block-body "2")
1648 ;; Preserve block indentation.
1650 (equal " #+begin_src elisp\n 2\n #+end_src"
1651 (let ((org-edit-src-content-indentation 1))
1652 (org-test-with-temp-text
1653 " #+begin_src elisp\n (+ 1 1)\n #+end_src"
1654 (org-babel-update-block-body "2")
1656 ;; Ignore NEW-BODY global indentation.
1658 (equal "#+begin_src elisp\n 2\n#+end_src"
1659 (let ((org-edit-src-content-indentation 2))
1660 (org-test-with-temp-text "#+begin_src elisp\n(+ 1 1)\n#+end_src"
1661 (org-babel-update-block-body " 2")
1663 ;; When indentation should be preserved ignore the two rules above.
1665 (equal " #+begin_src elisp\n2\n #+end_src"
1666 (let ((org-edit-src-content-indentation 1)
1667 (org-src-preserve-indentation t
))
1668 (org-test-with-temp-text
1669 " #+begin_src elisp\n (+ 1 1)\n #+end_src"
1670 (org-babel-update-block-body "2")
1673 (equal " #+begin_src elisp -i\n2\n #+end_src"
1674 (let ((org-edit-src-content-indentation 1))
1675 (org-test-with-temp-text
1676 " #+begin_src elisp -i\n (+ 1 1)\n #+end_src"
1677 (org-babel-update-block-body "2")
1680 (equal "#+begin_src elisp\n 2\n#+end_src"
1681 (let ((org-edit-src-content-indentation 2)
1682 (org-src-preserve-indentation t
))
1683 (org-test-with-temp-text "#+begin_src elisp\n(+ 1 1)\n#+end_src"
1684 (org-babel-update-block-body " 2")
1687 (equal "#+begin_src elisp -i\n 2\n#+end_src"
1688 (let ((org-edit-src-content-indentation 2)
1689 (org-src-preserve-indentation t
))
1690 (org-test-with-temp-text "#+begin_src elisp -i\n(+ 1 1)\n#+end_src"
1691 (org-babel-update-block-body " 2")
1692 (buffer-string))))))
1694 (ert-deftest test-ob
/find-named-result
()
1695 "Test `org-babel-find-named-result' specifications."
1698 (org-test-with-temp-text "#+results: foo\n: result"
1699 (org-babel-find-named-result "foo"))))
1701 (org-test-with-temp-text "#+results: foo\n: result"
1702 (org-babel-find-named-result "bar")))
1704 (org-test-with-temp-text "#+results: foobar\n: result"
1705 (org-babel-find-named-result "foo")))
1706 ;; Search is case insensitive.
1708 (org-test-with-temp-text "#+RESULTS: FOO\n: result"
1709 (org-babel-find-named-result "foo")))
1710 ;; Handle hash in results keyword.
1712 (org-test-with-temp-text "#+results[hash]: FOO\n: result"
1713 (org-babel-find-named-result "foo")))
1714 ;; Accept orphaned affiliated keywords.
1716 (org-test-with-temp-text "#+results: foo"
1717 (org-babel-find-named-result "foo"))))
1719 (ert-deftest test-ob
/where-is-src-block-result
()
1720 "Test `org-babel-where-is-src-block-result' specifications."
1721 ;; Find anonymous results.
1724 (org-test-with-temp-text
1725 "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC\n\n#+RESULTS:\n: 2"
1726 (goto-char (org-babel-where-is-src-block-result))
1727 (buffer-substring-no-properties (point) (line-end-position)))))
1728 ;; Find named results. Those have priority over anonymous ones.
1730 (equal "#+RESULTS: example"
1731 (org-test-with-temp-text
1733 <point>#+NAME: example
1734 #+BEGIN_SRC emacs-lisp
1740 (goto-char (org-babel-where-is-src-block-result))
1741 (buffer-substring-no-properties (point) (line-end-position)))))
1743 (equal "#+RESULTS: example"
1744 (org-test-with-temp-text
1746 <point>#+NAME: example
1747 #+BEGIN_SRC emacs-lisp
1756 (goto-char (org-babel-where-is-src-block-result))
1757 (buffer-substring-no-properties (point) (line-end-position)))))
1758 ;; Return nil when no result is found.
1760 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
1761 (org-babel-where-is-src-block-result)))
1763 (org-test-with-temp-text
1764 "- item\n #+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC\n\n"
1765 (org-babel-where-is-src-block-result)))
1766 ;; When optional argument INSERT is non-nil, add RESULTS keyword
1767 ;; whenever no RESULTS can be found.
1771 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
1772 (let ((org-babel-results-keyword "RESULTS"))
1773 (goto-char (org-babel-where-is-src-block-result t
)))
1774 (buffer-substring-no-properties (point) (line-end-position)))))
1775 ;; Insert a named RESULTS keyword if possible.
1779 (org-test-with-temp-text
1780 "#+NAME: e\n#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
1781 (let ((org-babel-results-keyword "RESULTS"))
1782 (goto-char (org-babel-where-is-src-block-result t
)))
1783 (buffer-substring-no-properties (point) (line-end-position)))))
1784 ;; When optional argument HASH is provided, clear RESULTS keyword
1785 ;; and related contents if they do not match it.
1789 (org-test-with-temp-text
1790 "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC\n\n#+RESULTS[aaaa]:\n: 3"
1791 (let ((org-babel-results-keyword "RESULTS"))
1792 (goto-char (org-babel-where-is-src-block-result nil nil
"bbbb")))
1793 (org-trim (buffer-substring-no-properties (point) (point-max))))))
1797 (org-test-with-temp-text
1798 "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC\n\n#+RESULTS[aaaa]:"
1799 (let ((org-babel-results-keyword "RESULTS"))
1800 (goto-char (org-babel-where-is-src-block-result nil nil
"bbbb")))
1801 (org-trim (buffer-substring-no-properties (point) (point-max))))))
1802 ;; Handle hashes with times.
1805 "#+RESULTS[<2014-03-04 00:41:10> bbbb]:"
1806 (org-test-with-temp-text
1808 <point>#+BEGIN_SRC emacs-lisp
1812 #+RESULTS[<2012-03-29 16:40:12> aaaa]:"
1813 (let ((org-babel-results-keyword "RESULTS")
1814 (org-babel-hash-show-time t
))
1815 (cl-letf (((symbol-function 'format-time-string
)
1816 (lambda (&rest _
) "<2014-03-04 00:41:10>")))
1817 (goto-char (org-babel-where-is-src-block-result nil nil
"bbbb"))
1818 (org-trim (buffer-substring-no-properties (point) (point-max))))))))
1821 "#+RESULTS[<2012-03-29 16:40:12> aaaa]:"
1822 (org-test-with-temp-text
1824 <point>#+BEGIN_SRC emacs-lisp
1828 #+RESULTS[<2012-03-29 16:40:12> aaaa]:"
1829 (let ((org-babel-results-keyword "RESULTS")
1830 (org-babel-hash-show-time t
))
1831 (cl-letf (((symbol-function 'format-time-string
)
1832 (lambda (&rest _
) "<2014-03-04 00:41:10>")))
1833 (goto-char (org-babel-where-is-src-block-result nil nil
"aaaa"))
1834 (org-trim (buffer-substring-no-properties (point) (point-max))))))))
1835 ;; RESULTS keyword may not be the last affiliated keyword.
1839 (org-test-with-temp-text
1841 <point>#+BEGIN_SRC emacs-lisp
1848 (let ((org-babel-results-keyword "RESULTS"))
1849 (goto-char (org-babel-where-is-src-block-result nil nil
"bbbb")))
1850 (org-trim (buffer-substring-no-properties (point) (point-max))))))
1851 ;; HASH does nothing if no RESULTS can be found. However, if INSERT
1852 ;; is also non-nil, RESULTS keyword is inserted along with the
1856 "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
1857 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
1858 (org-babel-where-is-src-block-result nil nil
"bbbb")
1863 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
1864 (let ((org-babel-results-keyword "RESULTS"))
1865 (goto-char (org-babel-where-is-src-block-result t nil
"bbbb")))
1866 (org-trim (buffer-substring-no-properties (point) (point-max)))))))
1868 (ert-deftest test-ob
/goto-named-src-block
()
1869 "Test interactive use of `org-babel-goto-named-src-block'."
1870 (org-test-with-temp-text-in-file
1873 #+BEGIN_SRC emacs-lisp :results value
1876 #+CALL: abc( lorem() ) :results raw :wrap EXAMPLE
1877 #+BEGIN_SRC emacs-lisp
1884 ;; non-existent name
1886 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\nno-name\n"))
1888 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\nabc\n")
1889 (should (= 14 (point)))
1890 ;; call line - autocompletion
1892 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\n\n")
1893 (should (= 14 (point)))
1894 ;; noweb reference - autocompletion
1896 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\n\n")
1897 (should (= 14 (point)))
1898 ;; at symbol - autocompletion
1900 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\n\n")
1901 (should (= 14 (point)))
1902 ;; in results - autocompletion
1904 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\n\n")
1905 (should (= 14 (point)))
1907 (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\n\n")
1908 (should (= 14 (point)))))
1910 (ert-deftest test-ob
/evaluate-body-with-coderefs
()
1913 (org-test-with-temp-text
1914 "#+begin_src emacs-lisp -l \"#(ref:%s)\"\n2 #(ref:foo)\n#+end_src"
1915 (org-babel-execute-src-block))))
1918 (org-test-with-temp-text
1919 "#+begin_src emacs-lisp\n3 #(ref:foo)\n#+end_src"
1920 (let ((org-coderef-label-format "#(ref:%s)"))
1921 (org-babel-execute-src-block))))))
1925 ;;; test-ob ends here