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