emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob a0a3b178cc387610249a970f7b579d4139e67166 12733 bytes (raw)
name: testing/lisp/test-ob-lua.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
 
;;; test-ob-lua.el --- tests for ob-lua.el  -*- lexical-binding: t; -*-

;; Copyright (c) 2016, 2019 Thibault Marin
;; Authors: Thibault Marin

;; 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 <https://www.gnu.org/licenses/>.

;;; Code:
(unless (featurep 'ob-lua)
  (signal 'missing-test-dependency "Support for Lua code blocks"))

(ert-deftest test-ob-lua/simple-value ()
  "Test associative array return by value."
  (should
   (= 2
      (org-test-with-temp-text
	  "#+name: eg
| a   | 1 |
| b   | 2 |

#+header: :results value
#+header: :var x = eg
#+begin_src lua
return x['b']
#+end_src"
        (org-babel-next-src-block)
        (org-babel-execute-src-block)))))

(ert-deftest test-ob-lua/simple-output ()
  "Test text output from table."
  (should
   (equal "result: c\n"
	  (org-test-with-temp-text
	      "#+name: eg
| a | b | c | d |

#+header: :results output
#+header: :var x = eg
#+begin_src lua
print('result: ' .. x[1][3])
#+end_src"
	    (org-babel-next-src-block)
	    (org-babel-execute-src-block)))))


(ert-deftest test-ob-lua/colnames-yes-header-argument ()
  "Test table passing with `colnames' header."
  (should
   (equal "a"
	  (org-test-with-temp-text
	      "#+name: eg
| col |
|-----|
| a   |
| b   |

#+header: :colnames yes
#+header: :var x = eg
#+begin_src lua
return x[1]
#+end_src"
	    (org-babel-next-src-block)
	    (org-babel-execute-src-block)))))


(ert-deftest test-ob-lua/colnames-yes-header-argument-pp ()
  "Test table passing with `colnames' header and `pp' option."
  (should
   (equal "a = 12\nb = 13"
	  (org-test-with-temp-text
	      "#+name: eg
| col | val |
|-----+-----|
| a   |  12 |
| b   |  13 |

#+header: :results value pp
#+header: :colnames yes
#+header: :var x = eg
#+begin_src lua
return x
#+end_src"
	    (org-babel-next-src-block)
	    (org-babel-execute-src-block)))))

(ert-deftest test-ob-lua/colnames-nil-header-argument ()
  "Test table with `colnames' set to `nil'."
  (should
   (equal "1 = a\n2 = b"
	  (org-test-with-temp-text
	      "#+name: eg
| col |
|-----|
| a   |
| b   |

#+header: :colnames nil
#+header: :var x = eg
#+header: :results value pp
#+begin_src lua
return x
#+end_src"
	    (org-babel-next-src-block)
	    (org-babel-execute-src-block)))))

(ert-deftest test-ob-lua/colnames-no-header-argument ()
  "Test table passing without `colnames'."
  (should
   (equal "1 = col\n2 = a\n3 = b"
	  (org-test-with-temp-text
	      "#+name: eg
| col |
|-----|
| a   |
| b   |

#+header: :colnames no
#+header: :var x = eg
#+header: :results value pp
#+begin_src lua
return x
#+end_src"
	    (org-babel-next-src-block)
	    (org-babel-execute-src-block)))))

(ert-deftest test-ob-lua/result/nil ()
  "Test returning nothing."
  (should
   (equal
    "src_lua{return} {{{results(=nil=)}}}"
    (org-test-with-temp-text "src_lua{return}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/result/nil/explicit ()
  "Test returning nothing explicitly."
  (should
   (equal
    "src_lua{return nil} {{{results(=nil=)}}}"
    (org-test-with-temp-text "src_lua{return nil}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/result/boolean ()
  "Test returning the boolean values true and false."
  (should
   (equal
    "src_lua{return true} {{{results(=true=)}}}"
    (org-test-with-temp-text "src_lua{return true}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max)))))
  (should
   (equal
    "src_lua{return false} {{{results(=false=)}}}"
    (org-test-with-temp-text "src_lua{return false}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/number/integer ()
  "Test returning integers."
  (should
   (equal
    "src_lua{return 1} {{{results(=1=)}}}"
    (org-test-with-temp-text "src_lua{return 1}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/number/integer/negative ()
  "Test returning negative integers."
  (should
   (equal
    "src_lua{return -1} {{{results(=-1=)}}}"
    (org-test-with-temp-text "src_lua{return -1}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/number/integer/multiple ()
  "Test returning multiple integers at once."
  (should
   (equal
    "src_lua{return 1, 2, 3} {{{results(=1, 2, 3=)}}}"
    (org-test-with-temp-text "src_lua{return 1, 2, 3}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/number/real ()
  "Test returning real numbers."
  (should
   (equal
    "src_lua{return 1.5} {{{results(=1.5=)}}}"
    (org-test-with-temp-text "src_lua{return 1.5}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/number/real/multiple ()
  "Test returning multiple real numbers at once."
  (should
   (equal
    "src_lua{return 1.5, 2.5, 3.5} {{{results(=1.5, 2.5, 3.5=)}}}"
    (org-test-with-temp-text "src_lua{return 1.5, 2.5, 3.5}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/number/infinity ()
  "Test returning the infinity."
  (should
   (equal
    "src_lua{return 1 / 0} {{{results(=inf=)}}}"
    (org-test-with-temp-text "src_lua{return 1 / 0}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/single-quotes ()
  "Test returning strings in single quotes."
  (should
   (equal
    "src_lua{return 'hello world'} {{{results(=hello world=)}}}"
    (org-test-with-temp-text "src_lua{return 'hello world'}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/double-quotes ()
  "Test returning strings in double quotes."
  (should
   (equal
    "src_lua{return \"hello world\"} {{{results(=hello world=)}}}"
    (org-test-with-temp-text "src_lua{return \"hello world\"}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/multiple ()
  "Test returning multiple strings at once."
  (should
   (equal
    "src_lua{return 'a', 'b'} {{{results(=a, b=)}}}"
    (org-test-with-temp-text "src_lua{return 'a', 'b'}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/list-like ()
  "Test returning strings that look like \"(...)\" lists."
  (should
   (equal
    (concat "src_lua{return string.match('A (B) C', '%b()')}"
            " {{{results(=(B)=)}}}")
    (org-test-with-temp-text
        "src_lua{return string.match('A (B) C', '%b()')}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/list-like/brackets ()
  "Test returning strings that look like \"[...]\" lists."
  (should
   (equal
    (concat "src_lua{return string.match('A [B] C', '%b[]')}"
            " {{{results(=[B]=)}}}")
    (org-test-with-temp-text
        "src_lua{return string.match('A [B] C', '%b[]')}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/list-like/curlies ()
  "Test returning strings that look like \"{...}\" lists."
  (should
   (equal
    (concat "src_lua{return string.match('A {B} C', '%b{}')}"
            " {{{results(={B}=)}}}")
    (org-test-with-temp-text
	"src_lua{return string.match('A {B} C', '%b{}')}"
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/results/string/list-like/standard-output ()
  "Test returning strings that look like lists to standard output."
  (should
   (equal
    (concat "src_lua[:results output]"
            "{print(string.match('A (B) C', '%b()'))}"
            " {{{results(=(B)=)}}}")
    (org-test-with-temp-text
        (concat "src_lua[:results output]"
                "{print(string.match('A (B) C', '%b()'))}")
      (org-babel-execute-src-block)
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(ert-deftest test-ob-lua/result/table ()
  "Test returning table references."
  (should
   (equal
    0
    (string-match
     "src_lua{return {}} {{{results(=table: 0x[0-9A-F]+=)}}}"
     (org-test-with-temp-text "src_lua{return {}}"
       (org-babel-execute-src-block)
       (buffer-substring-no-properties (point-min)
                                       (point-max)))))))

(ert-deftest test-ob-lua/result/table/pretty-print ()
  "Test returning and pretty-printing sequential tables."
  (should
   (equal (string-join
           '("#+BEGIN_SRC lua :results pp"
             "return {10, {20, 30, {40, 50}, 60}, 70}"
             "#+END_SRC"
             ""
             "#+RESULTS:"
             ": 1 = 10"
             ": 2 = "                   ; FIXME Trailing space.
             ":   1 = 20"
             ":   2 = 30"
             ":   3 = "                 ; FIXME Trailing space.
             ":     1 = 40"
             ":     2 = 50"
             ":   4 = 60"
             ": 3 = 70"
             "")
           "\n")
          (org-test-with-temp-text
              (string-join
               '("#+BEGIN_SRC lua :results pp"
                 "return {10, {20, 30, {40, 50}, 60}, 70}<point>"
                 "#+END_SRC")
               "\n")
	    (org-babel-execute-src-block)
            (buffer-substring-no-properties (point-min)
                                            (point-max))))))

(ert-deftest test-ob-lua/result/table/pretty-print/sorted ()
  "Test returning and pretty-printing non-sequential tables."
  (should
   (equal (string-join
           '("#+BEGIN_SRC lua :results pp"
             "return {b = 20, c = 30, a = 10}"
             "#+END_SRC"
             ""
             "#+RESULTS:"
             ;; NOTE The keys are sorted alphabetically.
             ": a = 10"
             ": b = 20"
             ": c = 30"
             "")
           "\n")
          (org-test-with-temp-text
              (string-join
               '("#+BEGIN_SRC lua :results pp"
                 "return {b = 20, c = 30, a = 10}"
                 "#+END_SRC")
               "\n")
	    (org-babel-execute-src-block)
            (buffer-substring-no-properties (point-min)
                                            (point-max))))))

(ert-deftest test-ob-lua/results/value-separator ()
  "Test customizing the separator of multiple values."
  ;; TODO Once Org Babel supports returning lists from inline blocks,
  ;; instead of trapping with the user error: "Inline error: list
  ;; result cannot be used", use those for multiple values.
  (should
   (equal
    "src_lua{return 1, 2, 3} {{{results(=1\t2\t3=)}}}"
    (org-test-with-temp-text "src_lua{return 1, 2, 3}"
      (let ((org-babel-lua-multiple-values-separator "\t"))
        (org-babel-execute-src-block))
      (buffer-substring-no-properties (point-min)
                                      (point-max))))))

(provide 'test-ob-lua)

;;; test-ob-lua.el ends here

debug log:

solving a0a3b178c ...
found a0a3b178c in https://list.orgmode.org/orgmode/m27cgcnqw5.fsf@adamkovic.org/
found 0a60c68ca in https://git.savannah.gnu.org/cgit/emacs/org-mode.git
preparing index
index prepared:
100644 0a60c68cafdfa2585391c513d739fd910727cc98	testing/lisp/test-ob-lua.el

applying [1/1] https://list.orgmode.org/orgmode/m27cgcnqw5.fsf@adamkovic.org/
diff --git a/testing/lisp/test-ob-lua.el b/testing/lisp/test-ob-lua.el
index 0a60c68ca..a0a3b178c 100644

Checking patch testing/lisp/test-ob-lua.el...
Applied patch testing/lisp/test-ob-lua.el cleanly.

index at:
100644 a0a3b178cc387610249a970f7b579d4139e67166	testing/lisp/test-ob-lua.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).