mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-03 08:30:03 +00:00
54ab0e1c60
* ob-C.el: handling of non-homogeneous tables, support for table header, support for iterating over table cells. (org-babel-expand-body:C++): uncomment (org-babel-C-execute): cosmetic changes (org-babel-C-expand-C): add support for table columns names, add support for table dimensions, add standard includes (org-babel-C-val-to-C-type): rewrite to support non-homogeneous tables cells (org-babel-C-table-sizes-to-C): new function to gain access to the table dimensions (org-babel-C-utility-header-to-C): (org-babel-C-header-to-C): new functions to generate support for table header. * ob-C-test.org: added D sibling tests similar to C++, added non-homogeneous table example for C++ and D * test-ob-C.el: new tests for D and non-homogeneous tables (ob-C/simple-program): (ob-C/simple-program): (ob-D/simple-program): (ob-C/integer-var): (ob-D/integer-var): (ob-C/two-integer-var): (ob-D/two-integer-var): (ob-C/string-var): (ob-D/string-var): (ob-C/preprocessor): (ob-C/table): (ob-D/table): (ob-C/list-var): (ob-D/list-var): (ob-C/vector-var): (ob-D/vector-var): (ob-C/list-list-var): (ob-D/list-list-var): (ob-C/inhomogeneous_table): (ob-D/inhomogeneous_table): add compiler availability check (ob-D/simple-program): (ob-D/integer-var): (ob-D/two-integer-var): (ob-D/string-var): (ob-D/table): (ob-D/list-var): (ob-D/vector-var): (ob-D/list-list-var): (ob-D/inhomogeneous_table): add D unit tests (ob-C/inhomogeneous_table): (ob-D/inhomogeneous_table): add non-homogeneous table unit tests
180 lines
6.4 KiB
EmacsLisp
180 lines
6.4 KiB
EmacsLisp
;;; test-ob-C.el --- tests for ob-C.el
|
|
|
|
;; Copyright (c) 2010-2014 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 <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Code:
|
|
(unless (featurep 'ob-C)
|
|
(signal 'missing-test-dependency "Support for C code blocks"))
|
|
|
|
(ert-deftest ob-C/assert ()
|
|
(should t))
|
|
|
|
(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-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 2)
|
|
(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 3)
|
|
(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 4)
|
|
(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 5)
|
|
(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 6)
|
|
(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 7)
|
|
(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 8)
|
|
(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 9)
|
|
(should (= 42 (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))))))
|
|
|
|
;;; test-ob-C.el ends here
|