Fix property drawer insertion with consecutive headlines
[org-mode.git] / testing / lisp / test-org.el
blob7a49510eed6c31405376a5e62da30c24c1a1c170
1 ;;; test-org.el --- tests for org.el
3 ;; Copyright (c) David Maus
4 ;; Authors: David Maus
6 ;; This file is not part of GNU Emacs.
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
21 ;;; Comments:
23 ;; Template test file for Org-mode tests
25 ;;; Code:
28 ;;; Comments
30 (ert-deftest test-org/toggle-comment ()
31 "Test `org-toggle-comment' specifications."
32 ;; Simple headline.
33 (should
34 (equal "* Test"
35 (org-test-with-temp-text "* COMMENT Test"
36 (org-toggle-comment)
37 (buffer-string))))
38 (should
39 (equal "* COMMENT Test"
40 (org-test-with-temp-text "* Test"
41 (org-toggle-comment)
42 (buffer-string))))
43 ;; Headline with a regular keyword.
44 (should
45 (equal "* TODO Test"
46 (org-test-with-temp-text "* TODO COMMENT Test"
47 (org-toggle-comment)
48 (buffer-string))))
49 (should
50 (equal "* TODO COMMENT Test"
51 (org-test-with-temp-text "* TODO Test"
52 (org-toggle-comment)
53 (buffer-string))))
54 ;; Empty headline.
55 (should
56 (equal "* "
57 (org-test-with-temp-text "* COMMENT"
58 (org-toggle-comment)
59 (buffer-string))))
60 (should
61 (equal "* COMMENT"
62 (org-test-with-temp-text "* "
63 (org-toggle-comment)
64 (buffer-string))))
65 ;; Headline with a single keyword.
66 (should
67 (equal "* TODO "
68 (org-test-with-temp-text "* TODO COMMENT"
69 (org-toggle-comment)
70 (buffer-string))))
71 (should
72 (equal "* TODO COMMENT"
73 (org-test-with-temp-text "* TODO"
74 (org-toggle-comment)
75 (buffer-string))))
76 ;; Headline with a keyword, a priority cookie and contents.
77 (should
78 (equal "* TODO [#A] Headline"
79 (org-test-with-temp-text "* TODO [#A] COMMENT Headline"
80 (org-toggle-comment)
81 (buffer-string))))
82 (should
83 (equal "* TODO [#A] COMMENT Headline"
84 (org-test-with-temp-text "* TODO [#A] Headline"
85 (org-toggle-comment)
86 (buffer-string)))))
88 (ert-deftest test-org/comment-dwim ()
89 "Test `comment-dwim' behaviour in an Org buffer."
90 ;; No region selected, no comment on current line and line not
91 ;; empty: insert comment on line above.
92 (should
93 (equal "# \nComment"
94 (org-test-with-temp-text "Comment"
95 (progn (call-interactively 'comment-dwim)
96 (buffer-string)))))
97 ;; No region selected, no comment on current line and line empty:
98 ;; insert comment on this line.
99 (should
100 (equal "# \nParagraph"
101 (org-test-with-temp-text "\nParagraph"
102 (progn (call-interactively 'comment-dwim)
103 (buffer-string)))))
104 ;; No region selected, and a comment on this line: indent it.
105 (should
106 (equal "* Headline\n # Comment"
107 (org-test-with-temp-text "* Headline\n# Comment"
108 (progn (forward-line)
109 (let ((org-adapt-indentation t))
110 (call-interactively 'comment-dwim))
111 (buffer-string)))))
112 ;; Also recognize single # at column 0 as comments.
113 (should
114 (equal "# Comment"
115 (org-test-with-temp-text "# Comment"
116 (progn (forward-line)
117 (call-interactively 'comment-dwim)
118 (buffer-string)))))
119 ;; Region selected and only comments and blank lines within it:
120 ;; un-comment all commented lines.
121 (should
122 (equal "Comment 1\n\nComment 2"
123 (org-test-with-temp-text "# Comment 1\n\n# Comment 2"
124 (progn
125 (transient-mark-mode 1)
126 (push-mark (point) t t)
127 (goto-char (point-max))
128 (call-interactively 'comment-dwim)
129 (buffer-string)))))
130 ;; Region selected without comments: comment all lines if
131 ;; `comment-empty-lines' is non-nil, only non-blank lines otherwise.
132 (should
133 (equal "# Comment 1\n\n# Comment 2"
134 (org-test-with-temp-text "Comment 1\n\nComment 2"
135 (progn
136 (transient-mark-mode 1)
137 (push-mark (point) t t)
138 (goto-char (point-max))
139 (let ((comment-empty-lines nil))
140 (call-interactively 'comment-dwim))
141 (buffer-string)))))
142 (should
143 (equal "# Comment 1\n# \n# Comment 2"
144 (org-test-with-temp-text "Comment 1\n\nComment 2"
145 (progn
146 (transient-mark-mode 1)
147 (push-mark (point) t t)
148 (goto-char (point-max))
149 (let ((comment-empty-lines t))
150 (call-interactively 'comment-dwim))
151 (buffer-string)))))
152 ;; In front of a keyword without region, insert a new comment.
153 (should
154 (equal "# \n#+KEYWORD: value"
155 (org-test-with-temp-text "#+KEYWORD: value"
156 (progn (call-interactively 'comment-dwim)
157 (buffer-string)))))
158 ;; In a source block, use appropriate syntax.
159 (should
160 (equal " ;; "
161 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n\n#+END_SRC"
162 (forward-line)
163 (let ((org-edit-src-content-indentation 2))
164 (call-interactively 'comment-dwim))
165 (buffer-substring-no-properties (line-beginning-position) (point)))))
166 (should
167 (equal "#+BEGIN_SRC emacs-lisp\n ;; a\n ;; b\n#+END_SRC"
168 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\na\nb\n#+END_SRC"
169 (forward-line)
170 (transient-mark-mode 1)
171 (push-mark (point) t t)
172 (forward-line 2)
173 (let ((org-edit-src-content-indentation 2))
174 (call-interactively 'comment-dwim))
175 (buffer-string)))))
179 ;;; Date and time analysis
181 (ert-deftest test-org/org-read-date ()
182 "Test `org-read-date' specifications."
183 ;; Parse ISO date with abbreviated year and month.
184 (should (equal "2012-03-29 16:40"
185 (let ((org-time-was-given t))
186 (org-read-date t nil "12-3-29 16:40"))))
187 ;; Parse Europeans dates.
188 (should (equal "2012-03-29 16:40"
189 (let ((org-time-was-given t))
190 (org-read-date t nil "29.03.2012 16:40"))))
191 ;; Parse Europeans dates without year.
192 (should (string-match "2[0-9]\\{3\\}-03-29 16:40"
193 (let ((org-time-was-given t))
194 (org-read-date t nil "29.03. 16:40")))))
196 (ert-deftest test-org/org-parse-time-string ()
197 "Test `org-parse-time-string'."
198 (should (equal (org-parse-time-string "2012-03-29 16:40")
199 '(0 40 16 29 3 2012 nil nil nil)))
200 (should (equal (org-parse-time-string "[2012-03-29 16:40]")
201 '(0 40 16 29 3 2012 nil nil nil)))
202 (should (equal (org-parse-time-string "<2012-03-29 16:40>")
203 '(0 40 16 29 3 2012 nil nil nil)))
204 (should (equal (org-parse-time-string "<2012-03-29>")
205 '(0 0 0 29 3 2012 nil nil nil)))
206 (should (equal (org-parse-time-string "<2012-03-29>" t)
207 '(0 nil nil 29 3 2012 nil nil nil))))
210 ;;; Drawers
212 (ert-deftest test-org/insert-property-drawer ()
213 "Test `org-insert-property-drawer' specifications."
214 ;; Error before first headline.
215 (should-error (org-test-with-temp-text "" (org-insert-property-drawer)))
216 ;; Insert drawer right after headline if there is no planning line,
217 ;; or after it otherwise.
218 (should
219 (equal "* H\n:PROPERTIES:\n:END:\nParagraph"
220 (org-test-with-temp-text "* H\nParagraph<point>"
221 (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
222 (buffer-string))))
223 (should
224 (equal "* H\nDEADLINE: <2014-03-04 tue.>\n:PROPERTIES:\n:END:\nParagraph"
225 (org-test-with-temp-text
226 "* H\nDEADLINE: <2014-03-04 tue.>\nParagraph<point>"
227 (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
228 (buffer-string))))
229 ;; Indent inserted drawer.
230 (should
231 (equal "* H\n :PROPERTIES:\n :END:\nParagraph"
232 (org-test-with-temp-text "* H\nParagraph<point>"
233 (let ((org-adapt-indentation t)) (org-insert-property-drawer))
234 (buffer-string))))
235 ;; Handle insertion at eob.
236 (should
237 (equal "* H\n:PROPERTIES:\n:END:\n"
238 (org-test-with-temp-text "* H"
239 (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
240 (buffer-string))))
241 ;; Skip inlinetasks before point.
242 (when (featurep 'org-inlinetask)
243 (should
244 (equal "* H\n:PROPERTIES:\n:END:\n*************** I\n*************** END\nP"
245 (org-test-with-temp-text
246 "* H\n*************** I\n*************** END\nP<point>"
247 (let ((org-adapt-indentation nil)
248 (org-inlinetask-min-level 15))
249 (org-insert-property-drawer))
250 (buffer-string)))))
251 ;; Correctly set drawer in an inlinetask.
252 (when (featurep 'org-inlinetask)
253 (should
254 (equal "* H\n*************** I\n:PROPERTIES:\n:END:\nP\n*************** END"
255 (org-test-with-temp-text
256 "* H\n*************** I\nP<point>\n*************** END"
257 (let ((org-adapt-indentation nil)
258 (org-inlinetask-min-level 15))
259 (org-insert-property-drawer))
260 (buffer-string))))))
263 ;;; Filling
265 (ert-deftest test-org/fill-paragraph ()
266 "Test `org-fill-paragraph' specifications."
267 ;; At an Org table, align it.
268 (should
269 (equal "| a |\n"
270 (org-test-with-temp-text "|a|"
271 (org-fill-paragraph)
272 (buffer-string))))
273 (should
274 (equal "#+name: table\n| a |\n"
275 (org-test-with-temp-text "#+name: table\n| a |"
276 (org-fill-paragraph)
277 (buffer-string))))
278 ;; At a paragraph, preserve line breaks.
279 (org-test-with-temp-text "some \\\\\nlong\ntext"
280 (let ((fill-column 20))
281 (org-fill-paragraph)
282 (should (equal (buffer-string) "some \\\\\nlong text"))))
283 ;; Correctly fill a paragraph when point is at its very end.
284 (should
285 (equal "A B"
286 (org-test-with-temp-text "A\nB"
287 (let ((fill-column 20))
288 (goto-char (point-max))
289 (org-fill-paragraph)
290 (buffer-string)))))
291 ;; Correctly fill the last paragraph of a greater element.
292 (should
293 (equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
294 (org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
295 (let ((fill-column 8))
296 (forward-line)
297 (end-of-line)
298 (org-fill-paragraph)
299 (buffer-string)))))
300 ;; Correctly fill an element in a narrowed buffer.
301 (should
302 (equal "01234\n6"
303 (org-test-with-temp-text "01234 6789"
304 (let ((fill-column 5))
305 (narrow-to-region 1 8)
306 (org-fill-paragraph)
307 (buffer-string)))))
308 ;; Handle `adaptive-fill-regexp' in paragraphs.
309 (should
310 (equal "> a b"
311 (org-test-with-temp-text "> a\n> b"
312 (let ((fill-column 5)
313 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
314 (org-fill-paragraph)
315 (buffer-string)))))
316 ;; Special case: Fill first paragraph when point is at an item or
317 ;; a plain-list or a footnote reference.
318 (should
319 (equal "- A B"
320 (org-test-with-temp-text "- A\n B"
321 (let ((fill-column 20))
322 (org-fill-paragraph)
323 (buffer-string)))))
324 (should
325 (equal "[fn:1] A B"
326 (org-test-with-temp-text "[fn:1] A\nB"
327 (let ((fill-column 20))
328 (org-fill-paragraph)
329 (buffer-string)))))
330 (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
331 (let ((fill-column 20))
332 (org-fill-paragraph)
333 (should (equal (buffer-string)
334 "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
335 ;; Fill contents of `comment-block' elements.
336 (should
337 (equal
338 (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
339 (let ((fill-column 20))
340 (forward-line)
341 (org-fill-paragraph)
342 (buffer-string)))
343 "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
344 ;; Fill `comment' elements.
345 (should
346 (equal " # A B"
347 (org-test-with-temp-text " # A\n # B"
348 (let ((fill-column 20))
349 (org-fill-paragraph)
350 (buffer-string)))))
351 ;; Do not mix consecutive comments when filling one of them.
352 (should
353 (equal "# A B\n\n# C"
354 (org-test-with-temp-text "# A\n# B\n\n# C"
355 (let ((fill-column 20))
356 (org-fill-paragraph)
357 (buffer-string)))))
358 ;; Use commented empty lines as separators when filling comments.
359 (should
360 (equal "# A B\n#\n# C"
361 (org-test-with-temp-text "# A\n# B\n#\n# C"
362 (let ((fill-column 20))
363 (org-fill-paragraph)
364 (buffer-string)))))
365 ;; Handle `adaptive-fill-regexp' in comments.
366 (should
367 (equal "# > a b"
368 (org-test-with-temp-text "# > a\n# > b"
369 (let ((fill-column 20)
370 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
371 (org-fill-paragraph)
372 (buffer-string)))))
373 ;; Do nothing at affiliated keywords.
374 (org-test-with-temp-text "#+NAME: para\nSome\ntext."
375 (let ((fill-column 20))
376 (org-fill-paragraph)
377 (should (equal (buffer-string) "#+NAME: para\nSome\ntext."))))
378 ;; Do not move point after table when filling a table.
379 (should-not
380 (org-test-with-temp-text "| a | b |\n| c | d |\n"
381 (forward-char)
382 (org-fill-paragraph)
383 (eobp))))
385 (ert-deftest test-org/auto-fill-function ()
386 "Test auto-filling features."
387 ;; Auto fill paragraph.
388 (should
389 (equal "12345\n7890"
390 (org-test-with-temp-text "12345 7890"
391 (let ((fill-column 5))
392 (end-of-line)
393 (org-auto-fill-function)
394 (buffer-string)))))
395 ;; Auto fill first paragraph in an item.
396 (should
397 (equal "- 12345\n 7890"
398 (org-test-with-temp-text "- 12345 7890"
399 (let ((fill-column 7))
400 (end-of-line)
401 (org-auto-fill-function)
402 (buffer-string)))))
403 ;; Auto fill paragraph when `adaptive-fill-regexp' matches.
404 (should
405 (equal "> 12345\n 7890"
406 (org-test-with-temp-text "> 12345 7890"
407 (let ((fill-column 10)
408 (adaptive-fill-regexp "[ \t]*>+[ \t]*")
409 (adaptive-fill-first-line-regexp "\\`[ ]*\\'"))
410 (end-of-line)
411 (org-auto-fill-function)
412 (buffer-string)))))
413 (should
414 (equal "> 12345\n> 12345\n> 7890"
415 (org-test-with-temp-text "> 12345\n> 12345 7890"
416 (let ((fill-column 10)
417 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
418 (goto-char (point-max))
419 (org-auto-fill-function)
420 (buffer-string)))))
421 (should-not
422 (equal " 12345\n *12345\n *12345"
423 (org-test-with-temp-text " 12345\n *12345 12345"
424 (let ((fill-column 10)
425 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
426 (goto-char (point-max))
427 (org-auto-fill-function)
428 (buffer-string)))))
429 ;; Auto fill comments.
430 (should
431 (equal " # 12345\n # 7890"
432 (org-test-with-temp-text " # 12345 7890"
433 (let ((fill-column 10))
434 (end-of-line)
435 (org-auto-fill-function)
436 (buffer-string)))))
437 ;; A hash within a line isn't a comment.
438 (should-not
439 (equal "12345 # 7890\n# 1"
440 (org-test-with-temp-text "12345 # 7890 1"
441 (let ((fill-column 12))
442 (end-of-line)
443 (org-auto-fill-function)
444 (buffer-string)))))
445 ;; Correctly interpret empty prefix.
446 (should-not
447 (equal "# a\n# b\nRegular\n# paragraph"
448 (org-test-with-temp-text "# a\n# b\nRegular paragraph"
449 (let ((fill-column 12))
450 (end-of-line 3)
451 (org-auto-fill-function)
452 (buffer-string)))))
453 ;; Comment block: auto fill contents.
454 (should
455 (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
456 (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
457 (let ((fill-column 5))
458 (forward-line)
459 (end-of-line)
460 (org-auto-fill-function)
461 (buffer-string)))))
462 (should
463 (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
464 (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
465 (let ((fill-column 5))
466 (forward-line)
467 (end-of-line)
468 (org-auto-fill-function)
469 (buffer-string)))))
470 ;; Do not fill if a new item could be created.
471 (should-not
472 (equal "12345\n- 90"
473 (org-test-with-temp-text "12345 - 90"
474 (let ((fill-column 5))
475 (end-of-line)
476 (org-auto-fill-function)
477 (buffer-string)))))
478 ;; Do not fill if a line break could be introduced.
479 (should-not
480 (equal "123\\\\\n7890"
481 (org-test-with-temp-text "123\\\\ 7890"
482 (let ((fill-column 6))
483 (end-of-line)
484 (org-auto-fill-function)
485 (buffer-string)))))
486 ;; Do not fill affiliated keywords.
487 (should-not
488 (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
489 (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
490 (let ((fill-column 20))
491 (end-of-line)
492 (org-auto-fill-function)
493 (buffer-string))))))
497 ;;; Indentation
499 (ert-deftest test-org/indent-line ()
500 "Test `org-indent-line' specifications."
501 ;; Do not indent footnote definitions or headlines.
502 (should
503 (zerop
504 (org-test-with-temp-text "* H"
505 (org-indent-line)
506 (org-get-indentation))))
507 (should
508 (zerop
509 (org-test-with-temp-text "[fn:1] fn"
510 (let ((org-adapt-indentation t)) (org-indent-line))
511 (org-get-indentation))))
512 ;; Do not indent before first headline.
513 (should
514 (zerop
515 (org-test-with-temp-text ""
516 (org-indent-line)
517 (org-get-indentation))))
518 ;; Indent according to headline level otherwise, unless
519 ;; `org-adapt-indentation' is nil.
520 (should
521 (= 2
522 (org-test-with-temp-text "* H\nA"
523 (forward-line)
524 (let ((org-adapt-indentation t)) (org-indent-line))
525 (org-get-indentation))))
526 (should
527 (= 2
528 (org-test-with-temp-text "* H\n\nA"
529 (forward-line)
530 (let ((org-adapt-indentation t)) (org-indent-line))
531 (org-get-indentation))))
532 (should
533 (zerop
534 (org-test-with-temp-text "* H\nA"
535 (forward-line)
536 (let ((org-adapt-indentation nil)) (org-indent-line))
537 (org-get-indentation))))
538 ;; Indenting preserves point position.
539 (should
540 (org-test-with-temp-text "* H\nAB"
541 (forward-line)
542 (forward-char)
543 (let ((org-adapt-indentation t)) (org-indent-line))
544 (looking-at "B")))
545 ;; Do not change indentation at an item.
546 (should
547 (= 1
548 (org-test-with-temp-text "* H\n - A"
549 (forward-line)
550 (let ((org-adapt-indentation t)) (org-indent-line))
551 (org-get-indentation))))
552 ;; On blank lines at the end of a list, indent like last element
553 ;; within it if the line is still in the list. Otherwise, indent
554 ;; like the whole list.
555 (should
556 (= 4
557 (org-test-with-temp-text "* H\n- A\n - AA\n"
558 (goto-char (point-max))
559 (let ((org-adapt-indentation t)) (org-indent-line))
560 (org-get-indentation))))
561 (should
562 (zerop
563 (org-test-with-temp-text "* H\n- A\n - AA\n\n\n\n"
564 (goto-char (point-max))
565 (let ((org-adapt-indentation t)) (org-indent-line))
566 (org-get-indentation))))
567 ;; Likewise, on a blank line at the end of a footnote definition,
568 ;; indent at column 0 if line belongs to the definition. Otherwise,
569 ;; indent like the definition itself.
570 (should
571 (zerop
572 (org-test-with-temp-text "* H\n[fn:1] Definition\n"
573 (goto-char (point-max))
574 (let ((org-adapt-indentation t)) (org-indent-line))
575 (org-get-indentation))))
576 (should
577 (zerop
578 (org-test-with-temp-text "* H\n[fn:1] Definition\n\n\n\n"
579 (goto-char (point-max))
580 (let ((org-adapt-indentation t)) (org-indent-line))
581 (org-get-indentation))))
582 ;; After the end of the contents of a greater element, indent like
583 ;; the beginning of the element.
584 (should
585 (= 1
586 (org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
587 (forward-line 2)
588 (org-indent-line)
589 (org-get-indentation))))
590 ;; At the first line of an element, indent like previous element's
591 ;; first line, ignoring footnotes definitions and inline tasks, or
592 ;; according to parent.
593 (should
594 (= 2
595 (org-test-with-temp-text "A\n\n B\n\nC"
596 (goto-char (point-max))
597 (org-indent-line)
598 (org-get-indentation))))
599 (should
600 (= 1
601 (org-test-with-temp-text " A\n\n[fn:1] B\n\n\nC"
602 (goto-char (point-max))
603 (org-indent-line)
604 (org-get-indentation))))
605 (should
606 (= 1
607 (org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
608 (forward-line 1)
609 (org-indent-line)
610 (org-get-indentation))))
611 ;; Within code part of a source block, use language major mode if
612 ;; `org-src-tab-acts-natively' is non-nil. Otherwise, indent
613 ;; according to line above.
614 (should
615 (= 6
616 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
617 (forward-line 2)
618 (let ((org-src-tab-acts-natively t)
619 (org-edit-src-content-indentation 0))
620 (org-indent-line))
621 (org-get-indentation))))
622 (should
623 (= 1
624 (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
625 (forward-line 2)
626 (let ((org-src-tab-acts-natively nil)
627 (org-edit-src-content-indentation 0))
628 (org-indent-line))
629 (org-get-indentation))))
630 ;; Otherwise, indent like the first non-blank line above.
631 (should
632 (zerop
633 (org-test-with-temp-text "#+BEGIN_CENTER\nline1\n\n line2\n#+END_CENTER"
634 (forward-line 3)
635 (org-indent-line)
636 (org-get-indentation))))
637 ;; Align node properties according to `org-property-format'. Handle
638 ;; nicely empty values.
639 (should
640 (equal "* H\n:PROPERTIES:\n:key: value\n:END:"
641 (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:key: value\n:END:"
642 (let ((org-property-format "%-10s %s")) (org-indent-line))
643 (buffer-string))))
644 (should
645 (equal "* H\n:PROPERTIES:\n:key:\n:END:"
646 (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:key:\n:END:"
647 (let ((org-property-format "%-10s %s")) (org-indent-line))
648 (buffer-string)))))
650 (ert-deftest test-org/indent-region ()
651 "Test `org-indent-region' specifications."
652 ;; Indent paragraph.
653 (should
654 (equal "A\nB\nC"
655 (org-test-with-temp-text " A\nB\n C"
656 (org-indent-region (point-min) (point-max))
657 (buffer-string))))
658 ;; Indent greater elements along with their contents.
659 (should
660 (equal "#+BEGIN_CENTER\nA\nB\n#+END_CENTER"
661 (org-test-with-temp-text "#+BEGIN_CENTER\n A\n B\n#+END_CENTER"
662 (org-indent-region (point-min) (point-max))
663 (buffer-string))))
664 ;; Ignore contents of verse blocks and example blocks.
665 (should
666 (equal "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
667 (org-test-with-temp-text "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
668 (org-indent-region (point-min) (point-max))
669 (buffer-string))))
670 (should
671 (equal "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
672 (org-test-with-temp-text "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
673 (org-indent-region (point-min) (point-max))
674 (buffer-string))))
675 ;; Indent according to mode if `org-src-tab-acts-natively' is
676 ;; non-nil. Otherwise, do not indent code at all.
677 (should
678 (equal "#+BEGIN_SRC emacs-lisp\n(and A\n B)\n#+END_SRC"
679 (org-test-with-temp-text
680 "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
681 (let ((org-src-tab-acts-natively t)
682 (org-edit-src-content-indentation 0))
683 (org-indent-region (point-min) (point-max)))
684 (buffer-string))))
685 (should
686 (equal "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
687 (org-test-with-temp-text
688 "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
689 (let ((org-src-tab-acts-natively nil)
690 (org-edit-src-content-indentation 0))
691 (org-indent-region (point-min) (point-max)))
692 (buffer-string))))
693 ;; Align node properties according to `org-property-format'. Handle
694 ;; nicely empty values.
695 (should
696 (equal "* H\n:PROPERTIES:\n:key: value\n:END:"
697 (org-test-with-temp-text "* H\n<point>:PROPERTIES:\n:key: value\n:END:"
698 (let ((org-property-format "%-10s %s")
699 (org-adapt-indentation nil))
700 (org-indent-region (point) (point-max)))
701 (buffer-string))))
702 (should
703 (equal "* H\n:PROPERTIES:\n:key:\n:END:"
704 (org-test-with-temp-text "* H\n<point>:PROPERTIES:\n:key:\n:END:"
705 (let ((org-property-format "%-10s %s")
706 (org-adapt-indentation nil))
707 (org-indent-region (point) (point-max)))
708 (buffer-string))))
709 ;; Indent plain lists.
710 (should
711 (equal "- A\n B\n - C\n\n D"
712 (org-test-with-temp-text "- A\n B\n - C\n\n D"
713 (org-indent-region (point-min) (point-max))
714 (buffer-string))))
715 (should
716 (equal "- A\n\n- B"
717 (org-test-with-temp-text " - A\n\n - B"
718 (org-indent-region (point-min) (point-max))
719 (buffer-string))))
720 ;; Indent footnote definitions.
721 (should
722 (equal "[fn:1] Definition\n\nDefinition"
723 (org-test-with-temp-text "[fn:1] Definition\n\n Definition"
724 (org-indent-region (point-min) (point-max))
725 (buffer-string))))
726 ;; Special case: Start indenting on a blank line.
727 (should
728 (equal "\nParagraph"
729 (org-test-with-temp-text "\n Paragraph"
730 (org-indent-region (point-min) (point-max))
731 (buffer-string)))))
735 ;;; Editing
737 ;;;; Insert elements
739 (ert-deftest test-org/meta-return ()
740 "Test M-RET (`org-meta-return')."
741 ;; In a table field insert a row above.
742 (should
743 (org-test-with-temp-text "| a |"
744 (forward-char)
745 (org-meta-return)
746 (forward-line -1)
747 (looking-at "| |$")))
748 ;; In a paragraph change current line into a header.
749 (should
750 (org-test-with-temp-text "a"
751 (org-meta-return)
752 (beginning-of-line)
753 (looking-at "\* a$")))
754 ;; In an item insert an item, in this case above.
755 (should
756 (org-test-with-temp-text "- a"
757 (org-meta-return)
758 (beginning-of-line)
759 (looking-at "- $")))
760 ;; In a drawer and item insert an item, in this case above.
761 (should
762 (org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
763 (forward-line)
764 (org-meta-return)
765 (beginning-of-line)
766 (looking-at "- $"))))
768 (ert-deftest test-org/insert-heading ()
769 "Test `org-insert-heading' specifications."
770 ;; FIXME: Test coverage is incomplete yet.
772 ;; In an empty buffer, insert a new headline.
773 (should
774 (equal "* "
775 (org-test-with-temp-text ""
776 (org-insert-heading)
777 (buffer-string))))
778 ;; At the beginning of a line, turn it into a headline
779 (should
780 (equal "* P"
781 (org-test-with-temp-text "<point>P"
782 (org-insert-heading)
783 (buffer-string))))
784 ;; In the middle of a line, split the line if allowed, otherwise,
785 ;; insert the headline at its end.
786 (should
787 (equal "Para\n* graph"
788 (org-test-with-temp-text "Para<point>graph"
789 (let ((org-M-RET-may-split-line '((default . t))))
790 (org-insert-heading))
791 (buffer-string))))
792 (should
793 (equal "Paragraph\n* "
794 (org-test-with-temp-text "Para<point>graph"
795 (let ((org-M-RET-may-split-line '((default . nil))))
796 (org-insert-heading))
797 (buffer-string))))
798 ;; Corner case: correctly insert a headline after an empty one.
799 (should
800 (equal "* \n* "
801 (org-test-with-temp-text "* <point>"
802 (org-insert-heading)
803 (buffer-string)))))
805 (ert-deftest test-org/insert-todo-heading-respect-content ()
806 "Test `org-insert-todo-heading-respect-content' specifications."
807 ;; Create a TODO heading.
808 (should
809 (org-test-with-temp-text "* H1\n Body"
810 (org-insert-todo-heading-respect-content)
811 (nth 2 (org-heading-components))))
812 ;; Add headline at the end of the first subtree
813 (should
814 (org-test-with-temp-text "* H1\nH1Body\n** H2\nH2Body"
815 (search-forward "H1Body")
816 (org-insert-todo-heading-respect-content)
817 (and (eobp) (org-at-heading-p))))
818 ;; In a list, do not create a new item.
819 (should
820 (org-test-with-temp-text "* H\n- an item\n- another one"
821 (search-forward "an ")
822 (org-insert-todo-heading-respect-content)
823 (and (eobp) (org-at-heading-p)))))
827 ;;; Fixed-Width Areas
829 (ert-deftest test-org/toggle-fixed-width ()
830 "Test `org-toggle-fixed-width' specifications."
831 ;; No region: Toggle on fixed-width marker in paragraphs.
832 (should
833 (equal ": A"
834 (org-test-with-temp-text "A"
835 (org-toggle-fixed-width)
836 (buffer-string))))
837 ;; No region: Toggle off fixed-width markers in fixed-width areas.
838 (should
839 (equal "A"
840 (org-test-with-temp-text ": A"
841 (org-toggle-fixed-width)
842 (buffer-string))))
843 ;; No region: Toggle on marker in blank lines after elements or just
844 ;; after a headline.
845 (should
846 (equal "* H\n: "
847 (org-test-with-temp-text "* H\n"
848 (forward-line)
849 (org-toggle-fixed-width)
850 (buffer-string))))
851 (should
852 (equal "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n: "
853 (org-test-with-temp-text "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n"
854 (goto-char (point-max))
855 (org-toggle-fixed-width)
856 (buffer-string))))
857 ;; No region: Toggle on marker in front of one line elements (e.g.,
858 ;; headlines, clocks)
859 (should
860 (equal ": * Headline"
861 (org-test-with-temp-text "* Headline"
862 (org-toggle-fixed-width)
863 (buffer-string))))
864 (should
865 (equal ": #+KEYWORD: value"
866 (org-test-with-temp-text "#+KEYWORD: value"
867 (org-toggle-fixed-width)
868 (buffer-string))))
869 ;; No region: error in other situations.
870 (should-error
871 (org-test-with-temp-text "#+BEGIN_EXAMPLE\n: A\n#+END_EXAMPLE"
872 (forward-line)
873 (org-toggle-fixed-width)
874 (buffer-string)))
875 ;; No region: Indentation is preserved.
876 (should
877 (equal "- A\n : B"
878 (org-test-with-temp-text "- A\n B"
879 (forward-line)
880 (org-toggle-fixed-width)
881 (buffer-string))))
882 ;; Region: If it contains only fixed-width elements and blank lines,
883 ;; toggle off fixed-width markup.
884 (should
885 (equal "A\n\nB"
886 (org-test-with-temp-text ": A\n\n: B"
887 (transient-mark-mode 1)
888 (push-mark (point) t t)
889 (goto-char (point-max))
890 (org-toggle-fixed-width)
891 (buffer-string))))
892 ;; Region: If it contains anything else, toggle on fixed-width but
893 ;; not on fixed-width areas.
894 (should
895 (equal ": A\n: \n: B\n: \n: C"
896 (org-test-with-temp-text "A\n\n: B\n\nC"
897 (transient-mark-mode 1)
898 (push-mark (point) t t)
899 (goto-char (point-max))
900 (org-toggle-fixed-width)
901 (buffer-string))))
902 ;; Region: Ignore blank lines at its end, unless it contains only
903 ;; such lines.
904 (should
905 (equal ": A\n\n"
906 (org-test-with-temp-text "A\n\n"
907 (transient-mark-mode 1)
908 (push-mark (point) t t)
909 (goto-char (point-max))
910 (org-toggle-fixed-width)
911 (buffer-string))))
912 (should
913 (equal ": \n: \n"
914 (org-test-with-temp-text "\n\n"
915 (transient-mark-mode 1)
916 (push-mark (point) t t)
917 (goto-char (point-max))
918 (org-toggle-fixed-width)
919 (buffer-string)))))
923 ;;; Headline
925 (ert-deftest test-org/in-commented-heading-p ()
926 "Test `org-in-commented-heading-p' specifications."
927 ;; Commented headline.
928 (should
929 (org-test-with-temp-text "* COMMENT Headline\nBody"
930 (goto-char (point-max))
931 (org-in-commented-heading-p)))
932 ;; Commented ancestor.
933 (should
934 (org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
935 (goto-char (point-max))
936 (org-in-commented-heading-p)))
937 ;; Comment keyword is case-sensitive.
938 (should-not
939 (org-test-with-temp-text "* Comment Headline\nBody"
940 (goto-char (point-max))
941 (org-in-commented-heading-p)))
942 ;; Keyword is standalone.
943 (should-not
944 (org-test-with-temp-text "* COMMENTHeadline\nBody"
945 (goto-char (point-max))
946 (org-in-commented-heading-p)))
947 ;; Optional argument.
948 (should-not
949 (org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
950 (goto-char (point-max))
951 (org-in-commented-heading-p t))))
955 ;;; Keywords
957 (ert-deftest test-org/set-regexps-and-options ()
958 "Test `org-set-regexps-and-options' specifications."
959 ;; TAGS keyword.
960 (should
961 (equal '(("A" . ?a) ("B") ("C"))
962 (org-test-with-temp-text "#+TAGS: A(a) B C"
963 (org-mode-restart)
964 org-tag-alist)))
965 (should
966 (equal '(("A") (:newline) ("B"))
967 (org-test-with-temp-text "#+TAGS: A\n#+TAGS: B"
968 (org-mode-restart)
969 org-tag-alist)))
970 (should
971 (equal '((:startgroup) ("A") ("B") (:endgroup) ("C"))
972 (org-test-with-temp-text "#+TAGS: { A B } C"
973 (org-mode-restart)
974 org-tag-alist)))
975 (should
976 (equal '((:startgroup) ("A") (:grouptags) ("B") ("C") (:endgroup))
977 (org-test-with-temp-text "#+TAGS: { A : B C }"
978 (org-mode-restart)
979 org-tag-alist)))
980 (should
981 (equal '(("A" "B" "C"))
982 (org-test-with-temp-text "#+TAGS: { A : B C }"
983 (org-mode-restart)
984 org-tag-groups-alist)))
985 ;; FILETAGS keyword.
986 (should
987 (equal '("A" "B" "C")
988 (org-test-with-temp-text "#+FILETAGS: :A:B:C:"
989 (org-mode-restart)
990 org-file-tags)))
991 ;; PROPERTY keyword. Property names are case-insensitive.
992 (should
993 (equal "foo=1"
994 (org-test-with-temp-text "#+PROPERTY: var foo=1"
995 (org-mode-restart)
996 (cdr (assoc "var" org-file-properties)))))
997 (should
998 (equal
999 "foo=1 bar=2"
1000 (org-test-with-temp-text "#+PROPERTY: var foo=1\n#+PROPERTY: var+ bar=2"
1001 (org-mode-restart)
1002 (cdr (assoc "var" org-file-properties)))))
1003 (should
1004 (equal
1005 "foo=1 bar=2"
1006 (org-test-with-temp-text "#+PROPERTY: var foo=1\n#+PROPERTY: VAR+ bar=2"
1007 (org-mode-restart)
1008 (cdr (assoc "var" org-file-properties)))))
1009 ;; ARCHIVE keyword.
1010 (should
1011 (equal "%s_done::"
1012 (org-test-with-temp-text "#+ARCHIVE: %s_done::"
1013 (org-mode-restart)
1014 org-archive-location)))
1015 ;; CATEGORY keyword.
1016 (should
1017 (eq 'test
1018 (org-test-with-temp-text "#+CATEGORY: test"
1019 (org-mode-restart)
1020 org-category)))
1021 (should
1022 (equal "test"
1023 (org-test-with-temp-text "#+CATEGORY: test"
1024 (org-mode-restart)
1025 (cdr (assoc "CATEGORY" org-file-properties)))))
1026 ;; COLUMNS keyword.
1027 (should
1028 (equal "%25ITEM %TAGS %PRIORITY %TODO"
1029 (org-test-with-temp-text "#+COLUMNS: %25ITEM %TAGS %PRIORITY %TODO"
1030 (org-mode-restart)
1031 org-columns-default-format)))
1032 ;; CONSTANTS keyword. Constants names are case sensitive.
1033 (should
1034 (equal '("299792458." "3.14")
1035 (org-test-with-temp-text "#+CONSTANTS: c=299792458. pi=3.14"
1036 (org-mode-restart)
1037 (mapcar
1038 (lambda (n) (cdr (assoc n org-table-formula-constants-local)))
1039 '("c" "pi")))))
1040 (should
1041 (equal "3.14"
1042 (org-test-with-temp-text "#+CONSTANTS: pi=22/7 pi=3.14"
1043 (org-mode-restart)
1044 (cdr (assoc "pi" org-table-formula-constants-local)))))
1045 (should
1046 (equal "22/7"
1047 (org-test-with-temp-text "#+CONSTANTS: PI=22/7 pi=3.14"
1048 (org-mode-restart)
1049 (cdr (assoc "PI" org-table-formula-constants-local)))))
1050 ;; LINK keyword.
1051 (should
1052 (equal
1053 '("url1" "url2")
1054 (org-test-with-temp-text "#+LINK: a url1\n#+LINK: b url2"
1055 (org-mode-restart)
1056 (mapcar (lambda (abbrev) (cdr (assoc abbrev org-link-abbrev-alist-local)))
1057 '("a" "b")))))
1058 ;; PRIORITIES keyword. Incomplete priorities sets are ignored.
1059 (should
1060 (equal
1061 '(?X ?Z ?Y)
1062 (org-test-with-temp-text "#+PRIORITIES: X Z Y"
1063 (org-mode-restart)
1064 (list org-highest-priority org-lowest-priority org-default-priority))))
1065 (should
1066 (equal
1067 '(?A ?C ?B)
1068 (org-test-with-temp-text "#+PRIORITIES: X Z"
1069 (org-mode-restart)
1070 (list org-highest-priority org-lowest-priority org-default-priority))))
1071 ;; STARTUP keyword.
1072 (should
1073 (equal '(t t)
1074 (org-test-with-temp-text "#+STARTUP: fold odd"
1075 (org-mode-restart)
1076 (list org-startup-folded org-odd-levels-only))))
1077 ;; TODO keywords.
1078 (should
1079 (equal '(("A" "B") ("C"))
1080 (org-test-with-temp-text "#+TODO: A B | C"
1081 (org-mode-restart)
1082 (list org-not-done-keywords org-done-keywords))))
1083 (should
1084 (equal '(("A" "B") ("C"))
1085 (org-test-with-temp-text "#+TYP_TODO: A B | C"
1086 (org-mode-restart)
1087 (list org-not-done-keywords org-done-keywords))))
1088 (should
1089 (equal '((:startgroup) ("A" . ?a) (:endgroup))
1090 (org-test-with-temp-text "#+TODO: A(a)"
1091 (org-mode-restart)
1092 org-todo-key-alist)))
1093 (should
1094 (equal '(("D" note nil) ("C" time nil) ("B" note time))
1095 (org-test-with-temp-text "#+TODO: A(a) B(b@/!) | C(c!) D(d@)"
1096 (org-mode-restart)
1097 org-todo-log-states)))
1098 ;; Enter SETUPFILE keyword.
1099 (should
1100 (equal "1"
1101 (org-test-with-temp-text
1102 (format "#+SETUPFILE: \"%s/examples/setupfile.org\"" org-test-dir)
1103 (org-mode-restart)
1104 (cdr (assoc "a" org-file-properties))))))
1108 ;;; Links
1110 ;;;; Coderefs
1112 (ert-deftest test-org/coderef ()
1113 "Test coderef links specifications."
1114 (should
1115 (org-test-with-temp-text "
1116 #+BEGIN_SRC emacs-lisp
1117 \(+ 1 1) (ref:sc)
1118 #+END_SRC
1119 \[[(sc)]]"
1120 (goto-char (point-max))
1121 (org-open-at-point)
1122 (looking-at "(ref:sc)"))))
1124 ;;;; Custom ID
1126 (ert-deftest test-org/custom-id ()
1127 "Test custom ID links specifications."
1128 (should
1129 (org-test-with-temp-text
1130 "* H1\n:PROPERTIES:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom]]"
1131 (goto-char (point-max))
1132 (org-open-at-point)
1133 (org-looking-at-p "\\* H1"))))
1135 ;;;; Fuzzy Links
1137 ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
1138 ;; a named element (#+name: text) and to headlines (* Text).
1140 (ert-deftest test-org/fuzzy-links ()
1141 "Test fuzzy links specifications."
1142 ;; Fuzzy link goes in priority to a matching target.
1143 (should
1144 (org-test-with-temp-text "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
1145 (goto-line 5)
1146 (org-open-at-point)
1147 (looking-at "<<Test>>")))
1148 ;; Then fuzzy link points to an element with a given name.
1149 (should
1150 (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
1151 (goto-line 5)
1152 (org-open-at-point)
1153 (looking-at "#\\+NAME: Test")))
1154 ;; A target still lead to a matching headline otherwise.
1155 (should
1156 (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
1157 (goto-line 4)
1158 (org-open-at-point)
1159 (looking-at "\\* Head2")))
1160 ;; With a leading star in link, enforce heading match.
1161 (should
1162 (org-test-with-temp-text "* Test\n<<Test>>\n[[*Test]]"
1163 (goto-line 3)
1164 (org-open-at-point)
1165 (looking-at "\\* Test")))
1166 ;; Correctly un-hexify fuzzy links.
1167 (should
1168 (org-test-with-temp-text "* With space\n[[*With%20space][With space]]"
1169 (goto-char (point-max))
1170 (org-open-at-point)
1171 (bobp))))
1173 ;;;; Link Escaping
1175 (ert-deftest test-org/org-link-escape-ascii-character ()
1176 "Escape an ascii character."
1177 (should
1178 (string=
1179 "%5B"
1180 (org-link-escape "["))))
1182 (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
1183 "Escape an ascii control character."
1184 (should
1185 (string=
1186 "%09"
1187 (org-link-escape "\t"))))
1189 (ert-deftest test-org/org-link-escape-multibyte-character ()
1190 "Escape an unicode multibyte character."
1191 (should
1192 (string=
1193 "%E2%82%AC"
1194 (org-link-escape "€"))))
1196 (ert-deftest test-org/org-link-escape-custom-table ()
1197 "Escape string with custom character table."
1198 (should
1199 (string=
1200 "Foo%3A%42ar%0A"
1201 (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
1203 (ert-deftest test-org/org-link-escape-custom-table-merge ()
1204 "Escape string with custom table merged with default table."
1205 (should
1206 (string=
1207 "%5BF%6F%6F%3A%42ar%0A%5D"
1208 (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
1210 (ert-deftest test-org/org-link-unescape-ascii-character ()
1211 "Unescape an ascii character."
1212 (should
1213 (string=
1215 (org-link-unescape "%5B"))))
1217 (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
1218 "Unescpae an ascii control character."
1219 (should
1220 (string=
1221 "\n"
1222 (org-link-unescape "%0A"))))
1224 (ert-deftest test-org/org-link-unescape-multibyte-character ()
1225 "Unescape unicode multibyte character."
1226 (should
1227 (string=
1228 "€"
1229 (org-link-unescape "%E2%82%AC"))))
1231 (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
1232 "Unescape old style percent escaped character."
1233 (should
1234 (string=
1235 "àâçèéêîôùû"
1236 (decode-coding-string
1237 (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
1239 (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
1240 "Escape and unescape a URL that includes an escaped char.
1241 http://article.gmane.org/gmane.emacs.orgmode/21459/"
1242 (should
1243 (string=
1244 "http://some.host.com/form?&id=blah%2Bblah25"
1245 (org-link-unescape
1246 (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
1248 (ert-deftest test-org/org-link-escape-chars-browser ()
1249 "Test of the constant `org-link-escape-chars-browser'.
1250 See there why this test is a candidate to be removed once Org
1251 drops support for Emacs 24.1 and 24.2."
1252 (should
1253 (string=
1254 (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
1255 "%22Release%208.2%22&idxname=emacs-orgmode")
1256 (org-link-escape-browser ; Do not replace with `url-encode-url',
1257 ; see docstring above.
1258 (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
1259 "\"Release 8.2\"&idxname=emacs-orgmode")))))
1261 ;;;; Open at point
1263 (ert-deftest test-org/open-at-point-in-property ()
1264 "Does `org-open-at-point' open link in property drawer?"
1265 (should
1266 (org-test-with-temp-text
1267 "* Headline
1268 :PROPERTIES:
1269 :URL: <point>[[info:emacs#Top]]
1270 :END:"
1271 (org-open-at-point) t)))
1273 (ert-deftest test-org/open-at-point-in-comment ()
1274 "Does `org-open-at-point' open link in a commented line?"
1275 (should
1276 (org-test-with-temp-text
1277 "# <point>[[info:emacs#Top]]"
1278 (org-open-at-point) t)))
1280 (ert-deftest test-org/open-at-point/info ()
1281 "Test `org-open-at-point' on info links."
1282 (should
1283 (org-test-with-temp-text
1284 "<point>[[info:emacs#Top]]"
1285 (org-open-at-point)
1286 (and (switch-to-buffer "*info*")
1287 (prog1
1288 (looking-at "\nThe Emacs Editor")
1289 (kill-buffer))))))
1292 ;;; Node Properties
1294 (ert-deftest test-org/accumulated-properties-in-drawers ()
1295 "Ensure properties accumulate in subtree drawers."
1296 (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
1297 (org-babel-next-src-block)
1298 (should (equal '(2 1) (org-babel-execute-src-block)))))
1302 ;;; Mark Region
1304 (ert-deftest test-org/mark-subtree ()
1305 "Test `org-mark-subtree' specifications."
1306 ;; Error when point is before first headline.
1307 (should-error
1308 (org-test-with-temp-text "Paragraph\n* Headline\nBody"
1309 (progn (transient-mark-mode 1)
1310 (org-mark-subtree))))
1311 ;; Without argument, mark current subtree.
1312 (should
1313 (equal
1314 '(12 32)
1315 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
1316 (progn (transient-mark-mode 1)
1317 (forward-line 2)
1318 (org-mark-subtree)
1319 (list (region-beginning) (region-end))))))
1320 ;; With an argument, move ARG up.
1321 (should
1322 (equal
1323 '(1 32)
1324 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
1325 (progn (transient-mark-mode 1)
1326 (forward-line 2)
1327 (org-mark-subtree 1)
1328 (list (region-beginning) (region-end))))))
1329 ;; Do not get fooled by inlinetasks.
1330 (when (featurep 'org-inlinetask)
1331 (should
1332 (= 1
1333 (org-test-with-temp-text "* Headline\n*************** Task\nContents"
1334 (progn (transient-mark-mode 1)
1335 (forward-line 1)
1336 (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
1337 (region-beginning)))))))
1341 ;;; Navigation
1343 (ert-deftest test-org/beginning-of-line ()
1344 "Test `org-beginning-of-line' specifications."
1345 ;; Standard test.
1346 (should
1347 (org-test-with-temp-text "Some text\nSome other text"
1348 (progn (org-beginning-of-line) (bolp))))
1349 ;; Standard test with `visual-line-mode'.
1350 (should-not
1351 (org-test-with-temp-text "A long line of text\nSome other text"
1352 (progn (visual-line-mode)
1353 (forward-char 2)
1354 (dotimes (i 1000) (insert "very "))
1355 (org-beginning-of-line)
1356 (bolp))))
1357 ;; At an headline with special movement.
1358 (should
1359 (org-test-with-temp-text "* TODO Headline"
1360 (let ((org-special-ctrl-a/e t))
1361 (org-end-of-line)
1362 (and (progn (org-beginning-of-line) (looking-at "Headline"))
1363 (progn (org-beginning-of-line) (bolp))
1364 (progn (org-beginning-of-line) (looking-at "Headline")))))))
1366 (ert-deftest test-org/end-of-line ()
1367 "Test `org-end-of-line' specifications."
1368 ;; Standard test.
1369 (should
1370 (org-test-with-temp-text "Some text\nSome other text"
1371 (progn (org-end-of-line) (eolp))))
1372 ;; Standard test with `visual-line-mode'.
1373 (should-not
1374 (org-test-with-temp-text "A long line of text\nSome other text"
1375 (progn (visual-line-mode)
1376 (forward-char 2)
1377 (dotimes (i 1000) (insert "very "))
1378 (goto-char (point-min))
1379 (org-end-of-line)
1380 (eolp))))
1381 ;; At an headline with special movement.
1382 (should
1383 (org-test-with-temp-text "* Headline1 :tag:\n"
1384 (let ((org-special-ctrl-a/e t))
1385 (and (progn (org-end-of-line) (looking-at " :tag:"))
1386 (progn (org-end-of-line) (eolp))
1387 (progn (org-end-of-line) (looking-at " :tag:"))))))
1388 ;; At an headline without special movement.
1389 (should
1390 (org-test-with-temp-text "* Headline2 :tag:\n"
1391 (let ((org-special-ctrl-a/e nil))
1392 (and (progn (org-end-of-line) (eolp))
1393 (progn (org-end-of-line) (eolp))))))
1394 ;; At an headline, with reversed movement.
1395 (should
1396 (org-test-with-temp-text "* Headline3 :tag:\n"
1397 (let ((org-special-ctrl-a/e 'reversed)
1398 (this-command last-command))
1399 (and (progn (org-end-of-line) (eolp))
1400 (progn (org-end-of-line) (looking-at " :tag:"))))))
1401 ;; At a block without hidden contents.
1402 (should
1403 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
1404 (progn (org-end-of-line) (eolp))))
1405 ;; At a block with hidden contents.
1406 (should-not
1407 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
1408 (let ((org-special-ctrl-a/e t))
1409 (org-hide-block-toggle)
1410 (org-end-of-line)
1411 (eobp)))))
1413 (ert-deftest test-org/forward-paragraph ()
1414 "Test `org-forward-paragraph' specifications."
1415 ;; At end of buffer, return an error.
1416 (should-error
1417 (org-test-with-temp-text "Paragraph"
1418 (goto-char (point-max))
1419 (org-forward-paragraph)))
1420 ;; Standard test.
1421 (should
1422 (org-test-with-temp-text "P1\n\nP2\n\nP3"
1423 (org-forward-paragraph)
1424 (looking-at "P2")))
1425 ;; Ignore depth.
1426 (should
1427 (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
1428 (org-forward-paragraph)
1429 (looking-at "P1")))
1430 ;; Do not enter elements with invisible contents.
1431 (should
1432 (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
1433 (org-hide-block-toggle)
1434 (org-forward-paragraph)
1435 (looking-at "P3")))
1436 ;; On an affiliated keyword, jump to the beginning of the element.
1437 (should
1438 (org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
1439 (org-forward-paragraph)
1440 (looking-at "Para")))
1441 ;; On an item or a footnote definition, move to the second element
1442 ;; inside, if any.
1443 (should
1444 (org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
1445 (org-forward-paragraph)
1446 (looking-at " Paragraph")))
1447 (should
1448 (org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
1449 (org-forward-paragraph)
1450 (looking-at "Paragraph")))
1451 ;; On an item, or a footnote definition, when the first line is
1452 ;; empty, move to the first item.
1453 (should
1454 (org-test-with-temp-text "- \n\n Paragraph\n- Item2"
1455 (org-forward-paragraph)
1456 (looking-at " Paragraph")))
1457 (should
1458 (org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
1459 (org-forward-paragraph)
1460 (looking-at "Paragraph")))
1461 ;; On a table (resp. a property drawer) do not move through table
1462 ;; rows (resp. node properties).
1463 (should
1464 (org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
1465 (org-forward-paragraph)
1466 (looking-at "Paragraph")))
1467 (should
1468 (org-test-with-temp-text
1469 "* H\n<point>:PROPERTIES:\n:prop: value\n:END:\nParagraph"
1470 (org-forward-paragraph)
1471 (looking-at "Paragraph")))
1472 ;; On a verse or source block, stop after blank lines.
1473 (should
1474 (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
1475 (org-forward-paragraph)
1476 (looking-at "L2")))
1477 (should
1478 (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
1479 (org-forward-paragraph)
1480 (looking-at "L2"))))
1482 (ert-deftest test-org/backward-paragraph ()
1483 "Test `org-backward-paragraph' specifications."
1484 ;; Error at beginning of buffer.
1485 (should-error
1486 (org-test-with-temp-text "Paragraph"
1487 (org-backward-paragraph)))
1488 ;; Regular test.
1489 (should
1490 (org-test-with-temp-text "P1\n\nP2\n\nP3"
1491 (goto-char (point-max))
1492 (org-backward-paragraph)
1493 (looking-at "P3")))
1494 (should
1495 (org-test-with-temp-text "P1\n\nP2\n\nP3"
1496 (goto-char (point-max))
1497 (beginning-of-line)
1498 (org-backward-paragraph)
1499 (looking-at "P2")))
1500 ;; Ignore depth.
1501 (should
1502 (org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
1503 (goto-char (point-max))
1504 (beginning-of-line)
1505 (org-backward-paragraph)
1506 (looking-at "P2")))
1507 ;; Ignore invisible elements.
1508 (should
1509 (org-test-with-temp-text "* H1\n P1\n* H2"
1510 (org-cycle)
1511 (goto-char (point-max))
1512 (beginning-of-line)
1513 (org-backward-paragraph)
1514 (bobp)))
1515 ;; On an affiliated keyword, jump to the first one.
1516 (should
1517 (org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
1518 (search-forward "c2")
1519 (org-backward-paragraph)
1520 (looking-at "#\\+name")))
1521 ;; On the second element in an item or a footnote definition, jump
1522 ;; to item or the definition.
1523 (should
1524 (org-test-with-temp-text "- line1\n\n line2"
1525 (goto-char (point-max))
1526 (beginning-of-line)
1527 (org-backward-paragraph)
1528 (looking-at "- line1")))
1529 (should
1530 (org-test-with-temp-text "[fn:1] line1\n\n line2"
1531 (goto-char (point-max))
1532 (beginning-of-line)
1533 (org-backward-paragraph)
1534 (looking-at "\\[fn:1\\] line1")))
1535 ;; On a table (resp. a property drawer), ignore table rows
1536 ;; (resp. node properties).
1537 (should
1538 (org-test-with-temp-text "| a | b |\n| c | d |\nP1"
1539 (goto-char (point-max))
1540 (beginning-of-line)
1541 (org-backward-paragraph)
1542 (bobp)))
1543 (should
1544 (org-test-with-temp-text "* H\n:PROPERTIES:\n:prop: value\n:END:\n<point>P1"
1545 (org-backward-paragraph)
1546 (looking-at ":PROPERTIES:")))
1547 ;; On a source or verse block, stop before blank lines.
1548 (should
1549 (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
1550 (search-forward "L3")
1551 (beginning-of-line)
1552 (org-backward-paragraph)
1553 (looking-at "L2")))
1554 (should
1555 (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
1556 (search-forward "L3")
1557 (beginning-of-line)
1558 (org-backward-paragraph)
1559 (looking-at "L2"))))
1561 (ert-deftest test-org/forward-element ()
1562 "Test `org-forward-element' specifications."
1563 ;; 1. At EOB: should error.
1564 (org-test-with-temp-text "Some text\n"
1565 (goto-char (point-max))
1566 (should-error (org-forward-element)))
1567 ;; 2. Standard move: expected to ignore blank lines.
1568 (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
1569 (org-forward-element)
1570 (should (looking-at (regexp-quote "Second paragraph."))))
1571 ;; 3. Headline tests.
1572 (org-test-with-temp-text "
1573 * Head 1
1574 ** Head 1.1
1575 *** Head 1.1.1
1576 ** Head 1.2"
1577 ;; 3.1. At an headline beginning: move to next headline at the
1578 ;; same level.
1579 (goto-line 3)
1580 (org-forward-element)
1581 (should (looking-at (regexp-quote "** Head 1.2")))
1582 ;; 3.2. At an headline beginning: move to parent headline if no
1583 ;; headline at the same level.
1584 (goto-line 3)
1585 (org-forward-element)
1586 (should (looking-at (regexp-quote "** Head 1.2"))))
1587 ;; 4. Greater element tests.
1588 (org-test-with-temp-text
1589 "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
1590 ;; 4.1. At a greater element: expected to skip contents.
1591 (org-forward-element)
1592 (should (looking-at (regexp-quote "Outside.")))
1593 ;; 4.2. At the end of greater element contents: expected to skip
1594 ;; to the end of the greater element.
1595 (goto-line 2)
1596 (org-forward-element)
1597 (should (looking-at (regexp-quote "Outside."))))
1598 ;; 5. List tests.
1599 (org-test-with-temp-text "
1600 - item1
1602 - sub1
1604 - sub2
1606 - sub3
1608 Inner paragraph.
1610 - item2
1612 Outside."
1613 ;; 5.1. At list top point: expected to move to the element after
1614 ;; the list.
1615 (goto-line 2)
1616 (org-forward-element)
1617 (should (looking-at (regexp-quote "Outside.")))
1618 ;; 5.2. Special case: at the first line of a sub-list, but not at
1619 ;; beginning of line, move to next item.
1620 (goto-line 2)
1621 (forward-char)
1622 (org-forward-element)
1623 (should (looking-at "- item2"))
1624 (goto-line 4)
1625 (forward-char)
1626 (org-forward-element)
1627 (should (looking-at " - sub2"))
1628 ;; 5.3 At sub-list beginning: expected to move after the sub-list.
1629 (goto-line 4)
1630 (org-forward-element)
1631 (should (looking-at (regexp-quote " Inner paragraph.")))
1632 ;; 5.4. At sub-list end: expected to move outside the sub-list.
1633 (goto-line 8)
1634 (org-forward-element)
1635 (should (looking-at (regexp-quote " Inner paragraph.")))
1636 ;; 5.5. At an item: expected to move to next item, if any.
1637 (goto-line 6)
1638 (org-forward-element)
1639 (should (looking-at " - sub3"))))
1641 (ert-deftest test-org/backward-element ()
1642 "Test `org-backward-element' specifications."
1643 ;; 1. Should error at BOB.
1644 (org-test-with-temp-text " \nParagraph."
1645 (should-error (org-backward-element)))
1646 ;; 2. Should move at BOB when called on the first element in buffer.
1647 (should
1648 (org-test-with-temp-text "\n#+TITLE: test"
1649 (progn (forward-line)
1650 (org-backward-element)
1651 (bobp))))
1652 ;; 3. Not at the beginning of an element: move at its beginning.
1653 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
1654 (goto-line 3)
1655 (end-of-line)
1656 (org-backward-element)
1657 (should (looking-at (regexp-quote "Paragraph2."))))
1658 ;; 4. Headline tests.
1659 (org-test-with-temp-text "
1660 * Head 1
1661 ** Head 1.1
1662 *** Head 1.1.1
1663 ** Head 1.2"
1664 ;; 4.1. At an headline beginning: move to previous headline at the
1665 ;; same level.
1666 (goto-line 5)
1667 (org-backward-element)
1668 (should (looking-at (regexp-quote "** Head 1.1")))
1669 ;; 4.2. At an headline beginning: move to parent headline if no
1670 ;; headline at the same level.
1671 (goto-line 3)
1672 (org-backward-element)
1673 (should (looking-at (regexp-quote "* Head 1")))
1674 ;; 4.3. At the first top-level headline: should error.
1675 (goto-line 2)
1676 (should-error (org-backward-element)))
1677 ;; 5. At beginning of first element inside a greater element:
1678 ;; expected to move to greater element's beginning.
1679 (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
1680 (goto-line 3)
1681 (org-backward-element)
1682 (should (looking-at "#\\+BEGIN_CENTER")))
1683 ;; 6. At the beginning of the first element in a section: should
1684 ;; move back to headline, if any.
1685 (should
1686 (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
1687 (progn (goto-char (point-max))
1688 (beginning-of-line)
1689 (org-backward-element)
1690 (org-at-heading-p))))
1691 ;; 7. List tests.
1692 (org-test-with-temp-text "
1693 - item1
1695 - sub1
1697 - sub2
1699 - sub3
1701 Inner paragraph.
1703 - item2
1706 Outside."
1707 ;; 7.1. At beginning of sub-list: expected to move to the
1708 ;; paragraph before it.
1709 (goto-line 4)
1710 (org-backward-element)
1711 (should (looking-at "item1"))
1712 ;; 7.2. At an item in a list: expected to move at previous item.
1713 (goto-line 8)
1714 (org-backward-element)
1715 (should (looking-at " - sub2"))
1716 (goto-line 12)
1717 (org-backward-element)
1718 (should (looking-at "- item1"))
1719 ;; 7.3. At end of list/sub-list: expected to move to list/sub-list
1720 ;; beginning.
1721 (goto-line 10)
1722 (org-backward-element)
1723 (should (looking-at " - sub1"))
1724 (goto-line 15)
1725 (org-backward-element)
1726 (should (looking-at "- item1"))
1727 ;; 7.4. At blank-lines before list end: expected to move to top
1728 ;; item.
1729 (goto-line 14)
1730 (org-backward-element)
1731 (should (looking-at "- item1"))))
1733 (ert-deftest test-org/up-element ()
1734 "Test `org-up-element' specifications."
1735 ;; 1. At BOB or with no surrounding element: should error.
1736 (org-test-with-temp-text "Paragraph."
1737 (should-error (org-up-element)))
1738 (org-test-with-temp-text "* Head1\n* Head2"
1739 (goto-line 2)
1740 (should-error (org-up-element)))
1741 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
1742 (goto-line 3)
1743 (should-error (org-up-element)))
1744 ;; 2. At an headline: move to parent headline.
1745 (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
1746 (goto-line 3)
1747 (org-up-element)
1748 (should (looking-at "\\* Head1")))
1749 ;; 3. Inside a greater element: move to greater element beginning.
1750 (org-test-with-temp-text
1751 "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
1752 (goto-line 3)
1753 (org-up-element)
1754 (should (looking-at "#\\+BEGIN_CENTER")))
1755 ;; 4. List tests.
1756 (org-test-with-temp-text "* Top
1757 - item1
1759 - sub1
1761 - sub2
1763 Paragraph within sub2.
1765 - item2"
1766 ;; 4.1. Within an item: move to the item beginning.
1767 (goto-line 8)
1768 (org-up-element)
1769 (should (looking-at " - sub2"))
1770 ;; 4.2. At an item in a sub-list: move to parent item.
1771 (goto-line 4)
1772 (org-up-element)
1773 (should (looking-at "- item1"))
1774 ;; 4.3. At an item in top list: move to beginning of whole list.
1775 (goto-line 10)
1776 (org-up-element)
1777 (should (looking-at "- item1"))
1778 ;; 4.4. Special case. At very top point: should move to parent of
1779 ;; list.
1780 (goto-line 2)
1781 (org-up-element)
1782 (should (looking-at "\\* Top"))))
1784 (ert-deftest test-org/down-element ()
1785 "Test `org-down-element' specifications."
1786 ;; Error when the element hasn't got a recursive type.
1787 (org-test-with-temp-text "Paragraph."
1788 (should-error (org-down-element)))
1789 ;; Error when the element has no contents
1790 (org-test-with-temp-text "* Headline"
1791 (should-error (org-down-element)))
1792 ;; When at a plain-list, move to first item.
1793 (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
1794 (goto-line 2)
1795 (org-down-element)
1796 (should (looking-at " - Item 1.1")))
1797 (org-test-with-temp-text "#+NAME: list\n- Item 1"
1798 (org-down-element)
1799 (should (looking-at " Item 1")))
1800 ;; When at a table, move to first row
1801 (org-test-with-temp-text "#+NAME: table\n| a | b |"
1802 (org-down-element)
1803 (should (looking-at " a | b |")))
1804 ;; Otherwise, move inside the greater element.
1805 (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
1806 (org-down-element)
1807 (should (looking-at "Paragraph"))))
1809 (ert-deftest test-org/drag-element-backward ()
1810 "Test `org-drag-element-backward' specifications."
1811 ;; Standard test.
1812 (should
1813 (equal
1814 "#+key2: val2\n#+key1: val1\n#+key3: val3"
1815 (org-test-with-temp-text "#+key1: val1\n<point>#+key2: val2\n#+key3: val3"
1816 (org-drag-element-backward)
1817 (buffer-string))))
1818 (should
1819 (equal
1820 "#+BEGIN_CENTER\n#+B: 2\n#+A: 1\n#+END_CENTER"
1821 (org-test-with-temp-text
1822 "#+BEGIN_CENTER\n#+A: 1\n<point>#+B: 2\n#+END_CENTER"
1823 (org-drag-element-backward)
1824 (buffer-string))))
1825 ;; Preserve blank lines.
1826 (should
1827 (equal "Paragraph 2\n\n\nPara1\n\nPara3"
1828 (org-test-with-temp-text "Para1\n\n\n<point>Paragraph 2\n\nPara3"
1829 (org-drag-element-backward)
1830 (buffer-string))))
1831 ;; Preserve column.
1832 (should
1833 (org-test-with-temp-text "#+key1: v\n#+key<point>2: v\n#+key3: v"
1834 (org-drag-element-backward)
1835 (org-looking-at-p "2")))
1836 ;; Error when trying to move first element of buffer.
1837 (should-error
1838 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
1839 (org-drag-element-backward)))
1840 ;; Error when trying to swap nested elements.
1841 (should-error
1842 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
1843 (forward-line)
1844 (org-drag-element-backward)))
1845 ;; Error when trying to swap an headline element and a non-headline
1846 ;; element.
1847 (should-error
1848 (org-test-with-temp-text "Test.\n* Head 1"
1849 (forward-line)
1850 (org-drag-element-backward)))
1851 ;; Preserve visibility of elements and their contents.
1852 (should
1853 (equal '((63 . 82) (26 . 48))
1854 (org-test-with-temp-text "
1855 #+BEGIN_CENTER
1856 Text.
1857 #+END_CENTER
1858 - item 1
1859 #+BEGIN_QUOTE
1860 Text.
1861 #+END_QUOTE"
1862 (while (search-forward "BEGIN_" nil t) (org-cycle))
1863 (search-backward "- item 1")
1864 (org-drag-element-backward)
1865 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
1866 (overlays-in (point-min) (point-max)))))))
1868 (ert-deftest test-org/drag-element-forward ()
1869 "Test `org-drag-element-forward' specifications."
1870 ;; 1. Error when trying to move first element of buffer.
1871 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
1872 (goto-line 3)
1873 (should-error (org-drag-element-forward)))
1874 ;; 2. Error when trying to swap nested elements.
1875 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
1876 (forward-line)
1877 (should-error (org-drag-element-forward)))
1878 ;; 3. Error when trying to swap a non-headline element and an
1879 ;; headline.
1880 (org-test-with-temp-text "Test.\n* Head 1"
1881 (should-error (org-drag-element-forward)))
1882 ;; 4. Otherwise, swap elements, preserving column and blank lines
1883 ;; between elements.
1884 (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
1885 (search-forward "graph")
1886 (org-drag-element-forward)
1887 (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
1888 (should (looking-at " 1")))
1889 ;; 5. Preserve visibility of elements and their contents.
1890 (org-test-with-temp-text "
1891 #+BEGIN_CENTER
1892 Text.
1893 #+END_CENTER
1894 - item 1
1895 #+BEGIN_QUOTE
1896 Text.
1897 #+END_QUOTE"
1898 (while (search-forward "BEGIN_" nil t) (org-cycle))
1899 (search-backward "#+BEGIN_CENTER")
1900 (org-drag-element-forward)
1901 (should
1902 (equal
1903 '((63 . 82) (26 . 48))
1904 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
1905 (overlays-in (point-min) (point-max)))))))
1909 ;;; Planning
1911 (ert-deftest test-org/timestamp-has-time-p ()
1912 "Test `org-timestamp-has-time-p' specifications."
1913 ;; With time.
1914 (should
1915 (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
1916 (org-timestamp-has-time-p (org-element-context))))
1917 ;; Without time.
1918 (should-not
1919 (org-test-with-temp-text "<2012-03-29 Thu>"
1920 (org-timestamp-has-time-p (org-element-context)))))
1922 (ert-deftest test-org/timestamp-format ()
1923 "Test `org-timestamp-format' specifications."
1924 ;; Regular test.
1925 (should
1926 (equal
1927 "2012-03-29 16:40"
1928 (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
1929 (org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
1930 ;; Range end.
1931 (should
1932 (equal
1933 "2012-03-29"
1934 (org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
1935 (org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
1937 (ert-deftest test-org/timestamp-split-range ()
1938 "Test `org-timestamp-split-range' specifications."
1939 ;; Extract range start (active).
1940 (should
1941 (equal '(2012 3 29)
1942 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1943 (let ((ts (org-timestamp-split-range (org-element-context))))
1944 (mapcar (lambda (p) (org-element-property p ts))
1945 '(:year-end :month-end :day-end))))))
1946 ;; Extract range start (inactive)
1947 (should
1948 (equal '(2012 3 29)
1949 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1950 (let ((ts (org-timestamp-split-range (org-element-context))))
1951 (mapcar (lambda (p) (org-element-property p ts))
1952 '(:year-end :month-end :day-end))))))
1953 ;; Extract range end (active).
1954 (should
1955 (equal '(2012 3 30)
1956 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1957 (let ((ts (org-timestamp-split-range
1958 (org-element-context) t)))
1959 (mapcar (lambda (p) (org-element-property p ts))
1960 '(:year-end :month-end :day-end))))))
1961 ;; Extract range end (inactive)
1962 (should
1963 (equal '(2012 3 30)
1964 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1965 (let ((ts (org-timestamp-split-range
1966 (org-element-context) t)))
1967 (mapcar (lambda (p) (org-element-property p ts))
1968 '(:year-end :month-end :day-end))))))
1969 ;; Return the timestamp if not a range.
1970 (should
1971 (org-test-with-temp-text "[2012-03-29 Thu]"
1972 (let* ((ts-orig (org-element-context))
1973 (ts-copy (org-timestamp-split-range ts-orig)))
1974 (eq ts-orig ts-copy))))
1975 (should
1976 (org-test-with-temp-text "<%%(org-float t 4 2)>"
1977 (let* ((ts-orig (org-element-context))
1978 (ts-copy (org-timestamp-split-range ts-orig)))
1979 (eq ts-orig ts-copy))))
1980 ;; Check that parent is the same when a range was split.
1981 (should
1982 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1983 (let* ((ts-orig (org-element-context))
1984 (ts-copy (org-timestamp-split-range ts-orig)))
1985 (eq (org-element-property :parent ts-orig)
1986 (org-element-property :parent ts-copy))))))
1988 (ert-deftest test-org/timestamp-translate ()
1989 "Test `org-timestamp-translate' specifications."
1990 ;; Translate whole date range.
1991 (should
1992 (equal "<29>--<30>"
1993 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1994 (let ((org-display-custom-times t)
1995 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1996 (org-timestamp-translate (org-element-context))))))
1997 ;; Translate date range start.
1998 (should
1999 (equal "<29>"
2000 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
2001 (let ((org-display-custom-times t)
2002 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
2003 (org-timestamp-translate (org-element-context) 'start)))))
2004 ;; Translate date range end.
2005 (should
2006 (equal "<30>"
2007 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
2008 (let ((org-display-custom-times t)
2009 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
2010 (org-timestamp-translate (org-element-context) 'end)))))
2011 ;; Translate time range.
2012 (should
2013 (equal "<08>--<16>"
2014 (org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
2015 (let ((org-display-custom-times t)
2016 (org-time-stamp-custom-formats '("<%d>" . "<%H>")))
2017 (org-timestamp-translate (org-element-context))))))
2018 ;; Translate non-range timestamp.
2019 (should
2020 (equal "<29>"
2021 (org-test-with-temp-text "<2012-03-29 Thu>"
2022 (let ((org-display-custom-times t)
2023 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
2024 (org-timestamp-translate (org-element-context))))))
2025 ;; Do not change `diary' timestamps.
2026 (should
2027 (equal "<%%(org-float t 4 2)>"
2028 (org-test-with-temp-text "<%%(org-float t 4 2)>"
2029 (let ((org-display-custom-times t)
2030 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
2031 (org-timestamp-translate (org-element-context)))))))
2035 ;;; Property API
2037 (ert-deftest test-org/buffer-property-keys ()
2038 "Test `org-buffer-property-keys' specifications."
2039 ;; Retrieve properties accross siblings.
2040 (should
2041 (equal '("A" "B")
2042 (org-test-with-temp-text "
2043 * H1
2044 :PROPERTIES:
2045 :A: 1
2046 :END:
2047 * H2
2048 :PROPERTIES:
2049 :B: 1
2050 :END:"
2051 (org-buffer-property-keys))))
2052 ;; Retrieve properties accross children.
2053 (should
2054 (equal '("A" "B")
2055 (org-test-with-temp-text "
2056 * H1
2057 :PROPERTIES:
2058 :A: 1
2059 :END:
2060 ** H2
2061 :PROPERTIES:
2062 :B: 1
2063 :END:"
2064 (org-buffer-property-keys))))
2065 ;; Retrieve muliple properties in the same drawer.
2066 (should
2067 (equal '("A" "B")
2068 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
2069 (org-buffer-property-keys))))
2070 ;; Ignore extension symbol in property name.
2071 (should
2072 (equal '("A")
2073 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:END:"
2074 (org-buffer-property-keys))))
2075 ;; With non-nil COLUMNS, extract property names from columns.
2076 (should
2077 (equal '("A" "B")
2078 (org-test-with-temp-text "#+COLUMNS: %25ITEM %A %20B"
2079 (org-buffer-property-keys nil nil t))))
2080 (should
2081 (equal '("A" "B" "COLUMNS")
2082 (org-test-with-temp-text
2083 "* H\n:PROPERTIES:\n:COLUMNS: %25ITEM %A %20B\n:END:"
2084 (org-buffer-property-keys nil nil t)))))
2086 (ert-deftest test-org/property-values ()
2087 "Test `org-property-values' specifications."
2088 ;; Regular test.
2089 (should
2090 (equal '("2" "1")
2091 (org-test-with-temp-text
2092 "* H\n:PROPERTIES:\n:A: 1\n:END:\n* H\n:PROPERTIES:\n:A: 2\n:END:"
2093 (org-property-values "A"))))
2094 ;; Ignore empty values.
2095 (should-not
2096 (org-test-with-temp-text
2097 "* H1\n:PROPERTIES:\n:A:\n:END:\n* H2\n:PROPERTIES:\n:A: \n:END:"
2098 (org-property-values "A")))
2099 ;; Take into consideration extended values.
2100 (should
2101 (equal '("1 2")
2102 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:END:"
2103 (org-property-values "A")))))
2105 (ert-deftest test-org/entry-delete ()
2106 "Test `org-entry-delete' specifications."
2107 ;; Regular test.
2108 (should
2109 (string-match
2110 " *:PROPERTIES:\n *:B: +2\n *:END:"
2111 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
2112 (org-entry-delete (point) "A")
2113 (buffer-string))))
2114 ;; When last property is removed, remove the property drawer.
2115 (should-not
2116 (string-match
2117 ":PROPERTIES:"
2118 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\nParagraph"
2119 (org-entry-delete (point) "A")
2120 (buffer-string)))))
2122 (ert-deftest test-org/entry-get ()
2123 "Test `org-entry-get' specifications."
2124 ;; Regular test.
2125 (should
2126 (equal "1"
2127 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
2128 (org-entry-get (point) "A"))))
2129 ;; Ignore case.
2130 (should
2131 (equal "1"
2132 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
2133 (org-entry-get (point) "a"))))
2134 ;; Handle extended values, both before and after base value.
2135 (should
2136 (equal "1 2 3"
2137 (org-test-with-temp-text
2138 "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:A+: 3\n:END:"
2139 (org-entry-get (point) "A"))))
2140 ;; Empty values are returned as the empty string.
2141 (should
2142 (equal ""
2143 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A:\n:END:"
2144 (org-entry-get (point) "A"))))
2145 ;; Special nil value. If LITERAL-NIL is non-nil, return "nil",
2146 ;; otherwise, return nil.
2147 (should-not
2148 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: nil\n:END:"
2149 (org-entry-get (point) "A")))
2150 (should
2151 (equal "nil"
2152 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: nil\n:END:"
2153 (org-entry-get (point) "A" nil t))))
2154 ;; Return nil when no property is found, independently on the
2155 ;; LITERAL-NIL argument.
2156 (should-not
2157 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
2158 (org-entry-get (point) "B")))
2159 (should-not
2160 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
2161 (org-entry-get (point) "B" nil t)))
2162 ;; Handle inheritance, when allowed.
2163 (should
2164 (equal
2166 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
2167 (org-entry-get (point) "A" t))))
2168 (should
2169 (equal
2171 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
2172 (let ((org-use-property-inheritance t))
2173 (org-entry-get (point) "A" 'selective)))))
2174 (should-not
2175 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
2176 (let ((org-use-property-inheritance nil))
2177 (org-entry-get (point) "A" 'selective)))))
2179 (ert-deftest test-org/entry-properties ()
2180 "Test `org-entry-properties' specifications."
2181 ;; Get "TODO" property.
2182 (should
2183 (equal "TODO"
2184 (org-test-with-temp-text "* TODO H"
2185 (cdr (assoc "TODO" (org-entry-properties nil "TODO"))))))
2186 (should-not
2187 (org-test-with-temp-text "* H"
2188 (assoc "TODO" (org-entry-properties nil "TODO"))))
2189 ;; Get "PRIORITY" property.
2190 (should
2191 (equal "A"
2192 (org-test-with-temp-text "* [#A] H"
2193 (cdr (assoc "PRIORITY" (org-entry-properties nil "PRIORITY"))))))
2194 (should-not
2195 (org-test-with-temp-text "* H"
2196 (assoc "PRIORITY" (org-entry-properties nil "PRIORITY"))))
2197 ;; Get "FILE" property.
2198 (should
2199 (org-test-with-temp-text-in-file "* H\nParagraph"
2200 (org-file-equal-p (cdr (assoc "FILE" (org-entry-properties nil "FILE")))
2201 (buffer-file-name))))
2202 (should-not
2203 (org-test-with-temp-text "* H\nParagraph"
2204 (cdr (assoc "FILE" (org-entry-properties nil "FILE")))))
2205 ;; Get "TAGS" property.
2206 (should
2207 (equal ":tag1:tag2:"
2208 (org-test-with-temp-text "* H :tag1:tag2:"
2209 (cdr (assoc "TAGS" (org-entry-properties nil "TAGS"))))))
2210 (should-not
2211 (org-test-with-temp-text "* H"
2212 (cdr (assoc "TAGS" (org-entry-properties nil "TAGS")))))
2213 ;; Get "ALLTAGS" property.
2214 (should
2215 (equal ":tag1:tag2:"
2216 (org-test-with-temp-text "* H :tag1:\n<point>** H2 :tag2:"
2217 (cdr (assoc "ALLTAGS" (org-entry-properties nil "ALLTAGS"))))))
2218 (should-not
2219 (org-test-with-temp-text "* H"
2220 (cdr (assoc "ALLTAGS" (org-entry-properties nil "ALLTAGS")))))
2221 ;; Get "BLOCKED" property.
2222 (should
2223 (equal "t"
2224 (org-test-with-temp-text "* Blocked\n** DONE one\n** TODO two"
2225 (let ((org-enforce-todo-dependencies t)
2226 (org-blocker-hook
2227 '(org-block-todo-from-children-or-siblings-or-parent)))
2228 (cdr (assoc "BLOCKED" (org-entry-properties nil "BLOCKED")))))))
2229 (should
2230 (equal ""
2231 (org-test-with-temp-text "* Blocked\n** DONE one\n** DONE two"
2232 (let ((org-enforce-todo-dependencies t))
2233 (cdr (assoc "BLOCKED" (org-entry-properties nil "BLOCKED")))))))
2234 ;; Get "CLOSED", "DEADLINE" and "SCHEDULED" properties.
2235 (should
2236 (equal
2237 "[2012-03-29 thu.]"
2238 (org-test-with-temp-text "* H\nCLOSED: [2012-03-29 thu.]"
2239 (cdr (assoc "CLOSED" (org-entry-properties nil "CLOSED"))))))
2240 (should-not
2241 (org-test-with-temp-text "* H"
2242 (cdr (assoc "CLOSED" (org-entry-properties nil "CLOSED")))))
2243 (should
2244 (equal
2245 "<2014-03-04 tue.>"
2246 (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
2247 (cdr (assoc "DEADLINE" (org-entry-properties nil "DEADLINE"))))))
2248 (should-not
2249 (org-test-with-temp-text "* H"
2250 (cdr (assoc "DEADLINE" (org-entry-properties nil "DEADLINE")))))
2251 (should
2252 (equal
2253 "<2014-03-04 tue.>"
2254 (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
2255 (cdr (assoc "SCHEDULED" (org-entry-properties nil "SCHEDULED"))))))
2256 (should-not
2257 (org-test-with-temp-text "* H"
2258 (cdr (assoc "SCHEDULED" (org-entry-properties nil "SCHEDULED")))))
2259 ;; Get "CATEGORY"
2260 (should
2261 (equal "cat"
2262 (org-test-with-temp-text "#+CATEGORY: cat\n<point>* H"
2263 (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
2264 (should
2265 (equal "cat"
2266 (org-test-with-temp-text "* H\n:PROPERTIES:\n:CATEGORY: cat\n:END:"
2267 (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
2268 ;; Get standard properties.
2269 (should
2270 (equal "1"
2271 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
2272 (cdr (assoc "A" (org-entry-properties nil 'standard))))))
2273 ;; Handle extended properties.
2274 (should
2275 (equal "1 2 3"
2276 (org-test-with-temp-text
2277 "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:A+: 3\n:END:"
2278 (cdr (assoc "A" (org-entry-properties nil 'standard))))))
2279 (should
2280 (equal "1 2 3"
2281 (org-test-with-temp-text
2282 "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:a+: 3\n:END:"
2283 (cdr (assoc "A" (org-entry-properties nil 'standard))))))
2284 ;; Ignore forbidden (special) properties.
2285 (should-not
2286 (org-test-with-temp-text "* H\n:PROPERTIES:\n:TODO: foo\n:END:"
2287 (cdr (assoc "TODO" (org-entry-properties nil 'standard))))))
2289 (ert-deftest test-org/entry-put ()
2290 "Test `org-entry-put' specifications."
2291 ;; Error when not a string or nil.
2292 (should-error
2293 (org-test-with-temp-text "* H\n:PROPERTIES:\n:test: 1\n:END:"
2294 (org-entry-put 1 "test" 2)))
2295 ;; Set "TODO" property.
2296 (should
2297 (string-match (regexp-quote " TODO H")
2298 (org-test-with-temp-text "#+TODO: TODO | DONE\n<point>* H"
2299 (org-entry-put (point) "TODO" "TODO")
2300 (buffer-string))))
2301 (should
2302 (string-match (regexp-quote "* H")
2303 (org-test-with-temp-text "#+TODO: TODO | DONE\n<point>* H"
2304 (org-entry-put (point) "TODO" nil)
2305 (buffer-string))))
2306 ;; Set "PRIORITY" property.
2307 (should
2308 (equal "* [#A] H"
2309 (org-test-with-temp-text "* [#B] H"
2310 (org-entry-put (point) "PRIORITY" "A")
2311 (buffer-string))))
2312 (should
2313 (equal "* H"
2314 (org-test-with-temp-text "* [#B] H"
2315 (org-entry-put (point) "PRIORITY" nil)
2316 (buffer-string))))
2317 ;; Set "SCHEDULED" property.
2318 (should
2319 (string-match "* H\n *SCHEDULED: <2014-03-04 .*?>"
2320 (org-test-with-temp-text "* H"
2321 (org-entry-put (point) "SCHEDULED" "2014-03-04")
2322 (buffer-string))))
2323 (should
2324 (string= "* H\n"
2325 (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
2326 (org-entry-put (point) "SCHEDULED" nil)
2327 (buffer-string))))
2328 (should
2329 (string-match "* H\n *SCHEDULED: <2014-03-03 .*?>"
2330 (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
2331 (org-entry-put (point) "SCHEDULED" "earlier")
2332 (buffer-string))))
2333 (should
2334 (string-match "^ *SCHEDULED: <2014-03-05 .*?>"
2335 (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
2336 (org-entry-put (point) "SCHEDULED" "later")
2337 (buffer-string))))
2338 ;; Set "DEADLINE" property.
2339 (should
2340 (string-match "^ *DEADLINE: <2014-03-04 .*?>"
2341 (org-test-with-temp-text "* H"
2342 (org-entry-put (point) "DEADLINE" "2014-03-04")
2343 (buffer-string))))
2344 (should
2345 (string= "* H\n"
2346 (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
2347 (org-entry-put (point) "DEADLINE" nil)
2348 (buffer-string))))
2349 (should
2350 (string-match "^ *DEADLINE: <2014-03-03 .*?>"
2351 (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
2352 (org-entry-put (point) "DEADLINE" "earlier")
2353 (buffer-string))))
2354 (should
2355 (string-match "^ *DEADLINE: <2014-03-05 .*?>"
2356 (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
2357 (org-entry-put (point) "DEADLINE" "later")
2358 (buffer-string))))
2359 ;; Regular properties, with or without pre-existing drawer.
2360 (should
2361 (string-match "^ *:A: +2$"
2362 (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
2363 (org-entry-put (point) "A" "2")
2364 (buffer-string))))
2365 (should
2366 (string-match "^ *:A: +1$"
2367 (org-test-with-temp-text "* H"
2368 (org-entry-put (point) "A" "1")
2369 (buffer-string))))
2370 ;; Special case: two consecutive headlines.
2371 (should
2372 (string-match "\\* A\n *:PROPERTIES:"
2373 (org-test-with-temp-text "* A\n** B"
2374 (org-entry-put (point) "A" "1")
2375 (buffer-string)))))
2378 ;;; Radio Targets
2380 (ert-deftest test-org/update-radio-target-regexp ()
2381 "Test `org-update-radio-target-regexp' specifications."
2382 ;; Properly update cache with no previous radio target regexp.
2383 (should
2384 (eq 'link
2385 (org-test-with-temp-text "radio\n\nParagraph\n\nradio"
2386 (save-excursion (goto-char (point-max)) (org-element-context))
2387 (insert "<<<")
2388 (search-forward "o")
2389 (insert ">>>")
2390 (org-update-radio-target-regexp)
2391 (goto-char (point-max))
2392 (org-element-type (org-element-context)))))
2393 ;; Properly update cache with previous radio target regexp.
2394 (should
2395 (eq 'link
2396 (org-test-with-temp-text "radio\n\nParagraph\n\nradio"
2397 (save-excursion (goto-char (point-max)) (org-element-context))
2398 (insert "<<<")
2399 (search-forward "o")
2400 (insert ">>>")
2401 (org-update-radio-target-regexp)
2402 (search-backward "r")
2403 (delete-char 5)
2404 (insert "new")
2405 (org-update-radio-target-regexp)
2406 (goto-char (point-max))
2407 (delete-region (line-beginning-position) (point))
2408 (insert "new")
2409 (org-element-type (org-element-context))))))
2413 ;;; Visibility
2415 (ert-deftest test-org/flag-drawer ()
2416 "Test `org-flag-drawer' specifications."
2417 ;; Hide drawer.
2418 (should
2419 (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
2420 (org-flag-drawer t)
2421 (get-char-property (line-end-position) 'invisible)))
2422 ;; Show drawer.
2423 (should-not
2424 (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
2425 (org-flag-drawer t)
2426 (org-flag-drawer nil)
2427 (get-char-property (line-end-position) 'invisible)))
2428 ;; Test optional argument.
2429 (should
2430 (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
2431 (let ((drawer (save-excursion (search-forward ":D2")
2432 (org-element-at-point))))
2433 (org-flag-drawer t drawer)
2434 (get-char-property (progn (search-forward ":D2") (line-end-position))
2435 'invisible))))
2436 (should-not
2437 (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
2438 (let ((drawer (save-excursion (search-forward ":D2")
2439 (org-element-at-point))))
2440 (org-flag-drawer t drawer)
2441 (get-char-property (line-end-position) 'invisible))))
2442 ;; Do not hide fake drawers.
2443 (should-not
2444 (org-test-with-temp-text "#+begin_example\n:D:\nc\n:END:\n#+end_example"
2445 (forward-line 1)
2446 (org-flag-drawer t)
2447 (get-char-property (line-end-position) 'invisible)))
2448 ;; Do not hide incomplete drawers.
2449 (should-not
2450 (org-test-with-temp-text ":D:\nparagraph"
2451 (forward-line 1)
2452 (org-flag-drawer t)
2453 (get-char-property (line-end-position) 'invisible)))
2454 ;; Do not hide drawers when called from final blank lines.
2455 (should-not
2456 (org-test-with-temp-text ":DRAWER:\nA\n:END:\n\n"
2457 (goto-char (point-max))
2458 (org-flag-drawer t)
2459 (goto-char (point-min))
2460 (get-char-property (line-end-position) 'invisible)))
2461 ;; Don't leave point in an invisible part of the buffer when hiding
2462 ;; a drawer away.
2463 (should-not
2464 (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
2465 (goto-char (point-max))
2466 (org-flag-drawer t)
2467 (get-char-property (point) 'invisible))))
2469 (ert-deftest test-org/hide-block-toggle ()
2470 "Test `org-hide-block-toggle' specifications."
2471 ;; Error when not at a block.
2472 (should-error
2473 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents"
2474 (org-hide-block-toggle 'off)
2475 (get-char-property (line-end-position) 'invisible)))
2476 ;; Hide block.
2477 (should
2478 (org-test-with-temp-text "#+BEGIN_CENTER\ncontents\n#+END_CENTER"
2479 (org-hide-block-toggle)
2480 (get-char-property (line-end-position) 'invisible)))
2481 (should
2482 (org-test-with-temp-text "#+BEGIN_EXAMPLE\ncontents\n#+END_EXAMPLE"
2483 (org-hide-block-toggle)
2484 (get-char-property (line-end-position) 'invisible)))
2485 ;; Show block unconditionally when optional argument is `off'.
2486 (should-not
2487 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
2488 (org-hide-block-toggle)
2489 (org-hide-block-toggle 'off)
2490 (get-char-property (line-end-position) 'invisible)))
2491 (should-not
2492 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
2493 (org-hide-block-toggle 'off)
2494 (get-char-property (line-end-position) 'invisible)))
2495 ;; Hide block unconditionally when optional argument is non-nil.
2496 (should
2497 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
2498 (org-hide-block-toggle t)
2499 (get-char-property (line-end-position) 'invisible)))
2500 (should
2501 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
2502 (org-hide-block-toggle)
2503 (org-hide-block-toggle t)
2504 (get-char-property (line-end-position) 'invisible)))
2505 ;; Do not hide block when called from final blank lines.
2506 (should-not
2507 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE\n\n<point>"
2508 (org-hide-block-toggle)
2509 (goto-char (point-min))
2510 (get-char-property (line-end-position) 'invisible)))
2511 ;; Don't leave point in an invisible part of the buffer when hiding
2512 ;; a block away.
2513 (should-not
2514 (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n<point>#+END_QUOTE"
2515 (org-hide-block-toggle)
2516 (get-char-property (point) 'invisible))))
2518 (ert-deftest test-org/hide-block-toggle-maybe ()
2519 "Test `org-hide-block-toggle-maybe' specifications."
2520 (should
2521 (org-test-with-temp-text "#+BEGIN: dynamic\nContents\n#+END:"
2522 (org-hide-block-toggle-maybe)))
2523 (should-not
2524 (org-test-with-temp-text "Paragraph" (org-hide-block-toggle-maybe))))
2527 (provide 'test-org)
2529 ;;; test-org.el ends here