Merge branch 'maint'
[org-mode.git] / testing / lisp / test-org.el
blob58a8b30b4466f2a1e151e8d4be242b50ec0c162c
1 ;;; test-org.el
3 ;; Copyright (c) ߚ David Maus
4 ;; Authors: David Maus
6 ;; Released under the GNU General Public License version 3
7 ;; see: http://www.gnu.org/licenses/gpl-3.0.html
9 ;;;; Comments:
11 ;; Template test file for Org-mode tests
13 ;;; Code:
16 ;;; Comments
18 (ert-deftest test-org/comment-dwim ()
19 "Test `comment-dwim' behaviour in an Org buffer."
20 ;; No region selected, no comment on current line and line not
21 ;; empty: insert comment on line above.
22 (should
23 (equal "# \nComment"
24 (org-test-with-temp-text "Comment"
25 (progn (call-interactively 'comment-dwim)
26 (buffer-string)))))
27 ;; No region selected, no comment on current line and line empty:
28 ;; insert comment on this line.
29 (should
30 (equal "# \nParagraph"
31 (org-test-with-temp-text "\nParagraph"
32 (progn (call-interactively 'comment-dwim)
33 (buffer-string)))))
34 ;; No region selected, and a comment on this line: indent it.
35 (should
36 (equal "* Headline\n # Comment"
37 (org-test-with-temp-text "* Headline\n# Comment"
38 (progn (forward-line)
39 (let ((org-adapt-indentation t))
40 (call-interactively 'comment-dwim))
41 (buffer-string)))))
42 ;; Also recognize single # at column 0 as comments.
43 (should
44 (equal "# Comment"
45 (org-test-with-temp-text "# Comment"
46 (progn (forward-line)
47 (call-interactively 'comment-dwim)
48 (buffer-string)))))
49 ;; Region selected and only comments and blank lines within it:
50 ;; un-comment all commented lines.
51 (should
52 (equal "Comment 1\n\nComment 2"
53 (org-test-with-temp-text "# Comment 1\n\n# Comment 2"
54 (progn
55 (transient-mark-mode 1)
56 (push-mark (point) t t)
57 (goto-char (point-max))
58 (call-interactively 'comment-dwim)
59 (buffer-string)))))
60 ;; Region selected without comments: comment all non-blank lines.
61 (should
62 (equal "# Comment 1\n\n# Comment 2"
63 (org-test-with-temp-text "Comment 1\n\nComment 2"
64 (progn
65 (transient-mark-mode 1)
66 (push-mark (point) t t)
67 (goto-char (point-max))
68 (call-interactively 'comment-dwim)
69 (buffer-string)))))
70 ;; In front of a keyword without region, insert a new comment.
71 (should
72 (equal "# \n#+KEYWORD: value"
73 (org-test-with-temp-text "#+KEYWORD: value"
74 (progn (call-interactively 'comment-dwim)
75 (buffer-string))))))
79 ;;; Date Analysis
81 (ert-deftest test-org/org-read-date ()
82 "Test `org-read-date' specifications."
83 ;; Parse ISO date with abbreviated year and month.
84 (should (equal "2012-03-29 16:40"
85 (let ((org-time-was-given t))
86 (org-read-date t nil "12-3-29 16:40"))))
87 ;; Parse Europeans dates.
88 (should (equal "2012-03-29 16:40"
89 (let ((org-time-was-given t))
90 (org-read-date t nil "29.03.2012 16:40"))))
91 ;; Parse Europeans dates without year.
92 (should (string-match "2[0-9]\\{3\\}-03-29 16:40"
93 (let ((org-time-was-given t))
94 (org-read-date t nil "29.03. 16:40")))))
98 ;;; Filling
100 (ert-deftest test-org/fill-paragraph ()
101 "Test `org-fill-paragraph' specifications."
102 ;; At an Org table, align it.
103 (org-test-with-temp-text "|a|"
104 (org-fill-paragraph)
105 (should (equal (buffer-string) "| a |\n")))
106 ;; At a paragraph, preserve line breaks.
107 (org-test-with-temp-text "some \\\\\nlong\ntext"
108 (let ((fill-column 20))
109 (org-fill-paragraph)
110 (should (equal (buffer-string) "some \\\\\nlong text"))))
111 ;; Correctly fill a paragraph when point is at its very end.
112 (should
113 (equal "A B"
114 (org-test-with-temp-text "A\nB"
115 (let ((fill-column 20))
116 (goto-char (point-max))
117 (org-fill-paragraph)
118 (buffer-string)))))
119 ;; Correctly fill the last paragraph of a greater element.
120 (should
121 (equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
122 (org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
123 (let ((fill-column 8))
124 (forward-line)
125 (end-of-line)
126 (org-fill-paragraph)
127 (buffer-string)))))
128 ;; Correctly fill an element in a narrowed buffer.
129 (should
130 (equal "01234\n6"
131 (org-test-with-temp-text "01234 6789"
132 (let ((fill-column 5))
133 (narrow-to-region 1 8)
134 (org-fill-paragraph)
135 (buffer-string)))))
136 ;; Special case: Fill first paragraph when point is at an item or
137 ;; a plain-list or a footnote reference.
138 (should
139 (equal "- A B"
140 (org-test-with-temp-text "- A\n B"
141 (let ((fill-column 20))
142 (org-fill-paragraph)
143 (buffer-string)))))
144 (should
145 (equal "[fn:1] A B"
146 (org-test-with-temp-text "[fn:1] A\nB"
147 (let ((fill-column 20))
148 (org-fill-paragraph)
149 (buffer-string)))))
150 (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
151 (let ((fill-column 20))
152 (org-fill-paragraph)
153 (should (equal (buffer-string)
154 "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
155 ;; Fill contents of `comment-block' elements.
156 (should
157 (equal
158 (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
159 (let ((fill-column 20))
160 (forward-line)
161 (org-fill-paragraph)
162 (buffer-string)))
163 "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
164 ;; Fill `comment' elements.
165 (should
166 (equal " # A B"
167 (org-test-with-temp-text " # A\n # B"
168 (let ((fill-column 20))
169 (org-fill-paragraph)
170 (buffer-string)))))
171 ;; Do nothing at affiliated keywords.
172 (org-test-with-temp-text "#+NAME: para\nSome\ntext."
173 (let ((fill-column 20))
174 (org-fill-paragraph)
175 (should (equal (buffer-string) "#+NAME: para\nSome\ntext.")))))
177 (ert-deftest test-org/auto-fill-function ()
178 "Test auto-filling features."
179 ;; Auto fill paragraph.
180 (should
181 (equal "12345\n7890"
182 (org-test-with-temp-text "12345 7890"
183 (let ((fill-column 5))
184 (end-of-line)
185 (org-auto-fill-function)
186 (buffer-string)))))
187 ;; Auto fill first paragraph in an item.
188 (should
189 (equal "- 12345\n 7890"
190 (org-test-with-temp-text "- 12345 7890"
191 (let ((fill-column 7))
192 (end-of-line)
193 (org-auto-fill-function)
194 (buffer-string)))))
195 ;; Auto fill comments.
196 (should
197 (equal " # 12345\n # 7890"
198 (org-test-with-temp-text " # 12345 7890"
199 (let ((fill-column 10))
200 (end-of-line)
201 (org-auto-fill-function)
202 (buffer-string)))))
203 ;; A hash within a line isn't a comment.
204 (should-not
205 (equal "12345 # 7890\n# 1"
206 (org-test-with-temp-text "12345 # 7890 1"
207 (let ((fill-column 12))
208 (end-of-line)
209 (org-auto-fill-function)
210 (buffer-string)))))
211 ;; Correctly interpret empty prefix.
212 (should-not
213 (equal "# a\n# b\nRegular\n# paragraph"
214 (org-test-with-temp-text "# a\n# b\nRegular paragraph"
215 (let ((fill-column 12))
216 (end-of-line 3)
217 (org-auto-fill-function)
218 (buffer-string)))))
219 ;; Comment block: auto fill contents.
220 (should
221 (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
222 (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
223 (let ((fill-column 5))
224 (forward-line)
225 (end-of-line)
226 (org-auto-fill-function)
227 (buffer-string)))))
228 (should
229 (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
230 (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
231 (let ((fill-column 5))
232 (forward-line)
233 (end-of-line)
234 (org-auto-fill-function)
235 (buffer-string)))))
236 ;; Do not fill if a new item could be created.
237 (should-not
238 (equal "12345\n- 90"
239 (org-test-with-temp-text "12345 - 90"
240 (let ((fill-column 5))
241 (end-of-line)
242 (org-auto-fill-function)
243 (buffer-string)))))
244 ;; Do not fill if a line break could be introduced.
245 (should-not
246 (equal "123\\\\\n7890"
247 (org-test-with-temp-text "123\\\\ 7890"
248 (let ((fill-column 6))
249 (end-of-line)
250 (org-auto-fill-function)
251 (buffer-string)))))
252 ;; Do not fill affiliated keywords.
253 (should-not
254 (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
255 (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
256 (let ((fill-column 20))
257 (end-of-line)
258 (org-auto-fill-function)
259 (buffer-string))))))
263 ;;; Links
265 ;;;; Fuzzy Links
267 ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
268 ;; a target keyword (aka an invisible target: #+TARGET: text), to
269 ;; a named element (#+name: text) and to headlines (* Text).
271 (ert-deftest test-org/fuzzy-links ()
272 "Test fuzzy links specifications."
273 ;; 1. Fuzzy link goes in priority to a matching target.
274 (org-test-with-temp-text
275 "#+TARGET: Test\n#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
276 (goto-line 6)
277 (org-open-at-point)
278 (should (looking-at "<<Test>>")))
279 ;; 2. Fuzzy link should then go to a matching target keyword.
280 (org-test-with-temp-text
281 "#+NAME: Test\n|a|b|\n#+TARGET: Test\n* Test\n[[Test]]"
282 (goto-line 5)
283 (org-open-at-point)
284 (should (looking-at "#\\+TARGET: Test")))
285 ;; 3. Then fuzzy link points to an element with a given name.
286 (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
287 (goto-line 5)
288 (org-open-at-point)
289 (should (looking-at "#\\+NAME: Test")))
290 ;; 4. A target still lead to a matching headline otherwise.
291 (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
292 (goto-line 4)
293 (org-open-at-point)
294 (should (looking-at "\\* Head2")))
295 ;; 5. With a leading star in link, enforce heading match.
296 (org-test-with-temp-text "#+TARGET: Test\n* Test\n<<Test>>\n[[*Test]]"
297 (goto-line 4)
298 (org-open-at-point)
299 (should (looking-at "\\* Test"))))
302 ;;;; Link Escaping
304 (ert-deftest test-org/org-link-escape-ascii-character ()
305 "Escape an ascii character."
306 (should
307 (string=
308 "%5B"
309 (org-link-escape "["))))
311 (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
312 "Escape an ascii control character."
313 (should
314 (string=
315 "%09"
316 (org-link-escape "\t"))))
318 (ert-deftest test-org/org-link-escape-multibyte-character ()
319 "Escape an unicode multibyte character."
320 (should
321 (string=
322 "%E2%82%AC"
323 (org-link-escape "€"))))
325 (ert-deftest test-org/org-link-escape-custom-table ()
326 "Escape string with custom character table."
327 (should
328 (string=
329 "Foo%3A%42ar%0A"
330 (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
332 (ert-deftest test-org/org-link-escape-custom-table-merge ()
333 "Escape string with custom table merged with default table."
334 (should
335 (string=
336 "%5BF%6F%6F%3A%42ar%0A%5D"
337 (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
339 (ert-deftest test-org/org-link-unescape-ascii-character ()
340 "Unescape an ascii character."
341 (should
342 (string=
344 (org-link-unescape "%5B"))))
346 (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
347 "Unescpae an ascii control character."
348 (should
349 (string=
350 "\n"
351 (org-link-unescape "%0A"))))
353 (ert-deftest test-org/org-link-unescape-multibyte-character ()
354 "Unescape unicode multibyte character."
355 (should
356 (string=
357 "€"
358 (org-link-unescape "%E2%82%AC"))))
360 (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
361 "Unescape old style percent escaped character."
362 (should
363 (string=
364 "àâçèéêîôùû"
365 (decode-coding-string (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
367 (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
368 "Escape and unscape a URL that includes an escaped char.
369 http://article.gmane.org/gmane.emacs.orgmode/21459/"
370 (should
371 (string=
372 "http://some.host.com/form?&id=blah%2Bblah25"
373 (org-link-unescape (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
377 ;;; Macros
379 (ert-deftest test-org/macro-replace-all ()
380 "Test `org-macro-replace-all' specifications."
381 ;; Standard test.
382 (should
383 (equal
384 "#+MACRO: A B\n1 B 3"
385 (org-test-with-temp-text "#+MACRO: A B\n1 {{{A}}} 3"
386 (progn (org-macro-initialize-templates)
387 (org-macro-replace-all org-macro-templates)
388 (buffer-string)))))
389 ;; Macro with arguments.
390 (should
391 (equal
392 "#+MACRO: macro $1 $2\nsome text"
393 (org-test-with-temp-text "#+MACRO: macro $1 $2\n{{{macro(some,text)}}}"
394 (progn (org-macro-initialize-templates)
395 (org-macro-replace-all org-macro-templates)
396 (buffer-string)))))
397 ;; Macro with "eval".
398 (should
399 (equal
400 "#+MACRO: add (eval (+ $1 $2))\n3"
401 (org-test-with-temp-text "#+MACRO: add (eval (+ $1 $2))\n{{{add(1,2)}}}"
402 (progn (org-macro-initialize-templates)
403 (org-macro-replace-all org-macro-templates)
404 (buffer-string)))))
405 ;; Nested macros.
406 (should
407 (equal
408 "#+MACRO: in inner\n#+MACRO: out {{{in}}} outer\ninner outer"
409 (org-test-with-temp-text
410 "#+MACRO: in inner\n#+MACRO: out {{{in}}} outer\n{{{out}}}"
411 (progn (org-macro-initialize-templates)
412 (org-macro-replace-all org-macro-templates)
413 (buffer-string))))))
417 ;;; Node Properties
419 (ert-deftest test-org/accumulated-properties-in-drawers ()
420 "Ensure properties accumulate in subtree drawers."
421 (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
422 (org-babel-next-src-block)
423 (should (equal '(2 1) (org-babel-execute-src-block)))))
427 ;;; Mark Region
429 (ert-deftest test-org/mark-subtree ()
430 "Test `org-mark-subtree' specifications."
431 ;; Error when point is before first headline.
432 (should-error
433 (org-test-with-temp-text "Paragraph\n* Headline\nBody"
434 (progn (transient-mark-mode 1)
435 (org-mark-subtree))))
436 ;; Without argument, mark current subtree.
437 (should
438 (equal
439 '(12 32)
440 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
441 (progn (transient-mark-mode 1)
442 (forward-line 2)
443 (org-mark-subtree)
444 (list (region-beginning) (region-end))))))
445 ;; With an argument, move ARG up.
446 (should
447 (equal
448 '(1 32)
449 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
450 (progn (transient-mark-mode 1)
451 (forward-line 2)
452 (org-mark-subtree 1)
453 (list (region-beginning) (region-end))))))
454 ;; Do not get fooled by inlinetasks.
455 (when (featurep 'org-inlinetask)
456 (should
457 (= 1
458 (org-test-with-temp-text "* Headline\n*************** Task\nContents"
459 (progn (transient-mark-mode 1)
460 (forward-line 1)
461 (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
462 (region-beginning)))))))
466 ;;; Navigation
468 (ert-deftest test-org/end-of-line ()
469 "Test `org-end-of-line' specifications."
470 ;; Standard test.
471 (should
472 (org-test-with-temp-text "Some text\nSome other text"
473 (progn (org-end-of-line) (eolp))))
474 ;; At an headline with special movement.
475 (should
476 (org-test-with-temp-text "* Headline :tag:"
477 (let ((org-special-ctrl-a/e t))
478 (and (progn (org-end-of-line) (looking-at " :tag:"))
479 (progn (org-end-of-line) (eolp))
480 (progn (org-end-of-line) (looking-at " :tag:"))))))
481 ;; At an headline without special movement.
482 (should
483 (org-test-with-temp-text "* Headline :tag:"
484 (let ((org-special-ctrl-a/e nil))
485 (and (progn (org-end-of-line) (eolp))
486 (progn (org-end-of-line) (eolp))))))
487 ;; At an headline, with reversed movement.
488 (should
489 (org-test-with-temp-text "* Headline :tag:"
490 (let ((org-special-ctrl-a/e 'reversed)
491 (this-command last-command))
492 (and (progn (org-end-of-line) (eolp))
493 (progn (org-end-of-line) (looking-at " :tag:"))))))
494 ;; At a block without hidden contents.
495 (should
496 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
497 (progn (org-end-of-line) (eolp))))
498 ;; At a block with hidden contents.
499 (should-not
500 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
501 (progn (org-hide-block-toggle)
502 (org-end-of-line)
503 (eolp)))))
505 (ert-deftest test-org/forward-element ()
506 "Test `org-forward-element' specifications."
507 ;; 1. At EOB: should error.
508 (org-test-with-temp-text "Some text\n"
509 (goto-char (point-max))
510 (should-error (org-forward-element)))
511 ;; 2. Standard move: expected to ignore blank lines.
512 (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
513 (org-forward-element)
514 (should (looking-at "Second paragraph.")))
515 ;; 3. Headline tests.
516 (org-test-with-temp-text "
517 * Head 1
518 ** Head 1.1
519 *** Head 1.1.1
520 ** Head 1.2"
521 ;; 3.1. At an headline beginning: move to next headline at the
522 ;; same level.
523 (goto-line 3)
524 (org-forward-element)
525 (should (looking-at "** Head 1.2"))
526 ;; 3.2. At an headline beginning: move to parent headline if no
527 ;; headline at the same level.
528 (goto-line 3)
529 (org-forward-element)
530 (should (looking-at "** Head 1.2")))
531 ;; 4. Greater element tests.
532 (org-test-with-temp-text
533 "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
534 ;; 4.1. At a greater element: expected to skip contents.
535 (org-forward-element)
536 (should (looking-at "Outside."))
537 ;; 4.2. At the end of greater element contents: expected to skip
538 ;; to the end of the greater element.
539 (goto-line 2)
540 (org-forward-element)
541 (should (looking-at "Outside.")))
542 ;; 5. List tests.
543 (org-test-with-temp-text "
544 - item1
546 - sub1
548 - sub2
550 - sub3
552 Inner paragraph.
554 - item2
556 Outside."
557 ;; 5.1. At list top point: expected to move to the element after
558 ;; the list.
559 (goto-line 2)
560 (org-forward-element)
561 (should (looking-at "Outside."))
562 ;; 5.2. Special case: at the first line of a sub-list, but not at
563 ;; beginning of line, move to next item.
564 (goto-line 2)
565 (forward-char)
566 (org-forward-element)
567 (should (looking-at "- item2"))
568 (goto-line 4)
569 (forward-char)
570 (org-forward-element)
571 (should (looking-at " - sub2"))
572 ;; 5.3 At sub-list beginning: expected to move after the sub-list.
573 (goto-line 4)
574 (org-forward-element)
575 (should (looking-at " Inner paragraph."))
576 ;; 5.4. At sub-list end: expected to move outside the sub-list.
577 (goto-line 8)
578 (org-forward-element)
579 (should (looking-at " Inner paragraph."))
580 ;; 5.5. At an item: expected to move to next item, if any.
581 (goto-line 6)
582 (org-forward-element)
583 (should (looking-at " - sub3"))))
585 (ert-deftest test-org/backward-element ()
586 "Test `org-backward-element' specifications."
587 ;; 1. Should error at BOB.
588 (org-test-with-temp-text " \nParagraph."
589 (should-error (org-backward-element)))
590 ;; 2. Should move at BOB when called on the first element in buffer.
591 (should
592 (org-test-with-temp-text "\n#+TITLE: test"
593 (progn (forward-line)
594 (org-backward-element)
595 (bobp))))
596 ;; 3. Not at the beginning of an element: move at its beginning.
597 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
598 (goto-line 3)
599 (end-of-line)
600 (org-backward-element)
601 (should (looking-at "Paragraph2.")))
602 ;; 4. Headline tests.
603 (org-test-with-temp-text "
604 * Head 1
605 ** Head 1.1
606 *** Head 1.1.1
607 ** Head 1.2"
608 ;; 4.1. At an headline beginning: move to previous headline at the
609 ;; same level.
610 (goto-line 5)
611 (org-backward-element)
612 (should (looking-at "** Head 1.1"))
613 ;; 4.2. At an headline beginning: move to parent headline if no
614 ;; headline at the same level.
615 (goto-line 3)
616 (org-backward-element)
617 (should (looking-at "* Head 1"))
618 ;; 4.3. At the first top-level headline: should error.
619 (goto-line 2)
620 (should-error (org-backward-element)))
621 ;; 5. At beginning of first element inside a greater element:
622 ;; expected to move to greater element's beginning.
623 (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
624 (goto-line 3)
625 (org-backward-element)
626 (should (looking-at "#\\+BEGIN_CENTER")))
627 ;; 6. At the beginning of the first element in a section: should
628 ;; move back to headline, if any.
629 (should
630 (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
631 (progn (goto-char (point-max))
632 (beginning-of-line)
633 (org-backward-element)
634 (org-at-heading-p))))
635 ;; 7. List tests.
636 (org-test-with-temp-text "
637 - item1
639 - sub1
641 - sub2
643 - sub3
645 Inner paragraph.
647 - item2
650 Outside."
651 ;; 7.1. At beginning of sub-list: expected to move to the
652 ;; paragraph before it.
653 (goto-line 4)
654 (org-backward-element)
655 (should (looking-at "item1"))
656 ;; 7.2. At an item in a list: expected to move at previous item.
657 (goto-line 8)
658 (org-backward-element)
659 (should (looking-at " - sub2"))
660 (goto-line 12)
661 (org-backward-element)
662 (should (looking-at "- item1"))
663 ;; 7.3. At end of list/sub-list: expected to move to list/sub-list
664 ;; beginning.
665 (goto-line 10)
666 (org-backward-element)
667 (should (looking-at " - sub1"))
668 (goto-line 15)
669 (org-backward-element)
670 (should (looking-at "- item1"))
671 ;; 7.4. At blank-lines before list end: expected to move to top
672 ;; item.
673 (goto-line 14)
674 (org-backward-element)
675 (should (looking-at "- item1"))))
677 (ert-deftest test-org/up-element ()
678 "Test `org-up-element' specifications."
679 ;; 1. At BOB or with no surrounding element: should error.
680 (org-test-with-temp-text "Paragraph."
681 (should-error (org-up-element)))
682 (org-test-with-temp-text "* Head1\n* Head2"
683 (goto-line 2)
684 (should-error (org-up-element)))
685 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
686 (goto-line 3)
687 (should-error (org-up-element)))
688 ;; 2. At an headline: move to parent headline.
689 (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
690 (goto-line 3)
691 (org-up-element)
692 (should (looking-at "\\* Head1")))
693 ;; 3. Inside a greater element: move to greater element beginning.
694 (org-test-with-temp-text
695 "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
696 (goto-line 3)
697 (org-up-element)
698 (should (looking-at "#\\+BEGIN_CENTER")))
699 ;; 4. List tests.
700 (org-test-with-temp-text "* Top
701 - item1
703 - sub1
705 - sub2
707 Paragraph within sub2.
709 - item2"
710 ;; 4.1. Within an item: move to the item beginning.
711 (goto-line 8)
712 (org-up-element)
713 (should (looking-at " - sub2"))
714 ;; 4.2. At an item in a sub-list: move to parent item.
715 (goto-line 4)
716 (org-up-element)
717 (should (looking-at "- item1"))
718 ;; 4.3. At an item in top list: move to beginning of whole list.
719 (goto-line 10)
720 (org-up-element)
721 (should (looking-at "- item1"))
722 ;; 4.4. Special case. At very top point: should move to parent of
723 ;; list.
724 (goto-line 2)
725 (org-up-element)
726 (should (looking-at "\\* Top"))))
728 (ert-deftest test-org/down-element ()
729 "Test `org-down-element' specifications."
730 ;; Error when the element hasn't got a recursive type.
731 (org-test-with-temp-text "Paragraph."
732 (should-error (org-down-element)))
733 ;; Error when the element has no contents
734 (org-test-with-temp-text "* Headline"
735 (should-error (org-down-element)))
736 ;; When at a plain-list, move to first item.
737 (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
738 (goto-line 2)
739 (org-down-element)
740 (should (looking-at " - Item 1.1")))
741 (org-test-with-temp-text "#+NAME: list\n- Item 1"
742 (org-down-element)
743 (should (looking-at " Item 1")))
744 ;; When at a table, move to first row
745 (org-test-with-temp-text "#+NAME: table\n| a | b |"
746 (org-down-element)
747 (should (looking-at " a | b |")))
748 ;; Otherwise, move inside the greater element.
749 (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
750 (org-down-element)
751 (should (looking-at "Paragraph"))))
753 (ert-deftest test-org/drag-element-backward ()
754 "Test `org-drag-element-backward' specifications."
755 ;; 1. Error when trying to move first element of buffer.
756 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
757 (should-error (org-drag-element-backward)))
758 ;; 2. Error when trying to swap nested elements.
759 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
760 (forward-line)
761 (should-error (org-drag-element-backward)))
762 ;; 3. Error when trying to swap an headline element and
763 ;; a non-headline element.
764 (org-test-with-temp-text "Test.\n* Head 1"
765 (forward-line)
766 (should-error (org-drag-element-backward)))
767 ;; 4. Otherwise, swap elements, preserving column and blank lines
768 ;; between elements.
769 (org-test-with-temp-text "Para1\n\n\nParagraph 2\n\nPara3"
770 (search-forward "graph")
771 (org-drag-element-backward)
772 (should (equal (buffer-string) "Paragraph 2\n\n\nPara1\n\nPara3"))
773 (should (looking-at " 2")))
774 ;; 5. Preserve visibility of elements and their contents.
775 (org-test-with-temp-text "
776 #+BEGIN_CENTER
777 Text.
778 #+END_CENTER
779 - item 1
780 #+BEGIN_QUOTE
781 Text.
782 #+END_QUOTE"
783 (while (search-forward "BEGIN_" nil t) (org-cycle))
784 (search-backward "- item 1")
785 (org-drag-element-backward)
786 (should
787 (equal
788 '((63 . 82) (26 . 48))
789 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
790 (overlays-in (point-min) (point-max)))))))
792 (ert-deftest test-org/drag-element-forward ()
793 "Test `org-drag-element-forward' specifications."
794 ;; 1. Error when trying to move first element of buffer.
795 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
796 (goto-line 3)
797 (should-error (org-drag-element-forward)))
798 ;; 2. Error when trying to swap nested elements.
799 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
800 (forward-line)
801 (should-error (org-drag-element-forward)))
802 ;; 3. Error when trying to swap a non-headline element and an
803 ;; headline.
804 (org-test-with-temp-text "Test.\n* Head 1"
805 (should-error (org-drag-element-forward)))
806 ;; 4. Otherwise, swap elements, preserving column and blank lines
807 ;; between elements.
808 (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
809 (search-forward "graph")
810 (org-drag-element-forward)
811 (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
812 (should (looking-at " 1")))
813 ;; 5. Preserve visibility of elements and their contents.
814 (org-test-with-temp-text "
815 #+BEGIN_CENTER
816 Text.
817 #+END_CENTER
818 - item 1
819 #+BEGIN_QUOTE
820 Text.
821 #+END_QUOTE"
822 (while (search-forward "BEGIN_" nil t) (org-cycle))
823 (search-backward "#+BEGIN_CENTER")
824 (org-drag-element-forward)
825 (should
826 (equal
827 '((63 . 82) (26 . 48))
828 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
829 (overlays-in (point-min) (point-max)))))))
833 ;;; Targets and Radio Targets
835 (ert-deftest test-org/all-targets ()
836 "Test `org-all-targets' specifications."
837 ;; Without an argument.
838 (should
839 (equal '("radio-target" "target")
840 (org-test-with-temp-text "<<target>> <<<radio-target>>>\n: <<verb>>"
841 (org-all-targets))))
842 ;; With argument.
843 (should
844 (equal '("radio-target")
845 (org-test-with-temp-text "<<target>> <<<radio-target>>>"
846 (org-all-targets t)))))
849 (provide 'test-org)
851 ;;; test-org.el ends here