emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob d4b84559232de22f07fd42e6ec390deb601660a9 11733 bytes (raw)
name: testing/lisp/test-ob-C.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
 
;;; test-ob-C.el --- tests for ob-C.el  -*- lexical-binding: t; -*-

;; Copyright (c) 2010-2014, 2019 Sergey Litvinov, Thierry Banel
;; Authors: Sergey Litvinov, Thierry Banel

;; 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-C)
  (signal 'missing-test-dependency "Support for C code blocks"))

(ert-deftest ob-C/simple-program ()
  "Hello world program."
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 1)
		      (should (= 42 (org-babel-execute-src-block))))))

(ert-deftest ob-C/symbol-include ()
  "Hello world program with unquoted :includes."
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 2)
		      (should (= 42 (org-babel-execute-src-block))))))

(ert-deftest ob-D/simple-program ()
  "Hello world program."
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 3)
		      (should (= 42 (org-babel-execute-src-block))))))

(ert-deftest ob-C/integer-var ()
  "Test of an integer variable."
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 4)
		      (should (= 12 (org-babel-execute-src-block))))))

(ert-deftest ob-D/integer-var ()
  "Test of an integer variable."
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 5)
		      (should (= 12 (org-babel-execute-src-block))))))

(ert-deftest ob-C/two-integer-var ()
  "Test of two input variables"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 6)
		      (should (= 22 (org-babel-execute-src-block))))))

(ert-deftest ob-D/two-integer-var ()
  "Test of two input variables"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 7)
		      (should (= 22 (org-babel-execute-src-block))))))

(ert-deftest ob-C/string-var ()
  "Test of a string input variable"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 8)
		      (should (equal "word 4" (org-babel-execute-src-block))))))

(ert-deftest ob-D/string-var ()
  "Test of a string input variable"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 9)
		      (should (equal "word 4" (org-babel-execute-src-block))))))

(ert-deftest ob-C/preprocessor ()
  "Test of a string variable"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
		      (org-babel-next-src-block 10)
		      (should (= 42 (org-babel-execute-src-block))))))

(ert-deftest ob-C/float-var ()
  "Test that floats are passed without unnecessary rounding."
  (if (executable-find org-babel-C++-compiler)
      (org-test-with-temp-text 
"#+source: float_var
#+begin_src cpp :var x=1.123456789012345678 :includes \"<iostream>\" :results silent
double y = 1.123456789012345678;
std::cout << (x == y);
#+end_src"
(should (= 1 (org-babel-execute-src-block))))))

(ert-deftest ob-C/table ()
  "Test of a table output"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "2df1ab83-3fa3-462a-a1f3-3aef6044a874"
		      (org-babel-next-src-block 1)
		      (should (equal '((1) (2)) (org-babel-execute-src-block))))))

(ert-deftest ob-D/table ()
  "Test of a table output"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "2df1ab83-3fa3-462a-a1f3-3aef6044a874"
		      (org-babel-next-src-block 2)
		      (should (equal '((1) (2)) (org-babel-execute-src-block))))))

(ert-deftest ob-C/list-var ()
  "Test of a list input variable"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "cc65d6b3-8e8e-4f9c-94cd-f5a00cdeceb5"
		      (org-babel-next-src-block 1)
		      (should (string= "abcdef2" (org-babel-execute-src-block))))))

(ert-deftest ob-D/list-var ()
  "Test of a list input variable"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "cc65d6b3-8e8e-4f9c-94cd-f5a00cdeceb5"
		      (org-babel-next-src-block 2)
		      (should (string= "abcdef2" (org-babel-execute-src-block))))))

(ert-deftest ob-C/vector-var ()
  "Test of a vector input variable"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "cc65d6b3-8e8e-4f9c-94cd-f5a00cdeceb5"
		      (org-babel-next-src-block 3)
		      (should (equal 122 (org-babel-execute-src-block))))))

(ert-deftest ob-D/vector-var ()
  "Test of a vector input variable"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "cc65d6b3-8e8e-4f9c-94cd-f5a00cdeceb5"
		      (org-babel-next-src-block 4)
		      (should (equal 122 (org-babel-execute-src-block))))))

