emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob b8c33c4b8339ffb6d49f615498a1025a997ba7df 10140 bytes (raw)
name: testing/lisp/test-ob-haxe.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
 
;;; test-ob-haxe.el --- tests for ob-haxe.el

;; Copyright (c) 2020 Ian Martins
;; Authors: Ian Martins

;; 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:
(org-test-for-executable "haxe")
(unless (featurep 'ob-haxe)
  (signal 'missing-test-dependency "Support for haxe code blocks"))

(ert-deftest ob-haxe/simple ()
  "Hello world program."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 1)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-main ()
  "Hello world program that defines a main function."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 2)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-public-main-interp ()
  "Hello world program that defines a public main function targeting interp."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 3)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-public-main-neko ()
  "Hello world program that defines a public main function targeting neko."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 4)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-public-main-hashlink ()
  "Hello world program that defines a public main function targeting hashlink."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 5)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-class ()
  "Hello world program that defines a class."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 6)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-class-and-package ()
  "Hello world program that defines a class and package."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 7)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-class-attr ()
  "Hello world program with class header attribute."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 8)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/simple-with-class-attr-with-package ()
  "Hello world program with class attr with package."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "966875e9-d10e-406c-9211-449555e3d3b2"
              (org-babel-next-src-block 9)
              (should (string= "42" (org-babel-execute-src-block))))))


(ert-deftest ob-haxe/integer-var ()
  "Read and write an integer variable."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 1)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/var-with-main ()
  "Read and write an integer variable, with main function provided."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 2)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/var-with-class ()
  "Read and write an integer variable, with class provided."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 3)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/var-with-class-and-package ()
  "Read and write an integer variable, with class and package provided."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 4)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/var-with-class-and-hanging-curlies ()
  "Read and write an integer variable, with class with hanging curlies."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 5)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/two-vars ()
  "Read two integer variables, combine and write them."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 6)
              (should (string= "42" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/string-var ()
  "Read and write a string variable."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 7)
              (should (string= "forty two, len=9" (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/multiline-string-var ()
  "Read and write a multi-line string variable."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "ecbe8740-e254-4c53-84b2-21a61bf1afb4"
              (org-babel-next-src-block 8)
              (should (string= "forty\ntwo, len=9" (org-babel-execute-src-block))))))


(ert-deftest ob-haxe/return-vector ()
  "Return a vector."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "1e93864d-385b-4901-9d12-b566fdb5b813"
              (org-babel-next-src-block 1)
              (should (equal '((4) (2)) (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/read-return-list ()
  "Return a vector."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "1e93864d-385b-4901-9d12-b566fdb5b813"
              (org-babel-next-src-block 2)
              (should (equal '("forty" "two") (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/read-output-list ()
  "Return a vector."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "1e93864d-385b-4901-9d12-b566fdb5b813"
              (org-babel-next-src-block 3)
              (should (equal "forty two\nforty two\n" (org-babel-execute-src-block))))))


(ert-deftest ob-haxe/list-var ()
  "Read and write a list variable."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "a93bb906-eef8-4089-b490-64f266f5696c"
              (org-babel-next-src-block 1)
              (should (equal '("forty" "two") (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/vector-var ()
  "Read and write a vector variable."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "a93bb906-eef8-4089-b490-64f266f5696c"
              (org-babel-next-src-block 2)
              (should (equal '("forty" "two") (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/matrix-var ()
  "Read and write matrix variable."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "a93bb906-eef8-4089-b490-64f266f5696c"
              (org-babel-next-src-block 3)
              (should (equal '((2 4) (1 2)) (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/matrix-var-with-header ()
  "Read matrix variable and write it with header."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "a93bb906-eef8-4089-b490-64f266f5696c"
              (org-babel-next-src-block 4)
              (should (equal '(("col1" "col2") hline (2 4) (1 2)) (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/output-table-with-header ()
  "Write a table that includes a header."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "a93bb906-eef8-4089-b490-64f266f5696c"
              (org-babel-next-src-block 5)
              (should (equal "|col1|col2|\n|-\n|2|1\n|4|2\n" (org-babel-execute-src-block))))))


(ert-deftest ob-haxe/inhomogeneous_table ()
  "Read and write an inhomogeneous table."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "192cbb7d-9038-47ca-bab3-a0cbf44b487d"
              (org-babel-next-src-block 1)
              (should (equal
                       '(("forty" 4) ("two" 2))
                       (org-babel-execute-src-block))))))


(ert-deftest ob-haxe/import_library ()
  "Import a standard haxe library."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "0b945cde-55a1-4723-8d78-5f69d98d09fa"
              (org-babel-next-src-block 1)
              (should (string=
                       "encoded=NDI=, decoded=42"
                       (org-babel-execute-src-block))))))

(ert-deftest ob-haxe/import_library_inline ()
  "Import a standard haxe library."
  (if (executable-find org-babel-haxe-command)
      (org-test-at-id "0b945cde-55a1-4723-8d78-5f69d98d09fa"
              (org-babel-next-src-block 2)
              (should (string=
                       "encoded=NDI=, decoded=42"
                       (org-babel-execute-src-block))))))


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

debug log:

solving b8c33c4b8 ...
found b8c33c4b8 in https://list.orgmode.org/orgmode/CAC=rjb6FnA=WuMK_qfto=rFfH=QZHet_-7AXd26NQ-Ktjd5y8w@mail.gmail.com/

applying [1/1] https://list.orgmode.org/orgmode/CAC=rjb6FnA=WuMK_qfto=rFfH=QZHet_-7AXd26NQ-Ktjd5y8w@mail.gmail.com/
diff --git a/testing/lisp/test-ob-haxe.el b/testing/lisp/test-ob-haxe.el
new file mode 100644
index 000000000..b8c33c4b8

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

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