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
| | ;;; test-ox-beamer.el --- tests for ox-beamer.el -*- lexical-binding: t; -*-
;; Copyright (C) 2024 Leo Butler
;; Author: Leo Butler <leo.butler@umanitoba.ca>
;; 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/>.
;;; Commentary:
;; Tests checking validity of Org Beamer export output.
;;; Code:
(require 'ox-beamer nil t)
(unless (featurep 'ox-beamer)
(signal 'missing-test-dependency '("org-export-beamer")))
\f
(ert-deftest ox-beamer/orgframe ()
"Test that `org-beamer-frame-environment' is defined and used."
(org-test-with-exported-text
'beamer
"#+OPTIONS: toc:nil
* A frame
Here is an example:
#+begin_example
\\begin{frame}
...
\\end{frame}
#+end_example
"
(goto-char (point-min))
(should (search-forward (concat "\\newenvironment<>{" org-beamer-frame-environment "}") nil t))
(should (search-forward (concat "\\begin{" org-beamer-frame-environment "}") nil t))
(should (search-forward (concat "\\end{" org-beamer-frame-environment "}") nil t))))
(ert-deftest ox-beamer/orgframe-in-example ()
"Test that `org-beamer-frame-environment' is not defined."
(org-test-with-exported-text
'beamer
(concat "#+OPTIONS: toc:nil
* A frame
Here is an example:
#+begin_example
\\begin{" org-beamer-frame-environment "}
...
\\end{" org-beamer-frame-environment "}
#+end_example
")
(goto-char (point-min))
(should-not (search-forward
(concat "\\newenvironment<>{" org-beamer-frame-environment "}") nil t))
(forward-line)
(should (search-forward (concat "\\begin{frame}") nil t))
(should (search-forward (concat "\\begin{" org-beamer-frame-environment "}")))
(should (search-forward (concat "\\end{" org-beamer-frame-environment "}")))
(should (search-forward (concat "\\end{frame}") nil t))))
(ert-deftest ox-beamer/orgframe-in-one-example ()
"Test that `org-beamer-frame-environment' is defined.
First frame should use \"frame\" environment, the second uses
`org-beamer-frame-environment'."
(org-test-with-exported-text
'beamer
(concat "#+OPTIONS: toc:nil
* A frame
Here is an example:
#+begin_example
\\begin{" org-beamer-frame-environment "}
...
\\end{" org-beamer-frame-environment "}
#+end_example
* A second frame
Here is a second example:
#+begin_example
\\begin{frame}
...
\\end{frame}
#+end_example
")
(goto-char (point-min))
(should (search-forward
(concat "\\newenvironment<>{" org-beamer-frame-environment "}") nil t))
(forward-line)
(org-test-ignore-duplicate
(should (search-forward (concat "\\begin{frame}") nil t))
(should (search-forward (concat "\\begin{" org-beamer-frame-environment "}")))
(should (search-forward (concat "\\end{" org-beamer-frame-environment "}")))
(should (search-forward (concat "\\end{frame}") nil t))
(should (search-forward (concat "\\begin{" org-beamer-frame-environment "}")))
(should (search-forward (concat "\\begin{frame}") nil t))
(should (search-forward (concat "\\end{frame}") nil t))
(should (search-forward (concat "\\end{" org-beamer-frame-environment "}"))))))
(ert-deftest test-ox-beamer-with-author()
"Test that setting `org-export-with-author' to `nil' suppressed the author
from the generated LaTeX"
(let ((org-export-with-author nil))
(org-test-with-exported-text
'beamer
"#+STARTUP: beamer
#+TITLE: Title
#+SUBTITLE: SubTitle
#+AUTHOR: Yo
#+LATEX_CLASS: beamer
#+LATEX_CLASS_OPTIONS: [presentation]
#+BEAMER_THEME: Boadilla
#+OPTIONS: H:2 toc:t num:t
* Hola
** Hola 1
- Hola2"
(goto-char (point-min))
(should-not (search-forward "\\author{Yo}" nil t))
(goto-char (point-min))
(should (search-forward " pdfauthor={}," nil t)))))
(ert-deftest test-ox-beamer-with-title()
"Test that setting `org-export-with-title' to `nil' suppressed the author
from the generated LaTeX"
(let ((org-export-with-title nil))
(org-test-with-exported-text
'beamer
"#+STARTUP: beamer
#+TITLE: Title
#+SUBTITLE: SubTitle
#+AUTHOR: Yo
#+LATEX_CLASS: beamer
#+LATEX_CLASS_OPTIONS: [presentation]
#+BEAMER_THEME: Boadilla
#+OPTIONS: H:2 toc:t num:t
* Hola
** Hola 1
- Hola2"
(goto-char (point-min))
(should-not (search-forward "\\title{Title}" nil t))
(goto-char (point-min))
(should (search-forward " pdftitle={}," nil t)))))
(provide 'test-ox-beamer)
;;; test-ox-beamer.el ends here
|