| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 | 
							- ;;; test-org-macro.el --- Tests for org-macro.el
 
- ;; Copyright (C) 2013, 2014  Nicolas Goaziou
 
- ;; 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
 
-     "success success\\'"
 
-     (org-test-with-temp-text
 
-         (format "#+MACRO: other-macro success
 
- #+SETUPFILE: \"%sexamples/macro-templates.org\"
 
- {{{included-macro}}} {{{other-macro}}}"
 
-                 org-test-dir)
 
-       (org-macro-initialize-templates)
 
-       (org-macro-replace-all org-macro-templates)
 
-       (buffer-string))))
 
-   ;; Macro expansion ignores narrowing.
 
-   (should
 
-    (string-match-p
 
-     "{{{macro}}}"
 
-     (org-test-with-temp-text
 
-         "#+MACRO: macro expansion\n{{{macro}}}\n<point>Contents"
 
-       (narrow-to-region (point) (point-max))
 
-       (org-macro-initialize-templates)
 
-       (org-macro-replace-all org-macro-templates)
 
-       (org-with-wide-buffer (buffer-string)))))
 
-   ;; Macros in a commented tree are not expanded.
 
-   (should
 
-    (string-match-p
 
-     "{{{macro}}}"
 
-     (org-test-with-temp-text
 
-         "#+MACRO: macro expansion\n* COMMENT H\n<point>{{{macro}}}"
 
-       (org-macro-initialize-templates)
 
-       (org-macro-replace-all org-macro-templates)
 
-       (org-with-wide-buffer (buffer-string)))))
 
-   (should
 
-    (string-match-p
 
-     "{{{macro}}}"
 
-     (org-test-with-temp-text
 
-         "#+MACRO: macro expansion\n* COMMENT H1\n** H2\n<point>{{{macro}}}"
 
-       (org-macro-initialize-templates)
 
-       (org-macro-replace-all org-macro-templates)
 
-       (org-with-wide-buffer (buffer-string))))))
 
- (ert-deftest test-org-macro/property ()
 
-   "Test {{{property}}} macro."
 
-   ;; With only one argument, retrieve property from current headline.
 
-   ;; Otherwise, the second argument is a search option to get the
 
-   ;; property from another headline.
 
-   (should
 
-    (equal "1"
 
-           (org-test-with-temp-text
 
-               "* H\n:PROPERTIES:\n:A: 1\n:END:\n{{{property(A)}}}<point>"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   (should
 
-    (equal "1"
 
-           (org-test-with-temp-text
 
-               "* H\n:PROPERTIES:\n:A: 1\n:END:\n{{{property(A,)}}}<point>"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   (should
 
-    (equal
 
-     "1"
 
-     (org-test-with-temp-text
 
-         "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n{{{property(A,*H1)}}}<point>"
 
-       (org-macro-initialize-templates)
 
-       (org-macro-replace-all org-macro-templates)
 
-       (buffer-substring-no-properties
 
-        (line-beginning-position) (line-end-position)))))
 
-   (should-error
 
-    (org-test-with-temp-text
 
-        "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n{{{property(A,*???)}}}<point>"
 
-      (org-macro-initialize-templates)
 
-      (org-macro-replace-all org-macro-templates))))
 
- (ert-deftest test-org-macro/n ()
 
-   "Test {{{n}}} macro."
 
-   ;; Standard test with default counter.
 
-   (should
 
-    (equal "1 2"
 
-           (org-test-with-temp-text "{{{n}}} {{{n}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   (should
 
-    (equal "1 2"
 
-           (org-test-with-temp-text "{{{n()}}} {{{n}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   ;; Test alternative counters.
 
-   (should
 
-    (equal "1 1 1 2"
 
-           (org-test-with-temp-text "{{{n}}} {{{n(c1)}}} {{{n(c2)}}} {{{n(c1)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   ;; Second argument set a counter to a given value.  A non-numeric
 
-   ;; value resets the counter to 1.
 
-   (should
 
-    (equal "9 10"
 
-           (org-test-with-temp-text "{{{n(c,9)}}} {{{n(c)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   (should
 
-    (equal "9 1"
 
-           (org-test-with-temp-text "{{{n(c,9)}}} {{{n(c,reset)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   ;; Tolerate spaces in second argument.
 
-   (should
 
-    (equal "9 10"
 
-           (org-test-with-temp-text "{{{n(c, 9)}}} {{{n(c)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   (should
 
-    (equal "9 1"
 
-           (org-test-with-temp-text "{{{n(c,9)}}} {{{n(c, reset)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   ;; Second argument also applies to default counter.
 
-   (should
 
-    (equal "9 10 1"
 
-           (org-test-with-temp-text "{{{n(,9)}}} {{{n}}} {{{n(,reset)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position)))))
 
-   ;; An empty second argument is equivalent to no argument.
 
-   (should
 
-    (equal "2 3"
 
-           (org-test-with-temp-text "{{{n(c,2)}}} {{{n(c,)}}}"
 
-             (org-macro-initialize-templates)
 
-             (org-macro-replace-all org-macro-templates)
 
-             (buffer-substring-no-properties
 
-              (line-beginning-position) (line-end-position))))))
 
- (ert-deftest test-org-macro/escape-arguments ()
 
-   "Test `org-macro-escape-arguments' specifications."
 
-   ;; Regular tests.
 
-   (should (equal "a" (org-macro-escape-arguments "a")))
 
-   (should (equal "a,b" (org-macro-escape-arguments "a" "b")))
 
-   ;; Handle empty arguments.
 
-   (should (equal "a,,b" (org-macro-escape-arguments "a" "" "b")))
 
-   ;; Properly escape commas and backslashes preceding them.
 
-   (should (equal "a\\,b" (org-macro-escape-arguments "a,b")))
 
-   (should (equal "a\\\\,b" (org-macro-escape-arguments "a\\" "b")))
 
-   (should (equal "a\\\\\\,b" (org-macro-escape-arguments "a\\,b"))))
 
- (ert-deftest test-org-macro/extract-arguments ()
 
-   "Test `org-macro-extract-arguments' specifications."
 
-   ;; Regular tests.
 
-   (should (equal '("a") (org-macro-extract-arguments "a")))
 
-   (should (equal '("a" "b") (org-macro-extract-arguments "a,b")))
 
-   ;; Handle empty arguments.
 
-   (should (equal '("a" "" "b") (org-macro-extract-arguments "a,,b")))
 
-   ;; Handle escaped commas and backslashes.
 
-   (should (equal '("a,b") (org-macro-extract-arguments "a\\,b")))
 
-   (should (equal '("a\\" "b") (org-macro-extract-arguments "a\\\\,b")))
 
-   (should (equal '("a\\,b") (org-macro-extract-arguments "a\\\\\\,b"))))
 
- (provide 'test-org-macro)
 
- ;;; test-org-macro.el ends here
 
 
  |