2014-01-31 11:02:03 -05:00
|
|
|
;;; test-ob-shell.el
|
2010-10-14 10:10:23 -04:00
|
|
|
|
2014-01-07 08:18:17 -05:00
|
|
|
;; Copyright (c) 2010-2014 Eric Schulte
|
2010-10-14 10:10:23 -04:00
|
|
|
;; Authors: Eric Schulte
|
|
|
|
|
2012-12-13 11:24:19 -05:00
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
|
|
|
|
;; 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/>.
|
|
|
|
|
|
|
|
;;; Comment:
|
2010-10-14 10:10:23 -04:00
|
|
|
|
2016-08-23 16:13:56 -04:00
|
|
|
;; Template test file for Org tests
|
2010-10-14 10:10:23 -04:00
|
|
|
|
|
|
|
;;; Code:
|
2012-08-03 15:34:04 -04:00
|
|
|
(org-test-for-executable "sh")
|
2013-12-13 11:54:28 -05:00
|
|
|
(unless (featurep 'ob-shell)
|
2014-01-31 11:02:03 -05:00
|
|
|
(signal 'missing-test-dependency "Support for Shell code blocks"))
|
2012-03-19 16:38:12 -04:00
|
|
|
|
2014-01-31 11:02:03 -05:00
|
|
|
(ert-deftest test-ob-shell/dont-insert-spaces-on-expanded-bodies ()
|
2010-10-14 10:10:23 -04:00
|
|
|
"Expanded shell bodies should not start with a blank line
|
|
|
|
unless the body of the tangled block does."
|
|
|
|
(should-not (string-match "^[\n\r][\t ]*[\n\r]"
|
2010-10-20 16:36:20 -04:00
|
|
|
(org-babel-expand-body:generic "echo 2" '())))
|
2010-10-14 10:10:23 -04:00
|
|
|
(should (string-match "^[\n\r][\t ]*[\n\r]"
|
2010-10-20 16:36:20 -04:00
|
|
|
(org-babel-expand-body:generic "\n\necho 2" '()))))
|
2010-10-14 10:10:23 -04:00
|
|
|
|
2014-01-31 11:02:03 -05:00
|
|
|
(ert-deftest test-ob-shell/dont-error-on-empty-results ()
|
2010-10-15 11:25:33 -04:00
|
|
|
"Was throwing an elisp error when shell blocks threw errors and
|
|
|
|
returned empty results."
|
|
|
|
(should (null (org-babel-execute:sh "ls NoSuchFileOrDirectory.txt" nil))))
|
|
|
|
|
2014-01-31 11:02:03 -05:00
|
|
|
(ert-deftest test-ob-shell/session ()
|
2012-07-31 10:18:50 -04:00
|
|
|
"This also tests `org-babel-comint-with-output' in
|
|
|
|
ob-comint.el, which was not previously tested."
|
|
|
|
(let ((res (org-babel-execute:sh "echo 1; echo 2" '((:session . "yes")))))
|
|
|
|
(should res)
|
|
|
|
(should (listp res))))
|
|
|
|
|
2014-04-11 17:27:02 -04:00
|
|
|
; A list of tests using the samples in ob-shell-test.org
|
|
|
|
(ert-deftest ob-shell/generic-uses-no-arrays ()
|
|
|
|
"No arrays for generic"
|
|
|
|
(org-test-at-id "0ba56632-8dc1-405c-a083-c204bae477cf"
|
|
|
|
(org-babel-next-src-block)
|
|
|
|
(should (equal "one two three" (org-babel-execute-src-block)))))
|
|
|
|
|
|
|
|
(ert-deftest ob-shell/bash-uses-arrays ()
|
|
|
|
"Bash arrays"
|
|
|
|
(org-test-at-id "0ba56632-8dc1-405c-a083-c204bae477cf"
|
|
|
|
(org-babel-next-src-block 2)
|
|
|
|
(should (equal "one" (org-babel-execute-src-block)))))
|
|
|
|
|
|
|
|
(ert-deftest ob-shell/generic-uses-no-assoc-arrays ()
|
|
|
|
"No associative arrays for generic"
|
|
|
|
(org-test-at-id "bec1a5b0-4619-4450-a8c0-2a746b44bf8d"
|
|
|
|
(org-babel-next-src-block)
|
|
|
|
(should (equal "first one second two third three"
|
|
|
|
(org-babel-execute-src-block)))))
|
|
|
|
|
|
|
|
(ert-deftest ob-shell/bash-uses-assoc-arrays ()
|
|
|
|
"Bash associative arrays"
|
|
|
|
(org-test-at-id "bec1a5b0-4619-4450-a8c0-2a746b44bf8d"
|
|
|
|
(org-babel-next-src-block 2)
|
|
|
|
(should (equal "two" (org-babel-execute-src-block)))))
|
|
|
|
|
|
|
|
(ert-deftest ob-shell/generic-uses-no-assoc-arrays ()
|
|
|
|
"No associative arrays for generic"
|
|
|
|
(org-test-at-id "82320a48-3409-49d7-85c9-5de1c6d3ff87"
|
|
|
|
(org-babel-next-src-block)
|
|
|
|
(should (equal "bread 2 kg spaghetti 20 cm milk 50 dl"
|
|
|
|
(org-babel-execute-src-block)))))
|
|
|
|
|
|
|
|
(ert-deftest ob-shell/bash-uses-assoc-arrays ()
|
|
|
|
"Bash associative arrays as strings for the row"
|
|
|
|
(org-test-at-id "82320a48-3409-49d7-85c9-5de1c6d3ff87"
|
|
|
|
(org-babel-next-src-block 2)
|
|
|
|
(should (equal "20 cm" (org-babel-execute-src-block)))))
|
|
|
|
|
2017-06-09 18:06:24 -04:00
|
|
|
(ert-deftest ob-shell/simple-list ()
|
|
|
|
"Test list variables in shell."
|
|
|
|
;; With bash, a list is turned into an array.
|
|
|
|
(should
|
|
|
|
(= 2
|
|
|
|
(org-test-with-temp-text
|
|
|
|
"#+BEGIN_SRC bash :var l='(1 2)\necho ${l[1]}\n#+END_SRC"
|
|
|
|
(org-babel-execute-src-block))))
|
|
|
|
;; On sh, it is a string containing all values.
|
|
|
|
(should
|
|
|
|
(equal "1 2"
|
|
|
|
(org-test-with-temp-text
|
|
|
|
"#+BEGIN_SRC sh :var l='(1 2)\necho ${l}\n#+END_SRC"
|
|
|
|
(org-babel-execute-src-block)))))
|
2010-10-14 10:10:23 -04:00
|
|
|
|
2014-01-31 11:02:03 -05:00
|
|
|
(provide 'test-ob-shell)
|
|
|
|
|
|
|
|
;;; test-ob-shell.el ends here
|