2013-02-16 08:03:59 -05:00
|
|
|
|
;;; test-org-macro.el --- Tests for org-macro.el
|
|
|
|
|
|
2014-01-07 08:18:17 -05:00
|
|
|
|
;; Copyright (C) 2013, 2014 Nicolas Goaziou
|
2013-02-16 08:03:59 -05:00
|
|
|
|
|
|
|
|
|
;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
|
|
|
|
|
|
|
|
|
|
;; 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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Macros
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/macro-replace-all ()
|
|
|
|
|
"Test `org-macro-replace-all' specifications."
|
|
|
|
|
;; Standard test.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+MACRO: A B\n1 B 3"
|
|
|
|
|
(org-test-with-temp-text "#+MACRO: A B\n1 {{{A}}} 3"
|
|
|
|
|
(progn (org-macro-initialize-templates)
|
|
|
|
|
(org-macro-replace-all org-macro-templates)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; Macro with arguments.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+MACRO: macro $1 $2\nsome text"
|
|
|
|
|
(org-test-with-temp-text "#+MACRO: macro $1 $2\n{{{macro(some,text)}}}"
|
|
|
|
|
(progn (org-macro-initialize-templates)
|
|
|
|
|
(org-macro-replace-all org-macro-templates)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; Macro with "eval".
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+MACRO: add (eval (+ $1 $2))\n3"
|
|
|
|
|
(org-test-with-temp-text "#+MACRO: add (eval (+ $1 $2))\n{{{add(1,2)}}}"
|
|
|
|
|
(progn (org-macro-initialize-templates)
|
|
|
|
|
(org-macro-replace-all org-macro-templates)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; Nested macros.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+MACRO: in inner\n#+MACRO: out {{{in}}} outer\ninner outer"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"#+MACRO: in inner\n#+MACRO: out {{{in}}} outer\n{{{out}}}"
|
|
|
|
|
(progn (org-macro-initialize-templates)
|
|
|
|
|
(org-macro-replace-all org-macro-templates)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; Error out when macro expansion is circular.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"#+MACRO: mac1 {{{mac2}}}\n#+MACRO: mac2 {{{mac1}}}\n{{{mac1}}}"
|
|
|
|
|
(org-macro-initialize-templates)
|
|
|
|
|
(org-macro-replace-all org-macro-templates)))
|
|
|
|
|
;; Macros in setup file.
|
|
|
|
|
(should
|
|
|
|
|
(string-match
|
2013-04-01 09:44:15 -04:00
|
|
|
|
"success success\\'"
|
2013-02-16 08:03:59 -05:00
|
|
|
|
(org-test-with-temp-text
|
2013-04-01 09:44:15 -04:00
|
|
|
|
(format "#+MACRO: other-macro success
|
|
|
|
|
#+SETUPFILE: \"%sexamples/macro-templates.org\"
|
|
|
|
|
{{{included-macro}}} {{{other-macro}}}"
|
|
|
|
|
org-test-dir)
|
2013-02-16 08:03:59 -05:00
|
|
|
|
(org-macro-initialize-templates)
|
|
|
|
|
(org-macro-replace-all org-macro-templates)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'test-org-macro)
|
|
|
|
|
;;; test-org-macro.el ends here
|