1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471 |
- (ert-deftest test-org/comment-dwim ()
- "Test `comment-dwim' behaviour in an Org buffer."
-
-
- (should
- (equal "# \nComment"
- (org-test-with-temp-text "Comment"
- (progn (call-interactively 'comment-dwim)
- (buffer-string)))))
-
-
- (should
- (equal "# \nParagraph"
- (org-test-with-temp-text "\nParagraph"
- (progn (call-interactively 'comment-dwim)
- (buffer-string)))))
-
- (should
- (equal "* Headline\n # Comment"
- (org-test-with-temp-text "* Headline\n# Comment"
- (progn (forward-line)
- (let ((org-adapt-indentation t))
- (call-interactively 'comment-dwim))
- (buffer-string)))))
-
- (should
- (equal "# Comment"
- (org-test-with-temp-text "# Comment"
- (progn (forward-line)
- (call-interactively 'comment-dwim)
- (buffer-string)))))
-
-
- (should
- (equal "Comment 1\n\nComment 2"
- (org-test-with-temp-text "# Comment 1\n\n# Comment 2"
- (progn
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (call-interactively 'comment-dwim)
- (buffer-string)))))
-
-
- (should
- (equal "# Comment 1\n\n# Comment 2"
- (org-test-with-temp-text "Comment 1\n\nComment 2"
- (progn
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (let ((-empty-lines nil))
- (call-interactively 'comment-dwim))
- (buffer-string)))))
- (should
- (equal "# Comment 1\n# \n# Comment 2"
- (org-test-with-temp-text "Comment 1\n\nComment 2"
- (progn
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (let ((-empty-lines t))
- (call-interactively 'comment-dwim))
- (buffer-string)))))
-
- (should
- (equal "# \n#+KEYWORD: value"
- (org-test-with-temp-text "#+KEYWORD: value"
- (progn (call-interactively 'comment-dwim)
- (buffer-string)))))
-
- (should
- (equal " ;; "
- (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n\n#+END_SRC"
- (forward-line)
- (let ((org-edit-src-content-indentation 2))
- (call-interactively 'comment-dwim))
- (buffer-substring-no-properties (line-beginning-position) (point)))))
- (should
- (equal "#+BEGIN_SRC emacs-lisp\n ;; a\n ;; b\n#+END_SRC"
- (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\na\nb\n#+END_SRC"
- (forward-line)
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (forward-line 2)
- (let ((org-edit-src-content-indentation 2))
- (call-interactively 'comment-dwim))
- (buffer-string)))))
- (ert-deftest test-org/org-read-date ()
- "Test `org-read-date' specifications."
-
- (should (equal "2012-03-29 16:40"
- (let ((org-time-was-given t))
- (org-read-date t nil "12-3-29 16:40"))))
-
- (should (equal "2012-03-29 16:40"
- (let ((org-time-was-given t))
- (org-read-date t nil "29.03.2012 16:40"))))
-
- (should (string-match "2[0-9]\\{3\\}-03-29 16:40"
- (let ((org-time-was-given t))
- (org-read-date t nil "29.03. 16:40")))))
- (ert-deftest test-org/org-parse-time-string ()
- "Test `org-parse-time-string'."
- (should (equal (org-parse-time-string "2012-03-29 16:40")
- '(0 40 16 29 3 2012 nil nil nil)))
- (should (equal (org-parse-time-string "[2012-03-29 16:40]")
- '(0 40 16 29 3 2012 nil nil nil)))
- (should (equal (org-parse-time-string "<2012-03-29 16:40>")
- '(0 40 16 29 3 2012 nil nil nil)))
- (should (equal (org-parse-time-string "<2012-03-29>")
- '(0 0 0 29 3 2012 nil nil nil)))
- (should (equal (org-parse-time-string "<2012-03-29>" t)
- '(0 nil nil 29 3 2012 nil nil nil))))
- (ert-deftest test-org/fill-paragraph ()
- "Test `org-fill-paragraph' specifications."
-
- (should
- (equal "| a |\n"
- (org-test-with-temp-text "|a|"
- (org-fill-paragraph)
- (buffer-string))))
- (should
- (equal "#+name: table\n| a |\n"
- (org-test-with-temp-text "#+name: table\n| a |"
- (org-fill-paragraph)
- (buffer-string))))
-
- (org-test-with-temp-text "some \\\\\nlong\ntext"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string) "some \\\\\nlong text"))))
-
- (should
- (equal "A B"
- (org-test-with-temp-text "A\nB"
- (let ((fill-column 20))
- (goto-char (point-max))
- (org-fill-paragraph)
- (buffer-string)))))
-
- (should
- (equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
- (org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
- (let ((fill-column 8))
- (forward-line)
- (end-of-line)
- (org-fill-paragraph)
- (buffer-string)))))
-
- (should
- (equal "01234\n6"
- (org-test-with-temp-text "01234 6789"
- (let ((fill-column 5))
- (narrow-to-region 1 8)
- (org-fill-paragraph)
- (buffer-string)))))
-
- (should
- (equal "> a b"
- (org-test-with-temp-text "> a\n> b"
- (let ((fill-column 5)
- (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
- (org-fill-paragraph)
- (buffer-string)))))
-
-
- (should
- (equal "- A B"
- (org-test-with-temp-text "- A\n B"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
- (should
- (equal "[fn:1] A B"
- (org-test-with-temp-text "[fn:1] A\nB"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
- (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string)
- "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
-
- (should
- (equal
- (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
- (let ((fill-column 20))
- (forward-line)
- (org-fill-paragraph)
- (buffer-string)))
- "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
-
- (should
- (equal " # A B"
- (org-test-with-temp-text " # A\n # B"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
-
- (should
- (equal "# A B\n\n# C"
- (org-test-with-temp-text "# A\n# B\n\n# C"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
-
- (should
- (equal "# A B\n#\n# C"
- (org-test-with-temp-text "# A\n# B\n#\n# C"
- (let ((fill-column 20))
- (org-fill-paragraph)
- (buffer-string)))))
-
- (should
- (equal "# > a b"
- (org-test-with-temp-text "# > a\n# > b"
- (let ((fill-column 20)
- (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
- (org-fill-paragraph)
- (buffer-string)))))
-
- (org-test-with-temp-text "#+NAME: para\nSome\ntext."
- (let ((fill-column 20))
- (org-fill-paragraph)
- (should (equal (buffer-string) "#+NAME: para\nSome\ntext."))))
-
- (should-not
- (org-test-with-temp-text "| a | b |\n| c | d |\n"
- (forward-char)
- (org-fill-paragraph)
- (eobp))))
- (ert-deftest test-org/auto-fill-function ()
- "Test auto-filling features."
-
- (should
- (equal "12345\n7890"
- (org-test-with-temp-text "12345 7890"
- (let ((fill-column 5))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should
- (equal "- 12345\n 7890"
- (org-test-with-temp-text "- 12345 7890"
- (let ((fill-column 7))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should
- (equal "> 12345\n 7890"
- (org-test-with-temp-text "> 12345 7890"
- (let ((fill-column 10)
- (adaptive-fill-regexp "[ \t]*>+[ \t]*")
- (adaptive-fill-first-line-regexp "\\`[ ]*\\'"))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- (should
- (equal "> 12345\n> 12345\n> 7890"
- (org-test-with-temp-text "> 12345\n> 12345 7890"
- (let ((fill-column 10)
- (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
- (goto-char (point-max))
- (org-auto-fill-function)
- (buffer-string)))))
- (should-not
- (equal " 12345\n *12345\n *12345"
- (org-test-with-temp-text " 12345\n *12345 12345"
- (let ((fill-column 10)
- (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
- (goto-char (point-max))
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should
- (equal " # 12345\n # 7890"
- (org-test-with-temp-text " # 12345 7890"
- (let ((fill-column 10))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should-not
- (equal "12345 # 7890\n# 1"
- (org-test-with-temp-text "12345 # 7890 1"
- (let ((fill-column 12))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should-not
- (equal "# a\n# b\nRegular\n# paragraph"
- (org-test-with-temp-text "# a\n# b\nRegular paragraph"
- (let ((fill-column 12))
- (end-of-line 3)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should
- (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
- (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
- (let ((fill-column 5))
- (forward-line)
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
- (should
- (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
- (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
- (let ((fill-column 5))
- (forward-line)
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should-not
- (equal "12345\n- 90"
- (org-test-with-temp-text "12345 - 90"
- (let ((fill-column 5))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should-not
- (equal "123\\\\\n7890"
- (org-test-with-temp-text "123\\\\ 7890"
- (let ((fill-column 6))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string)))))
-
- (should-not
- (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
- (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
- (let ((fill-column 20))
- (end-of-line)
- (org-auto-fill-function)
- (buffer-string))))))
- (ert-deftest test-org/meta-return ()
- "Test M-RET (`org-meta-return')."
-
- (should
- (org-test-with-temp-text "| a |"
- (forward-char)
- (org-meta-return)
- (forward-line -1)
- (looking-at "| |$")))
-
- (should
- (org-test-with-temp-text "a"
- (org-meta-return)
- (beginning-of-line)
- (looking-at "\* a$")))
-
- (should
- (org-test-with-temp-text "- a"
- (org-meta-return)
- (beginning-of-line)
- (looking-at "- $")))
-
- (should
- (org-test-with-temp-text ":MYDRAWER:\na\n:END:"
- (forward-line)
- (org-meta-return)
- (forward-line -1)
- (looking-at "$")))
-
- (should
- (org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
- (forward-line)
- (org-meta-return)
- (beginning-of-line)
- (looking-at "- $"))))
- (ert-deftest test-org/insert-todo-heading-respect-content ()
- "Test `org-insert-todo-heading-respect-content' specifications."
-
- (should
- (org-test-with-temp-text "* H1\n Body"
- (org-insert-todo-heading-respect-content)
- (nth 2 (org-heading-components))))
-
- (should
- (org-test-with-temp-text "* H1\nBody"
- (org-insert-todo-heading-respect-content)
- (eobp)))
- (should
- (org-test-with-temp-text "* H1\n** H2\nBody"
- (org-insert-todo-heading-respect-content)
- (eobp)))
-
- (should
- (org-test-with-temp-text "* H\n- an item\n- another one"
- (search-forward "an ")
- (org-insert-todo-heading-respect-content)
- (and (eobp) (org-at-heading-p)))))
- (ert-deftest test-org/toggle-fixed-with ()
- "Test `org-toggle-fixed-width' specifications."
-
- (should
- (equal ": A"
- (org-test-with-temp-text "A"
- (org-toggle-fixed-width)
- (buffer-string))))
-
- (should
- (equal "A"
- (org-test-with-temp-text ": A"
- (org-toggle-fixed-width)
- (buffer-string))))
-
-
- (should
- (equal "* H\n: "
- (org-test-with-temp-text "* H\n"
- (forward-line)
- (org-toggle-fixed-width)
- (buffer-string))))
- (should
- (equal "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n: "
- (org-test-with-temp-text "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n"
- (goto-char (point-max))
- (org-toggle-fixed-width)
- (buffer-string))))
-
-
- (should
- (equal ": * Headline"
- (org-test-with-temp-text "* Headline"
- (org-toggle-fixed-width)
- (buffer-string))))
- (should
- (equal ": #+KEYWORD: value"
- (org-test-with-temp-text "#+KEYWORD: value"
- (org-toggle-fixed-width)
- (buffer-string))))
-
- (should-error
- (org-test-with-temp-text "#+BEGIN_EXAMPLE\n: A\n#+END_EXAMPLE"
- (forward-line)
- (org-toggle-fixed-width)
- (buffer-string)))
-
- (should
- (equal "- A\n : B"
- (org-test-with-temp-text "- A\n B"
- (forward-line)
- (org-toggle-fixed-width)
- (buffer-string))))
-
-
- (should
- (equal "A\n\nB"
- (org-test-with-temp-text ": A\n\n: B"
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (org-toggle-fixed-width)
- (buffer-string))))
-
-
- (should
- (equal ": A\n: \n: B\n: \n: C"
- (org-test-with-temp-text "A\n\n: B\n\nC"
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (org-toggle-fixed-width)
- (buffer-string))))
-
-
- (should
- (equal ": A\n\n"
- (org-test-with-temp-text "A\n\n"
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (org-toggle-fixed-width)
- (buffer-string))))
- (should
- (equal ": \n: \n"
- (org-test-with-temp-text "\n\n"
- (transient-mark-mode 1)
- (push-mark (point) t t)
- (goto-char (point-max))
- (org-toggle-fixed-width)
- (buffer-string)))))
- (ert-deftest test-org/custom-id ()
- "Test custom ID links specifications."
- (should
- (org-test-with-temp-text
- "* H1\n:PROPERTIES:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom]]"
- (goto-char (point-max))
- (org-open-at-point)
- (org-looking-at-p "\\* H1"))))
- (ert-deftest test-org/fuzzy-links ()
- "Test fuzzy links specifications."
-
- (should
- (org-test-with-temp-text "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n[[Test]]"
- (goto-line 5)
- (org-open-at-point)
- (looking-at "<<Test>>")))
-
- (should
- (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n[[Test]]"
- (goto-line 5)
- (org-open-at-point)
- (looking-at "#\\+NAME: Test")))
-
- (should
- (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n[[Head2]]"
- (goto-line 4)
- (org-open-at-point)
- (looking-at "\\* Head2")))
-
- (should
- (org-test-with-temp-text "* Test\n<<Test>>\n[[*Test]]"
- (goto-line 3)
- (org-open-at-point)
- (looking-at "\\* Test"))))
- (ert-deftest test-org/org-link-escape-ascii-character ()
- "Escape an ascii character."
- (should
- (string=
- "%5B"
- (org-link-escape "["))))
- (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
- "Escape an ascii control character."
- (should
- (string=
- "%09"
- (org-link-escape "\t"))))
- (ert-deftest test-org/org-link-escape-multibyte-character ()
- "Escape an unicode multibyte character."
- (should
- (string=
- "%E2%82%AC"
- (org-link-escape "€"))))
- (ert-deftest test-org/org-link-escape-custom-table ()
- "Escape string with custom character table."
- (should
- (string=
- "Foo%3A%42ar%0A"
- (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
- (ert-deftest test-org/org-link-escape-custom-table-merge ()
- "Escape string with custom table merged with default table."
- (should
- (string=
- "%5BF%6F%6F%3A%42ar%0A%5D"
- (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
- (ert-deftest test-org/org-link-unescape-ascii-character ()
- "Unescape an ascii character."
- (should
- (string=
- "["
- (org-link-unescape "%5B"))))
- (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
- "Unescpae an ascii control character."
- (should
- (string=
- "\n"
- (org-link-unescape "%0A"))))
- (ert-deftest test-org/org-link-unescape-multibyte-character ()
- "Unescape unicode multibyte character."
- (should
- (string=
- "€"
- (org-link-unescape "%E2%82%AC"))))
- (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
- "Unescape old style percent escaped character."
- (should
- (string=
- "àâçèéêîôùû"
- (decode-coding-string
- (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
- (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
- "Escape and unescape a URL that includes an escaped char.
- http://article.gmane.org/gmane.emacs.orgmode/21459/"
- (should
- (string=
- "http://some.host.com/form?&id=blah%2Bblah25"
- (org-link-unescape
- (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
- (ert-deftest test-org/org-link-escape-chars-browser ()
- "Test of the constant `org-link-escape-chars-browser'.
- See there why this test is a candidate to be removed once Org
- drops support for Emacs 24.1 and 24.2."
- (should
- (string=
- (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
- "%22Release%208.2%22&idxname=emacs-orgmode")
- (org-link-escape-browser
-
- (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
- "\"Release 8.2\"&idxname=emacs-orgmode")))))
- (ert-deftest test-org/accumulated-properties-in-drawers ()
- "Ensure properties accumulate in subtree drawers."
- (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
- (org-babel-next-src-block)
- (should (equal '(2 1) (org-babel-execute-src-block)))))
- (ert-deftest test-org/mark-subtree ()
- "Test `org-mark-subtree' specifications."
-
- (should-error
- (org-test-with-temp-text "Paragraph\n* Headline\nBody"
- (progn (transient-mark-mode 1)
- (org-mark-subtree))))
-
- (should
- (equal
- '(12 32)
- (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
- (progn (transient-mark-mode 1)
- (forward-line 2)
- (org-mark-subtree)
- (list (region-beginning) (region-end))))))
-
- (should
- (equal
- '(1 32)
- (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
- (progn (transient-mark-mode 1)
- (forward-line 2)
- (org-mark-subtree 1)
- (list (region-beginning) (region-end))))))
-
- (when (featurep 'org-inlinetask)
- (should
- (= 1
- (org-test-with-temp-text "* Headline\n*************** Task\nContents"
- (progn (transient-mark-mode 1)
- (forward-line 1)
- (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
- (region-beginning)))))))
-
- (ert-deftest test-org/beginning-of-line ()
- "Test `org-beginning-of-line' specifications."
-
- (should
- (org-test-with-temp-text "Some text\nSome other text"
- (progn (org-beginning-of-line) (bolp))))
-
- (should-not
- (org-test-with-temp-text "A long line of text\nSome other text"
- (progn (visual-line-mode)
- (forward-char 2)
- (dotimes (i 1000) (insert "very "))
- (org-beginning-of-line)
- (bolp))))
-
- (should
- (org-test-with-temp-text "* TODO Headline"
- (let ((org-special-ctrl-a/e t))
- (org-end-of-line)
- (and (progn (org-beginning-of-line) (looking-at "Headline"))
- (progn (org-beginning-of-line) (bolp))
- (progn (org-beginning-of-line) (looking-at "Headline")))))))
- (ert-deftest test-org/end-of-line ()
- "Test `org-end-of-line' specifications."
-
- (should
- (org-test-with-temp-text "Some text\nSome other text"
- (progn (org-end-of-line) (eolp))))
-
- (should-not
- (org-test-with-temp-text "A long line of text\nSome other text"
- (progn (visual-line-mode)
- (forward-char 2)
- (dotimes (i 1000) (insert "very "))
- (goto-char (point-min))
- (org-end-of-line)
- (eolp))))
-
- (should
- (org-test-with-temp-text "* Headline1 :tag:\n"
- (let ((org-special-ctrl-a/e t))
- (and (progn (org-end-of-line) (looking-at " :tag:"))
- (progn (org-end-of-line) (eolp))
- (progn (org-end-of-line) (looking-at " :tag:"))))))
-
- (should
- (org-test-with-temp-text "* Headline2 :tag:\n"
- (let ((org-special-ctrl-a/e nil))
- (and (progn (org-end-of-line) (eolp))
- (progn (org-end-of-line) (eolp))))))
-
- (should
- (org-test-with-temp-text "* Headline3 :tag:\n"
- (let ((org-special-ctrl-a/e 'reversed)
- (this-command last-command))
- (and (progn (org-end-of-line) (eolp))
- (progn (org-end-of-line) (looking-at " :tag:"))))))
-
- (should
- (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
- (progn (org-end-of-line) (eolp))))
-
- (should-not
- (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
- (let ((org-special-ctrl-a/e t))
- (org-hide-block-toggle)
- (org-end-of-line)
- (eobp)))))
- (ert-deftest test-org/forward-paragraph ()
- "Test `org-forward-paragraph' specifications."
-
- (should-error
- (org-test-with-temp-text "Paragraph"
- (goto-char (point-max))
- (org-forward-paragraph)))
-
- (should
- (org-test-with-temp-text "P1\n\nP2\n\nP3"
- (org-forward-paragraph)
- (looking-at "P2")))
-
- (should
- (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
- (org-forward-paragraph)
- (looking-at "P1")))
-
- (should
- (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
- (org-hide-block-toggle)
- (org-forward-paragraph)
- (looking-at "P3")))
-
- (should
- (org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
- (org-forward-paragraph)
- (looking-at "Para")))
-
-
- (should
- (org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
- (org-forward-paragraph)
- (looking-at " Paragraph")))
- (should
- (org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
- (org-forward-paragraph)
- (looking-at "Paragraph")))
-
-
- (should
- (org-test-with-temp-text "- \n\n Paragraph\n- Item2"
- (org-forward-paragraph)
- (looking-at " Paragraph")))
- (should
- (org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
- (org-forward-paragraph)
- (looking-at "Paragraph")))
-
-
- (should
- (org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
- (org-forward-paragraph)
- (looking-at "Paragraph")))
- (should
- (org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nParagraph"
- (org-forward-paragraph)
- (looking-at "Paragraph")))
-
- (should
- (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
- (org-forward-paragraph)
- (looking-at "L2")))
- (should
- (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
- (org-forward-paragraph)
- (looking-at "L2"))))
- (ert-deftest test-org/backward-paragraph ()
- "Test `org-backward-paragraph' specifications."
-
- (should-error
- (org-test-with-temp-text "Paragraph"
- (org-backward-paragraph)))
-
- (should
- (org-test-with-temp-text "P1\n\nP2\n\nP3"
- (goto-char (point-max))
- (org-backward-paragraph)
- (looking-at "P3")))
- (should
- (org-test-with-temp-text "P1\n\nP2\n\nP3"
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (looking-at "P2")))
-
- (should
- (org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (looking-at "P2")))
-
- (should
- (org-test-with-temp-text "* H1\n P1\n* H2"
- (org-cycle)
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (bobp)))
-
- (should
- (org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
- (search-forward "c2")
- (org-backward-paragraph)
- (looking-at "#\\+name")))
-
-
- (should
- (org-test-with-temp-text "- line1\n\n line2"
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (looking-at "- line1")))
- (should
- (org-test-with-temp-text "[fn:1] line1\n\n line2"
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (looking-at "\\[fn:1\\] line1")))
-
-
- (should
- (org-test-with-temp-text "| a | b |\n| c | d |\nP1"
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (bobp)))
- (should
- (org-test-with-temp-text ":PROPERTIES:\n:prop: value\n:END:\nP1"
- (goto-char (point-max))
- (beginning-of-line)
- (org-backward-paragraph)
- (bobp)))
-
- (should
- (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
- (search-forward "L3")
- (beginning-of-line)
- (org-backward-paragraph)
- (looking-at "L2")))
- (should
- (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
- (search-forward "L3")
- (beginning-of-line)
- (org-backward-paragraph)
- (looking-at "L2"))))
- (ert-deftest test-org/forward-element ()
- "Test `org-forward-element' specifications."
-
- (org-test-with-temp-text "Some text\n"
- (goto-char (point-max))
- (should-error (org-forward-element)))
-
- (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
- (org-forward-element)
- (should (looking-at (regexp-quote "Second paragraph."))))
-
- (org-test-with-temp-text "
- * Head 1
- ** Head 1.1
- *** Head 1.1.1
- ** Head 1.2"
-
-
- (goto-line 3)
- (org-forward-element)
- (should (looking-at (regexp-quote "** Head 1.2")))
-
-
- (goto-line 3)
- (org-forward-element)
- (should (looking-at (regexp-quote "** Head 1.2"))))
-
- (org-test-with-temp-text
- "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
-
- (org-forward-element)
- (should (looking-at (regexp-quote "Outside.")))
-
-
- (goto-line 2)
- (org-forward-element)
- (should (looking-at (regexp-quote "Outside."))))
-
- (org-test-with-temp-text "
- - item1
- - sub1
- - sub2
- - sub3
- Inner paragraph.
- - item2
- Outside."
-
-
- (goto-line 2)
- (org-forward-element)
- (should (looking-at (regexp-quote "Outside.")))
-
-
- (goto-line 2)
- (forward-char)
- (org-forward-element)
- (should (looking-at "- item2"))
- (goto-line 4)
- (forward-char)
- (org-forward-element)
- (should (looking-at " - sub2"))
-
- (goto-line 4)
- (org-forward-element)
- (should (looking-at (regexp-quote " Inner paragraph.")))
-
- (goto-line 8)
- (org-forward-element)
- (should (looking-at (regexp-quote " Inner paragraph.")))
-
- (goto-line 6)
- (org-forward-element)
- (should (looking-at " - sub3"))))
- (ert-deftest test-org/backward-element ()
- "Test `org-backward-element' specifications."
-
- (org-test-with-temp-text " \nParagraph."
- (should-error (org-backward-element)))
-
- (should
- (org-test-with-temp-text "\n#+TITLE: test"
- (progn (forward-line)
- (org-backward-element)
- (bobp))))
-
- (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
- (goto-line 3)
- (end-of-line)
- (org-backward-element)
- (should (looking-at (regexp-quote "Paragraph2."))))
-
- (org-test-with-temp-text "
- * Head 1
- ** Head 1.1
- *** Head 1.1.1
- ** Head 1.2"
-
-
- (goto-line 5)
- (org-backward-element)
- (should (looking-at (regexp-quote "** Head 1.1")))
-
-
- (goto-line 3)
- (org-backward-element)
- (should (looking-at (regexp-quote "* Head 1")))
-
- (goto-line 2)
- (should-error (org-backward-element)))
-
-
- (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
- (goto-line 3)
- (org-backward-element)
- (should (looking-at "#\\+BEGIN_CENTER")))
-
-
- (should
- (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
- (progn (goto-char (point-max))
- (beginning-of-line)
- (org-backward-element)
- (org-at-heading-p))))
-
- (org-test-with-temp-text "
- - item1
- - sub1
- - sub2
- - sub3
- Inner paragraph.
- - item2
- Outside."
-
-
- (goto-line 4)
- (org-backward-element)
- (should (looking-at "item1"))
-
- (goto-line 8)
- (org-backward-element)
- (should (looking-at " - sub2"))
- (goto-line 12)
- (org-backward-element)
- (should (looking-at "- item1"))
-
-
- (goto-line 10)
- (org-backward-element)
- (should (looking-at " - sub1"))
- (goto-line 15)
- (org-backward-element)
- (should (looking-at "- item1"))
-
-
- (goto-line 14)
- (org-backward-element)
- (should (looking-at "- item1"))))
- (ert-deftest test-org/up-element ()
- "Test `org-up-element' specifications."
-
- (org-test-with-temp-text "Paragraph."
- (should-error (org-up-element)))
- (org-test-with-temp-text "* Head1\n* Head2"
- (goto-line 2)
- (should-error (org-up-element)))
- (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
- (goto-line 3)
- (should-error (org-up-element)))
-
- (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
- (goto-line 3)
- (org-up-element)
- (should (looking-at "\\* Head1")))
-
- (org-test-with-temp-text
- "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
- (goto-line 3)
- (org-up-element)
- (should (looking-at "#\\+BEGIN_CENTER")))
-
- (org-test-with-temp-text "* Top
- - item1
- - sub1
- - sub2
- Paragraph within sub2.
- - item2"
-
- (goto-line 8)
- (org-up-element)
- (should (looking-at " - sub2"))
-
- (goto-line 4)
- (org-up-element)
- (should (looking-at "- item1"))
-
- (goto-line 10)
- (org-up-element)
- (should (looking-at "- item1"))
-
-
- (goto-line 2)
- (org-up-element)
- (should (looking-at "\\* Top"))))
- (ert-deftest test-org/down-element ()
- "Test `org-down-element' specifications."
-
- (org-test-with-temp-text "Paragraph."
- (should-error (org-down-element)))
-
- (org-test-with-temp-text "* Headline"
- (should-error (org-down-element)))
-
- (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
- (goto-line 2)
- (org-down-element)
- (should (looking-at " - Item 1.1")))
- (org-test-with-temp-text "#+NAME: list\n- Item 1"
- (org-down-element)
- (should (looking-at " Item 1")))
-
- (org-test-with-temp-text "#+NAME: table\n| a | b |"
- (org-down-element)
- (should (looking-at " a | b |")))
-
- (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
- (org-down-element)
- (should (looking-at "Paragraph"))))
- (ert-deftest test-org/drag-element-backward ()
- "Test `org-drag-element-backward' specifications."
-
- (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
- (should-error (org-drag-element-backward)))
-
- (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
- (forward-line)
- (should-error (org-drag-element-backward)))
-
-
- (org-test-with-temp-text "Test.\n* Head 1"
- (forward-line)
- (should-error (org-drag-element-backward)))
-
-
- (org-test-with-temp-text "Para1\n\n\nParagraph 2\n\nPara3"
- (search-forward "graph")
- (org-drag-element-backward)
- (should (equal (buffer-string) "Paragraph 2\n\n\nPara1\n\nPara3"))
- (should (looking-at " 2")))
-
- (org-test-with-temp-text "
- #+BEGIN_CENTER
- Text.
- #+END_CENTER
- - item 1
- #+BEGIN_QUOTE
- Text.
- #+END_QUOTE"
- (while (search-forward "BEGIN_" nil t) (org-cycle))
- (search-backward "- item 1")
- (org-drag-element-backward)
- (should
- (equal
- '((63 . 82) (26 . 48))
- (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
- (overlays-in (point-min) (point-max)))))))
- (ert-deftest test-org/drag-element-forward ()
- "Test `org-drag-element-forward' specifications."
-
- (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
- (goto-line 3)
- (should-error (org-drag-element-forward)))
-
- (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
- (forward-line)
- (should-error (org-drag-element-forward)))
-
-
- (org-test-with-temp-text "Test.\n* Head 1"
- (should-error (org-drag-element-forward)))
-
-
- (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
- (search-forward "graph")
- (org-drag-element-forward)
- (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
- (should (looking-at " 1")))
-
- (org-test-with-temp-text "
- #+BEGIN_CENTER
- Text.
- #+END_CENTER
- - item 1
- #+BEGIN_QUOTE
- Text.
- #+END_QUOTE"
- (while (search-forward "BEGIN_" nil t) (org-cycle))
- (search-backward "#+BEGIN_CENTER")
- (org-drag-element-forward)
- (should
- (equal
- '((63 . 82) (26 . 48))
- (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
- (overlays-in (point-min) (point-max)))))))
- (ert-deftest test-org/timestamp-has-time-p ()
- "Test `org-timestamp-has-time-p' specifications."
-
- (should
- (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
- (org-timestamp-has-time-p (org-element-context))))
-
- (should-not
- (org-test-with-temp-text "<2012-03-29 Thu>"
- (org-timestamp-has-time-p (org-element-context)))))
- (ert-deftest test-org/timestamp-format ()
- "Test `org-timestamp-format' specifications."
-
- (should
- (equal
- "2012-03-29 16:40"
- (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
- (org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
-
- (should
- (equal
- "2012-03-29"
- (org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
- (org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
- (ert-deftest test-org/timestamp-split-range ()
- "Test `org-timestamp-split-range' specifications."
-
- (should
- (equal '(2012 3 29)
- (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
- (let ((ts (org-timestamp-split-range (org-element-context))))
- (mapcar (lambda (p) (org-element-property p ts))
- '(:year-end :month-end :day-end))))))
-
- (should
- (equal '(2012 3 29)
- (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
- (let ((ts (org-timestamp-split-range (org-element-context))))
- (mapcar (lambda (p) (org-element-property p ts))
- '(:year-end :month-end :day-end))))))
-
- (should
- (equal '(2012 3 30)
- (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
- (let ((ts (org-timestamp-split-range
- (org-element-context) t)))
- (mapcar (lambda (p) (org-element-property p ts))
- '(:year-end :month-end :day-end))))))
-
- (should
- (equal '(2012 3 30)
- (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
- (let ((ts (org-timestamp-split-range
- (org-element-context) t)))
- (mapcar (lambda (p) (org-element-property p ts))
- '(:year-end :month-end :day-end))))))
-
- (should
- (org-test-with-temp-text "[2012-03-29 Thu]"
- (let* ((ts-orig (org-element-context))
- (ts-copy (org-timestamp-split-range ts-orig)))
- (eq ts-orig ts-copy))))
- (should
- (org-test-with-temp-text "<%%(org-float t 4 2)>"
- (let* ((ts-orig (org-element-context))
- (ts-copy (org-timestamp-split-range ts-orig)))
- (eq ts-orig ts-copy))))
-
- (should
- (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
- (let* ((ts-orig (org-element-context))
- (ts-copy (org-timestamp-split-range ts-orig)))
- (eq (org-element-property :parent ts-orig)
- (org-element-property :parent ts-copy))))))
- (ert-deftest test-org/timestamp-translate ()
- "Test `org-timestamp-translate' specifications."
-
- (should
- (equal "<29>--<30>"
- (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
- (let ((org-display-custom-times t)
- (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
- (org-timestamp-translate (org-element-context))))))
-
- (should
- (equal "<29>"
- (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
- (let ((org-display-custom-times t)
- (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
- (org-timestamp-translate (org-element-context) 'start)))))
-
- (should
- (equal "<30>"
- (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
- (let ((org-display-custom-times t)
- (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
- (org-timestamp-translate (org-element-context) 'end)))))
-
- (should
- (equal "<08>--<16>"
- (org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
- (let ((org-display-custom-times t)
- (org-time-stamp-custom-formats '("<%d>" . "<%H>")))
- (org-timestamp-translate (org-element-context))))))
-
- (should
- (equal "<29>"
- (org-test-with-temp-text "<2012-03-29 Thu>"
- (let ((org-display-custom-times t)
- (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
- (org-timestamp-translate (org-element-context))))))
-
- (should
- (equal "<%%(org-float t 4 2)>"
- (org-test-with-temp-text "<%%(org-float t 4 2)>"
- (let ((org-display-custom-times t)
- (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
- (org-timestamp-translate (org-element-context)))))))
- (ert-deftest test-org/all-targets ()
- "Test `org-all-targets' specifications."
-
- (should
- (equal '("radio-target" "target")
- (org-test-with-temp-text "<<target>> <<<radio-target>>>\n: <<verb>>"
- (org-all-targets))))
- (should
- (equal '("radio-target")
- (org-test-with-temp-text "<<<radio-target>>>!" (org-all-targets))))
-
- (should
- (equal '("radio-target")
- (org-test-with-temp-text "<<target>> <<<radio-target>>>"
- (org-all-targets t)))))
- (ert-deftest test-org/flag-drawer ()
- "Test `org-flag-drawer' specifications."
-
- (should
- (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
- (org-flag-drawer t)
- (get-char-property (line-end-position) 'invisible)))
-
- (should-not
- (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
- (org-flag-drawer t)
- (org-flag-drawer nil)
- (get-char-property (line-end-position) 'invisible)))
-
- (should
- (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
- (let ((drawer (save-excursion (search-forward ":D2")
- (org-element-at-point))))
- (org-flag-drawer t drawer)
- (get-char-property (progn (search-forward ":D2") (line-end-position))
- 'invisible))))
- (should-not
- (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
- (let ((drawer (save-excursion (search-forward ":D2")
- (org-element-at-point))))
- (org-flag-drawer t drawer)
- (get-char-property (line-end-position) 'invisible))))
-
- (should-not
- (org-test-with-temp-text "#+begin_example\n:D:\nc\n:END:\n#+end_example"
- (forward-line 1)
- (org-flag-drawer t)
- (get-char-property (line-end-position) 'invisible)))
-
- (should-not
- (org-test-with-temp-text ":D:\nparagraph"
- (forward-line 1)
- (org-flag-drawer t)
- (get-char-property (line-end-position) 'invisible))))
- (provide 'test-org)
|