123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- ;;; test-org.el
- ;; Copyright (c) ߚ David Maus
- ;; Authors: David Maus
- ;; Released under the GNU General Public License version 3
- ;; see: http://www.gnu.org/licenses/gpl-3.0.html
- ;;;; Comments:
- ;; Template test file for Org-mode tests
- ;;; Code:
- (ert-deftest test-org/org-link-escape-ascii-character ()
- "Escape an ascii character."
- (should
- (string=
- "%5B"
- (org-link-escape "["))))
- (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
- "Escape an ascii control character."
- (should
- (string=
- "%09"
- (org-link-escape "\t"))))
- (ert-deftest test-org/org-link-escape-multibyte-character ()
- "Escape an unicode multibyte character."
- (should
- (string=
- "%E2%82%AC"
- (org-link-escape "€"))))
- (ert-deftest test-org/org-link-escape-custom-table ()
- "Escape string with custom character table."
- (should
- (string=
- "Foo%3A%42ar%0A"
- (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
- (ert-deftest test-org/org-link-escape-custom-table-merge ()
- "Escape string with custom table merged with default table."
- (should
- (string=
- "%5BF%6F%6F%3A%42ar%0A%5D"
- (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
- (ert-deftest test-org/org-link-unescape-ascii-character ()
- "Unescape an ascii character."
- (should
- (string=
- "["
- (org-link-unescape "%5B"))))
- (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
- "Unescpae an ascii control character."
- (should
- (string=
- "\n"
- (org-link-unescape "%0A"))))
- (ert-deftest test-org/org-link-unescape-multibyte-character ()
- "Unescape unicode multibyte character."
- (should
- (string=
- "€"
- (org-link-unescape "%E2%82%AC"))))
- (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
- "Unescape old style percent escaped character."
- (should
- (string=
- "àâçèéêîôùû"
- (decode-coding-string (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
- (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
- "Escape and unscape a URL that includes an escaped char.
- http://article.gmane.org/gmane.emacs.orgmode/21459/"
- (should
- (string=
- "http://some.host.com/form?&id=blah%2Bblah25"
- (org-link-unescape (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
- (ert-deftest test-org/accumulated-properties-in-drawers ()
- "Ensure properties accumulate in subtree drawers."
- (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
- (org-babel-next-src-block)
- (should (equal '(2 1) (org-babel-execute-src-block)))))
- ;;; Links
- ;;;; Fuzzy links
- ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
- ;; a target keyword (aka an invisible target: #+TARGET: text), to
- ;; a named element (#+name: text) and to headlines (* Text).
- (ert-deftest test-org/fuzzy-links ()
- "Test fuzzy links specifications."
- ;; 1. Fuzzy link goes in priority to a matching target.
- (org-test-with-temp-text
- "#+TARGET: Test\n#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
- (goto-line 6)
- (org-open-at-point)
- (should (looking-at "<<Test>>")))
- ;; 2. Fuzzy link should then go to a matching target keyword.
- (org-test-with-temp-text
- "#+NAME: Test\n|a|b|\n#+TARGET: Test\n* Test\n[[Test]]"
- (goto-line 5)
- (org-open-at-point)
- (should (looking-at "#\\+TARGET: Test")))
- ;; 3. Then fuzzy link points to an element with a given name.
- (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
- (goto-line 5)
- (org-open-at-point)
- (should (looking-at "#\\+NAME: Test")))
- ;; 4. A target still lead to a matching headline otherwise.
- (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
- (goto-line 4)
- (org-open-at-point)
- (should (looking-at "\\* Head2")))
- ;; 5. With a leading star in link, enforce heading match.
- (org-test-with-temp-text "#+TARGET: Test\n* Test\n<<Test>>\n[[*Test]]"
- (goto-line 4)
- (org-open-at-point)
- (should (looking-at "\\* Test"))))
- ;;; Filling
- (ert-deftest test-org/fill-paragraph ()
- "Test `org-fill-paragraph' specifications."
- ;; At an Org table, align it.
- (org-test-with-temp-text "|a|"
- (org-fill-paragraph)
- (should (equal (buffer-string) "| a |\n")))
- ;; At a paragraph, preserve line breaks.
- (org-test-with-temp-text "some \\\\\nlong\ntext"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string) "some \\\\\nlong text"))))
- ;; Correctly fill a paragraph when point is at its very end.
- (should
- (equal "A B"
- (org-test-with-temp-text "A\nB"
- (let ((fill-column 20))
- (goto-char (point-max))
- (org-fill-paragraph)
- (buffer-string)))))
- ;; Special case: Fill first paragraph when point is at an item or
- ;; a plain-list or a footnote reference.
- (should
- (equal "- A B"
- (org-test-with-temp-text "- A\n B"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
- (should
- (equal "[fn:1] A B"
- (org-test-with-temp-text "[fn:1] A\nB"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
- ;; At a verse block, fill paragraph at point, also preserving line
- ;; breaks. Though, do nothing when point is at the block
- ;; boundaries.
- (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
- (forward-line)
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string)
- "#+BEGIN_VERSE\nSome \\\\\nlong text\n#+END_VERSE"))))
- (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string)
- "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
- ;; Fill contents of `comment-block' elements.
- (should
- (equal
- (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
- (let ((fill-column 20))
- (forward-line)
- (org-fill-paragraph)
- (buffer-string)))
- "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
- ;; Fill `comment' elements.
- (should
- (equal " # A B"
- (org-test-with-temp-text " # A\n # B"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
- ;; Do nothing at affiliated keywords.
- (org-test-with-temp-text "#+NAME: para\nSome\ntext."
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string) "#+NAME: para\nSome\ntext.")))))
- (ert-deftest test-org/auto-fill-function ()
- "Test auto-filling features."
- ;; Auto fill paragraph.
- (should
- (equal "12345\n7890"
- (org-test-with-temp-text "12345 7890"
- (let ((fill-column 5))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- ;; Auto fill first paragraph in an item.
- (should
- (equal "- 12345\n 7890"
- (org-test-with-temp-text "- 12345 7890"
- (let ((fill-column 7))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- ;; Auto fill comments.
- (should
- (equal " # 12345\n # 7890"
- (org-test-with-temp-text " # 12345 7890"
- (let ((fill-column 10))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- ;; Verse and comment block: auto fill contents.
- (should
- (equal "#+BEGIN_VERSE\n12345\n7890\n#+END_VERSE"
- (org-test-with-temp-text "#+BEGIN_VERSE\n12345 7890\n#+END_VERSE"
- (let ((fill-column 5))
- (forward-line)
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- (should
- (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
- (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
- (let ((fill-column 5))
- (forward-line)
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- ;; Do not fill if a new item could be created.
- (should-not
- (equal "12345\n- 90"
- (org-test-with-temp-text "12345 - 90"
- (let ((fill-column 5))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- ;; Do not fill if a line break could be introduced.
- (should-not
- (equal "123\\\\\n7890"
- (org-test-with-temp-text "123\\\\ 7890"
- (let ((fill-column 6))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- ;; Do not fill affiliated keywords.
- (should-not
- (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
- (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
- (let ((fill-column 20))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string))))))
- ;;; Comments
- (ert-deftest test-org/comment-dwim ()
- "Test `comment-dwim' behaviour in an Org buffer."
- ;; No region selected, no comment on current line and line not
- ;; empty: insert comment on line above.
- (should
- (equal "# \nComment"
- (org-test-with-temp-text "Comment"
- (progn (call-interactively 'comment-dwim)
- (buffer-string)))))
- ;; No region selected, no comment on current line and line empty:
- ;; insert comment on this line.
- (should
- (equal "# \nParagraph"
- (org-test-with-temp-text "\nParagraph"
- (progn (call-interactively 'comment-dwim)
- (buffer-string)))))
- ;; No region selected, and a comment on this line: indent it.
- (should
- (equal "* Headline\n # Comment"
- (org-test-with-temp-text "* Headline\n# Comment"
- (progn (forward-line)
- (let ((org-adapt-indentation t))
- (call-interactively 'comment-dwim))
- (buffer-string)))))
- ;; Also recognize single # at column 0 as comments.
- (should
- (equal "# Comment"
- (org-test-with-temp-text "# Comment"
- (progn (forward-line)
- (call-interactively 'comment-dwim)
- (buffer-string)))))
- ;; Region selected and only comments and blank lines within it:
- ;; un-comment all commented lines.
- (should
- (equal "Comment 1\n\nComment 2"
- (org-test-with-temp-text "# Comment 1\n\n# Comment 2"
- (progn
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (call-interactively 'comment-dwim)
- (buffer-string)))))
- ;; Region selected without comments: comment all non-blank lines.
- (should
- (equal "# Comment 1\n\n# Comment 2"
- (org-test-with-temp-text "Comment 1\n\nComment 2"
- (progn
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (call-interactively 'comment-dwim)
- (buffer-string))))))
- ;;; Mark region
- (ert-deftest test-org/mark-subtree ()
- "Test `org-mark-subtree' specifications."
- ;; Error when point is before first headline.
- (should-error
- (org-test-with-temp-text "Paragraph\n* Headline\nBody"
- (progn (transient-mark-mode 1)
- (org-mark-subtree))))
- ;; Without argument, mark current subtree.
- (should
- (equal
- '(12 32)
- (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
- (progn (transient-mark-mode 1)
- (forward-line 2)
- (org-mark-subtree)
- (list (region-beginning) (region-end))))))
- ;; With an argument, move ARG up.
- (should
- (equal
- '(1 32)
- (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
- (progn (transient-mark-mode 1)
- (forward-line 2)
- (org-mark-subtree 1)
- (list (region-beginning) (region-end)))))))
- (provide 'test-org)
- ;;; test-org.el ends here
|