emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 316b7cb1d534a30bbed6b6e7011642b845f3ecca 7056 bytes (raw)
name: testing/lisp/test-ox-texinfo.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
 
;;; test-ox-texinfo.el --- Tests for ox-texinfo.el

;; Copyright (C) 2022  Rudolf Adamkovič

;; Author: Rudolf Adamkovič <salutis@me.com>

;; 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:

(require 'cl-lib)
(require 'ox-texinfo)

(unless (featurep 'ox-texinfo)
  (signal 'missing-test-dependency "org-export-texinfo"))

(ert-deftest test-org-export-texinfo/latex-fragment ()
  "Test `org-texinfo-latex-fragment' output."

  ;; inline TeX fragment
  (should
   (equal "@math{a^2 = b}"
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               '(:value "$a^2 = b$"))
           nil
           '(:with-latex t))))

  ;; inline TeX fragment, padded
  (should
   (equal "@math{a^2 = b}"
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               '(:value "$ a^2 = b $"))
           nil
           '(:with-latex t))))

  ;; inline LaTeX fragment
  (should
   (equal "@math{a^2 = b}"
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               '(:value "\\(a^2 = b\\)"))
           nil
           '(:with-latex t))))

  ;; inline LaTeX fragment, padded
  (should
   (equal "@math{a^2 = b}"
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               '(:value "\\( a^2 = b \\)"))
           nil
           '(:with-latex t))))

  ;; displayed TeX fragment, inline
  (should
   (equal (string-join
           (list ""
                 "@displaymath"
                 "a ^ 2 = b"
                 "@end displaymath"
                 "")
           "\n")
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               (list :value "$$a ^ 2 = b$$"))
           nil
           '(:with-latex t))))

  ;; displayed TeX fragment, inline, padded
  (should
   (equal (string-join
           (list ""
                 "@displaymath"
                 "a ^ 2 = b"
                 "@end displaymath"
                 "")
           "\n")
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               (list :value "$$ a ^ 2 = b $$"))
           nil
           '(:with-latex t))))

  ;; displayed TeX fragment, multi-line
  (should
   (equal (string-join
           (list ""
                 "@displaymath"
                 "a ^ 2 = b"
                 "b ^ 2 = c"
                 "@end displaymath"
                 "")
           "\n")
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               (list :value
                                     (string-join
                                      (list "$$"
                                            "a ^ 2 = b"
                                            "b ^ 2 = c"
                                            "$$")
                                      "\n")))
           nil
           '(:with-latex t))))

  ;; displayed TeX fragment, multi-line, indented
  (should
   (equal (string-join
           (list ""
                 "@displaymath"
                 "a ^ 2 = b"
                 "b ^ 2 = c"
                 "@end displaymath"
                 "")
           "\n")
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               (list :value
                                     (string-join
                                      (list "  $$"
                                            "  a ^ 2 = b"
                                            "  b ^ 2 = c"
                                            "  $$")
                                      "\n")))
           nil
           '(:with-latex t))))

  ;; displayed LaTeX fragment, inline
  (should
   (equal (string-join
           (list ""
                 "@displaymath"
                 "a ^ 2 = b"
                 "@end displaymath"
                 "")
           "\n")
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               (list :value "\\[a ^ 2 = b\\]"))
           nil
           '(:with-latex t))))

  ;; displayed LaTeX fragment, inline, padded
  (should
   (equal (string-join
           (list ""
                 "@displaymath"
                 "a ^ 2 = b"
                 "@end displaymath"
                 "")
           "\n")
          (org-texinfo-latex-fragment
           (org-element-create 'latex-fragment
                               (list :value "\\[ a ^ 2 = b \\]"))
           nil
           '(:with-latex t)))))

(ert-deftest test-org-export-texinfo/latex-environment ()
  "Test `org-texinfo-latex-environment' output."

  ;; LaTeX environment
  (should
   (equal (string-join
           (list "@displaymath"
                 "\\begin{equation}"
                 "a ^ 2 = b"
                 "b ^ 2 = c"
                 "\\end{equation}"
                 "@end displaymath")
           "\n")
          (org-texinfo-latex-environment
           (org-element-create 'latex-environment
                               (list :value
                                     (string-join
                                      (list "\\begin{equation}"
                                            "a ^ 2 = b"
                                            "b ^ 2 = c"
                                            "\\end{equation}")
                                      "\n")))
           nil
           '(:with-latex t))))

  ;; LaTeX environment, indented
  (should
   (equal (string-join
           (list "@displaymath"
                 "\\begin{equation}"
                 "a ^ 2 = b"
                 "b ^ 2 = c"
                 "\\end{equation}"
                 "@end displaymath")
           "\n")
          (org-texinfo-latex-environment
           (org-element-create 'latex-environment
                               (list :value
                                     (string-join
                                      (list "  \\begin{equation}"
                                            "  a ^ 2 = b"
                                            "  b ^ 2 = c"
                                            "  \\end{equation}")
                                      "\n")))
           nil
           '(:with-latex t)))))

(provide 'test-ox-texinfo)
;;; test-ox-texinfo.el end here

debug log:

solving 316b7cb1d ...
found 316b7cb1d in https://yhetil.org/orgmode/m24k3kae9a.fsf@me.com/ ||
	https://yhetil.org/orgmode/m2mtedisg0.fsf@me.com/ ||
	https://yhetil.org/orgmode/m2y1vqpqu2.fsf@me.com/

applying [1/1] https://yhetil.org/orgmode/m24k3kae9a.fsf@me.com/
diff --git a/testing/lisp/test-ox-texinfo.el b/testing/lisp/test-ox-texinfo.el
new file mode 100644
index 000000000..316b7cb1d

Checking patch testing/lisp/test-ox-texinfo.el...
Applied patch testing/lisp/test-ox-texinfo.el cleanly.

skipping https://yhetil.org/orgmode/m2mtedisg0.fsf@me.com/ for 316b7cb1d
skipping https://yhetil.org/orgmode/m2y1vqpqu2.fsf@me.com/ for 316b7cb1d
index at:
100644 316b7cb1d534a30bbed6b6e7011642b845f3ecca	testing/lisp/test-ox-texinfo.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).