d60397188b8601f1b070dd73d1b1f7acc3d69527
[org-mode.git] / testing / lisp / test-org.el
blobd60397188b8601f1b070dd73d1b1f7acc3d69527
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/comment-dwim ()
31 "Test `comment-dwim' behaviour in an Org buffer."
32 ;; No region selected, no comment on current line and line not
33 ;; empty: insert comment on line above.
34 (should
35 (equal "# \nComment"
36 (org-test-with-temp-text "Comment"
37 (progn (call-interactively 'comment-dwim)
38 (buffer-string)))))
39 ;; No region selected, no comment on current line and line empty:
40 ;; insert comment on this line.
41 (should
42 (equal "# \nParagraph"
43 (org-test-with-temp-text "\nParagraph"
44 (progn (call-interactively 'comment-dwim)
45 (buffer-string)))))
46 ;; No region selected, and a comment on this line: indent it.
47 (should
48 (equal "* Headline\n # Comment"
49 (org-test-with-temp-text "* Headline\n# Comment"
50 (progn (forward-line)
51 (let ((org-adapt-indentation t))
52 (call-interactively 'comment-dwim))
53 (buffer-string)))))
54 ;; Also recognize single # at column 0 as comments.
55 (should
56 (equal "# Comment"
57 (org-test-with-temp-text "# Comment"
58 (progn (forward-line)
59 (call-interactively 'comment-dwim)
60 (buffer-string)))))
61 ;; Region selected and only comments and blank lines within it:
62 ;; un-comment all commented lines.
63 (should
64 (equal "Comment 1\n\nComment 2"
65 (org-test-with-temp-text "# Comment 1\n\n# Comment 2"
66 (progn
67 (transient-mark-mode 1)
68 (push-mark (point) t t)
69 (goto-char (point-max))
70 (call-interactively 'comment-dwim)
71 (buffer-string)))))
72 ;; Region selected without comments: comment all lines if
73 ;; `comment-empty-lines' is non-nil, only non-blank lines otherwise.
74 (should
75 (equal "# Comment 1\n\n# Comment 2"
76 (org-test-with-temp-text "Comment 1\n\nComment 2"
77 (progn
78 (transient-mark-mode 1)
79 (push-mark (point) t t)
80 (goto-char (point-max))
81 (let ((comment-empty-lines nil))
82 (call-interactively 'comment-dwim))
83 (buffer-string)))))
84 (should
85 (equal "# Comment 1\n# \n# Comment 2"
86 (org-test-with-temp-text "Comment 1\n\nComment 2"
87 (progn
88 (transient-mark-mode 1)
89 (push-mark (point) t t)
90 (goto-char (point-max))
91 (let ((comment-empty-lines t))
92 (call-interactively 'comment-dwim))
93 (buffer-string)))))
94 ;; In front of a keyword without region, insert a new comment.
95 (should
96 (equal "# \n#+KEYWORD: value"
97 (org-test-with-temp-text "#+KEYWORD: value"
98 (progn (call-interactively 'comment-dwim)
99 (buffer-string))))))
103 ;;; Date and time analysis
105 (ert-deftest test-org/org-read-date ()
106 "Test `org-read-date' specifications."
107 ;; Parse ISO date with abbreviated year and month.
108 (should (equal "2012-03-29 16:40"
109 (let ((org-time-was-given t))
110 (org-read-date t nil "12-3-29 16:40"))))
111 ;; Parse Europeans dates.
112 (should (equal "2012-03-29 16:40"
113 (let ((org-time-was-given t))
114 (org-read-date t nil "29.03.2012 16:40"))))
115 ;; Parse Europeans dates without year.
116 (should (string-match "2[0-9]\\{3\\}-03-29 16:40"
117 (let ((org-time-was-given t))
118 (org-read-date t nil "29.03. 16:40")))))
120 (ert-deftest test-org/org-parse-time-string ()
121 "Test `org-parse-time-string'."
122 (should (equal (org-parse-time-string "2012-03-29 16:40")
123 '(0 40 16 29 3 2012 nil nil nil)))
124 (should (equal (org-parse-time-string "[2012-03-29 16:40]")
125 '(0 40 16 29 3 2012 nil nil nil)))
126 (should (equal (org-parse-time-string "<2012-03-29 16:40>")
127 '(0 40 16 29 3 2012 nil nil nil)))
128 (should (equal (org-parse-time-string "<2012-03-29>")
129 '(0 0 0 29 3 2012 nil nil nil)))
130 (should (equal (org-parse-time-string "<2012-03-29>" t)
131 '(0 nil nil 29 3 2012 nil nil nil))))
134 ;;; Filling
136 (ert-deftest test-org/fill-paragraph ()
137 "Test `org-fill-paragraph' specifications."
138 ;; At an Org table, align it.
139 (should
140 (equal "| a |\n"
141 (org-test-with-temp-text "|a|"
142 (org-fill-paragraph)
143 (buffer-string))))
144 (should
145 (equal "#+name: table\n| a |\n"
146 (org-test-with-temp-text "#+name: table\n| a |"
147 (org-fill-paragraph)
148 (buffer-string))))
149 ;; At a paragraph, preserve line breaks.
150 (org-test-with-temp-text "some \\\\\nlong\ntext"
151 (let ((fill-column 20))
152 (org-fill-paragraph)
153 (should (equal (buffer-string) "some \\\\\nlong text"))))
154 ;; Correctly fill a paragraph when point is at its very end.
155 (should
156 (equal "A B"
157 (org-test-with-temp-text "A\nB"
158 (let ((fill-column 20))
159 (goto-char (point-max))
160 (org-fill-paragraph)
161 (buffer-string)))))
162 ;; Correctly fill the last paragraph of a greater element.
163 (should
164 (equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
165 (org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
166 (let ((fill-column 8))
167 (forward-line)
168 (end-of-line)
169 (org-fill-paragraph)
170 (buffer-string)))))
171 ;; Correctly fill an element in a narrowed buffer.
172 (should
173 (equal "01234\n6"
174 (org-test-with-temp-text "01234 6789"
175 (let ((fill-column 5))
176 (narrow-to-region 1 8)
177 (org-fill-paragraph)
178 (buffer-string)))))
179 ;; Handle `adaptive-fill-regexp' in paragraphs.
180 (should
181 (equal "> a b"
182 (org-test-with-temp-text "> a\n> b"
183 (let ((fill-column 5)
184 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
185 (org-fill-paragraph)
186 (buffer-string)))))
187 ;; Special case: Fill first paragraph when point is at an item or
188 ;; a plain-list or a footnote reference.
189 (should
190 (equal "- A B"
191 (org-test-with-temp-text "- A\n B"
192 (let ((fill-column 20))
193 (org-fill-paragraph)
194 (buffer-string)))))
195 (should
196 (equal "[fn:1] A B"
197 (org-test-with-temp-text "[fn:1] A\nB"
198 (let ((fill-column 20))
199 (org-fill-paragraph)
200 (buffer-string)))))
201 (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
202 (let ((fill-column 20))
203 (org-fill-paragraph)
204 (should (equal (buffer-string)
205 "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
206 ;; Fill contents of `comment-block' elements.
207 (should
208 (equal
209 (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
210 (let ((fill-column 20))
211 (forward-line)
212 (org-fill-paragraph)
213 (buffer-string)))
214 "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
215 ;; Fill `comment' elements.
216 (should
217 (equal " # A B"
218 (org-test-with-temp-text " # A\n # B"
219 (let ((fill-column 20))
220 (org-fill-paragraph)
221 (buffer-string)))))
222 ;; Do not mix consecutive comments when filling one of them.
223 (should
224 (equal "# A B\n\n# C"
225 (org-test-with-temp-text "# A\n# B\n\n# C"
226 (let ((fill-column 20))
227 (org-fill-paragraph)
228 (buffer-string)))))
229 ;; Use commented empty lines as separators when filling comments.
230 (should
231 (equal "# A B\n#\n# C"
232 (org-test-with-temp-text "# A\n# B\n#\n# C"
233 (let ((fill-column 20))
234 (org-fill-paragraph)
235 (buffer-string)))))
236 ;; Handle `adaptive-fill-regexp' in comments.
237 (should
238 (equal "# > a b"
239 (org-test-with-temp-text "# > a\n# > b"
240 (let ((fill-column 20)
241 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
242 (org-fill-paragraph)
243 (buffer-string)))))
244 ;; Do nothing at affiliated keywords.
245 (org-test-with-temp-text "#+NAME: para\nSome\ntext."
246 (let ((fill-column 20))
247 (org-fill-paragraph)
248 (should (equal (buffer-string) "#+NAME: para\nSome\ntext."))))
249 ;; Do not move point after table when filling a table.
250 (should-not
251 (org-test-with-temp-text "| a | b |\n| c | d |\n"
252 (forward-char)
253 (org-fill-paragraph)
254 (eobp))))
256 (ert-deftest test-org/auto-fill-function ()
257 "Test auto-filling features."
258 ;; Auto fill paragraph.
259 (should
260 (equal "12345\n7890"
261 (org-test-with-temp-text "12345 7890"
262 (let ((fill-column 5))
263 (end-of-line)
264 (org-auto-fill-function)
265 (buffer-string)))))
266 ;; Auto fill first paragraph in an item.
267 (should
268 (equal "- 12345\n 7890"
269 (org-test-with-temp-text "- 12345 7890"
270 (let ((fill-column 7))
271 (end-of-line)
272 (org-auto-fill-function)
273 (buffer-string)))))
274 ;; Auto fill paragraph when `adaptive-fill-regexp' matches.
275 (should
276 (equal "> 12345\n 7890"
277 (org-test-with-temp-text "> 12345 7890"
278 (let ((fill-column 10)
279 (adaptive-fill-regexp "[ \t]*>+[ \t]*")
280 (adaptive-fill-first-line-regexp "\\`[ ]*\\'"))
281 (end-of-line)
282 (org-auto-fill-function)
283 (buffer-string)))))
284 (should
285 (equal "> 12345\n> 12345\n> 7890"
286 (org-test-with-temp-text "> 12345\n> 12345 7890"
287 (let ((fill-column 10)
288 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
289 (goto-char (point-max))
290 (org-auto-fill-function)
291 (buffer-string)))))
292 (should-not
293 (equal " 12345\n *12345\n *12345"
294 (org-test-with-temp-text " 12345\n *12345 12345"
295 (let ((fill-column 10)
296 (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
297 (goto-char (point-max))
298 (org-auto-fill-function)
299 (buffer-string)))))
300 ;; Auto fill comments.
301 (should
302 (equal " # 12345\n # 7890"
303 (org-test-with-temp-text " # 12345 7890"
304 (let ((fill-column 10))
305 (end-of-line)
306 (org-auto-fill-function)
307 (buffer-string)))))
308 ;; A hash within a line isn't a comment.
309 (should-not
310 (equal "12345 # 7890\n# 1"
311 (org-test-with-temp-text "12345 # 7890 1"
312 (let ((fill-column 12))
313 (end-of-line)
314 (org-auto-fill-function)
315 (buffer-string)))))
316 ;; Correctly interpret empty prefix.
317 (should-not
318 (equal "# a\n# b\nRegular\n# paragraph"
319 (org-test-with-temp-text "# a\n# b\nRegular paragraph"
320 (let ((fill-column 12))
321 (end-of-line 3)
322 (org-auto-fill-function)
323 (buffer-string)))))
324 ;; Comment block: auto fill contents.
325 (should
326 (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
327 (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
328 (let ((fill-column 5))
329 (forward-line)
330 (end-of-line)
331 (org-auto-fill-function)
332 (buffer-string)))))
333 (should
334 (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
335 (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
336 (let ((fill-column 5))
337 (forward-line)
338 (end-of-line)
339 (org-auto-fill-function)
340 (buffer-string)))))
341 ;; Do not fill if a new item could be created.
342 (should-not
343 (equal "12345\n- 90"
344 (org-test-with-temp-text "12345 - 90"
345 (let ((fill-column 5))
346 (end-of-line)
347 (org-auto-fill-function)
348 (buffer-string)))))
349 ;; Do not fill if a line break could be introduced.
350 (should-not
351 (equal "123\\\\\n7890"
352 (org-test-with-temp-text "123\\\\ 7890"
353 (let ((fill-column 6))
354 (end-of-line)
355 (org-auto-fill-function)
356 (buffer-string)))))
357 ;; Do not fill affiliated keywords.
358 (should-not
359 (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
360 (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
361 (let ((fill-column 20))
362 (end-of-line)
363 (org-auto-fill-function)
364 (buffer-string))))))
368 ;;; Editing
370 ;;;; Insert elements
372 (ert-deftest test-org/meta-return ()
373 "Test M-RET (`org-meta-return')."
374 ;; In a table field insert a row above.
375 (should
376 (org-test-with-temp-text "| a |"
377 (forward-char)
378 (org-meta-return)
379 (forward-line -1)
380 (looking-at "| |$")))
381 ;; In a paragraph change current line into a header.
382 (should
383 (org-test-with-temp-text "a"
384 (org-meta-return)
385 (beginning-of-line)
386 (looking-at "\* a$")))
387 ;; In an item insert an item, in this case above.
388 (should
389 (org-test-with-temp-text "- a"
390 (org-meta-return)
391 (beginning-of-line)
392 (looking-at "- $")))
393 ;; In a drawer and paragraph insert an empty line, in this case above.
394 (should
395 (org-test-with-temp-text ":MYDRAWER:\na\n:END:"
396 (forward-line)
397 (org-meta-return)
398 (forward-line -1)
399 (looking-at "$")))
400 ;; In a drawer and item insert an item, in this case above.
401 (should
402 (org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
403 (forward-line)
404 (org-meta-return)
405 (beginning-of-line)
406 (looking-at "- $"))))
408 (ert-deftest test-org/insert-todo-heading-respect-content ()
409 "Test `org-insert-todo-heading-respect-content' specifications."
410 ;; Create a TODO heading.
411 (should
412 (org-test-with-temp-text "* H1\n Body"
413 (org-insert-todo-heading-respect-content)
414 (nth 2 (org-heading-components))))
415 ;; Add headline after body of current subtree.
416 (should
417 (org-test-with-temp-text "* H1\nBody"
418 (org-insert-todo-heading-respect-content)
419 (eobp)))
420 (should
421 (org-test-with-temp-text "* H1\n** H2\nBody"
422 (org-insert-todo-heading-respect-content)
423 (eobp)))
424 ;; In a list, do not create a new item.
425 (should
426 (org-test-with-temp-text "* H\n- an item\n- another one"
427 (search-forward "an ")
428 (org-insert-todo-heading-respect-content)
429 (and (eobp) (org-at-heading-p)))))
433 ;;; Links
435 ;;;; Fuzzy Links
437 ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
438 ;; a named element (#+name: text) and to headlines (* Text).
440 (ert-deftest test-org/fuzzy-links ()
441 "Test fuzzy links specifications."
442 ;; 1. Fuzzy link goes in priority to a matching target.
443 (should
444 (org-test-with-temp-text "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
445 (goto-line 5)
446 (org-open-at-point)
447 (looking-at "<<Test>>")))
448 ;; 2. Then fuzzy link points to an element with a given name.
449 (should
450 (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
451 (goto-line 5)
452 (org-open-at-point)
453 (looking-at "#\\+NAME: Test")))
454 ;; 3. A target still lead to a matching headline otherwise.
455 (should
456 (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
457 (goto-line 4)
458 (org-open-at-point)
459 (looking-at "\\* Head2")))
460 ;; 4. With a leading star in link, enforce heading match.
461 (should
462 (org-test-with-temp-text "* Test\n<<Test>>\n[[*Test]]"
463 (goto-line 3)
464 (org-open-at-point)
465 (looking-at "\\* Test"))))
468 ;;;; Link Escaping
470 (ert-deftest test-org/org-link-escape-ascii-character ()
471 "Escape an ascii character."
472 (should
473 (string=
474 "%5B"
475 (org-link-escape "["))))
477 (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
478 "Escape an ascii control character."
479 (should
480 (string=
481 "%09"
482 (org-link-escape "\t"))))
484 (ert-deftest test-org/org-link-escape-multibyte-character ()
485 "Escape an unicode multibyte character."
486 (should
487 (string=
488 "%E2%82%AC"
489 (org-link-escape "€"))))
491 (ert-deftest test-org/org-link-escape-custom-table ()
492 "Escape string with custom character table."
493 (should
494 (string=
495 "Foo%3A%42ar%0A"
496 (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
498 (ert-deftest test-org/org-link-escape-custom-table-merge ()
499 "Escape string with custom table merged with default table."
500 (should
501 (string=
502 "%5BF%6F%6F%3A%42ar%0A%5D"
503 (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
505 (ert-deftest test-org/org-link-unescape-ascii-character ()
506 "Unescape an ascii character."
507 (should
508 (string=
510 (org-link-unescape "%5B"))))
512 (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
513 "Unescpae an ascii control character."
514 (should
515 (string=
516 "\n"
517 (org-link-unescape "%0A"))))
519 (ert-deftest test-org/org-link-unescape-multibyte-character ()
520 "Unescape unicode multibyte character."
521 (should
522 (string=
523 "€"
524 (org-link-unescape "%E2%82%AC"))))
526 (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
527 "Unescape old style percent escaped character."
528 (should
529 (string=
530 "àâçèéêîôùû"
531 (decode-coding-string
532 (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
534 (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
535 "Escape and unescape a URL that includes an escaped char.
536 http://article.gmane.org/gmane.emacs.orgmode/21459/"
537 (should
538 (string=
539 "http://some.host.com/form?&id=blah%2Bblah25"
540 (org-link-unescape
541 (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
543 (ert-deftest test-org/org-link-escape-chars-browser ()
544 "Escape a URL to pass to `browse-url'."
545 (should
546 (string=
547 (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
548 "%22Release%208.2%22&idxname=emacs-orgmode")
549 (org-link-escape-browser
550 (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
551 "\"Release 8.2\"&idxname=emacs-orgmode")))))
555 ;;; Node Properties
557 (ert-deftest test-org/accumulated-properties-in-drawers ()
558 "Ensure properties accumulate in subtree drawers."
559 (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
560 (org-babel-next-src-block)
561 (should (equal '(2 1) (org-babel-execute-src-block)))))
565 ;;; Mark Region
567 (ert-deftest test-org/mark-subtree ()
568 "Test `org-mark-subtree' specifications."
569 ;; Error when point is before first headline.
570 (should-error
571 (org-test-with-temp-text "Paragraph\n* Headline\nBody"
572 (progn (transient-mark-mode 1)
573 (org-mark-subtree))))
574 ;; Without argument, mark current subtree.
575 (should
576 (equal
577 '(12 32)
578 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
579 (progn (transient-mark-mode 1)
580 (forward-line 2)
581 (org-mark-subtree)
582 (list (region-beginning) (region-end))))))
583 ;; With an argument, move ARG up.
584 (should
585 (equal
586 '(1 32)
587 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
588 (progn (transient-mark-mode 1)
589 (forward-line 2)
590 (org-mark-subtree 1)
591 (list (region-beginning) (region-end))))))
592 ;; Do not get fooled by inlinetasks.
593 (when (featurep 'org-inlinetask)
594 (should
595 (= 1
596 (org-test-with-temp-text "* Headline\n*************** Task\nContents"
597 (progn (transient-mark-mode 1)
598 (forward-line 1)
599 (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
600 (region-beginning)))))))
604 ;;; Navigation
606 (ert-deftest test-org/beginning-of-line ()
607 "Test `org-beginning-of-line' specifications."
608 ;; Standard test.
609 (should
610 (org-test-with-temp-text "Some text\nSome other text"
611 (progn (org-beginning-of-line) (bolp))))
612 ;; Standard test with `visual-line-mode'.
613 (should-not
614 (org-test-with-temp-text "A long line of text\nSome other text"
615 (progn (visual-line-mode)
616 (forward-char 2)
617 (dotimes (i 1000) (insert "very "))
618 (org-beginning-of-line)
619 (bolp))))
620 ;; At an headline with special movement.
621 (should
622 (org-test-with-temp-text "* TODO Headline"
623 (let ((org-special-ctrl-a/e t))
624 (org-end-of-line)
625 (and (progn (org-beginning-of-line) (looking-at "Headline"))
626 (progn (org-beginning-of-line) (bolp))
627 (progn (org-beginning-of-line) (looking-at "Headline")))))))
629 (ert-deftest test-org/end-of-line ()
630 "Test `org-end-of-line' specifications."
631 ;; Standard test.
632 (should
633 (org-test-with-temp-text "Some text\nSome other text"
634 (progn (org-end-of-line) (eolp))))
635 ;; Standard test with `visual-line-mode'.
636 (should-not
637 (org-test-with-temp-text "A long line of text\nSome other text"
638 (progn (visual-line-mode)
639 (forward-char 2)
640 (dotimes (i 1000) (insert "very "))
641 (goto-char (point-min))
642 (org-end-of-line)
643 (eolp))))
644 ;; At an headline with special movement.
645 (should
646 (org-test-with-temp-text "* Headline1 :tag:\n"
647 (let ((org-special-ctrl-a/e t))
648 (and (progn (org-end-of-line) (looking-at " :tag:"))
649 (progn (org-end-of-line) (eolp))
650 (progn (org-end-of-line) (looking-at " :tag:"))))))
651 ;; At an headline without special movement.
652 (should
653 (org-test-with-temp-text "* Headline2 :tag:\n"
654 (let ((org-special-ctrl-a/e nil))
655 (and (progn (org-end-of-line) (eolp))
656 (progn (org-end-of-line) (eolp))))))
657 ;; At an headline, with reversed movement.
658 (should
659 (org-test-with-temp-text "* Headline3 :tag:\n"
660 (let ((org-special-ctrl-a/e 'reversed)
661 (this-command last-command))
662 (and (progn (org-end-of-line) (eolp))
663 (progn (org-end-of-line) (looking-at " :tag:"))))))
664 ;; At a block without hidden contents.
665 (should
666 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
667 (progn (org-end-of-line) (eolp))))
668 ;; At a block with hidden contents.
669 (should-not
670 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
671 (let ((org-special-ctrl-a/e t))
672 (org-hide-block-toggle)
673 (org-end-of-line)
674 (eobp)))))
676 (ert-deftest test-org/forward-paragraph ()
677 "Test `org-forward-paragraph' specifications."
678 ;; At end of buffer, return an error.
679 (should-error
680 (org-test-with-temp-text "Paragraph"
681 (goto-char (point-max))
682 (org-forward-paragraph)))
683 ;; Standard test.
684 (should
685 (org-test-with-temp-text "P1\n\nP2\n\nP3"
686 (org-forward-paragraph)
687 (looking-at "P2")))
688 ;; Ignore depth.
689 (should
690 (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
691 (org-forward-paragraph)
692 (looking-at "P1")))
693 ;; Do not enter elements with invisible contents.
694 (should
695 (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
696 (org-hide-block-toggle)
697 (org-forward-paragraph)
698 (looking-at "P3")))
699 ;; On an affiliated keyword, jump to the beginning of the element.
700 (should
701 (org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
702 (org-forward-paragraph)
703 (looking-at "Para")))
704 ;; On an item or a footnote definition, move to the second element
705 ;; inside, if any.
706 (should
707 (org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
708 (org-forward-paragraph)
709 (looking-at " Paragraph")))
710 (should
711 (org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
712 (org-forward-paragraph)
713 (looking-at "Paragraph")))
714 ;; On an item, or a footnote definition, when the first line is
715 ;; empty, move to the first item.
716 (should
717 (org-test-with-temp-text "- \n\n Paragraph\n- Item2"
718 (org-forward-paragraph)
719 (looking-at " Paragraph")))
720 (should
721 (org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
722 (org-forward-paragraph)
723 (looking-at "Paragraph")))
724 ;; On a table (resp. a property drawer) do not move through table
725 ;; rows (resp. node properties).
726 (should
727 (org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
728 (org-forward-paragraph)
729 (looking-at "Paragraph")))
730 (should
731 (org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nParagraph"
732 (org-forward-paragraph)
733 (looking-at "Paragraph")))
734 ;; On a verse or source block, stop after blank lines.
735 (should
736 (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
737 (org-forward-paragraph)
738 (looking-at "L2")))
739 (should
740 (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
741 (org-forward-paragraph)
742 (looking-at "L2"))))
744 (ert-deftest test-org/backward-paragraph ()
745 "Test `org-backward-paragraph' specifications."
746 ;; Error at beginning of buffer.
747 (should-error
748 (org-test-with-temp-text "Paragraph"
749 (org-backward-paragraph)))
750 ;; Regular test.
751 (should
752 (org-test-with-temp-text "P1\n\nP2\n\nP3"
753 (goto-char (point-max))
754 (org-backward-paragraph)
755 (looking-at "P3")))
756 (should
757 (org-test-with-temp-text "P1\n\nP2\n\nP3"
758 (goto-char (point-max))
759 (beginning-of-line)
760 (org-backward-paragraph)
761 (looking-at "P2")))
762 ;; Ignore depth.
763 (should
764 (org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
765 (goto-char (point-max))
766 (beginning-of-line)
767 (org-backward-paragraph)
768 (looking-at "P2")))
769 ;; Ignore invisible elements.
770 (should
771 (org-test-with-temp-text "* H1\n P1\n* H2"
772 (org-cycle)
773 (goto-char (point-max))
774 (beginning-of-line)
775 (org-backward-paragraph)
776 (bobp)))
777 ;; On an affiliated keyword, jump to the first one.
778 (should
779 (org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
780 (search-forward "c2")
781 (org-backward-paragraph)
782 (looking-at "#\\+name")))
783 ;; On the second element in an item or a footnote definition, jump
784 ;; to item or the definition.
785 (should
786 (org-test-with-temp-text "- line1\n\n line2"
787 (goto-char (point-max))
788 (beginning-of-line)
789 (org-backward-paragraph)
790 (looking-at "- line1")))
791 (should
792 (org-test-with-temp-text "[fn:1] line1\n\n line2"
793 (goto-char (point-max))
794 (beginning-of-line)
795 (org-backward-paragraph)
796 (looking-at "\\[fn:1\\] line1")))
797 ;; On a table (resp. a property drawer), ignore table rows
798 ;; (resp. node properties).
799 (should
800 (org-test-with-temp-text "| a | b |\n| c | d |\nP1"
801 (goto-char (point-max))
802 (beginning-of-line)
803 (org-backward-paragraph)
804 (bobp)))
805 (should
806 (org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nP1"
807 (goto-char (point-max))
808 (beginning-of-line)
809 (org-backward-paragraph)
810 (bobp)))
811 ;; On a source or verse block, stop before blank lines.
812 (should
813 (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
814 (search-forward "L3")
815 (beginning-of-line)
816 (org-backward-paragraph)
817 (looking-at "L2")))
818 (should
819 (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
820 (search-forward "L3")
821 (beginning-of-line)
822 (org-backward-paragraph)
823 (looking-at "L2"))))
825 (ert-deftest test-org/forward-element ()
826 "Test `org-forward-element' specifications."
827 ;; 1. At EOB: should error.
828 (org-test-with-temp-text "Some text\n"
829 (goto-char (point-max))
830 (should-error (org-forward-element)))
831 ;; 2. Standard move: expected to ignore blank lines.
832 (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
833 (org-forward-element)
834 (should (looking-at (regexp-quote "Second paragraph."))))
835 ;; 3. Headline tests.
836 (org-test-with-temp-text "
837 * Head 1
838 ** Head 1.1
839 *** Head 1.1.1
840 ** Head 1.2"
841 ;; 3.1. At an headline beginning: move to next headline at the
842 ;; same level.
843 (goto-line 3)
844 (org-forward-element)
845 (should (looking-at (regexp-quote "** Head 1.2")))
846 ;; 3.2. At an headline beginning: move to parent headline if no
847 ;; headline at the same level.
848 (goto-line 3)
849 (org-forward-element)
850 (should (looking-at (regexp-quote "** Head 1.2"))))
851 ;; 4. Greater element tests.
852 (org-test-with-temp-text
853 "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
854 ;; 4.1. At a greater element: expected to skip contents.
855 (org-forward-element)
856 (should (looking-at (regexp-quote "Outside.")))
857 ;; 4.2. At the end of greater element contents: expected to skip
858 ;; to the end of the greater element.
859 (goto-line 2)
860 (org-forward-element)
861 (should (looking-at (regexp-quote "Outside."))))
862 ;; 5. List tests.
863 (org-test-with-temp-text "
864 - item1
866 - sub1
868 - sub2
870 - sub3
872 Inner paragraph.
874 - item2
876 Outside."
877 ;; 5.1. At list top point: expected to move to the element after
878 ;; the list.
879 (goto-line 2)
880 (org-forward-element)
881 (should (looking-at (regexp-quote "Outside.")))
882 ;; 5.2. Special case: at the first line of a sub-list, but not at
883 ;; beginning of line, move to next item.
884 (goto-line 2)
885 (forward-char)
886 (org-forward-element)
887 (should (looking-at "- item2"))
888 (goto-line 4)
889 (forward-char)
890 (org-forward-element)
891 (should (looking-at " - sub2"))
892 ;; 5.3 At sub-list beginning: expected to move after the sub-list.
893 (goto-line 4)
894 (org-forward-element)
895 (should (looking-at (regexp-quote " Inner paragraph.")))
896 ;; 5.4. At sub-list end: expected to move outside the sub-list.
897 (goto-line 8)
898 (org-forward-element)
899 (should (looking-at (regexp-quote " Inner paragraph.")))
900 ;; 5.5. At an item: expected to move to next item, if any.
901 (goto-line 6)
902 (org-forward-element)
903 (should (looking-at " - sub3"))))
905 (ert-deftest test-org/backward-element ()
906 "Test `org-backward-element' specifications."
907 ;; 1. Should error at BOB.
908 (org-test-with-temp-text " \nParagraph."
909 (should-error (org-backward-element)))
910 ;; 2. Should move at BOB when called on the first element in buffer.
911 (should
912 (org-test-with-temp-text "\n#+TITLE: test"
913 (progn (forward-line)
914 (org-backward-element)
915 (bobp))))
916 ;; 3. Not at the beginning of an element: move at its beginning.
917 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
918 (goto-line 3)
919 (end-of-line)
920 (org-backward-element)
921 (should (looking-at (regexp-quote "Paragraph2."))))
922 ;; 4. Headline tests.
923 (org-test-with-temp-text "
924 * Head 1
925 ** Head 1.1
926 *** Head 1.1.1
927 ** Head 1.2"
928 ;; 4.1. At an headline beginning: move to previous headline at the
929 ;; same level.
930 (goto-line 5)
931 (org-backward-element)
932 (should (looking-at (regexp-quote "** Head 1.1")))
933 ;; 4.2. At an headline beginning: move to parent headline if no
934 ;; headline at the same level.
935 (goto-line 3)
936 (org-backward-element)
937 (should (looking-at (regexp-quote "* Head 1")))
938 ;; 4.3. At the first top-level headline: should error.
939 (goto-line 2)
940 (should-error (org-backward-element)))
941 ;; 5. At beginning of first element inside a greater element:
942 ;; expected to move to greater element's beginning.
943 (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
944 (goto-line 3)
945 (org-backward-element)
946 (should (looking-at "#\\+BEGIN_CENTER")))
947 ;; 6. At the beginning of the first element in a section: should
948 ;; move back to headline, if any.
949 (should
950 (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
951 (progn (goto-char (point-max))
952 (beginning-of-line)
953 (org-backward-element)
954 (org-at-heading-p))))
955 ;; 7. List tests.
956 (org-test-with-temp-text "
957 - item1
959 - sub1
961 - sub2
963 - sub3
965 Inner paragraph.
967 - item2
970 Outside."
971 ;; 7.1. At beginning of sub-list: expected to move to the
972 ;; paragraph before it.
973 (goto-line 4)
974 (org-backward-element)
975 (should (looking-at "item1"))
976 ;; 7.2. At an item in a list: expected to move at previous item.
977 (goto-line 8)
978 (org-backward-element)
979 (should (looking-at " - sub2"))
980 (goto-line 12)
981 (org-backward-element)
982 (should (looking-at "- item1"))
983 ;; 7.3. At end of list/sub-list: expected to move to list/sub-list
984 ;; beginning.
985 (goto-line 10)
986 (org-backward-element)
987 (should (looking-at " - sub1"))
988 (goto-line 15)
989 (org-backward-element)
990 (should (looking-at "- item1"))
991 ;; 7.4. At blank-lines before list end: expected to move to top
992 ;; item.
993 (goto-line 14)
994 (org-backward-element)
995 (should (looking-at "- item1"))))
997 (ert-deftest test-org/up-element ()
998 "Test `org-up-element' specifications."
999 ;; 1. At BOB or with no surrounding element: should error.
1000 (org-test-with-temp-text "Paragraph."
1001 (should-error (org-up-element)))
1002 (org-test-with-temp-text "* Head1\n* Head2"
1003 (goto-line 2)
1004 (should-error (org-up-element)))
1005 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
1006 (goto-line 3)
1007 (should-error (org-up-element)))
1008 ;; 2. At an headline: move to parent headline.
1009 (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
1010 (goto-line 3)
1011 (org-up-element)
1012 (should (looking-at "\\* Head1")))
1013 ;; 3. Inside a greater element: move to greater element beginning.
1014 (org-test-with-temp-text
1015 "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
1016 (goto-line 3)
1017 (org-up-element)
1018 (should (looking-at "#\\+BEGIN_CENTER")))
1019 ;; 4. List tests.
1020 (org-test-with-temp-text "* Top
1021 - item1
1023 - sub1
1025 - sub2
1027 Paragraph within sub2.
1029 - item2"
1030 ;; 4.1. Within an item: move to the item beginning.
1031 (goto-line 8)
1032 (org-up-element)
1033 (should (looking-at " - sub2"))
1034 ;; 4.2. At an item in a sub-list: move to parent item.
1035 (goto-line 4)
1036 (org-up-element)
1037 (should (looking-at "- item1"))
1038 ;; 4.3. At an item in top list: move to beginning of whole list.
1039 (goto-line 10)
1040 (org-up-element)
1041 (should (looking-at "- item1"))
1042 ;; 4.4. Special case. At very top point: should move to parent of
1043 ;; list.
1044 (goto-line 2)
1045 (org-up-element)
1046 (should (looking-at "\\* Top"))))
1048 (ert-deftest test-org/down-element ()
1049 "Test `org-down-element' specifications."
1050 ;; Error when the element hasn't got a recursive type.
1051 (org-test-with-temp-text "Paragraph."
1052 (should-error (org-down-element)))
1053 ;; Error when the element has no contents
1054 (org-test-with-temp-text "* Headline"
1055 (should-error (org-down-element)))
1056 ;; When at a plain-list, move to first item.
1057 (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
1058 (goto-line 2)
1059 (org-down-element)
1060 (should (looking-at " - Item 1.1")))
1061 (org-test-with-temp-text "#+NAME: list\n- Item 1"
1062 (org-down-element)
1063 (should (looking-at " Item 1")))
1064 ;; When at a table, move to first row
1065 (org-test-with-temp-text "#+NAME: table\n| a | b |"
1066 (org-down-element)
1067 (should (looking-at " a | b |")))
1068 ;; Otherwise, move inside the greater element.
1069 (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
1070 (org-down-element)
1071 (should (looking-at "Paragraph"))))
1073 (ert-deftest test-org/drag-element-backward ()
1074 "Test `org-drag-element-backward' specifications."
1075 ;; 1. Error when trying to move first element of buffer.
1076 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
1077 (should-error (org-drag-element-backward)))
1078 ;; 2. Error when trying to swap nested elements.
1079 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
1080 (forward-line)
1081 (should-error (org-drag-element-backward)))
1082 ;; 3. Error when trying to swap an headline element and
1083 ;; a non-headline element.
1084 (org-test-with-temp-text "Test.\n* Head 1"
1085 (forward-line)
1086 (should-error (org-drag-element-backward)))
1087 ;; 4. Otherwise, swap elements, preserving column and blank lines
1088 ;; between elements.
1089 (org-test-with-temp-text "Para1\n\n\nParagraph 2\n\nPara3"
1090 (search-forward "graph")
1091 (org-drag-element-backward)
1092 (should (equal (buffer-string) "Paragraph 2\n\n\nPara1\n\nPara3"))
1093 (should (looking-at " 2")))
1094 ;; 5. Preserve visibility of elements and their contents.
1095 (org-test-with-temp-text "
1096 #+BEGIN_CENTER
1097 Text.
1098 #+END_CENTER
1099 - item 1
1100 #+BEGIN_QUOTE
1101 Text.
1102 #+END_QUOTE"
1103 (while (search-forward "BEGIN_" nil t) (org-cycle))
1104 (search-backward "- item 1")
1105 (org-drag-element-backward)
1106 (should
1107 (equal
1108 '((63 . 82) (26 . 48))
1109 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
1110 (overlays-in (point-min) (point-max)))))))
1112 (ert-deftest test-org/drag-element-forward ()
1113 "Test `org-drag-element-forward' specifications."
1114 ;; 1. Error when trying to move first element of buffer.
1115 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
1116 (goto-line 3)
1117 (should-error (org-drag-element-forward)))
1118 ;; 2. Error when trying to swap nested elements.
1119 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
1120 (forward-line)
1121 (should-error (org-drag-element-forward)))
1122 ;; 3. Error when trying to swap a non-headline element and an
1123 ;; headline.
1124 (org-test-with-temp-text "Test.\n* Head 1"
1125 (should-error (org-drag-element-forward)))
1126 ;; 4. Otherwise, swap elements, preserving column and blank lines
1127 ;; between elements.
1128 (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
1129 (search-forward "graph")
1130 (org-drag-element-forward)
1131 (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
1132 (should (looking-at " 1")))
1133 ;; 5. Preserve visibility of elements and their contents.
1134 (org-test-with-temp-text "
1135 #+BEGIN_CENTER
1136 Text.
1137 #+END_CENTER
1138 - item 1
1139 #+BEGIN_QUOTE
1140 Text.
1141 #+END_QUOTE"
1142 (while (search-forward "BEGIN_" nil t) (org-cycle))
1143 (search-backward "#+BEGIN_CENTER")
1144 (org-drag-element-forward)
1145 (should
1146 (equal
1147 '((63 . 82) (26 . 48))
1148 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
1149 (overlays-in (point-min) (point-max)))))))
1153 ;;; Planning
1155 (ert-deftest test-org/timestamp-has-time-p ()
1156 "Test `org-timestamp-has-time-p' specifications."
1157 ;; With time.
1158 (should
1159 (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
1160 (org-timestamp-has-time-p (org-element-context))))
1161 ;; Without time.
1162 (should-not
1163 (org-test-with-temp-text "<2012-03-29 Thu>"
1164 (org-timestamp-has-time-p (org-element-context)))))
1166 (ert-deftest test-org/timestamp-format ()
1167 "Test `org-timestamp-format' specifications."
1168 ;; Regular test.
1169 (should
1170 (equal
1171 "2012-03-29 16:40"
1172 (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
1173 (org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
1174 ;; Range end.
1175 (should
1176 (equal
1177 "2012-03-29"
1178 (org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
1179 (org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
1181 (ert-deftest test-org/timestamp-split-range ()
1182 "Test `org-timestamp-split-range' specifications."
1183 ;; Extract range start (active).
1184 (should
1185 (equal '(2012 3 29)
1186 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1187 (let ((ts (org-timestamp-split-range (org-element-context))))
1188 (mapcar (lambda (p) (org-element-property p ts))
1189 '(:year-end :month-end :day-end))))))
1190 ;; Extract range start (inactive)
1191 (should
1192 (equal '(2012 3 29)
1193 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1194 (let ((ts (org-timestamp-split-range (org-element-context))))
1195 (mapcar (lambda (p) (org-element-property p ts))
1196 '(:year-end :month-end :day-end))))))
1197 ;; Extract range end (active).
1198 (should
1199 (equal '(2012 3 30)
1200 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1201 (let ((ts (org-timestamp-split-range
1202 (org-element-context) t)))
1203 (mapcar (lambda (p) (org-element-property p ts))
1204 '(:year-end :month-end :day-end))))))
1205 ;; Extract range end (inactive)
1206 (should
1207 (equal '(2012 3 30)
1208 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1209 (let ((ts (org-timestamp-split-range
1210 (org-element-context) t)))
1211 (mapcar (lambda (p) (org-element-property p ts))
1212 '(:year-end :month-end :day-end))))))
1213 ;; Return the timestamp if not a range.
1214 (should
1215 (org-test-with-temp-text "[2012-03-29 Thu]"
1216 (let* ((ts-orig (org-element-context))
1217 (ts-copy (org-timestamp-split-range ts-orig)))
1218 (eq ts-orig ts-copy))))
1219 (should
1220 (org-test-with-temp-text "<%%(org-float t 4 2)>"
1221 (let* ((ts-orig (org-element-context))
1222 (ts-copy (org-timestamp-split-range ts-orig)))
1223 (eq ts-orig ts-copy))))
1224 ;; Check that parent is the same when a range was split.
1225 (should
1226 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1227 (let* ((ts-orig (org-element-context))
1228 (ts-copy (org-timestamp-split-range ts-orig)))
1229 (eq (org-element-property :parent ts-orig)
1230 (org-element-property :parent ts-copy))))))
1232 (ert-deftest test-org/timestamp-translate ()
1233 "Test `org-timestamp-translate' specifications."
1234 ;; Translate whole date range.
1235 (should
1236 (equal "<29>--<30>"
1237 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1238 (let ((org-display-custom-times t)
1239 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1240 (org-timestamp-translate (org-element-context))))))
1241 ;; Translate date range start.
1242 (should
1243 (equal "<29>"
1244 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1245 (let ((org-display-custom-times t)
1246 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1247 (org-timestamp-translate (org-element-context) 'start)))))
1248 ;; Translate date range end.
1249 (should
1250 (equal "<30>"
1251 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1252 (let ((org-display-custom-times t)
1253 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1254 (org-timestamp-translate (org-element-context) 'end)))))
1255 ;; Translate time range.
1256 (should
1257 (equal "<08>--<16>"
1258 (org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
1259 (let ((org-display-custom-times t)
1260 (org-time-stamp-custom-formats '("<%d>" . "<%H>")))
1261 (org-timestamp-translate (org-element-context))))))
1262 ;; Translate non-range timestamp.
1263 (should
1264 (equal "<29>"
1265 (org-test-with-temp-text "<2012-03-29 Thu>"
1266 (let ((org-display-custom-times t)
1267 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1268 (org-timestamp-translate (org-element-context))))))
1269 ;; Do not change `diary' timestamps.
1270 (should
1271 (equal "<%%(org-float t 4 2)>"
1272 (org-test-with-temp-text "<%%(org-float t 4 2)>"
1273 (let ((org-display-custom-times t)
1274 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1275 (org-timestamp-translate (org-element-context)))))))
1279 ;;; Targets and Radio Targets
1281 (ert-deftest test-org/all-targets ()
1282 "Test `org-all-targets' specifications."
1283 ;; Without an argument.
1284 (should
1285 (equal '("radio-target" "target")
1286 (org-test-with-temp-text "<<target>> <<<radio-target>>>\n: <<verb>>"
1287 (org-all-targets))))
1288 (should
1289 (equal '("radio-target")
1290 (org-test-with-temp-text "<<<radio-target>>>!" (org-all-targets))))
1291 ;; With argument.
1292 (should
1293 (equal '("radio-target")
1294 (org-test-with-temp-text "<<target>> <<<radio-target>>>"
1295 (org-all-targets t)))))
1298 (provide 'test-org)
1300 ;;; test-org.el ends here