test-ox-publish.el 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. ;;; test-ox-publish.el --- Tests for "ox-publish.el" -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2016 Nicolas Goaziou
  3. ;; Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
  4. ;; This program is free software; you can redistribute it and/or modify
  5. ;; it under the terms of the GNU General Public License as published by
  6. ;; the Free Software Foundation, either version 3 of the License, or
  7. ;; (at your option) any later version.
  8. ;; This program is distributed in the hope that it will be useful,
  9. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;; GNU General Public License for more details.
  12. ;; You should have received a copy of the GNU General Public License
  13. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. ;;; Code:
  15. (defun org-test-publish (properties handler)
  16. "Publish a project defined by PROPERTIES.
  17. Call HANDLER with the publishing directory as its sole argument.
  18. Unless set otherwise in PROPERTIES, `:base-directory' is set to
  19. \"examples/pub/\" sub-directory from test directory and
  20. `:publishing-function' is set to `org-publish-attachment'."
  21. (let* ((org-publish-use-timestamps-flag nil)
  22. (org-publish-cache nil)
  23. (base-dir (expand-file-name "examples/pub/" org-test-dir))
  24. (pub-dir (make-temp-file "org-test" t))
  25. (org-publish-timestamp-directory
  26. (expand-file-name ".org-timestamps/" pub-dir))
  27. (project
  28. `("test" ,@(org-combine-plists
  29. `(:base-directory
  30. ,base-dir
  31. :publishing-function org-publish-attachment)
  32. properties
  33. `(:publishing-directory ,pub-dir)))))
  34. (unwind-protect
  35. (progn
  36. (org-publish-projects (list project))
  37. (funcall handler pub-dir))
  38. ;; Clear published data.
  39. (delete-directory pub-dir t)
  40. ;; Delete auto-generated site-map file, if applicable.
  41. (let ((site-map (and (plist-get properties :auto-sitemap)
  42. (expand-file-name
  43. (or (plist-get properties :sitemap-filename)
  44. "sitemap.org")
  45. base-dir))))
  46. (when (and site-map (file-exists-p site-map))
  47. (delete-file site-map))))))
  48. ;;; Site-map
  49. (ert-deftest test-org-publish/sitemap ()
  50. "Test site-map specifications."
  51. ;; Site-map creation is controlled with `:auto-sitemap'. It
  52. ;; defaults to "sitemap.org".
  53. (should
  54. (org-test-publish
  55. '(:auto-sitemap t)
  56. (lambda (dir) (file-exists-p (expand-file-name "sitemap.org" dir)))))
  57. (should-not
  58. (org-test-publish
  59. '(:auto-sitemap nil)
  60. (lambda (dir) (file-exists-p (expand-file-name "sitemap.org" dir)))))
  61. ;; Site-map file name is controlled with `:sitemap-filename'.
  62. (should
  63. (org-test-publish
  64. '(:auto-sitemap t :sitemap-filename "mysitemap.org")
  65. (lambda (dir) (file-exists-p (expand-file-name "mysitemap.org" dir)))))
  66. ;; Site-map title is controlled with `:sitemap-title'. It defaults
  67. ;; to the project name.
  68. (should
  69. (equal "#+TITLE: Sitemap for project test"
  70. (org-test-publish
  71. '(:auto-sitemap t)
  72. (lambda (dir)
  73. (with-temp-buffer
  74. (insert-file-contents (expand-file-name "sitemap.org" dir))
  75. (buffer-substring (point) (line-end-position)))))))
  76. (should
  77. (equal "#+TITLE: My title"
  78. (org-test-publish
  79. '(:auto-sitemap t :sitemap-title "My title")
  80. (lambda (dir)
  81. (with-temp-buffer
  82. (insert-file-contents (expand-file-name "sitemap.org" dir))
  83. (buffer-substring (point) (line-end-position)))))))
  84. ;; Allowed site-map styles: `list' and `tree'.
  85. (should
  86. (equal "
  87. - [[file:a.org][A]]
  88. - [[file:b.org][b]]
  89. - [[file:sub/c.org][C]]"
  90. (org-test-publish
  91. '(:auto-sitemap t
  92. :sitemap-sort-folders ignore
  93. :sitemap-style list
  94. :exclude "."
  95. :include ("a.org" "b.org" "sub/c.org"))
  96. (lambda (dir)
  97. (with-temp-buffer
  98. (insert-file-contents (expand-file-name "sitemap.org" dir))
  99. (buffer-substring (line-beginning-position 2) (point-max)))))))
  100. (should
  101. (equal "
  102. - [[file:a.org][A]]
  103. - [[file:b.org][b]]
  104. - sub
  105. - [[file:sub/c.org][C]]"
  106. (org-test-publish
  107. '(:auto-sitemap t
  108. :sitemap-style tree
  109. :exclude "."
  110. :include ("a.org" "b.org" "sub/c.org"))
  111. (lambda (dir)
  112. (with-temp-buffer
  113. (insert-file-contents (expand-file-name "sitemap.org" dir))
  114. (buffer-substring (line-beginning-position 2) (point-max)))))))
  115. ;; When style is `list', `:sitemap-sort-folders' controls the order
  116. ;; of appearance of directories among published files.
  117. (should
  118. (equal
  119. "
  120. - sub/
  121. - [[file:a.org][A]]
  122. - [[file:sub/c.org][C]]"
  123. (org-test-publish
  124. '(:auto-sitemap t
  125. :recursive t
  126. :sitemap-style list
  127. :sitemap-sort-folders first
  128. :exclude "."
  129. :include ("a.org" "sub/c.org"))
  130. (lambda (dir)
  131. (with-temp-buffer
  132. (insert-file-contents (expand-file-name "sitemap.org" dir))
  133. (buffer-substring (line-beginning-position 2) (point-max)))))))
  134. (should
  135. (equal
  136. "
  137. - [[file:a.org][A]]
  138. - [[file:sub/c.org][C]]
  139. - sub/"
  140. (org-test-publish
  141. '(:auto-sitemap t
  142. :recursive t
  143. :sitemap-style list
  144. :sitemap-sort-folders last
  145. :exclude "."
  146. :include ("a.org" "sub/c.org"))
  147. (lambda (dir)
  148. (with-temp-buffer
  149. (insert-file-contents (expand-file-name "sitemap.org" dir))
  150. (buffer-substring (line-beginning-position 2) (point-max)))))))
  151. ;; When style is `list', `:sitemap-sort-folders' can be used to
  152. ;; toggle visibility of directories in the site-map.
  153. (should
  154. (let ((case-fold-search t))
  155. (string-match-p
  156. "- sub/$"
  157. (org-test-publish
  158. '(:auto-sitemap t
  159. :recursive t
  160. :sitemap-style list
  161. :sitemap-sort-folders t
  162. :exclude "."
  163. :include ("a.org" "sub/c.org"))
  164. (lambda (dir)
  165. (with-temp-buffer
  166. (insert-file-contents (expand-file-name "sitemap.org" dir))
  167. (buffer-substring (line-beginning-position 2) (point-max))))))))
  168. (should-not
  169. (string-match-p
  170. "- sub/$"
  171. (org-test-publish
  172. '(:auto-sitemap t
  173. :recursive t
  174. :sitemap-style list
  175. :sitemap-sort-folders ignore
  176. :exclude "."
  177. :include ("a.org" "sub/c.org"))
  178. (lambda (dir)
  179. (with-temp-buffer
  180. (insert-file-contents (expand-file-name "sitemap.org" dir))
  181. (buffer-substring (line-beginning-position 2) (point-max)))))))
  182. ;; Using `:sitemap-sort-files', files can be sorted alphabetically
  183. ;; (according to their title, or file name when there is none),
  184. ;; chronologically a anti-chronologically.
  185. (should
  186. (equal
  187. "
  188. - [[file:a.org][A]]
  189. - [[file:b.org][b]]
  190. - [[file:sub/c.org][C]]"
  191. (org-test-publish
  192. '(:auto-sitemap t
  193. :recursive t
  194. :sitemap-style list
  195. :sitemap-sort-folders ignore
  196. :sitemap-sort-files alphabetically
  197. :exclude "."
  198. :include ("a.org" "b.org" "sub/c.org"))
  199. (lambda (dir)
  200. (with-temp-buffer
  201. (insert-file-contents (expand-file-name "sitemap.org" dir))
  202. (buffer-substring (line-beginning-position 2) (point-max)))))))
  203. (should
  204. (equal
  205. "
  206. - [[file:b.org][b]]
  207. - [[file:sub/c.org][C]]
  208. - [[file:a.org][A]]"
  209. (org-test-publish
  210. '(:auto-sitemap t
  211. :recursive t
  212. :sitemap-style list
  213. :sitemap-sort-folders ignore
  214. :sitemap-sort-files chronologically
  215. :exclude "."
  216. :include ("a.org" "b.org" "sub/c.org"))
  217. (lambda (dir)
  218. (with-temp-buffer
  219. (insert-file-contents (expand-file-name "sitemap.org" dir))
  220. (buffer-substring (line-beginning-position 2) (point-max)))))))
  221. (should
  222. (equal
  223. "
  224. - [[file:a.org][A]]
  225. - [[file:sub/c.org][C]]
  226. - [[file:b.org][b]]"
  227. (org-test-publish
  228. '(:auto-sitemap t
  229. :recursive t
  230. :sitemap-style list
  231. :sitemap-sort-folders ignore
  232. :sitemap-sort-files anti-chronologically
  233. :exclude "."
  234. :include ("a.org" "b.org" "sub/c.org"))
  235. (lambda (dir)
  236. (with-temp-buffer
  237. (insert-file-contents (expand-file-name "sitemap.org" dir))
  238. (buffer-substring (line-beginning-position 2) (point-max)))))))
  239. ;; `:sitemap-format-entry' formats entries in the site-map whereas
  240. ;; `:sitemap-function' controls the full site-map.
  241. (should
  242. (equal "
  243. - a.org"
  244. (org-test-publish
  245. '(:auto-sitemap t
  246. :exclude "."
  247. :include ("a.org")
  248. :sitemap-format-entry
  249. (lambda (f _s _p) f))
  250. (lambda (dir)
  251. (with-temp-buffer
  252. (insert-file-contents (expand-file-name "sitemap.org" dir))
  253. (buffer-substring (line-beginning-position 2) (point-max)))))))
  254. (should
  255. (equal "Custom!"
  256. (org-test-publish
  257. '(:auto-sitemap t
  258. :exclude "."
  259. :include ("a.org")
  260. :sitemap-function (lambda (title _files) "Custom!"))
  261. (lambda (dir)
  262. (with-temp-buffer
  263. (insert-file-contents (expand-file-name "sitemap.org" dir))
  264. (buffer-string))))))
  265. (should
  266. (equal "[[file:a.org][A]]"
  267. (org-test-publish
  268. '(:auto-sitemap t
  269. :exclude "."
  270. :include ("a.org")
  271. :sitemap-function
  272. (lambda (title files) (org-list-to-generic files nil)))
  273. (lambda (dir)
  274. (with-temp-buffer
  275. (insert-file-contents (expand-file-name "sitemap.org" dir))
  276. (buffer-string)))))))
  277. (provide 'test-ox-publish)
  278. ;;; test-ox-publish.el ends here