test-org.el: Fix test
[org-mode.git] / testing / lisp / test-org.el
blob6954a9391afd4a5bc2b749cecc0c524f881d4457
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 (let ((org-drawers '("MYDRAWER")))
396 (org-test-with-temp-text ":MYDRAWER:\na\n:END:"
397 (forward-line)
398 (org-meta-return)
399 (forward-line -1)
400 (looking-at "$"))))
401 ;; In a drawer and item insert an item, in this case above.
402 (should
403 (let ((org-drawers '("MYDRAWER")))
404 (org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
405 (forward-line)
406 (org-meta-return)
407 (beginning-of-line)
408 (looking-at "- $")))))
410 (ert-deftest test-org/insert-todo-heading-respect-content ()
411 "Test `org-insert-todo-heading-respect-content' specifications."
412 ;; Create a TODO heading.
413 (should
414 (org-test-with-temp-text "* H1\n Body"
415 (org-insert-todo-heading-respect-content)
416 (nth 2 (org-heading-components))))
417 ;; Add headline at the end of the first subtree
418 (should
419 (org-test-with-temp-text "* H1\nH1Body\n** H2\nH2Body"
420 (search-forward "H1Body")
421 (org-insert-todo-heading-respect-content)
422 (and (eobp) (org-at-heading-p))))
423 ;; In a list, do not create a new item.
424 (should
425 (org-test-with-temp-text "* H\n- an item\n- another one"
426 (search-forward "an ")
427 (org-insert-todo-heading-respect-content)
428 (and (eobp) (org-at-heading-p)))))
432 ;;; Links
434 ;;;; Fuzzy Links
436 ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
437 ;; a named element (#+name: text) and to headlines (* Text).
439 (ert-deftest test-org/fuzzy-links ()
440 "Test fuzzy links specifications."
441 ;; 1. Fuzzy link goes in priority to a matching target.
442 (should
443 (org-test-with-temp-text "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
444 (goto-line 5)
445 (org-open-at-point)
446 (looking-at "<<Test>>")))
447 ;; 2. Then fuzzy link points to an element with a given name.
448 (should
449 (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
450 (goto-line 5)
451 (org-open-at-point)
452 (looking-at "#\\+NAME: Test")))
453 ;; 3. A target still lead to a matching headline otherwise.
454 (should
455 (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
456 (goto-line 4)
457 (org-open-at-point)
458 (looking-at "\\* Head2")))
459 ;; 4. With a leading star in link, enforce heading match.
460 (should
461 (org-test-with-temp-text "* Test\n<<Test>>\n[[*Test]]"
462 (goto-line 3)
463 (org-open-at-point)
464 (looking-at "\\* Test"))))
467 ;;;; Link Escaping
469 (ert-deftest test-org/org-link-escape-ascii-character ()
470 "Escape an ascii character."
471 (should
472 (string=
473 "%5B"
474 (org-link-escape "["))))
476 (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
477 "Escape an ascii control character."
478 (should
479 (string=
480 "%09"
481 (org-link-escape "\t"))))
483 (ert-deftest test-org/org-link-escape-multibyte-character ()
484 "Escape an unicode multibyte character."
485 (should
486 (string=
487 "%E2%82%AC"
488 (org-link-escape "€"))))
490 (ert-deftest test-org/org-link-escape-custom-table ()
491 "Escape string with custom character table."
492 (should
493 (string=
494 "Foo%3A%42ar%0A"
495 (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
497 (ert-deftest test-org/org-link-escape-custom-table-merge ()
498 "Escape string with custom table merged with default table."
499 (should
500 (string=
501 "%5BF%6F%6F%3A%42ar%0A%5D"
502 (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
504 (ert-deftest test-org/org-link-unescape-ascii-character ()
505 "Unescape an ascii character."
506 (should
507 (string=
509 (org-link-unescape "%5B"))))
511 (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
512 "Unescpae an ascii control character."
513 (should
514 (string=
515 "\n"
516 (org-link-unescape "%0A"))))
518 (ert-deftest test-org/org-link-unescape-multibyte-character ()
519 "Unescape unicode multibyte character."
520 (should
521 (string=
522 "€"
523 (org-link-unescape "%E2%82%AC"))))
525 (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
526 "Unescape old style percent escaped character."
527 (should
528 (string=
529 "àâçèéêîôùû"
530 (decode-coding-string
531 (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
533 (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
534 "Escape and unescape a URL that includes an escaped char.
535 http://article.gmane.org/gmane.emacs.orgmode/21459/"
536 (should
537 (string=
538 "http://some.host.com/form?&id=blah%2Bblah25"
539 (org-link-unescape
540 (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
542 (ert-deftest test-org/org-link-escape-chars-browser ()
543 "Escape a URL to pass to `browse-url'."
544 (should
545 (string=
546 "http://some.host.com/search?q=%22Org%20mode%22"
547 (org-link-escape "http://some.host.com/search?q=\"Org mode\""
548 org-link-escape-chars-browser))))
552 ;;; Node Properties
554 (ert-deftest test-org/accumulated-properties-in-drawers ()
555 "Ensure properties accumulate in subtree drawers."
556 (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
557 (org-babel-next-src-block)
558 (should (equal '(2 1) (org-babel-execute-src-block)))))
562 ;;; Mark Region
564 (ert-deftest test-org/mark-subtree ()
565 "Test `org-mark-subtree' specifications."
566 ;; Error when point is before first headline.
567 (should-error
568 (org-test-with-temp-text "Paragraph\n* Headline\nBody"
569 (progn (transient-mark-mode 1)
570 (org-mark-subtree))))
571 ;; Without argument, mark current subtree.
572 (should
573 (equal
574 '(12 32)
575 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
576 (progn (transient-mark-mode 1)
577 (forward-line 2)
578 (org-mark-subtree)
579 (list (region-beginning) (region-end))))))
580 ;; With an argument, move ARG up.
581 (should
582 (equal
583 '(1 32)
584 (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
585 (progn (transient-mark-mode 1)
586 (forward-line 2)
587 (org-mark-subtree 1)
588 (list (region-beginning) (region-end))))))
589 ;; Do not get fooled by inlinetasks.
590 (when (featurep 'org-inlinetask)
591 (should
592 (= 1
593 (org-test-with-temp-text "* Headline\n*************** Task\nContents"
594 (progn (transient-mark-mode 1)
595 (forward-line 1)
596 (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
597 (region-beginning)))))))
601 ;;; Navigation
603 (ert-deftest test-org/beginning-of-line ()
604 "Test `org-beginning-of-line' specifications."
605 ;; Standard test.
606 (should
607 (org-test-with-temp-text "Some text\nSome other text"
608 (progn (org-beginning-of-line) (bolp))))
609 ;; Standard test with `visual-line-mode'.
610 (should-not
611 (org-test-with-temp-text "A long line of text\nSome other text"
612 (progn (visual-line-mode)
613 (forward-char 2)
614 (dotimes (i 1000) (insert "very "))
615 (org-beginning-of-line)
616 (bolp))))
617 ;; At an headline with special movement.
618 (should
619 (org-test-with-temp-text "* TODO Headline"
620 (let ((org-special-ctrl-a/e t))
621 (org-end-of-line)
622 (and (progn (org-beginning-of-line) (looking-at "Headline"))
623 (progn (org-beginning-of-line) (bolp))
624 (progn (org-beginning-of-line) (looking-at "Headline")))))))
626 (ert-deftest test-org/end-of-line ()
627 "Test `org-end-of-line' specifications."
628 ;; Standard test.
629 (should
630 (org-test-with-temp-text "Some text\nSome other text"
631 (progn (org-end-of-line) (eolp))))
632 ;; Standard test with `visual-line-mode'.
633 (should-not
634 (org-test-with-temp-text "A long line of text\nSome other text"
635 (progn (visual-line-mode)
636 (forward-char 2)
637 (dotimes (i 1000) (insert "very "))
638 (goto-char (point-min))
639 (org-end-of-line)
640 (eolp))))
641 ;; At an headline with special movement.
642 (should
643 (org-test-with-temp-text "* Headline1 :tag:\n"
644 (let ((org-special-ctrl-a/e t))
645 (and (progn (org-end-of-line) (looking-at " :tag:"))
646 (progn (org-end-of-line) (eolp))
647 (progn (org-end-of-line) (looking-at " :tag:"))))))
648 ;; At an headline without special movement.
649 (should
650 (org-test-with-temp-text "* Headline2 :tag:\n"
651 (let ((org-special-ctrl-a/e nil))
652 (and (progn (org-end-of-line) (eolp))
653 (progn (org-end-of-line) (eolp))))))
654 ;; At an headline, with reversed movement.
655 (should
656 (org-test-with-temp-text "* Headline3 :tag:\n"
657 (let ((org-special-ctrl-a/e 'reversed)
658 (this-command last-command))
659 (and (progn (org-end-of-line) (eolp))
660 (progn (org-end-of-line) (looking-at " :tag:"))))))
661 ;; At a block without hidden contents.
662 (should
663 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
664 (progn (org-end-of-line) (eolp))))
665 ;; At a block with hidden contents.
666 (should-not
667 (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
668 (let ((org-special-ctrl-a/e t))
669 (org-hide-block-toggle)
670 (org-end-of-line)
671 (eobp)))))
673 (ert-deftest test-org/forward-paragraph ()
674 "Test `org-forward-paragraph' specifications."
675 ;; At end of buffer, return an error.
676 (should-error
677 (org-test-with-temp-text "Paragraph"
678 (goto-char (point-max))
679 (org-forward-paragraph)))
680 ;; Standard test.
681 (should
682 (org-test-with-temp-text "P1\n\nP2\n\nP3"
683 (org-forward-paragraph)
684 (looking-at "P2")))
685 ;; Ignore depth.
686 (should
687 (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
688 (org-forward-paragraph)
689 (looking-at "P1")))
690 ;; Do not enter elements with invisible contents.
691 (should
692 (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
693 (org-hide-block-toggle)
694 (org-forward-paragraph)
695 (looking-at "P3")))
696 ;; On an affiliated keyword, jump to the beginning of the element.
697 (should
698 (org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
699 (org-forward-paragraph)
700 (looking-at "Para")))
701 ;; On an item or a footnote definition, move to the second element
702 ;; inside, if any.
703 (should
704 (org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
705 (org-forward-paragraph)
706 (looking-at " Paragraph")))
707 (should
708 (org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
709 (org-forward-paragraph)
710 (looking-at "Paragraph")))
711 ;; On an item, or a footnote definition, when the first line is
712 ;; empty, move to the first item.
713 (should
714 (org-test-with-temp-text "- \n\n Paragraph\n- Item2"
715 (org-forward-paragraph)
716 (looking-at " Paragraph")))
717 (should
718 (org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
719 (org-forward-paragraph)
720 (looking-at "Paragraph")))
721 ;; On a table (resp. a property drawer) do not move through table
722 ;; rows (resp. node properties).
723 (should
724 (org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
725 (org-forward-paragraph)
726 (looking-at "Paragraph")))
727 (should
728 (org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nParagraph"
729 (org-forward-paragraph)
730 (looking-at "Paragraph")))
731 ;; On a verse or source block, stop after blank lines.
732 (should
733 (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
734 (org-forward-paragraph)
735 (looking-at "L2")))
736 (should
737 (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
738 (org-forward-paragraph)
739 (looking-at "L2"))))
741 (ert-deftest test-org/backward-paragraph ()
742 "Test `org-backward-paragraph' specifications."
743 ;; Error at beginning of buffer.
744 (should-error
745 (org-test-with-temp-text "Paragraph"
746 (org-backward-paragraph)))
747 ;; Regular test.
748 (should
749 (org-test-with-temp-text "P1\n\nP2\n\nP3"
750 (goto-char (point-max))
751 (org-backward-paragraph)
752 (looking-at "P3")))
753 (should
754 (org-test-with-temp-text "P1\n\nP2\n\nP3"
755 (goto-char (point-max))
756 (beginning-of-line)
757 (org-backward-paragraph)
758 (looking-at "P2")))
759 ;; Ignore depth.
760 (should
761 (org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
762 (goto-char (point-max))
763 (beginning-of-line)
764 (org-backward-paragraph)
765 (looking-at "P2")))
766 ;; Ignore invisible elements.
767 (should
768 (org-test-with-temp-text "* H1\n P1\n* H2"
769 (org-cycle)
770 (goto-char (point-max))
771 (beginning-of-line)
772 (org-backward-paragraph)
773 (bobp)))
774 ;; On an affiliated keyword, jump to the first one.
775 (should
776 (org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
777 (search-forward "c2")
778 (org-backward-paragraph)
779 (looking-at "#\\+name")))
780 ;; On the second element in an item or a footnote definition, jump
781 ;; to item or the definition.
782 (should
783 (org-test-with-temp-text "- line1\n\n line2"
784 (goto-char (point-max))
785 (beginning-of-line)
786 (org-backward-paragraph)
787 (looking-at "- line1")))
788 (should
789 (org-test-with-temp-text "[fn:1] line1\n\n line2"
790 (goto-char (point-max))
791 (beginning-of-line)
792 (org-backward-paragraph)
793 (looking-at "\\[fn:1\\] line1")))
794 ;; On a table (resp. a property drawer), ignore table rows
795 ;; (resp. node properties).
796 (should
797 (org-test-with-temp-text "| a | b |\n| c | d |\nP1"
798 (goto-char (point-max))
799 (beginning-of-line)
800 (org-backward-paragraph)
801 (bobp)))
802 (should
803 (org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nP1"
804 (goto-char (point-max))
805 (beginning-of-line)
806 (org-backward-paragraph)
807 (bobp)))
808 ;; On a source or verse block, stop before blank lines.
809 (should
810 (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
811 (search-forward "L3")
812 (beginning-of-line)
813 (org-backward-paragraph)
814 (looking-at "L2")))
815 (should
816 (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
817 (search-forward "L3")
818 (beginning-of-line)
819 (org-backward-paragraph)
820 (looking-at "L2"))))
822 (ert-deftest test-org/forward-element ()
823 "Test `org-forward-element' specifications."
824 ;; 1. At EOB: should error.
825 (org-test-with-temp-text "Some text\n"
826 (goto-char (point-max))
827 (should-error (org-forward-element)))
828 ;; 2. Standard move: expected to ignore blank lines.
829 (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
830 (org-forward-element)
831 (should (looking-at (regexp-quote "Second paragraph."))))
832 ;; 3. Headline tests.
833 (org-test-with-temp-text "
834 * Head 1
835 ** Head 1.1
836 *** Head 1.1.1
837 ** Head 1.2"
838 ;; 3.1. At an headline beginning: move to next headline at the
839 ;; same level.
840 (goto-line 3)
841 (org-forward-element)
842 (should (looking-at (regexp-quote "** Head 1.2")))
843 ;; 3.2. At an headline beginning: move to parent headline if no
844 ;; headline at the same level.
845 (goto-line 3)
846 (org-forward-element)
847 (should (looking-at (regexp-quote "** Head 1.2"))))
848 ;; 4. Greater element tests.
849 (org-test-with-temp-text
850 "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
851 ;; 4.1. At a greater element: expected to skip contents.
852 (org-forward-element)
853 (should (looking-at (regexp-quote "Outside.")))
854 ;; 4.2. At the end of greater element contents: expected to skip
855 ;; to the end of the greater element.
856 (goto-line 2)
857 (org-forward-element)
858 (should (looking-at (regexp-quote "Outside."))))
859 ;; 5. List tests.
860 (org-test-with-temp-text "
861 - item1
863 - sub1
865 - sub2
867 - sub3
869 Inner paragraph.
871 - item2
873 Outside."
874 ;; 5.1. At list top point: expected to move to the element after
875 ;; the list.
876 (goto-line 2)
877 (org-forward-element)
878 (should (looking-at (regexp-quote "Outside.")))
879 ;; 5.2. Special case: at the first line of a sub-list, but not at
880 ;; beginning of line, move to next item.
881 (goto-line 2)
882 (forward-char)
883 (org-forward-element)
884 (should (looking-at "- item2"))
885 (goto-line 4)
886 (forward-char)
887 (org-forward-element)
888 (should (looking-at " - sub2"))
889 ;; 5.3 At sub-list beginning: expected to move after the sub-list.
890 (goto-line 4)
891 (org-forward-element)
892 (should (looking-at (regexp-quote " Inner paragraph.")))
893 ;; 5.4. At sub-list end: expected to move outside the sub-list.
894 (goto-line 8)
895 (org-forward-element)
896 (should (looking-at (regexp-quote " Inner paragraph.")))
897 ;; 5.5. At an item: expected to move to next item, if any.
898 (goto-line 6)
899 (org-forward-element)
900 (should (looking-at " - sub3"))))
902 (ert-deftest test-org/backward-element ()
903 "Test `org-backward-element' specifications."
904 ;; 1. Should error at BOB.
905 (org-test-with-temp-text " \nParagraph."
906 (should-error (org-backward-element)))
907 ;; 2. Should move at BOB when called on the first element in buffer.
908 (should
909 (org-test-with-temp-text "\n#+TITLE: test"
910 (progn (forward-line)
911 (org-backward-element)
912 (bobp))))
913 ;; 3. Not at the beginning of an element: move at its beginning.
914 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
915 (goto-line 3)
916 (end-of-line)
917 (org-backward-element)
918 (should (looking-at (regexp-quote "Paragraph2."))))
919 ;; 4. Headline tests.
920 (org-test-with-temp-text "
921 * Head 1
922 ** Head 1.1
923 *** Head 1.1.1
924 ** Head 1.2"
925 ;; 4.1. At an headline beginning: move to previous headline at the
926 ;; same level.
927 (goto-line 5)
928 (org-backward-element)
929 (should (looking-at (regexp-quote "** Head 1.1")))
930 ;; 4.2. At an headline beginning: move to parent headline if no
931 ;; headline at the same level.
932 (goto-line 3)
933 (org-backward-element)
934 (should (looking-at (regexp-quote "* Head 1")))
935 ;; 4.3. At the first top-level headline: should error.
936 (goto-line 2)
937 (should-error (org-backward-element)))
938 ;; 5. At beginning of first element inside a greater element:
939 ;; expected to move to greater element's beginning.
940 (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
941 (goto-line 3)
942 (org-backward-element)
943 (should (looking-at "#\\+BEGIN_CENTER")))
944 ;; 6. At the beginning of the first element in a section: should
945 ;; move back to headline, if any.
946 (should
947 (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
948 (progn (goto-char (point-max))
949 (beginning-of-line)
950 (org-backward-element)
951 (org-at-heading-p))))
952 ;; 7. List tests.
953 (org-test-with-temp-text "
954 - item1
956 - sub1
958 - sub2
960 - sub3
962 Inner paragraph.
964 - item2
967 Outside."
968 ;; 7.1. At beginning of sub-list: expected to move to the
969 ;; paragraph before it.
970 (goto-line 4)
971 (org-backward-element)
972 (should (looking-at "item1"))
973 ;; 7.2. At an item in a list: expected to move at previous item.
974 (goto-line 8)
975 (org-backward-element)
976 (should (looking-at " - sub2"))
977 (goto-line 12)
978 (org-backward-element)
979 (should (looking-at "- item1"))
980 ;; 7.3. At end of list/sub-list: expected to move to list/sub-list
981 ;; beginning.
982 (goto-line 10)
983 (org-backward-element)
984 (should (looking-at " - sub1"))
985 (goto-line 15)
986 (org-backward-element)
987 (should (looking-at "- item1"))
988 ;; 7.4. At blank-lines before list end: expected to move to top
989 ;; item.
990 (goto-line 14)
991 (org-backward-element)
992 (should (looking-at "- item1"))))
994 (ert-deftest test-org/up-element ()
995 "Test `org-up-element' specifications."
996 ;; 1. At BOB or with no surrounding element: should error.
997 (org-test-with-temp-text "Paragraph."
998 (should-error (org-up-element)))
999 (org-test-with-temp-text "* Head1\n* Head2"
1000 (goto-line 2)
1001 (should-error (org-up-element)))
1002 (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
1003 (goto-line 3)
1004 (should-error (org-up-element)))
1005 ;; 2. At an headline: move to parent headline.
1006 (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
1007 (goto-line 3)
1008 (org-up-element)
1009 (should (looking-at "\\* Head1")))
1010 ;; 3. Inside a greater element: move to greater element beginning.
1011 (org-test-with-temp-text
1012 "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
1013 (goto-line 3)
1014 (org-up-element)
1015 (should (looking-at "#\\+BEGIN_CENTER")))
1016 ;; 4. List tests.
1017 (org-test-with-temp-text "* Top
1018 - item1
1020 - sub1
1022 - sub2
1024 Paragraph within sub2.
1026 - item2"
1027 ;; 4.1. Within an item: move to the item beginning.
1028 (goto-line 8)
1029 (org-up-element)
1030 (should (looking-at " - sub2"))
1031 ;; 4.2. At an item in a sub-list: move to parent item.
1032 (goto-line 4)
1033 (org-up-element)
1034 (should (looking-at "- item1"))
1035 ;; 4.3. At an item in top list: move to beginning of whole list.
1036 (goto-line 10)
1037 (org-up-element)
1038 (should (looking-at "- item1"))
1039 ;; 4.4. Special case. At very top point: should move to parent of
1040 ;; list.
1041 (goto-line 2)
1042 (org-up-element)
1043 (should (looking-at "\\* Top"))))
1045 (ert-deftest test-org/down-element ()
1046 "Test `org-down-element' specifications."
1047 ;; Error when the element hasn't got a recursive type.
1048 (org-test-with-temp-text "Paragraph."
1049 (should-error (org-down-element)))
1050 ;; Error when the element has no contents
1051 (org-test-with-temp-text "* Headline"
1052 (should-error (org-down-element)))
1053 ;; When at a plain-list, move to first item.
1054 (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
1055 (goto-line 2)
1056 (org-down-element)
1057 (should (looking-at " - Item 1.1")))
1058 (org-test-with-temp-text "#+NAME: list\n- Item 1"
1059 (org-down-element)
1060 (should (looking-at " Item 1")))
1061 ;; When at a table, move to first row
1062 (org-test-with-temp-text "#+NAME: table\n| a | b |"
1063 (org-down-element)
1064 (should (looking-at " a | b |")))
1065 ;; Otherwise, move inside the greater element.
1066 (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
1067 (org-down-element)
1068 (should (looking-at "Paragraph"))))
1070 (ert-deftest test-org/drag-element-backward ()
1071 "Test `org-drag-element-backward' specifications."
1072 ;; 1. Error when trying to move first element of buffer.
1073 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
1074 (should-error (org-drag-element-backward)))
1075 ;; 2. Error when trying to swap nested elements.
1076 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
1077 (forward-line)
1078 (should-error (org-drag-element-backward)))
1079 ;; 3. Error when trying to swap an headline element and
1080 ;; a non-headline element.
1081 (org-test-with-temp-text "Test.\n* Head 1"
1082 (forward-line)
1083 (should-error (org-drag-element-backward)))
1084 ;; 4. Otherwise, swap elements, preserving column and blank lines
1085 ;; between elements.
1086 (org-test-with-temp-text "Para1\n\n\nParagraph 2\n\nPara3"
1087 (search-forward "graph")
1088 (org-drag-element-backward)
1089 (should (equal (buffer-string) "Paragraph 2\n\n\nPara1\n\nPara3"))
1090 (should (looking-at " 2")))
1091 ;; 5. Preserve visibility of elements and their contents.
1092 (org-test-with-temp-text "
1093 #+BEGIN_CENTER
1094 Text.
1095 #+END_CENTER
1096 - item 1
1097 #+BEGIN_QUOTE
1098 Text.
1099 #+END_QUOTE"
1100 (while (search-forward "BEGIN_" nil t) (org-cycle))
1101 (search-backward "- item 1")
1102 (org-drag-element-backward)
1103 (should
1104 (equal
1105 '((63 . 82) (26 . 48))
1106 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
1107 (overlays-in (point-min) (point-max)))))))
1109 (ert-deftest test-org/drag-element-forward ()
1110 "Test `org-drag-element-forward' specifications."
1111 ;; 1. Error when trying to move first element of buffer.
1112 (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
1113 (goto-line 3)
1114 (should-error (org-drag-element-forward)))
1115 ;; 2. Error when trying to swap nested elements.
1116 (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
1117 (forward-line)
1118 (should-error (org-drag-element-forward)))
1119 ;; 3. Error when trying to swap a non-headline element and an
1120 ;; headline.
1121 (org-test-with-temp-text "Test.\n* Head 1"
1122 (should-error (org-drag-element-forward)))
1123 ;; 4. Otherwise, swap elements, preserving column and blank lines
1124 ;; between elements.
1125 (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
1126 (search-forward "graph")
1127 (org-drag-element-forward)
1128 (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
1129 (should (looking-at " 1")))
1130 ;; 5. Preserve visibility of elements and their contents.
1131 (org-test-with-temp-text "
1132 #+BEGIN_CENTER
1133 Text.
1134 #+END_CENTER
1135 - item 1
1136 #+BEGIN_QUOTE
1137 Text.
1138 #+END_QUOTE"
1139 (while (search-forward "BEGIN_" nil t) (org-cycle))
1140 (search-backward "#+BEGIN_CENTER")
1141 (org-drag-element-forward)
1142 (should
1143 (equal
1144 '((63 . 82) (26 . 48))
1145 (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
1146 (overlays-in (point-min) (point-max)))))))
1150 ;;; Planning
1152 (ert-deftest test-org/timestamp-has-time-p ()
1153 "Test `org-timestamp-has-time-p' specifications."
1154 ;; With time.
1155 (should
1156 (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
1157 (org-timestamp-has-time-p (org-element-context))))
1158 ;; Without time.
1159 (should-not
1160 (org-test-with-temp-text "<2012-03-29 Thu>"
1161 (org-timestamp-has-time-p (org-element-context)))))
1163 (ert-deftest test-org/timestamp-format ()
1164 "Test `org-timestamp-format' specifications."
1165 ;; Regular test.
1166 (should
1167 (equal
1168 "2012-03-29 16:40"
1169 (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
1170 (org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
1171 ;; Range end.
1172 (should
1173 (equal
1174 "2012-03-29"
1175 (org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
1176 (org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
1178 (ert-deftest test-org/timestamp-split-range ()
1179 "Test `org-timestamp-split-range' specifications."
1180 ;; Extract range start (active).
1181 (should
1182 (equal '(2012 3 29)
1183 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1184 (let ((ts (org-timestamp-split-range (org-element-context))))
1185 (mapcar (lambda (p) (org-element-property p ts))
1186 '(:year-end :month-end :day-end))))))
1187 ;; Extract range start (inactive)
1188 (should
1189 (equal '(2012 3 29)
1190 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1191 (let ((ts (org-timestamp-split-range (org-element-context))))
1192 (mapcar (lambda (p) (org-element-property p ts))
1193 '(:year-end :month-end :day-end))))))
1194 ;; Extract range end (active).
1195 (should
1196 (equal '(2012 3 30)
1197 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1198 (let ((ts (org-timestamp-split-range
1199 (org-element-context) t)))
1200 (mapcar (lambda (p) (org-element-property p ts))
1201 '(:year-end :month-end :day-end))))))
1202 ;; Extract range end (inactive)
1203 (should
1204 (equal '(2012 3 30)
1205 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1206 (let ((ts (org-timestamp-split-range
1207 (org-element-context) t)))
1208 (mapcar (lambda (p) (org-element-property p ts))
1209 '(:year-end :month-end :day-end))))))
1210 ;; Return the timestamp if not a range.
1211 (should
1212 (org-test-with-temp-text "[2012-03-29 Thu]"
1213 (let* ((ts-orig (org-element-context))
1214 (ts-copy (org-timestamp-split-range ts-orig)))
1215 (eq ts-orig ts-copy))))
1216 (should
1217 (org-test-with-temp-text "<%%(org-float t 4 2)>"
1218 (let* ((ts-orig (org-element-context))
1219 (ts-copy (org-timestamp-split-range ts-orig)))
1220 (eq ts-orig ts-copy))))
1221 ;; Check that parent is the same when a range was split.
1222 (should
1223 (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
1224 (let* ((ts-orig (org-element-context))
1225 (ts-copy (org-timestamp-split-range ts-orig)))
1226 (eq (org-element-property :parent ts-orig)
1227 (org-element-property :parent ts-copy))))))
1229 (ert-deftest test-org/timestamp-translate ()
1230 "Test `org-timestamp-translate' specifications."
1231 ;; Translate whole date range.
1232 (should
1233 (equal "<29>--<30>"
1234 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1235 (let ((org-display-custom-times t)
1236 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1237 (org-timestamp-translate (org-element-context))))))
1238 ;; Translate date range start.
1239 (should
1240 (equal "<29>"
1241 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1242 (let ((org-display-custom-times t)
1243 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1244 (org-timestamp-translate (org-element-context) 'start)))))
1245 ;; Translate date range end.
1246 (should
1247 (equal "<30>"
1248 (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
1249 (let ((org-display-custom-times t)
1250 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1251 (org-timestamp-translate (org-element-context) 'end)))))
1252 ;; Translate time range.
1253 (should
1254 (equal "<08>--<16>"
1255 (org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
1256 (let ((org-display-custom-times t)
1257 (org-time-stamp-custom-formats '("<%d>" . "<%H>")))
1258 (org-timestamp-translate (org-element-context))))))
1259 ;; Translate non-range timestamp.
1260 (should
1261 (equal "<29>"
1262 (org-test-with-temp-text "<2012-03-29 Thu>"
1263 (let ((org-display-custom-times t)
1264 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1265 (org-timestamp-translate (org-element-context))))))
1266 ;; Do not change `diary' timestamps.
1267 (should
1268 (equal "<%%(org-float t 4 2)>"
1269 (org-test-with-temp-text "<%%(org-float t 4 2)>"
1270 (let ((org-display-custom-times t)
1271 (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
1272 (org-timestamp-translate (org-element-context)))))))
1276 ;;; Targets and Radio Targets
1278 (ert-deftest test-org/all-targets ()
1279 "Test `org-all-targets' specifications."
1280 ;; Without an argument.
1281 (should
1282 (equal '("radio-target" "target")
1283 (org-test-with-temp-text "<<target>> <<<radio-target>>>\n: <<verb>>"
1284 (org-all-targets))))
1285 (should
1286 (equal '("radio-target")
1287 (org-test-with-temp-text "<<<radio-target>>>!" (org-all-targets))))
1288 ;; With argument.
1289 (should
1290 (equal '("radio-target")
1291 (org-test-with-temp-text "<<target>> <<<radio-target>>>"
1292 (org-all-targets t)))))
1295 (provide 'test-org)
1297 ;;; test-org.el ends here