(ert-deftest ob-C/list-list-var ()
  "Test of a list list input variable"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "cc65d6b3-8e8e-4f9c-94cd-f5a00cdeceb5"
		      (org-babel-next-src-block 5)
		      (should (equal '((1 3) (2 4)) (org-babel-execute-src-block))))))

(ert-deftest ob-D/list-list-var ()
  "Test of a list list input variable"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "cc65d6b3-8e8e-4f9c-94cd-f5a00cdeceb5"
		      (org-babel-next-src-block 6)
		      (should (equal '((1 3) (2 4)) (org-babel-execute-src-block))))))

(ert-deftest ob-C/inhomogeneous_table ()
  "Test inhomogeneous input table"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "e112bc2e-419a-4890-99c2-7ac4779531cc"
		      (org-babel-next-src-block 1)
		      (should (equal
			       '(("monday" 34)
				 ("tuesday" 41)
				 ("wednesday" 56)
				 ("thursday" 17)
				 ("friday" 12)
				 ("saturday" 7)
				 ("sunday" 4)
				 ("Friday" "friday"))
			       (org-babel-execute-src-block))))))

(ert-deftest ob-D/inhomogeneous_table ()
  "Test inhomogeneous input table"
  (if (executable-find org-babel-D-compiler)
      (org-test-at-id "e112bc2e-419a-4890-99c2-7ac4779531cc"
		      (org-babel-next-src-block 2)
		      (should (equal
			       '(("monday" 34)
				 ("tuesday" 41)
				 ("wednesday" 56)
				 ("thursday" 17)
				 ("friday" 12)
				 ("saturday" 7)
				 ("sunday" 4)
				 ("Friday" "friday"))
			       (org-babel-execute-src-block))))))

(ert-deftest ob-C/ouput-doublequotes ()
  "Double quotes not swallowed in raw output"
  (if (executable-find org-babel-C++-compiler)
      (org-test-at-id "9386490b-4063-4400-842c-4a634edbedf5"
                      (org-babel-next-src-block 1)
                      (should (equal
                               "\"line 1\"\n\"line 2\"\n\"line 3\"\n"
                               (org-babel-execute-src-block))))))

(ert-deftest ob-C/compile-only-1 ()
  "Test `:compile-only' header argument."
  (if (executable-find org-babel-C++-compiler)
      (unwind-protect
          (let* ((file (make-temp-name "hello-world-"))
                 (file.cpp (concat file ".cpp")))
            (org-test-with-temp-text
                (format "#+source: compile-only-1
#+begin_src cpp :includes <iostream> :results none :compile-only yes :file %s
std::cout << \"Hello World!\\n\";
#+end_src
" file)
              (should (null (org-babel-execute-src-block)))
              (should (file-exists-p file))
              (should (file-exists-p file.cpp))))
        (ignore-errors (delete-file file))
        (ignore-errors (delete-file file.cpp)))))

(ert-deftest ob-C/compile-only-2 ()
  "Test `:compile-only' header argument.
A link to the binary file should be inserted."
  (if (executable-find org-babel-C++-compiler)
      (unwind-protect
          (let* ((file (make-temp-name "hello-world-"))
                 (file.cpp (concat file ".cpp")))
            (org-test-with-temp-text
                (format "#+source: compile-only-2
#+begin_src cpp :includes <iostream> :results file :compile-only yes :file %s
std::cout << \"Hello World!\\n\";
#+end_src
" file)
              (should (string= file (org-babel-execute-src-block)))
              (should (file-exists-p file))
              (should (file-exists-p file.cpp))))
        (ignore-errors (delete-file file))
        (ignore-errors (delete-file file.cpp)))))

(ert-deftest ob-C/compile-only-3 ()
  "Test `:compile-only' header argument.
The :file header is unset, which throws an error."
  (if (executable-find org-babel-C++-compiler)
      (org-test-with-temp-text
          (format "#+source: compile-only-3
#+begin_src cpp :includes <iostream> :results file :compile-only yes
std::cout << \"Hello World!\\n\";
#+end_src
")
        (should-error (org-babel-execute-src-block)))))

(ert-deftest ob-C/compile-only-4 ()
  "Test `:compile-only' header argument.

A C++ syntax error throws a compiler error.  The compiler's error
output is caught in `org-babel-error-buffer-name'; that buffer's
contents are the result of the source block."
  (if (executable-find org-babel-C++-compiler)
      (unwind-protect
          (let* ((file (make-temp-name "hello-world-"))
                 (file.cpp (concat file ".cpp")))
            (org-test-with-temp-text
                (format "#+source: compile-only-4.0
#+begin_src cpp :includes <iostream> :results output :compile-only yes :file %s
std::cout << \"Hello World!\\n\" <== syntax error
#+end_src
" file)
              (should (string-match "error:" (org-babel-execute-src-block)))
              (should (get-buffer org-babel-error-buffer-name))
              (should (file-exists-p file.cpp))))
        (ignore-errors (kill-buffer org-babel-error-buffer-name))
        (ignore-errors (delete-file file))
        (ignore-errors (delete-file file.cpp)))))

(ert-deftest ob-C/compile-only-5 ()
  "Test `:compile-only' header argument.

A C++ warning is emitted on stderr.  The compiler's warning is
caught in `org-babel-error-buffer-name'; that buffer's contents
are the result of the source block."
  (if (executable-find org-babel-C++-compiler)
      (unwind-protect
          (let* ((file (make-temp-name "hello-world-"))
                 (file.cpp (concat file ".cpp")))
            (org-test-with-temp-text
                (format "#+source: compile-only-4.0
#+begin_src cpp :includes <iostream> :flags -Wall :results output :compile-only yes :file %s
int i;
std::cout << \"Hello World!\\n\";
#+end_src
" file)
              (should (string-match "warning:" (org-babel-execute-src-block)))
              (should (get-buffer org-babel-error-buffer-name))
              (should (file-exists-p file.cpp))))
        (ignore-errors (kill-buffer org-babel-error-buffer-name))
        (ignore-errors (delete-file file))
        (ignore-errors (delete-file file.cpp)))))


(provide 'test-ob-C)
;;; test-ob-C.el ends here

debug log:

solving 559a3aa05 ...
found 559a3aa05 in https://list.orgmode.org/orgmode/87h6kdyh52.fsf_-_@t14.reltub.ca/
found c70534a51 in https://git.savannah.gnu.org/cgit/emacs/org-mode.git
preparing index
index prepared:
100644 c70534a51ff8537acdad40a57542bb573f31d4c0	testing/lisp/test-ob-C.el

applying [1/1] https://list.orgmode.org/orgmode/87h6kdyh52.fsf_-_@t14.reltub.ca/
diff --git a/testing/lisp/test-ob-C.el b/testing/lisp/test-ob-C.el\r
index c70534a51..559a3aa05 100644\r

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

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