emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob a48f0c7dde4fd100b314e685c99c39e40de0c378 5385 bytes (raw)
name: testing/lisp/test-ob-emacs-lisp.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
 
;;; test-ob-emacs-lisp.el

;; Copyright (c) 2012-2019 Free Software Foundation, Inc.
;; Authors: Eric Schulte, Martyn Jago

;; 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/>.

;;; Comments:

;; Org tests for ob-emacs-lisp.el live here

;;; Code:
(ert-deftest ob-emacs-lisp/commented-last-block-line-no-var ()
  (org-test-with-temp-text-in-file "
#+begin_src emacs-lisp
;;
#+end_src"
    (org-babel-next-src-block)
    (org-babel-execute-maybe)
    (should (re-search-forward "results:" nil t))
    (forward-line)
    (should
     (string=
      ""
      (buffer-substring-no-properties (point-at-bol) (point-at-eol)))))
  (org-test-with-temp-text-in-file "
#+begin_src emacs-lisp
\"some text\";;
#+end_src"

    (org-babel-next-src-block)
    (org-babel-execute-maybe)
    (should (re-search-forward "results:" nil t))
    (forward-line)
    (should
     (string=
      ": some text"
      (buffer-substring-no-properties (point-at-bol) (point-at-eol))))))

(ert-deftest ob-emacs-lisp/commented-last-block-line-with-var ()
  (org-test-with-temp-text-in-file "
#+begin_src emacs-lisp :var a=1
;;
#+end_src"
    (org-babel-next-src-block)
    (org-babel-execute-maybe)
    (re-search-forward "results" nil t)
    (forward-line)
    (should (string=
	     ""
	     (buffer-substring-no-properties (point-at-bol) (point-at-eol))))))

(ert-deftest ob-emacs-lisp/commented-last-block-line ()
  (should
   (string= ": 2"
	    (org-test-with-temp-text-in-file "
#+begin_src emacs-lisp :var a=2
2;;
#+end_src"
	      (org-babel-next-src-block)
	      (org-babel-execute-maybe)
	      (re-search-forward "results" nil t)
	      (buffer-substring-no-properties (line-beginning-position 2)
					      (line-end-position 2))))))

(defun test-ob-emacs-lisp-dynamic-lexical-text (expr lexical)
  (concat "\n"
	  "#+begin_src emacs-lisp :lexical " lexical " :results verbatim\n"
	  (format "%S" expr) "\n"
	  "#+end_src"))

(defvar test-ob-emacs-lisp-dynamic-lexical-expr
  '(let ((x 'dynamic))
     (funcall
      (let ((x 'lexical))
	(lambda () x)))))

(ert-deftest ob-emacs-lisp/dynamic-lexical-execute ()
  (cl-flet ((execute (text)
              (org-test-with-temp-text-in-file text
		(org-babel-next-src-block)
		(org-babel-execute-maybe)
		(re-search-forward "results" nil t)
		(re-search-forward ": " nil t)
		(buffer-substring-no-properties (point) (point-at-eol)))))
    ;;
    (cl-flet ((text (lexical)
		(test-ob-emacs-lisp-dynamic-lexical-text
		 test-ob-emacs-lisp-dynamic-lexical-expr
		 lexical)))
      (should (string= "dynamic" (execute (text "no" ))))
      (should (string= "lexical" (execute (text "yes")))))
    ;;
    (cl-flet ((text (lexical)
		(test-ob-emacs-lisp-dynamic-lexical-text
		 'x
		 lexical)))
      (should (string= "dynamic" (let ((x 'dynamic))
				   (execute (text "no")))))
      (should (string= "lexical" (execute (text "'((x . lexical))")))))
    ;;
    ;; Src block execution uses `eval'. `eval' does not dynamically
    ;; bind `lexical-binding' to the value of its LEXICAL
    ;; parameter. Hence, (eval 'lexical-binding LEXICAL) evaluates to
    ;; the same value that just `lexical-binding' evaluates to, no
    ;; matter what is given as the LEXICAL parameter to eval. So the
    ;; following does not work as intended:
    ;;
    ;;(cl-flet ((text (lexical)
    ;;		(test-ob-emacs-lisp-dynamic-lexical-text
    ;;		 'lexical-binding
    ;;		 lexical)))
    ;;  (should (string= "nil"       (execute (text "no"        ))))
    ;;  (should (string= "t"         (execute (text "yes"       ))))
    ;;  (should (string= "((x . 0))" (execute (text "'((x . 0))")))))
    ))

(ert-deftest ob-emacs-lisp/dynamic-lexical-edit ()
  (cl-flet ((execute (text)
              (org-test-with-temp-text-in-file text
		(org-babel-next-src-block)
		(org-edit-src-code)
		(goto-char (point-max))
		(prog1 (eval-last-sexp 0)
		  (org-edit-src-exit)))))
    ;;
    (cl-flet ((text (lexical)
		(test-ob-emacs-lisp-dynamic-lexical-text
		 test-ob-emacs-lisp-dynamic-lexical-expr
		 lexical)))
      (should (eq 'dynamic (execute (text "no" ))))
      (should (eq 'lexical (execute (text "yes")))))
    ;;
    (cl-flet ((text (lexical)
		(test-ob-emacs-lisp-dynamic-lexical-text
		 'x
		 lexical)))
      (should (eq 'dynamic (let ((x 'dynamic))
			     (execute (text "no")))))
      (should (eq 'lexical (execute (text "'((x . lexical))")))))
    ;;
    (cl-flet ((text (lexical)
    		(test-ob-emacs-lisp-dynamic-lexical-text
    		 'lexical-binding
    		 lexical)))
      (should (equal nil        (execute (text "no"        ))))
      (should (equal t          (execute (text "yes"       ))))
      (should (equal '((x . 0)) (execute (text "'((x . 0))")))))
    ))


(provide 'test-ob-emacs-lisp)

 ;;; test-ob-emacs-lisp.el ends here

debug log:

solving a48f0c7dd ...
found a48f0c7dd in https://yhetil.org/orgmode/87sgvpg3bq.fsf@gmail.com/
found 078cad988 in https://git.savannah.gnu.org/cgit/emacs/org-mode.git
preparing index
index prepared:
100644 078cad988f65a8a0737e0c1f9e6b8698170b0c36	testing/lisp/test-ob-emacs-lisp.el

applying [1/1] https://yhetil.org/orgmode/87sgvpg3bq.fsf@gmail.com/
diff --git a/testing/lisp/test-ob-emacs-lisp.el b/testing/lisp/test-ob-emacs-lisp.el
index 078cad988..a48f0c7dd 100644

1:86: space before tab in indent.
    		(test-ob-emacs-lisp-dynamic-lexical-text
1:87: space before tab in indent.
    		 'lexical-binding
1:88: space before tab in indent.
    		 lexical)))
Checking patch testing/lisp/test-ob-emacs-lisp.el...
Applied patch testing/lisp/test-ob-emacs-lisp.el cleanly.
warning: 3 lines add whitespace errors.

index at:
100644 a48f0c7dde4fd100b314e685c99c39e40de0c378	testing/lisp/test-ob-emacs-lisp.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).