2012-12-13 11:24:19 -05:00
|
|
|
|
;;; test-org.el --- tests for org.el
|
2010-11-21 13:51:50 -05:00
|
|
|
|
|
2012-12-13 11:24:19 -05:00
|
|
|
|
;; Copyright (c) David Maus
|
2010-11-21 13:51:50 -05:00
|
|
|
|
;; Authors: David Maus
|
|
|
|
|
|
2012-12-13 11:24:19 -05:00
|
|
|
|
;; This file is not part of GNU Emacs.
|
2010-11-21 13:51:50 -05:00
|
|
|
|
|
2012-12-13 11:24:19 -05:00
|
|
|
|
;; 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/>.
|
|
|
|
|
|
|
|
|
|
;;; Comments:
|
2010-11-21 13:51:50 -05:00
|
|
|
|
|
|
|
|
|
;; Template test file for Org-mode tests
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
|
|
|
|
;;; Comments
|
2010-11-21 13:51:50 -05:00
|
|
|
|
|
2014-03-24 16:46:00 -04:00
|
|
|
|
(ert-deftest test-org/toggle-comment ()
|
|
|
|
|
"Test `org-toggle-comment' specifications."
|
|
|
|
|
;; Simple headline.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* Test"
|
|
|
|
|
(org-test-with-temp-text "* COMMENT Test"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "* COMMENT Test"
|
|
|
|
|
(org-test-with-temp-text "* Test"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Headline with a regular keyword.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* TODO Test"
|
|
|
|
|
(org-test-with-temp-text "* TODO COMMENT Test"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "* TODO COMMENT Test"
|
|
|
|
|
(org-test-with-temp-text "* TODO Test"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Empty headline.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* "
|
|
|
|
|
(org-test-with-temp-text "* COMMENT"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "* COMMENT"
|
|
|
|
|
(org-test-with-temp-text "* "
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Headline with a single keyword.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* TODO "
|
|
|
|
|
(org-test-with-temp-text "* TODO COMMENT"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "* TODO COMMENT"
|
|
|
|
|
(org-test-with-temp-text "* TODO"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Headline with a keyword, a priority cookie and contents.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* TODO [#A] Headline"
|
|
|
|
|
(org-test-with-temp-text "* TODO [#A] COMMENT Headline"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "* TODO [#A] COMMENT Headline"
|
|
|
|
|
(org-test-with-temp-text "* TODO [#A] Headline"
|
|
|
|
|
(org-toggle-comment)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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.
|
2010-11-21 13:51:50 -05:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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.
|
2010-11-21 13:51:50 -05:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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.
|
2010-11-29 15:04:41 -05:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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.
|
2012-08-31 17:51:47 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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.
|
2012-08-31 17:51:47 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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)))))
|
2013-07-10 08:00:30 -04:00
|
|
|
|
;; Region selected without comments: comment all lines if
|
|
|
|
|
;; `comment-empty-lines' is non-nil, only non-blank lines otherwise.
|
2012-08-31 17:51:47 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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))
|
2013-07-10 08:00:30 -04:00
|
|
|
|
(let ((comment-empty-lines nil))
|
|
|
|
|
(call-interactively 'comment-dwim))
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
(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))
|
|
|
|
|
(let ((comment-empty-lines t))
|
|
|
|
|
(call-interactively 'comment-dwim))
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; In front of a keyword without region, insert a new comment.
|
2012-08-31 17:51:47 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(equal "# \n#+KEYWORD: value"
|
|
|
|
|
(org-test-with-temp-text "#+KEYWORD: value"
|
|
|
|
|
(progn (call-interactively 'comment-dwim)
|
2013-11-04 12:00:40 -05:00
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; In a source block, use appropriate syntax.
|
|
|
|
|
(should
|
|
|
|
|
(equal " ;; "
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n\n#+END_SRC"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-edit-src-content-indentation 2))
|
|
|
|
|
(call-interactively 'comment-dwim))
|
|
|
|
|
(buffer-substring-no-properties (line-beginning-position) (point)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_SRC emacs-lisp\n ;; a\n ;; b\n#+END_SRC"
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\na\nb\n#+END_SRC"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(transient-mark-mode 1)
|
|
|
|
|
(push-mark (point) t t)
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(let ((org-edit-src-content-indentation 2))
|
|
|
|
|
(call-interactively 'comment-dwim))
|
|
|
|
|
(buffer-string)))))
|
2012-08-31 17:51:47 -04:00
|
|
|
|
|
|
|
|
|
|
2012-10-12 11:52:47 -04:00
|
|
|
|
|
2012-12-30 04:27:02 -05:00
|
|
|
|
;;; Date and time analysis
|
2012-10-12 11:52:47 -04:00
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-read-date ()
|
|
|
|
|
"Test `org-read-date' specifications."
|
|
|
|
|
;; Parse ISO date with abbreviated year and month.
|
|
|
|
|
(should (equal "2012-03-29 16:40"
|
|
|
|
|
(let ((org-time-was-given t))
|
|
|
|
|
(org-read-date t nil "12-3-29 16:40"))))
|
|
|
|
|
;; Parse Europeans dates.
|
|
|
|
|
(should (equal "2012-03-29 16:40"
|
|
|
|
|
(let ((org-time-was-given t))
|
|
|
|
|
(org-read-date t nil "29.03.2012 16:40"))))
|
|
|
|
|
;; Parse Europeans dates without year.
|
|
|
|
|
(should (string-match "2[0-9]\\{3\\}-03-29 16:40"
|
|
|
|
|
(let ((org-time-was-given t))
|
|
|
|
|
(org-read-date t nil "29.03. 16:40")))))
|
|
|
|
|
|
2012-12-30 04:27:02 -05:00
|
|
|
|
(ert-deftest test-org/org-parse-time-string ()
|
|
|
|
|
"Test `org-parse-time-string'."
|
|
|
|
|
(should (equal (org-parse-time-string "2012-03-29 16:40")
|
|
|
|
|
'(0 40 16 29 3 2012 nil nil nil)))
|
|
|
|
|
(should (equal (org-parse-time-string "[2012-03-29 16:40]")
|
|
|
|
|
'(0 40 16 29 3 2012 nil nil nil)))
|
|
|
|
|
(should (equal (org-parse-time-string "<2012-03-29 16:40>")
|
|
|
|
|
'(0 40 16 29 3 2012 nil nil nil)))
|
|
|
|
|
(should (equal (org-parse-time-string "<2012-03-29>")
|
|
|
|
|
'(0 0 0 29 3 2012 nil nil nil)))
|
|
|
|
|
(should (equal (org-parse-time-string "<2012-03-29>" t)
|
|
|
|
|
'(0 nil nil 29 3 2012 nil nil nil))))
|
2012-10-12 11:52:47 -04:00
|
|
|
|
|
2012-07-28 04:24:08 -04:00
|
|
|
|
|
|
|
|
|
;;; Filling
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/fill-paragraph ()
|
|
|
|
|
"Test `org-fill-paragraph' specifications."
|
|
|
|
|
;; At an Org table, align it.
|
2013-04-26 08:27:38 -04:00
|
|
|
|
(should
|
|
|
|
|
(equal "| a |\n"
|
|
|
|
|
(org-test-with-temp-text "|a|"
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+name: table\n| a |\n"
|
|
|
|
|
(org-test-with-temp-text "#+name: table\n| a |"
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string))))
|
2012-07-28 04:24:08 -04:00
|
|
|
|
;; 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"))))
|
2012-07-31 14:49:11 -04:00
|
|
|
|
;; Correctly fill a paragraph when point is at its very end.
|
2012-07-31 09:27:58 -04:00
|
|
|
|
(should
|
|
|
|
|
(equal "A B"
|
|
|
|
|
(org-test-with-temp-text "A\nB"
|
|
|
|
|
(let ((fill-column 20))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2012-08-08 03:54:56 -04:00
|
|
|
|
;; Correctly fill the last paragraph of a greater element.
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
|
|
|
|
|
(let ((fill-column 8))
|
|
|
|
|
(forward-line)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2012-08-19 06:56:57 -04:00
|
|
|
|
;; Correctly fill an element in a narrowed buffer.
|
|
|
|
|
(should
|
|
|
|
|
(equal "01234\n6"
|
|
|
|
|
(org-test-with-temp-text "01234 6789"
|
|
|
|
|
(let ((fill-column 5))
|
|
|
|
|
(narrow-to-region 1 8)
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2013-07-28 04:14:35 -04:00
|
|
|
|
;; Handle `adaptive-fill-regexp' in paragraphs.
|
|
|
|
|
(should
|
|
|
|
|
(equal "> a b"
|
|
|
|
|
(org-test-with-temp-text "> a\n> b"
|
|
|
|
|
(let ((fill-column 5)
|
|
|
|
|
(adaptive-fill-regexp "[ \t]*>+[ \t]*"))
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2012-07-31 14:49:11 -04:00
|
|
|
|
;; 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)))))
|
2012-07-28 04:24:08 -04:00
|
|
|
|
(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"))
|
2012-07-31 19:27:27 -04:00
|
|
|
|
;; Fill `comment' elements.
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(should
|
2012-07-31 19:27:27 -04:00
|
|
|
|
(equal " # A B"
|
|
|
|
|
(org-test-with-temp-text " # A\n # B"
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(let ((fill-column 20))
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2013-07-09 07:49:17 -04:00
|
|
|
|
;; Do not mix consecutive comments when filling one of them.
|
|
|
|
|
(should
|
|
|
|
|
(equal "# A B\n\n# C"
|
|
|
|
|
(org-test-with-temp-text "# A\n# B\n\n# C"
|
|
|
|
|
(let ((fill-column 20))
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2013-07-10 08:00:30 -04:00
|
|
|
|
;; Use commented empty lines as separators when filling comments.
|
|
|
|
|
(should
|
|
|
|
|
(equal "# A B\n#\n# C"
|
|
|
|
|
(org-test-with-temp-text "# A\n# B\n#\n# C"
|
|
|
|
|
(let ((fill-column 20))
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2013-07-28 04:14:35 -04:00
|
|
|
|
;; Handle `adaptive-fill-regexp' in comments.
|
|
|
|
|
(should
|
|
|
|
|
(equal "# > a b"
|
|
|
|
|
(org-test-with-temp-text "# > a\n# > b"
|
|
|
|
|
(let ((fill-column 20)
|
|
|
|
|
(adaptive-fill-regexp "[ \t]*>+[ \t]*"))
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(buffer-string)))))
|
2012-07-28 04:24:08 -04:00
|
|
|
|
;; Do nothing at affiliated keywords.
|
|
|
|
|
(org-test-with-temp-text "#+NAME: para\nSome\ntext."
|
|
|
|
|
(let ((fill-column 20))
|
|
|
|
|
(org-fill-paragraph)
|
2013-02-25 04:06:58 -05:00
|
|
|
|
(should (equal (buffer-string) "#+NAME: para\nSome\ntext."))))
|
|
|
|
|
;; Do not move point after table when filling a table.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "| a | b |\n| c | d |\n"
|
|
|
|
|
(forward-char)
|
|
|
|
|
(org-fill-paragraph)
|
|
|
|
|
(eobp))))
|
2012-07-28 04:24:08 -04:00
|
|
|
|
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(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)))))
|
2013-07-28 04:14:35 -04:00
|
|
|
|
;; Auto fill paragraph when `adaptive-fill-regexp' matches.
|
|
|
|
|
(should
|
2013-08-22 15:45:28 -04:00
|
|
|
|
(equal "> 12345\n 7890"
|
2013-07-28 04:14:35 -04:00
|
|
|
|
(org-test-with-temp-text "> 12345 7890"
|
2013-08-22 15:45:28 -04:00
|
|
|
|
(let ((fill-column 10)
|
|
|
|
|
(adaptive-fill-regexp "[ \t]*>+[ \t]*")
|
|
|
|
|
(adaptive-fill-first-line-regexp "\\`[ ]*\\'"))
|
2013-07-28 04:14:35 -04:00
|
|
|
|
(end-of-line)
|
|
|
|
|
(org-auto-fill-function)
|
|
|
|
|
(buffer-string)))))
|
2013-08-22 15:45:28 -04:00
|
|
|
|
(should
|
|
|
|
|
(equal "> 12345\n> 12345\n> 7890"
|
|
|
|
|
(org-test-with-temp-text "> 12345\n> 12345 7890"
|
|
|
|
|
(let ((fill-column 10)
|
|
|
|
|
(adaptive-fill-regexp "[ \t]*>+[ \t]*"))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-auto-fill-function)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
(should-not
|
|
|
|
|
(equal " 12345\n *12345\n *12345"
|
|
|
|
|
(org-test-with-temp-text " 12345\n *12345 12345"
|
|
|
|
|
(let ((fill-column 10)
|
|
|
|
|
(adaptive-fill-regexp "[ \t]*>+[ \t]*"))
|
|
|
|
|
(goto-char (point-max))
|
2013-07-28 04:14:35 -04:00
|
|
|
|
(org-auto-fill-function)
|
|
|
|
|
(buffer-string)))))
|
2012-07-31 19:27:27 -04:00
|
|
|
|
;; Auto fill comments.
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(should
|
2012-07-31 19:27:27 -04:00
|
|
|
|
(equal " # 12345\n # 7890"
|
|
|
|
|
(org-test-with-temp-text " # 12345 7890"
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(let ((fill-column 10))
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(org-auto-fill-function)
|
|
|
|
|
(buffer-string)))))
|
2012-10-20 05:58:16 -04:00
|
|
|
|
;; A hash within a line isn't a comment.
|
|
|
|
|
(should-not
|
|
|
|
|
(equal "12345 # 7890\n# 1"
|
|
|
|
|
(org-test-with-temp-text "12345 # 7890 1"
|
|
|
|
|
(let ((fill-column 12))
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(org-auto-fill-function)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
;; Correctly interpret empty prefix.
|
|
|
|
|
(should-not
|
|
|
|
|
(equal "# a\n# b\nRegular\n# paragraph"
|
|
|
|
|
(org-test-with-temp-text "# a\n# b\nRegular paragraph"
|
|
|
|
|
(let ((fill-column 12))
|
|
|
|
|
(end-of-line 3)
|
|
|
|
|
(org-auto-fill-function)
|
|
|
|
|
(buffer-string)))))
|
2012-08-24 06:55:25 -04:00
|
|
|
|
;; Comment block: auto fill contents.
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(should
|
2012-08-24 06:55:25 -04:00
|
|
|
|
(equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
|
2012-07-30 09:23:22 -04:00
|
|
|
|
(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))))))
|
|
|
|
|
|
2012-07-28 04:24:08 -04:00
|
|
|
|
|
2013-12-24 08:04:17 -05:00
|
|
|
|
|
|
|
|
|
;;; Indentation
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/indent-line ()
|
|
|
|
|
"Test `org-indent-line' specifications."
|
|
|
|
|
;; Do not indent footnote definitions or headlines.
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "* H"
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "[fn:1] fn"
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; Do not indent before first headline.
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text ""
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; Indent according to headline level otherwise, unless
|
|
|
|
|
;; `org-adapt-indentation' is nil.
|
|
|
|
|
(should
|
|
|
|
|
(= 2
|
|
|
|
|
(org-test-with-temp-text "* H\nA"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(= 2
|
|
|
|
|
(org-test-with-temp-text "* H\n\nA"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "* H\nA"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-adapt-indentation nil)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; Indenting preserves point position.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* H\nAB"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(forward-char)
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(looking-at "B")))
|
|
|
|
|
;; Do not change indentation at an item.
|
|
|
|
|
(should
|
|
|
|
|
(= 1
|
|
|
|
|
(org-test-with-temp-text "* H\n - A"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; On blank lines at the end of a list, indent like last element
|
|
|
|
|
;; within it if the line is still in the list. Otherwise, indent
|
|
|
|
|
;; like the whole list.
|
|
|
|
|
(should
|
|
|
|
|
(= 4
|
|
|
|
|
(org-test-with-temp-text "* H\n- A\n - AA\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "* H\n- A\n - AA\n\n\n\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; Likewise, on a blank line at the end of a footnote definition,
|
|
|
|
|
;; indent at column 0 if line belongs to the definition. Otherwise,
|
|
|
|
|
;; indent like the definition itself.
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "* H\n[fn:1] Definition\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "* H\n[fn:1] Definition\n\n\n\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(let ((org-adapt-indentation t)) (org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; After the end of the contents of a greater element, indent like
|
|
|
|
|
;; the beginning of the element.
|
|
|
|
|
(should
|
|
|
|
|
(= 1
|
|
|
|
|
(org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; At the first line of an element, indent like previous element's
|
|
|
|
|
;; first line, ignoring footnotes definitions and inline tasks, or
|
|
|
|
|
;; according to parent.
|
|
|
|
|
(should
|
|
|
|
|
(= 2
|
|
|
|
|
(org-test-with-temp-text "A\n\n B\n\nC"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(= 1
|
|
|
|
|
(org-test-with-temp-text " A\n\n[fn:1] B\n\n\nC"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
|
|
|
|
(= 1
|
|
|
|
|
(org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; Within code part of a source block, use language major mode if
|
2014-05-19 07:33:28 -04:00
|
|
|
|
;; `org-src-tab-acts-natively' is non-nil. Otherwise, indent
|
|
|
|
|
;; according to line above.
|
2013-12-24 08:04:17 -05:00
|
|
|
|
(should
|
|
|
|
|
(= 6
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(let ((org-src-tab-acts-natively t)
|
|
|
|
|
(org-edit-src-content-indentation 0))
|
|
|
|
|
(org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
(should
|
2014-05-19 07:33:28 -04:00
|
|
|
|
(= 1
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(let ((org-src-tab-acts-natively nil)
|
|
|
|
|
(org-edit-src-content-indentation 0))
|
|
|
|
|
(org-indent-line))
|
|
|
|
|
(org-get-indentation))))
|
2013-12-24 08:04:17 -05:00
|
|
|
|
;; Otherwise, indent like the first non-blank line above.
|
|
|
|
|
(should
|
|
|
|
|
(zerop
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nline1\n\n line2\n#+END_CENTER"
|
|
|
|
|
(forward-line 3)
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(org-get-indentation))))
|
|
|
|
|
;; Align node properties according to `org-property-format'. Handle
|
|
|
|
|
;; nicely empty values.
|
|
|
|
|
(should
|
|
|
|
|
(equal ":PROPERTIES:\n:key: value\n:END:"
|
|
|
|
|
(org-test-with-temp-text ":PROPERTIES:\n:key: value\n:END:"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-property-format "%-10s %s"))
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal ":PROPERTIES:\n:key:\n:END:"
|
|
|
|
|
(org-test-with-temp-text ":PROPERTIES:\n:key:\n:END:"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(let ((org-property-format "%-10s %s"))
|
|
|
|
|
(org-indent-line)
|
|
|
|
|
(buffer-string))))))
|
|
|
|
|
|
2014-04-27 10:48:02 -04:00
|
|
|
|
(ert-deftest test-org/indent-region ()
|
|
|
|
|
"Test `org-indent-region' specifications."
|
|
|
|
|
;; Indent paragraph.
|
|
|
|
|
(should
|
|
|
|
|
(equal "A\nB\nC"
|
|
|
|
|
(org-test-with-temp-text " A\nB\n C"
|
|
|
|
|
(org-indent-region (point-min) (point-max))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Indent greater elements along with their contents.
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_CENTER\nA\nB\n#+END_CENTER"
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\n A\n B\n#+END_CENTER"
|
|
|
|
|
(org-indent-region (point-min) (point-max))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Ignore contents of verse blocks and example blocks.
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
|
|
|
|
|
(org-indent-region (point-min) (point-max))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
|
|
|
|
|
(org-indent-region (point-min) (point-max))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Indent according to mode if `org-src-tab-acts-natively' is
|
|
|
|
|
;; non-nil. Otherwise, do not indent code at all.
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_SRC emacs-lisp\n(and A\n B)\n#+END_SRC"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
|
|
|
|
|
(let ((org-src-tab-acts-natively t)
|
|
|
|
|
(org-edit-src-content-indentation 0))
|
|
|
|
|
(org-indent-region (point-min) (point-max)))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
|
|
|
|
|
(let ((org-src-tab-acts-natively nil)
|
|
|
|
|
(org-edit-src-content-indentation 0))
|
|
|
|
|
(org-indent-region (point-min) (point-max)))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Align node properties according to `org-property-format'. Handle
|
|
|
|
|
;; nicely empty values.
|
|
|
|
|
(should
|
|
|
|
|
(equal ":PROPERTIES:\n:key: value\n:END:"
|
|
|
|
|
(org-test-with-temp-text ":PROPERTIES:\n:key: value\n:END:"
|
|
|
|
|
(let ((org-property-format "%-10s %s"))
|
|
|
|
|
(org-indent-region (point-min) (point-max)))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal ":PROPERTIES:\n:key:\n:END:"
|
|
|
|
|
(org-test-with-temp-text ":PROPERTIES:\n:key:\n:END:"
|
|
|
|
|
(let ((org-property-format "%-10s %s"))
|
|
|
|
|
(org-indent-region (point-min) (point-max)))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Special case: plain lists and footnote definitions.
|
|
|
|
|
(should
|
|
|
|
|
(equal "- A\n B\n - C\n\n D"
|
|
|
|
|
(org-test-with-temp-text "- A\n B\n - C\n\n D"
|
|
|
|
|
(org-indent-region (point-min) (point-max))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "[fn:1] Definition\n\nDefinition"
|
|
|
|
|
(org-test-with-temp-text "[fn:1] Definition\n\n Definition"
|
|
|
|
|
(org-indent-region (point-min) (point-max))
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
|
|
|
|
|
|
2013-09-12 16:48:16 -04:00
|
|
|
|
|
|
|
|
|
;;; Editing
|
|
|
|
|
|
|
|
|
|
;;;; Insert elements
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/meta-return ()
|
|
|
|
|
"Test M-RET (`org-meta-return')."
|
|
|
|
|
;; In a table field insert a row above.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "| a |"
|
|
|
|
|
(forward-char)
|
|
|
|
|
(org-meta-return)
|
|
|
|
|
(forward-line -1)
|
|
|
|
|
(looking-at "| |$")))
|
|
|
|
|
;; In a paragraph change current line into a header.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "a"
|
|
|
|
|
(org-meta-return)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(looking-at "\* a$")))
|
|
|
|
|
;; In an item insert an item, in this case above.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "- a"
|
|
|
|
|
(org-meta-return)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(looking-at "- $")))
|
|
|
|
|
;; In a drawer and item insert an item, in this case above.
|
|
|
|
|
(should
|
2013-10-20 08:40:09 -04:00
|
|
|
|
(org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(org-meta-return)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(looking-at "- $"))))
|
2013-09-12 16:48:16 -04:00
|
|
|
|
|
2014-06-09 12:07:07 -04:00
|
|
|
|
(ert-deftest test-org/insert-heading ()
|
|
|
|
|
"Test `org-insert-heading' specifications."
|
|
|
|
|
;; FIXME: Test coverage is incomplete yet.
|
|
|
|
|
;;
|
|
|
|
|
;; In an empty buffer, insert a new headline.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* "
|
|
|
|
|
(org-test-with-temp-text ""
|
|
|
|
|
(org-insert-heading)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; At the beginning of a line, turn it into a headline
|
|
|
|
|
(should
|
|
|
|
|
(equal "* P"
|
|
|
|
|
(org-test-with-temp-text "<point>P"
|
|
|
|
|
(org-insert-heading)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; In the middle of a line, split the line if allowed, otherwise,
|
|
|
|
|
;; insert the headline at its end.
|
|
|
|
|
(should
|
|
|
|
|
(equal "Para\n* graph"
|
|
|
|
|
(org-test-with-temp-text "Para<point>graph"
|
|
|
|
|
(let ((org-M-RET-may-split-line '((default . t))))
|
|
|
|
|
(org-insert-heading))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "Paragraph\n* "
|
|
|
|
|
(org-test-with-temp-text "Para<point>graph"
|
|
|
|
|
(let ((org-M-RET-may-split-line '((default . nil))))
|
|
|
|
|
(org-insert-heading))
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
|
2013-10-29 04:55:01 -04:00
|
|
|
|
(ert-deftest test-org/insert-todo-heading-respect-content ()
|
|
|
|
|
"Test `org-insert-todo-heading-respect-content' specifications."
|
|
|
|
|
;; Create a TODO heading.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* H1\n Body"
|
|
|
|
|
(org-insert-todo-heading-respect-content)
|
|
|
|
|
(nth 2 (org-heading-components))))
|
2014-04-22 06:08:15 -04:00
|
|
|
|
;; Add headline at the end of the first subtree
|
2013-10-29 04:55:01 -04:00
|
|
|
|
(should
|
2014-04-22 06:08:15 -04:00
|
|
|
|
(org-test-with-temp-text "* H1\nH1Body\n** H2\nH2Body"
|
|
|
|
|
(search-forward "H1Body")
|
2013-10-29 04:55:01 -04:00
|
|
|
|
(org-insert-todo-heading-respect-content)
|
2014-04-22 06:08:15 -04:00
|
|
|
|
(and (eobp) (org-at-heading-p))))
|
2013-10-29 04:55:01 -04:00
|
|
|
|
;; In a list, do not create a new item.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* H\n- an item\n- another one"
|
|
|
|
|
(search-forward "an ")
|
|
|
|
|
(org-insert-todo-heading-respect-content)
|
|
|
|
|
(and (eobp) (org-at-heading-p)))))
|
2013-09-12 16:48:16 -04:00
|
|
|
|
|
|
|
|
|
|
2014-02-06 06:11:06 -05:00
|
|
|
|
|
|
|
|
|
;;; Fixed-Width Areas
|
|
|
|
|
|
2014-05-16 16:14:59 -04:00
|
|
|
|
(ert-deftest test-org/toggle-fixed-width ()
|
2014-02-06 06:11:06 -05:00
|
|
|
|
"Test `org-toggle-fixed-width' specifications."
|
|
|
|
|
;; No region: Toggle on fixed-width marker in paragraphs.
|
|
|
|
|
(should
|
|
|
|
|
(equal ": A"
|
|
|
|
|
(org-test-with-temp-text "A"
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; No region: Toggle off fixed-width markers in fixed-width areas.
|
|
|
|
|
(should
|
|
|
|
|
(equal "A"
|
|
|
|
|
(org-test-with-temp-text ": A"
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; No region: Toggle on marker in blank lines after elements or just
|
|
|
|
|
;; after a headline.
|
|
|
|
|
(should
|
|
|
|
|
(equal "* H\n: "
|
|
|
|
|
(org-test-with-temp-text "* H\n"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n: "
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; No region: Toggle on marker in front of one line elements (e.g.,
|
|
|
|
|
;; headlines, clocks)
|
|
|
|
|
(should
|
|
|
|
|
(equal ": * Headline"
|
|
|
|
|
(org-test-with-temp-text "* Headline"
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal ": #+KEYWORD: value"
|
|
|
|
|
(org-test-with-temp-text "#+KEYWORD: value"
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; No region: error in other situations.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_EXAMPLE\n: A\n#+END_EXAMPLE"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string)))
|
|
|
|
|
;; No region: Indentation is preserved.
|
|
|
|
|
(should
|
|
|
|
|
(equal "- A\n : B"
|
|
|
|
|
(org-test-with-temp-text "- A\n B"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Region: If it contains only fixed-width elements and blank lines,
|
|
|
|
|
;; toggle off fixed-width markup.
|
|
|
|
|
(should
|
|
|
|
|
(equal "A\n\nB"
|
|
|
|
|
(org-test-with-temp-text ": A\n\n: B"
|
|
|
|
|
(transient-mark-mode 1)
|
|
|
|
|
(push-mark (point) t t)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Region: If it contains anything else, toggle on fixed-width but
|
|
|
|
|
;; not on fixed-width areas.
|
|
|
|
|
(should
|
|
|
|
|
(equal ": A\n: \n: B\n: \n: C"
|
|
|
|
|
(org-test-with-temp-text "A\n\n: B\n\nC"
|
|
|
|
|
(transient-mark-mode 1)
|
|
|
|
|
(push-mark (point) t t)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Region: Ignore blank lines at its end, unless it contains only
|
|
|
|
|
;; such lines.
|
|
|
|
|
(should
|
|
|
|
|
(equal ": A\n\n"
|
|
|
|
|
(org-test-with-temp-text "A\n\n"
|
|
|
|
|
(transient-mark-mode 1)
|
|
|
|
|
(push-mark (point) t t)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal ": \n: \n"
|
|
|
|
|
(org-test-with-temp-text "\n\n"
|
|
|
|
|
(transient-mark-mode 1)
|
|
|
|
|
(push-mark (point) t t)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-toggle-fixed-width)
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
|
|
|
|
|
|
2014-03-24 11:12:12 -04:00
|
|
|
|
|
|
|
|
|
;;; Headline
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/in-commented-heading-p ()
|
|
|
|
|
"Test `org-in-commented-heading-p' specifications."
|
|
|
|
|
;; Commented headline.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* COMMENT Headline\nBody"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-in-commented-heading-p)))
|
|
|
|
|
;; Commented ancestor.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-in-commented-heading-p)))
|
|
|
|
|
;; Comment keyword is case-sensitive.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "* Comment Headline\nBody"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-in-commented-heading-p)))
|
|
|
|
|
;; Keyword is standalone.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "* COMMENTHeadline\nBody"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-in-commented-heading-p)))
|
|
|
|
|
;; Optional argument.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-in-commented-heading-p t))))
|
|
|
|
|
|
|
|
|
|
|
2012-07-31 07:21:38 -04:00
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
;;; Links
|
2012-07-31 07:21:38 -04:00
|
|
|
|
|
2014-03-21 09:51:34 -04:00
|
|
|
|
;;;; Coderefs
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/coderef ()
|
|
|
|
|
"Test coderef links specifications."
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
|
\(+ 1 1) (ref:sc)
|
|
|
|
|
#+END_SRC
|
|
|
|
|
\[[(sc)]]"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(looking-at "(ref:sc)"))))
|
|
|
|
|
|
2014-02-23 05:35:34 -05:00
|
|
|
|
;;;; Custom ID
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/custom-id ()
|
|
|
|
|
"Test custom ID links specifications."
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H1\n:PROPERTIES:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom]]"
|
2014-03-02 04:32:51 -05:00
|
|
|
|
(goto-char (point-max))
|
2014-02-23 05:35:34 -05:00
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(org-looking-at-p "\\* H1"))))
|
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
;;;; Fuzzy Links
|
|
|
|
|
|
|
|
|
|
;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
|
|
|
|
|
;; a named element (#+name: text) and to headlines (* Text).
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/fuzzy-links ()
|
|
|
|
|
"Test fuzzy links specifications."
|
2014-03-21 09:51:34 -04:00
|
|
|
|
;; Fuzzy link goes in priority to a matching target.
|
2013-04-04 13:23:07 -04:00
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
|
|
|
|
|
(goto-line 5)
|
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(looking-at "<<Test>>")))
|
2014-03-21 09:51:34 -04:00
|
|
|
|
;; Then fuzzy link points to an element with a given name.
|
2013-04-04 13:23:07 -04:00
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
|
|
|
|
|
(goto-line 5)
|
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(looking-at "#\\+NAME: Test")))
|
2014-03-21 09:51:34 -04:00
|
|
|
|
;; A target still lead to a matching headline otherwise.
|
2013-04-04 13:23:07 -04:00
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
|
|
|
|
|
(goto-line 4)
|
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(looking-at "\\* Head2")))
|
2014-03-21 09:51:34 -04:00
|
|
|
|
;; With a leading star in link, enforce heading match.
|
2013-04-04 13:23:07 -04:00
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* Test\n<<Test>>\n[[*Test]]"
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-open-at-point)
|
2014-03-21 09:51:34 -04:00
|
|
|
|
(looking-at "\\* Test")))
|
|
|
|
|
;; Correctly un-hexify fuzzy links.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* With space\n[[*With%20space][With space]]"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(bobp))))
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
|
|
|
|
;;;; Link Escaping
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-escape-ascii-character ()
|
|
|
|
|
"Escape an ascii character."
|
2012-07-31 07:21:38 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(string=
|
|
|
|
|
"%5B"
|
|
|
|
|
(org-link-escape "["))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
|
|
|
|
|
"Escape an ascii control character."
|
2012-07-31 07:21:38 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(string=
|
|
|
|
|
"%09"
|
|
|
|
|
(org-link-escape "\t"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-escape-multibyte-character ()
|
|
|
|
|
"Escape an unicode multibyte character."
|
2012-07-31 07:21:38 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(string=
|
|
|
|
|
"%E2%82%AC"
|
|
|
|
|
(org-link-escape "€"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-escape-custom-table ()
|
|
|
|
|
"Escape string with custom character table."
|
2012-07-31 07:21:38 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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."
|
2012-07-31 07:21:38 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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."
|
2012-07-31 07:21:38 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(string=
|
|
|
|
|
"["
|
|
|
|
|
(org-link-unescape "%5B"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
|
|
|
|
|
"Unescpae an ascii control character."
|
2012-08-24 15:14:26 -04:00
|
|
|
|
(should
|
2012-10-10 07:19:25 -04:00
|
|
|
|
(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=
|
|
|
|
|
"àâçèéêîôùû"
|
2013-05-05 11:04:40 -04:00
|
|
|
|
(decode-coding-string
|
|
|
|
|
(org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-escape-url-with-escaped-char ()
|
2013-05-05 11:04:40 -04:00
|
|
|
|
"Escape and unescape a URL that includes an escaped char.
|
2012-10-10 07:19:25 -04:00
|
|
|
|
http://article.gmane.org/gmane.emacs.orgmode/21459/"
|
|
|
|
|
(should
|
|
|
|
|
(string=
|
|
|
|
|
"http://some.host.com/form?&id=blah%2Bblah25"
|
2013-05-05 11:04:40 -04:00
|
|
|
|
(org-link-unescape
|
|
|
|
|
(org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/org-link-escape-chars-browser ()
|
2014-02-19 14:49:21 -05:00
|
|
|
|
"Test of the constant `org-link-escape-chars-browser'.
|
|
|
|
|
See there why this test is a candidate to be removed once Org
|
|
|
|
|
drops support for Emacs 24.1 and 24.2."
|
2013-05-05 11:04:40 -04:00
|
|
|
|
(should
|
|
|
|
|
(string=
|
2013-10-05 09:00:25 -04:00
|
|
|
|
(concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
|
|
|
|
|
"%22Release%208.2%22&idxname=emacs-orgmode")
|
2014-02-19 14:49:21 -05:00
|
|
|
|
(org-link-escape-browser ; Do not replace with `url-encode-url',
|
|
|
|
|
; see docstring above.
|
2013-10-05 09:00:25 -04:00
|
|
|
|
(concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
|
|
|
|
|
"\"Release 8.2\"&idxname=emacs-orgmode")))))
|
2012-07-31 07:21:38 -04:00
|
|
|
|
|
2014-06-01 07:35:48 -04:00
|
|
|
|
;;;; Open at point
|
|
|
|
|
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(ert-deftest test-org/open-at-point-in-property ()
|
|
|
|
|
"Does `org-open-at-point' open link in property drawer?"
|
2014-06-02 15:05:46 -04:00
|
|
|
|
(should
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* Headline
|
2014-06-01 07:35:48 -04:00
|
|
|
|
:PROPERTIES:
|
2014-07-27 09:42:28 -04:00
|
|
|
|
:URL: <point>[[info:emacs#Top]]
|
2014-06-01 07:35:48 -04:00
|
|
|
|
:END:"
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(org-open-at-point) t)))
|
2014-06-01 07:35:48 -04:00
|
|
|
|
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(ert-deftest test-org/open-at-point-in-comment ()
|
|
|
|
|
"Does `org-open-at-point' open link in a commented line?"
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text
|
2014-07-27 09:42:28 -04:00
|
|
|
|
"# <point>[[info:emacs#Top]]"
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(org-open-at-point) t)))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/open-at-point/info ()
|
|
|
|
|
"Test `org-open-at-point' on info links."
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text
|
2014-07-27 09:42:28 -04:00
|
|
|
|
"<point>[[info:emacs#Top]]"
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(org-open-at-point)
|
|
|
|
|
(and (switch-to-buffer "*info*")
|
|
|
|
|
(prog1
|
2014-07-29 15:55:47 -04:00
|
|
|
|
(looking-at "\nThe Emacs Editor")
|
2014-06-02 16:33:28 -04:00
|
|
|
|
(kill-buffer))))))
|
2012-07-31 07:21:38 -04:00
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
|
|
|
|
;;; Node Properties
|
|
|
|
|
|
|
|
|
|
(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)))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Mark Region
|
2012-08-07 07:30:09 -04:00
|
|
|
|
|
|
|
|
|
(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)
|
2012-08-08 05:43:39 -04:00
|
|
|
|
(list (region-beginning) (region-end))))))
|
2012-10-10 07:19:25 -04:00
|
|
|
|
;; Do not get fooled by inlinetasks.
|
2012-08-08 05:43:39 -04:00
|
|
|
|
(when (featurep 'org-inlinetask)
|
|
|
|
|
(should
|
|
|
|
|
(= 1
|
|
|
|
|
(org-test-with-temp-text "* Headline\n*************** Task\nContents"
|
|
|
|
|
(progn (transient-mark-mode 1)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(let ((org-inlinetask-min-level 15)) (org-mark-subtree))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(region-beginning)))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
;;; Navigation
|
2012-08-08 07:55:18 -04:00
|
|
|
|
|
2012-11-06 13:06:26 -05:00
|
|
|
|
(ert-deftest test-org/beginning-of-line ()
|
|
|
|
|
"Test `org-beginning-of-line' specifications."
|
|
|
|
|
;; Standard test.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "Some text\nSome other text"
|
|
|
|
|
(progn (org-beginning-of-line) (bolp))))
|
|
|
|
|
;; Standard test with `visual-line-mode'.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "A long line of text\nSome other text"
|
|
|
|
|
(progn (visual-line-mode)
|
|
|
|
|
(forward-char 2)
|
|
|
|
|
(dotimes (i 1000) (insert "very "))
|
|
|
|
|
(org-beginning-of-line)
|
|
|
|
|
(bolp))))
|
|
|
|
|
;; At an headline with special movement.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* TODO Headline"
|
|
|
|
|
(let ((org-special-ctrl-a/e t))
|
|
|
|
|
(org-end-of-line)
|
|
|
|
|
(and (progn (org-beginning-of-line) (looking-at "Headline"))
|
|
|
|
|
(progn (org-beginning-of-line) (bolp))
|
|
|
|
|
(progn (org-beginning-of-line) (looking-at "Headline")))))))
|
|
|
|
|
|
2012-10-16 14:18:57 -04:00
|
|
|
|
(ert-deftest test-org/end-of-line ()
|
|
|
|
|
"Test `org-end-of-line' specifications."
|
|
|
|
|
;; Standard test.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "Some text\nSome other text"
|
|
|
|
|
(progn (org-end-of-line) (eolp))))
|
2012-11-06 13:06:26 -05:00
|
|
|
|
;; Standard test with `visual-line-mode'.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "A long line of text\nSome other text"
|
|
|
|
|
(progn (visual-line-mode)
|
|
|
|
|
(forward-char 2)
|
|
|
|
|
(dotimes (i 1000) (insert "very "))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(org-end-of-line)
|
|
|
|
|
(eolp))))
|
2012-10-16 14:18:57 -04:00
|
|
|
|
;; At an headline with special movement.
|
|
|
|
|
(should
|
2012-11-28 10:51:47 -05:00
|
|
|
|
(org-test-with-temp-text "* Headline1 :tag:\n"
|
2012-10-16 14:18:57 -04:00
|
|
|
|
(let ((org-special-ctrl-a/e t))
|
|
|
|
|
(and (progn (org-end-of-line) (looking-at " :tag:"))
|
|
|
|
|
(progn (org-end-of-line) (eolp))
|
|
|
|
|
(progn (org-end-of-line) (looking-at " :tag:"))))))
|
|
|
|
|
;; At an headline without special movement.
|
|
|
|
|
(should
|
2012-11-28 10:51:47 -05:00
|
|
|
|
(org-test-with-temp-text "* Headline2 :tag:\n"
|
2012-10-16 14:18:57 -04:00
|
|
|
|
(let ((org-special-ctrl-a/e nil))
|
|
|
|
|
(and (progn (org-end-of-line) (eolp))
|
|
|
|
|
(progn (org-end-of-line) (eolp))))))
|
|
|
|
|
;; At an headline, with reversed movement.
|
|
|
|
|
(should
|
2012-11-28 10:51:47 -05:00
|
|
|
|
(org-test-with-temp-text "* Headline3 :tag:\n"
|
2012-10-16 14:18:57 -04:00
|
|
|
|
(let ((org-special-ctrl-a/e 'reversed)
|
|
|
|
|
(this-command last-command))
|
|
|
|
|
(and (progn (org-end-of-line) (eolp))
|
|
|
|
|
(progn (org-end-of-line) (looking-at " :tag:"))))))
|
|
|
|
|
;; At a block without hidden contents.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
|
|
|
|
|
(progn (org-end-of-line) (eolp))))
|
|
|
|
|
;; At a block with hidden contents.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
|
2012-11-06 13:06:26 -05:00
|
|
|
|
(let ((org-special-ctrl-a/e t))
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(org-end-of-line)
|
|
|
|
|
(eobp)))))
|
2012-10-16 14:18:57 -04:00
|
|
|
|
|
2013-09-13 18:02:12 -04:00
|
|
|
|
(ert-deftest test-org/forward-paragraph ()
|
|
|
|
|
"Test `org-forward-paragraph' specifications."
|
|
|
|
|
;; At end of buffer, return an error.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "Paragraph"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-forward-paragraph)))
|
|
|
|
|
;; Standard test.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "P1\n\nP2\n\nP3"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "P2")))
|
|
|
|
|
;; Ignore depth.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "P1")))
|
|
|
|
|
;; Do not enter elements with invisible contents.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "P3")))
|
|
|
|
|
;; On an affiliated keyword, jump to the beginning of the element.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "Para")))
|
|
|
|
|
;; On an item or a footnote definition, move to the second element
|
|
|
|
|
;; inside, if any.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at " Paragraph")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "Paragraph")))
|
|
|
|
|
;; On an item, or a footnote definition, when the first line is
|
|
|
|
|
;; empty, move to the first item.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "- \n\n Paragraph\n- Item2"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at " Paragraph")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "Paragraph")))
|
|
|
|
|
;; On a table (resp. a property drawer) do not move through table
|
|
|
|
|
;; rows (resp. node properties).
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "Paragraph")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nParagraph"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "Paragraph")))
|
|
|
|
|
;; On a verse or source block, stop after blank lines.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "L2")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
|
|
|
|
|
(org-forward-paragraph)
|
|
|
|
|
(looking-at "L2"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/backward-paragraph ()
|
|
|
|
|
"Test `org-backward-paragraph' specifications."
|
|
|
|
|
;; Error at beginning of buffer.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "Paragraph"
|
|
|
|
|
(org-backward-paragraph)))
|
|
|
|
|
;; Regular test.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "P1\n\nP2\n\nP3"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "P3")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "P1\n\nP2\n\nP3"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "P2")))
|
|
|
|
|
;; Ignore depth.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "P2")))
|
|
|
|
|
;; Ignore invisible elements.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "* H1\n P1\n* H2"
|
|
|
|
|
(org-cycle)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(bobp)))
|
|
|
|
|
;; On an affiliated keyword, jump to the first one.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
|
|
|
|
|
(search-forward "c2")
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "#\\+name")))
|
|
|
|
|
;; On the second element in an item or a footnote definition, jump
|
|
|
|
|
;; to item or the definition.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "- line1\n\n line2"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "- line1")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "[fn:1] line1\n\n line2"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "\\[fn:1\\] line1")))
|
|
|
|
|
;; On a table (resp. a property drawer), ignore table rows
|
|
|
|
|
;; (resp. node properties).
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "| a | b |\n| c | d |\nP1"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(bobp)))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nP1"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(bobp)))
|
|
|
|
|
;; On a source or verse block, stop before blank lines.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
|
|
|
|
|
(search-forward "L3")
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "L2")))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
|
|
|
|
|
(search-forward "L3")
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-paragraph)
|
|
|
|
|
(looking-at "L2"))))
|
|
|
|
|
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(ert-deftest test-org/forward-element ()
|
|
|
|
|
"Test `org-forward-element' specifications."
|
|
|
|
|
;; 1. At EOB: should error.
|
|
|
|
|
(org-test-with-temp-text "Some text\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(should-error (org-forward-element)))
|
|
|
|
|
;; 2. Standard move: expected to ignore blank lines.
|
|
|
|
|
(org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "Second paragraph."))))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 3. Headline tests.
|
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
* Head 1
|
|
|
|
|
** Head 1.1
|
|
|
|
|
*** Head 1.1.1
|
|
|
|
|
** Head 1.2"
|
|
|
|
|
;; 3.1. At an headline beginning: move to next headline at the
|
|
|
|
|
;; same level.
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "** Head 1.2")))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 3.2. At an headline beginning: move to parent headline if no
|
|
|
|
|
;; headline at the same level.
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "** Head 1.2"))))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 4. Greater element tests.
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
|
|
|
|
|
;; 4.1. At a greater element: expected to skip contents.
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "Outside.")))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 4.2. At the end of greater element contents: expected to skip
|
|
|
|
|
;; to the end of the greater element.
|
|
|
|
|
(goto-line 2)
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "Outside."))))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 5. List tests.
|
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
- item1
|
|
|
|
|
|
|
|
|
|
- sub1
|
|
|
|
|
|
|
|
|
|
- sub2
|
|
|
|
|
|
|
|
|
|
- sub3
|
|
|
|
|
|
|
|
|
|
Inner paragraph.
|
|
|
|
|
|
|
|
|
|
- item2
|
|
|
|
|
|
|
|
|
|
Outside."
|
|
|
|
|
;; 5.1. At list top point: expected to move to the element after
|
|
|
|
|
;; the list.
|
|
|
|
|
(goto-line 2)
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "Outside.")))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 5.2. Special case: at the first line of a sub-list, but not at
|
|
|
|
|
;; beginning of line, move to next item.
|
|
|
|
|
(goto-line 2)
|
|
|
|
|
(forward-char)
|
|
|
|
|
(org-forward-element)
|
|
|
|
|
(should (looking-at "- item2"))
|
|
|
|
|
(goto-line 4)
|
|
|
|
|
(forward-char)
|
|
|
|
|
(org-forward-element)
|
|
|
|
|
(should (looking-at " - sub2"))
|
|
|
|
|
;; 5.3 At sub-list beginning: expected to move after the sub-list.
|
|
|
|
|
(goto-line 4)
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote " Inner paragraph.")))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 5.4. At sub-list end: expected to move outside the sub-list.
|
|
|
|
|
(goto-line 8)
|
|
|
|
|
(org-forward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote " Inner paragraph.")))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; 5.5. At an item: expected to move to next item, if any.
|
|
|
|
|
(goto-line 6)
|
|
|
|
|
(org-forward-element)
|
|
|
|
|
(should (looking-at " - sub3"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/backward-element ()
|
|
|
|
|
"Test `org-backward-element' specifications."
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 1. Should error at BOB.
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(org-test-with-temp-text " \nParagraph."
|
|
|
|
|
(should-error (org-backward-element)))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 2. Should move at BOB when called on the first element in buffer.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "\n#+TITLE: test"
|
|
|
|
|
(progn (forward-line)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(bobp))))
|
|
|
|
|
;; 3. Not at the beginning of an element: move at its beginning.
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(org-test-with-temp-text "Paragraph1.\n\nParagraph2."
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(org-backward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "Paragraph2."))))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 4. Headline tests.
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
* Head 1
|
|
|
|
|
** Head 1.1
|
|
|
|
|
*** Head 1.1.1
|
|
|
|
|
** Head 1.2"
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 4.1. At an headline beginning: move to previous headline at the
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; same level.
|
|
|
|
|
(goto-line 5)
|
|
|
|
|
(org-backward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "** Head 1.1")))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 4.2. At an headline beginning: move to parent headline if no
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; headline at the same level.
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-backward-element)
|
2013-02-11 11:09:53 -05:00
|
|
|
|
(should (looking-at (regexp-quote "* Head 1")))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 4.3. At the first top-level headline: should error.
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(goto-line 2)
|
|
|
|
|
(should-error (org-backward-element)))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 5. At beginning of first element inside a greater element:
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; expected to move to greater element's beginning.
|
2012-09-30 06:22:40 -04:00
|
|
|
|
(org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at "#\\+BEGIN_CENTER")))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 6. At the beginning of the first element in a section: should
|
|
|
|
|
;; move back to headline, if any.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
|
|
|
|
|
(progn (goto-char (point-max))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(org-at-heading-p))))
|
|
|
|
|
;; 7. List tests.
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
- item1
|
|
|
|
|
|
|
|
|
|
- sub1
|
|
|
|
|
|
|
|
|
|
- sub2
|
|
|
|
|
|
|
|
|
|
- sub3
|
|
|
|
|
|
|
|
|
|
Inner paragraph.
|
|
|
|
|
|
|
|
|
|
- item2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Outside."
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 7.1. At beginning of sub-list: expected to move to the
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; paragraph before it.
|
|
|
|
|
(goto-line 4)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at "item1"))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 7.2. At an item in a list: expected to move at previous item.
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(goto-line 8)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at " - sub2"))
|
|
|
|
|
(goto-line 12)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at "- item1"))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 7.3. At end of list/sub-list: expected to move to list/sub-list
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; beginning.
|
|
|
|
|
(goto-line 10)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at " - sub1"))
|
|
|
|
|
(goto-line 15)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at "- item1"))
|
2012-08-26 17:32:46 -04:00
|
|
|
|
;; 7.4. At blank-lines before list end: expected to move to top
|
2012-08-08 07:55:18 -04:00
|
|
|
|
;; item.
|
|
|
|
|
(goto-line 14)
|
|
|
|
|
(org-backward-element)
|
|
|
|
|
(should (looking-at "- item1"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/up-element ()
|
|
|
|
|
"Test `org-up-element' specifications."
|
|
|
|
|
;; 1. At BOB or with no surrounding element: should error.
|
|
|
|
|
(org-test-with-temp-text "Paragraph."
|
|
|
|
|
(should-error (org-up-element)))
|
|
|
|
|
(org-test-with-temp-text "* Head1\n* Head2"
|
|
|
|
|
(goto-line 2)
|
|
|
|
|
(should-error (org-up-element)))
|
|
|
|
|
(org-test-with-temp-text "Paragraph1.\n\nParagraph2."
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(should-error (org-up-element)))
|
|
|
|
|
;; 2. At an headline: move to parent headline.
|
|
|
|
|
(org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-up-element)
|
|
|
|
|
(should (looking-at "\\* Head1")))
|
|
|
|
|
;; 3. Inside a greater element: move to greater element beginning.
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(org-up-element)
|
|
|
|
|
(should (looking-at "#\\+BEGIN_CENTER")))
|
|
|
|
|
;; 4. List tests.
|
|
|
|
|
(org-test-with-temp-text "* Top
|
|
|
|
|
- item1
|
|
|
|
|
|
|
|
|
|
- sub1
|
|
|
|
|
|
|
|
|
|
- sub2
|
|
|
|
|
|
|
|
|
|
Paragraph within sub2.
|
|
|
|
|
|
|
|
|
|
- item2"
|
|
|
|
|
;; 4.1. Within an item: move to the item beginning.
|
|
|
|
|
(goto-line 8)
|
|
|
|
|
(org-up-element)
|
|
|
|
|
(should (looking-at " - sub2"))
|
|
|
|
|
;; 4.2. At an item in a sub-list: move to parent item.
|
|
|
|
|
(goto-line 4)
|
|
|
|
|
(org-up-element)
|
|
|
|
|
(should (looking-at "- item1"))
|
|
|
|
|
;; 4.3. At an item in top list: move to beginning of whole list.
|
|
|
|
|
(goto-line 10)
|
|
|
|
|
(org-up-element)
|
|
|
|
|
(should (looking-at "- item1"))
|
|
|
|
|
;; 4.4. Special case. At very top point: should move to parent of
|
|
|
|
|
;; list.
|
|
|
|
|
(goto-line 2)
|
|
|
|
|
(org-up-element)
|
|
|
|
|
(should (looking-at "\\* Top"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/down-element ()
|
|
|
|
|
"Test `org-down-element' specifications."
|
|
|
|
|
;; Error when the element hasn't got a recursive type.
|
|
|
|
|
(org-test-with-temp-text "Paragraph."
|
|
|
|
|
(should-error (org-down-element)))
|
|
|
|
|
;; Error when the element has no contents
|
|
|
|
|
(org-test-with-temp-text "* Headline"
|
|
|
|
|
(should-error (org-down-element)))
|
|
|
|
|
;; When at a plain-list, move to first item.
|
|
|
|
|
(org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
|
|
|
|
|
(goto-line 2)
|
|
|
|
|
(org-down-element)
|
|
|
|
|
(should (looking-at " - Item 1.1")))
|
|
|
|
|
(org-test-with-temp-text "#+NAME: list\n- Item 1"
|
|
|
|
|
(org-down-element)
|
|
|
|
|
(should (looking-at " Item 1")))
|
|
|
|
|
;; When at a table, move to first row
|
|
|
|
|
(org-test-with-temp-text "#+NAME: table\n| a | b |"
|
|
|
|
|
(org-down-element)
|
|
|
|
|
(should (looking-at " a | b |")))
|
|
|
|
|
;; Otherwise, move inside the greater element.
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
|
|
|
|
|
(org-down-element)
|
|
|
|
|
(should (looking-at "Paragraph"))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/drag-element-backward ()
|
|
|
|
|
"Test `org-drag-element-backward' specifications."
|
2014-06-25 04:49:52 -04:00
|
|
|
|
;; Standard test.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+key2: val2\n#+key1: val1\n#+key3: val3"
|
|
|
|
|
(org-test-with-temp-text "#+key1: val1\n<point>#+key2: val2\n#+key3: val3"
|
|
|
|
|
(org-drag-element-backward)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN_CENTER\n#+B: 2\n#+A: 1\n#+END_CENTER"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"#+BEGIN_CENTER\n#+A: 1\n<point>#+B: 2\n#+END_CENTER"
|
|
|
|
|
(org-drag-element-backward)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Preserve blank lines.
|
|
|
|
|
(should
|
|
|
|
|
(equal "Paragraph 2\n\n\nPara1\n\nPara3"
|
|
|
|
|
(org-test-with-temp-text "Para1\n\n\n<point>Paragraph 2\n\nPara3"
|
|
|
|
|
(org-drag-element-backward)
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
;; Preserve column.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+key1: v\n#+key<point>2: v\n#+key3: v"
|
|
|
|
|
(org-drag-element-backward)
|
|
|
|
|
(org-looking-at-p "2")))
|
|
|
|
|
;; Error when trying to move first element of buffer.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
|
|
|
|
|
(org-drag-element-backward)))
|
|
|
|
|
;; Error when trying to swap nested elements.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(org-drag-element-backward)))
|
|
|
|
|
;; Error when trying to swap an headline element and a non-headline
|
|
|
|
|
;; element.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "Test.\n* Head 1"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(org-drag-element-backward)))
|
|
|
|
|
;; Preserve visibility of elements and their contents.
|
|
|
|
|
(should
|
|
|
|
|
(equal '((63 . 82) (26 . 48))
|
|
|
|
|
(org-test-with-temp-text "
|
2012-08-08 07:55:18 -04:00
|
|
|
|
#+BEGIN_CENTER
|
|
|
|
|
Text.
|
|
|
|
|
#+END_CENTER
|
|
|
|
|
- item 1
|
|
|
|
|
#+BEGIN_QUOTE
|
|
|
|
|
Text.
|
|
|
|
|
#+END_QUOTE"
|
2014-06-25 04:49:52 -04:00
|
|
|
|
(while (search-forward "BEGIN_" nil t) (org-cycle))
|
|
|
|
|
(search-backward "- item 1")
|
|
|
|
|
(org-drag-element-backward)
|
|
|
|
|
(mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
|
|
|
|
|
(overlays-in (point-min) (point-max)))))))
|
2012-08-08 07:55:18 -04:00
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/drag-element-forward ()
|
|
|
|
|
"Test `org-drag-element-forward' specifications."
|
|
|
|
|
;; 1. Error when trying to move first element of buffer.
|
|
|
|
|
(org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
|
|
|
|
|
(goto-line 3)
|
|
|
|
|
(should-error (org-drag-element-forward)))
|
|
|
|
|
;; 2. Error when trying to swap nested elements.
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
|
|
|
|
|
(forward-line)
|
|
|
|
|
(should-error (org-drag-element-forward)))
|
|
|
|
|
;; 3. Error when trying to swap a non-headline element and an
|
|
|
|
|
;; headline.
|
|
|
|
|
(org-test-with-temp-text "Test.\n* Head 1"
|
|
|
|
|
(should-error (org-drag-element-forward)))
|
|
|
|
|
;; 4. Otherwise, swap elements, preserving column and blank lines
|
|
|
|
|
;; between elements.
|
|
|
|
|
(org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
|
|
|
|
|
(search-forward "graph")
|
|
|
|
|
(org-drag-element-forward)
|
|
|
|
|
(should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
|
|
|
|
|
(should (looking-at " 1")))
|
|
|
|
|
;; 5. Preserve visibility of elements and their contents.
|
|
|
|
|
(org-test-with-temp-text "
|
|
|
|
|
#+BEGIN_CENTER
|
|
|
|
|
Text.
|
|
|
|
|
#+END_CENTER
|
|
|
|
|
- item 1
|
|
|
|
|
#+BEGIN_QUOTE
|
|
|
|
|
Text.
|
|
|
|
|
#+END_QUOTE"
|
|
|
|
|
(while (search-forward "BEGIN_" nil t) (org-cycle))
|
|
|
|
|
(search-backward "#+BEGIN_CENTER")
|
|
|
|
|
(org-drag-element-forward)
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'((63 . 82) (26 . 48))
|
|
|
|
|
(mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
|
|
|
|
|
(overlays-in (point-min) (point-max)))))))
|
2012-08-08 05:43:39 -04:00
|
|
|
|
|
|
|
|
|
|
2013-01-10 15:42:21 -05:00
|
|
|
|
|
|
|
|
|
;;; Planning
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/timestamp-has-time-p ()
|
|
|
|
|
"Test `org-timestamp-has-time-p' specifications."
|
|
|
|
|
;; With time.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu 16:40>"
|
|
|
|
|
(org-timestamp-has-time-p (org-element-context))))
|
|
|
|
|
;; Without time.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>"
|
|
|
|
|
(org-timestamp-has-time-p (org-element-context)))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/timestamp-format ()
|
|
|
|
|
"Test `org-timestamp-format' specifications."
|
|
|
|
|
;; Regular test.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"2012-03-29 16:40"
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu 16:40>"
|
|
|
|
|
(org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
|
|
|
|
|
;; Range end.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"2012-03-29"
|
|
|
|
|
(org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
|
|
|
|
|
(org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/timestamp-split-range ()
|
|
|
|
|
"Test `org-timestamp-split-range' specifications."
|
|
|
|
|
;; Extract range start (active).
|
|
|
|
|
(should
|
|
|
|
|
(equal '(2012 3 29)
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
|
|
|
|
|
(let ((ts (org-timestamp-split-range (org-element-context))))
|
|
|
|
|
(mapcar (lambda (p) (org-element-property p ts))
|
|
|
|
|
'(:year-end :month-end :day-end))))))
|
|
|
|
|
;; Extract range start (inactive)
|
|
|
|
|
(should
|
|
|
|
|
(equal '(2012 3 29)
|
|
|
|
|
(org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
|
|
|
|
|
(let ((ts (org-timestamp-split-range (org-element-context))))
|
|
|
|
|
(mapcar (lambda (p) (org-element-property p ts))
|
|
|
|
|
'(:year-end :month-end :day-end))))))
|
|
|
|
|
;; Extract range end (active).
|
|
|
|
|
(should
|
|
|
|
|
(equal '(2012 3 30)
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
|
|
|
|
|
(let ((ts (org-timestamp-split-range
|
|
|
|
|
(org-element-context) t)))
|
|
|
|
|
(mapcar (lambda (p) (org-element-property p ts))
|
|
|
|
|
'(:year-end :month-end :day-end))))))
|
|
|
|
|
;; Extract range end (inactive)
|
|
|
|
|
(should
|
|
|
|
|
(equal '(2012 3 30)
|
|
|
|
|
(org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
|
|
|
|
|
(let ((ts (org-timestamp-split-range
|
|
|
|
|
(org-element-context) t)))
|
|
|
|
|
(mapcar (lambda (p) (org-element-property p ts))
|
|
|
|
|
'(:year-end :month-end :day-end))))))
|
|
|
|
|
;; Return the timestamp if not a range.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "[2012-03-29 Thu]"
|
|
|
|
|
(let* ((ts-orig (org-element-context))
|
|
|
|
|
(ts-copy (org-timestamp-split-range ts-orig)))
|
|
|
|
|
(eq ts-orig ts-copy))))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "<%%(org-float t 4 2)>"
|
|
|
|
|
(let* ((ts-orig (org-element-context))
|
|
|
|
|
(ts-copy (org-timestamp-split-range ts-orig)))
|
|
|
|
|
(eq ts-orig ts-copy))))
|
|
|
|
|
;; Check that parent is the same when a range was split.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
|
|
|
|
|
(let* ((ts-orig (org-element-context))
|
|
|
|
|
(ts-copy (org-timestamp-split-range ts-orig)))
|
|
|
|
|
(eq (org-element-property :parent ts-orig)
|
|
|
|
|
(org-element-property :parent ts-copy))))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/timestamp-translate ()
|
|
|
|
|
"Test `org-timestamp-translate' specifications."
|
|
|
|
|
;; Translate whole date range.
|
|
|
|
|
(should
|
|
|
|
|
(equal "<29>--<30>"
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
|
|
|
|
|
(let ((org-display-custom-times t)
|
|
|
|
|
(org-time-stamp-custom-formats '("<%d>" . "<%d>")))
|
|
|
|
|
(org-timestamp-translate (org-element-context))))))
|
|
|
|
|
;; Translate date range start.
|
|
|
|
|
(should
|
|
|
|
|
(equal "<29>"
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
|
|
|
|
|
(let ((org-display-custom-times t)
|
|
|
|
|
(org-time-stamp-custom-formats '("<%d>" . "<%d>")))
|
|
|
|
|
(org-timestamp-translate (org-element-context) 'start)))))
|
|
|
|
|
;; Translate date range end.
|
|
|
|
|
(should
|
|
|
|
|
(equal "<30>"
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
|
|
|
|
|
(let ((org-display-custom-times t)
|
|
|
|
|
(org-time-stamp-custom-formats '("<%d>" . "<%d>")))
|
|
|
|
|
(org-timestamp-translate (org-element-context) 'end)))))
|
|
|
|
|
;; Translate time range.
|
|
|
|
|
(should
|
|
|
|
|
(equal "<08>--<16>"
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
|
|
|
|
|
(let ((org-display-custom-times t)
|
|
|
|
|
(org-time-stamp-custom-formats '("<%d>" . "<%H>")))
|
|
|
|
|
(org-timestamp-translate (org-element-context))))))
|
|
|
|
|
;; Translate non-range timestamp.
|
|
|
|
|
(should
|
|
|
|
|
(equal "<29>"
|
|
|
|
|
(org-test-with-temp-text "<2012-03-29 Thu>"
|
|
|
|
|
(let ((org-display-custom-times t)
|
|
|
|
|
(org-time-stamp-custom-formats '("<%d>" . "<%d>")))
|
|
|
|
|
(org-timestamp-translate (org-element-context))))))
|
|
|
|
|
;; Do not change `diary' timestamps.
|
|
|
|
|
(should
|
|
|
|
|
(equal "<%%(org-float t 4 2)>"
|
|
|
|
|
(org-test-with-temp-text "<%%(org-float t 4 2)>"
|
|
|
|
|
(let ((org-display-custom-times t)
|
|
|
|
|
(org-time-stamp-custom-formats '("<%d>" . "<%d>")))
|
|
|
|
|
(org-timestamp-translate (org-element-context)))))))
|
|
|
|
|
|
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
2014-04-19 08:38:25 -04:00
|
|
|
|
;;; Radio Targets
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/update-radio-target-regexp ()
|
|
|
|
|
"Test `org-update-radio-target-regexp' specifications."
|
2014-05-17 05:14:27 -04:00
|
|
|
|
;; Properly update cache with no previous radio target regexp.
|
2014-05-17 05:03:29 -04:00
|
|
|
|
(should
|
|
|
|
|
(eq 'link
|
|
|
|
|
(org-test-with-temp-text "radio\n\nParagraph\n\nradio"
|
|
|
|
|
(save-excursion (goto-char (point-max)) (org-element-context))
|
|
|
|
|
(insert "<<<")
|
|
|
|
|
(search-forward "o")
|
|
|
|
|
(insert ">>>")
|
|
|
|
|
(org-update-radio-target-regexp)
|
|
|
|
|
(goto-char (point-max))
|
2014-05-17 05:14:27 -04:00
|
|
|
|
(org-element-type (org-element-context)))))
|
|
|
|
|
;; Properly update cache with previous radio target regexp.
|
|
|
|
|
(should
|
|
|
|
|
(eq 'link
|
|
|
|
|
(org-test-with-temp-text "radio\n\nParagraph\n\nradio"
|
|
|
|
|
(save-excursion (goto-char (point-max)) (org-element-context))
|
|
|
|
|
(insert "<<<")
|
|
|
|
|
(search-forward "o")
|
|
|
|
|
(insert ">>>")
|
|
|
|
|
(org-update-radio-target-regexp)
|
|
|
|
|
(search-backward "r")
|
|
|
|
|
(delete-char 5)
|
|
|
|
|
(insert "new")
|
|
|
|
|
(org-update-radio-target-regexp)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(delete-region (line-beginning-position) (point))
|
|
|
|
|
(insert "new")
|
2014-05-17 05:03:29 -04:00
|
|
|
|
(org-element-type (org-element-context))))))
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
|
|
|
|
|
2013-11-02 10:48:36 -04:00
|
|
|
|
|
|
|
|
|
;;; Visibility
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org/flag-drawer ()
|
|
|
|
|
"Test `org-flag-drawer' specifications."
|
|
|
|
|
;; Hide drawer.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
|
|
|
|
|
(org-flag-drawer t)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Show drawer.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
|
|
|
|
|
(org-flag-drawer t)
|
|
|
|
|
(org-flag-drawer nil)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Test optional argument.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
|
|
|
|
|
(let ((drawer (save-excursion (search-forward ":D2")
|
|
|
|
|
(org-element-at-point))))
|
|
|
|
|
(org-flag-drawer t drawer)
|
|
|
|
|
(get-char-property (progn (search-forward ":D2") (line-end-position))
|
|
|
|
|
'invisible))))
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
|
|
|
|
|
(let ((drawer (save-excursion (search-forward ":D2")
|
|
|
|
|
(org-element-at-point))))
|
|
|
|
|
(org-flag-drawer t drawer)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible))))
|
|
|
|
|
;; Do not hide fake drawers.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "#+begin_example\n:D:\nc\n:END:\n#+end_example"
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(org-flag-drawer t)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Do not hide incomplete drawers.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text ":D:\nparagraph"
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(org-flag-drawer t)
|
2014-04-28 13:34:34 -04:00
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Do not hide drawers when called from final blank lines.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text ":DRAWER:\nA\n:END:\n\n"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-flag-drawer t)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Don't leave point in an invisible part of the buffer when hiding
|
|
|
|
|
;; a drawer away.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(org-flag-drawer t)
|
|
|
|
|
(get-char-property (point) 'invisible))))
|
2013-11-02 10:48:36 -04:00
|
|
|
|
|
2014-08-01 04:16:33 -04:00
|
|
|
|
(ert-deftest test-org/hide-block-toggle ()
|
|
|
|
|
"Test `org-hide-block-toggle' specifications."
|
|
|
|
|
;; Error when not at a block.
|
|
|
|
|
(should-error
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents"
|
|
|
|
|
(org-hide-block-toggle 'off)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Hide block.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_CENTER\ncontents\n#+END_CENTER"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_EXAMPLE\ncontents\n#+END_EXAMPLE"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Show block unconditionally when optional argument is `off'.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(org-hide-block-toggle 'off)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
|
|
|
|
|
(org-hide-block-toggle 'off)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Hide block unconditionally when optional argument is non-nil.
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
|
|
|
|
|
(org-hide-block-toggle t)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
(should
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(org-hide-block-toggle t)
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Do not hide block when called from final blank lines.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE\n\n<point>"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(get-char-property (line-end-position) 'invisible)))
|
|
|
|
|
;; Don't leave point in an invisible part of the buffer when hiding
|
|
|
|
|
;; a block away.
|
|
|
|
|
(should-not
|
|
|
|
|
(org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n<point>#+END_QUOTE"
|
|
|
|
|
(org-hide-block-toggle)
|
|
|
|
|
(get-char-property (point) 'invisible))))
|
|
|
|
|
|
2012-10-10 07:19:25 -04:00
|
|
|
|
|
2012-08-08 07:55:18 -04:00
|
|
|
|
(provide 'test-org)
|
2010-11-21 13:51:50 -05:00
|
|
|
|
|
|
|
|
|
;;; test-org.el ends here
|