123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548 |
- (ert-deftest test-org-footnote/new ()
- "Test `org-footnote-new' specifications."
-
- (should
- (string-match-p
- "Test\\[fn:1\\]\n+\\[fn:1\\]"
- (org-test-with-temp-text "Test<point>"
- (let ((org-footnote-auto-label t)
- (org-footnote-section nil))
- (org-footnote-new))
- (buffer-string))))
-
- (should
- (string-match-p
- "Test\\[fn:\\(.+?\\)\\]\n+\\[fn:\\1\\]"
- (org-test-with-temp-text "Test<point>"
- (let ((org-footnote-auto-label 'random)
- (org-footnote-section nil))
- (org-footnote-new))
- (buffer-string))))
-
- (should-error
- (org-test-with-temp-text "<point>Test"
- (org-footnote-new)))
-
- (should-error
- (org-test-with-temp-text "#+TIT<point>LE: value"
- (org-footnote-new)))
- (should-error
- (org-test-with-temp-text "#+CAPTION: <point>\nParagraph"
- (org-footnote-new)))
-
-
- (should
- (string-match-p
- " \\[fn:1\\]"
- (org-test-with-temp-text " <point>"
- (let ((org-footnote-auto-label t)) (org-footnote-new))
- (buffer-string))))
-
-
- (should (org-test-with-temp-text "* H<point>" (org-footnote-new) t))
- (should
- (org-test-with-temp-text "* H\n <point>\nParagraph" (org-footnote-new) t))
- (should-error (org-test-with-temp-text "*<point> H" (org-footnote-new) t))
- (should-error
- (org-test-with-temp-text "* H <point>:tag:" (org-footnote-new) t))
-
- (should
- (string-match-p
- " \\*bold\\[fn:1\\]\\*"
- (org-test-with-temp-text " *bold<point>*"
- (let ((org-footnote-auto-label t)) (org-footnote-new))
- (buffer-string))))
- (should-error
- (org-test-with-temp-text " [[http://orgmode.org][Org mode<point>]]"
- (org-footnote-new)))
-
-
- (should
- (string-match-p
- " \\[fn:1\\]"
- (org-test-with-temp-text "#+BEGIN_EXAMPLE\nA\n#+END_EXAMPLE\n <point>"
- (let ((org-footnote-auto-label t)) (org-footnote-new))
- (buffer-string))))
- (should
- (string-match-p
- " \\*bold\\*\\[fn:1\\]"
- (org-test-with-temp-text " *bold*<point>"
- (let ((org-footnote-auto-label t)) (org-footnote-new))
- (buffer-string))))
-
- (should
- (string=
- "[fn:1] "
- (org-test-with-temp-text "Text<point>"
- (let ((org-footnote-auto-label t)
- (org-footnote-auto-adjust nil))
- (org-footnote-new))
- (buffer-substring-no-properties (line-beginning-position) (point)))))
-
-
- (should
- (string=
- "[fn:1] 1\n\n[fn:2] \n\n[fn:3] 2\n"
- (org-test-with-temp-text
- "Text[fn:1]Text<point>Text[fn:2]\n\n[fn:1] 1\n\n[fn:2] 2"
- (let ((org-footnote-auto-label t)
- (org-footnote-auto-adjust t)
- (org-footnote-section nil))
- (org-footnote-new))
- (buffer-substring-no-properties
- (line-beginning-position -1)
- (line-beginning-position 4))))))
- (ert-deftest test-org-footnote/delete ()
- "Test `org-footnote-delete' specifications."
-
- (should
- (equal "Paragraph"
- (org-test-with-temp-text "Paragraph<point>[fn:1]\n\n[fn:1] Definition"
- (org-footnote-delete)
- (org-trim (buffer-string)))))
-
- (should
- (equal "Paragraph and another"
- (org-test-with-temp-text
- "Paragraph<point>[fn:1] and another[fn:1]
- \[fn:1] def
- \[fn:1] def"
- (org-footnote-delete)
- (org-trim (buffer-string)))))
-
- (should
- (equal "Para and"
- (org-test-with-temp-text "Para<point>[fn:label:def] and[fn:label]"
- (org-footnote-delete)
- (org-trim (buffer-string)))))
-
- (should
- (equal "Para"
- (let ((org-footnote-section nil))
- (org-test-with-temp-text "Para<point>[fn::def]"
- (org-footnote-delete)
- (org-trim (buffer-string))))))
-
- (should
- (equal "Paragraph[fn:1] and another\n\n[fn:1] def"
- (let ((org-footnote-section nil))
- (org-test-with-temp-text
- "Paragraph[fn:1] and another[fn:2]\n\n[fn:1] def\n\n[fn:2] def2"
- (org-footnote-delete "2")
- (org-trim (buffer-string))))))
-
-
- (should-error
- (org-test-with-temp-text "Para[fn:1]\n\n[fn:1] Def"
- (org-footnote-delete)))
-
- (should
- (equal "Para\n\n\nOutside footnote."
- (let ((org-footnote-section nil))
- (org-test-with-temp-text
- "Para[fn:1]\n\n[fn:1] para1\n\npara2\n\n\nOutside footnote."
- (org-footnote-delete "1")
- (org-trim (buffer-string)))))))
- (ert-deftest test-org-footnote/goto-definition ()
- "Test `org-footnote-goto-definition' specifications."
-
- (should-error
- (org-test-with-temp-text "No footnote definition"
- (org-footnote-goto-definition "1")))
-
-
- (should-error
- (org-test-with-temp-text "Some text<point>\n[fn:1] Definition."
- (narrow-to-region (point-min) (point))
- (org-footnote-goto-definition "1")))
- (should-error
- (org-test-with-temp-text "[fn:1] Definition.\n<point>Some text"
- (narrow-to-region (point) (point-max))
- (org-footnote-goto-definition "1")))
-
-
- (should
- (equal
- "Definition."
- (org-test-with-temp-text "Some text\n[fn:1] Definition."
- (org-footnote-goto-definition "1")
- (buffer-substring (point) (point-max)))))
- (should
- (equal
- "definition]"
- (org-test-with-temp-text "Some text[fn:label:definition]"
- (org-footnote-goto-definition "label")
- (buffer-substring (point) (point-max))))))
- (ert-deftest test-org-footnote/sort ()
- "Test `org-footnote-sort' specifications."
-
-
-
- (should
- (equal
- "
- Text[fn:1][fn:2]
- \[fn:1] Def 1
- \[fn:2] Def 2
- "
- (org-test-with-temp-text "
- Text[fn:1][fn:2]
- \[fn:2] Def 2
- \[fn:1] Def 1"
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
- (should
- (equal
- "
- * H1
- Text[fn:1]
- \[fn:1] Def 1
- * H2
- Text[fn:2]
- \[fn:2] Def 2
- "
- (org-test-with-temp-text "
- * H1
- Text[fn:1]
- * H2
- Text[fn:2]
- \[fn:1] Def 1
- \[fn:2] Def 2
- "
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
-
- (should
- (equal
- "
- Text[fn:1][fn:2]
- * Footnotes
- \[fn:1] Def 1
- \[fn:2] Def 2
- "
- (org-test-with-temp-text "
- Text[fn:1][fn:2]
- \[fn:2] Def 2
- \[fn:1] Def 1"
- (let ((org-footnote-section "Footnotes")) (org-footnote-sort))
- (buffer-string))))
-
-
- (should
- (equal
- "
- Text[fn:1]
- * Headline
- * Other headline
- * Footnotes
- \[fn:1] Def 1
- "
- (org-test-with-temp-text "
- Text[fn:1]
- * Footnotes
- \[fn:1] Def 1
- * Headline
- ** Footnotes
- * Other headline"
- (let ((org-footnote-section "Footnotes")) (org-footnote-sort))
- (buffer-string))))
-
- (should
- (equal
- "
- Text[fn:1][fn::inline][fn:2]
- \[fn:1] Def 1
- \[fn:2] Def 2
- "
- (org-test-with-temp-text
- "
- Text[fn:1][fn::inline][fn:2]
- \[fn:2] Def 2
- \[fn:1] Def 1"
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
-
- (should
- (equal
- "
- Text[fn:1][fn:label:inline][fn:2]
- \[fn:1] Def 1
- \[fn:2] Def 2
- "
- (org-test-with-temp-text
- "
- Text[fn:1][fn:label:inline][fn:2]
- \[fn:2] Def 2
- \[fn:1] Def 1"
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
-
- (should
- (equal
- "
- Text[fn:1][fn:3]
- \[fn:1] Def 1[fn:2]
- \[fn:2] Def 2
- \[fn:3] Def 3
- "
- (org-test-with-temp-text "
- Text[fn:1][fn:3]
- \[fn:1] Def 1[fn:2]
- \[fn:3] Def 3
- \[fn:2] Def 2
- "
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
- (should
- (equal
- "
- Text[fn:1][fn:4]
- \[fn:1] Def 1[fn:2]
- \[fn:2] Def 2[fn:3]
- \[fn:3] Def 3
- \[fn:4] Def 4
- "
- (org-test-with-temp-text "
- Text[fn:1][fn:4]
- \[fn:1] Def 1[fn:2]
- \[fn:3] Def 3
- \[fn:2] Def 2[fn:3]
- \[fn:4] Def 4
- "
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
-
-
- (should
- (equal
- "
- * Section 1
- Text[fn:1]
- \[fn:1] Def 1
- * Section 2
- Text[fn:1]"
- (org-test-with-temp-text
- "
- * Section 1
- Text[fn:1]
- \[fn:1] Def 1
- * Section 2
- Text[fn:1]"
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string))))
- (should
- (equal
- "
- Text[fn:1][fn:4]
- \[fn:1] Def 1[fn:2][fn:3]
- \[fn:2] Def 2[fn:3]
- \[fn:3] Def 3
- \[fn:4] Def 4
- "
- (org-test-with-temp-text "
- Text[fn:1][fn:4]
- \[fn:1] Def 1[fn:2][fn:3]
- \[fn:3] Def 3
- \[fn:2] Def 2[fn:3]
- \[fn:4] Def 4
- "
- (let ((org-footnote-section nil)) (org-footnote-sort))
- (buffer-string)))))
- (ert-deftest test-org-footnote/renumber-fn:N ()
- "Test `org-footnote-renumber-fn:N' specifications."
-
- (should
- (equal
- "Test[fn:1]"
- (org-test-with-temp-text "Test[fn:99]"
- (org-footnote-renumber-fn:N)
- (buffer-string))))
- (should
- (equal
- "Test[fn:1]\n\n[fn:1] 99"
- (org-test-with-temp-text "Test[fn:99]\n\n[fn:99] 99"
- (org-footnote-renumber-fn:N)
- (buffer-string))))
- (should
- (equal
- "Test[fn:1:99]"
- (org-test-with-temp-text "Test[fn:99:99]"
- (org-footnote-renumber-fn:N)
- (buffer-string))))
-
- (should
- (equal
- "Test[fn:label]\n\n[fn:label] Def"
- (org-test-with-temp-text "Test[fn:label]\n\n[fn:label] Def"
- (org-footnote-renumber-fn:N)
- (buffer-string))))
-
- (should
- (equal
- "Test[fn:1]\n[fn:1] 1\n[fn:2] 99"
- (org-test-with-temp-text "Test[fn:1]\n[fn:1] 1\n[fn:99] 99"
- (org-footnote-renumber-fn:N)
- (buffer-string))))
-
- (should
- (equal
- "Test[fn:1][fn:2:def][fn:3]"
- (org-test-with-temp-text "Test[fn:4][fn:3:def][fn:2]"
- (org-footnote-renumber-fn:N)
- (buffer-string))))
- (should
- (equal
- "Test[fn:1][fn::def][fn:2]"
- (org-test-with-temp-text "Test[fn:4][fn::def][fn:2]"
- (org-footnote-renumber-fn:N)
- (buffer-string)))))
- (ert-deftest test-org-footnote/normalize ()
- "Test `org-footnote-normalize' specifications."
-
- (should
- (equal
- "Test[fn:1]\n\n[fn:1] def\n"
- (org-test-with-temp-text "Test[fn:label]\n[fn:label] def"
- (let ((org-footnote-section nil)) (org-footnote-normalize))
- (buffer-string))))
- (should
- (equal
- "Test[fn:1]\n\n[fn:1] def\n"
- (org-test-with-temp-text "Test[fn:label:def]"
- (let ((org-footnote-section nil)) (org-footnote-normalize))
- (buffer-string))))
- (should
- (equal
- "Test[fn:1]\n\n[fn:1] def\n"
- (org-test-with-temp-text "Test[fn::def]"
- (let ((org-footnote-section nil)) (org-footnote-normalize))
- (buffer-string))))
-
- (should
- (equal
- "Test[fn:1][fn:2]\n\n[fn:1] def2\n\n[fn:2] def\n"
- (org-test-with-temp-text "Test[fn:2][fn:1]\n\n[fn:2] def2\n[fn:1] def"
- (let ((org-footnote-section nil)) (org-footnote-normalize))
- (buffer-string))))
- (should
- (equal
- "Test[fn:1][fn:2]\n\n[fn:1] def\n\n[fn:2] inline\n"
- (org-test-with-temp-text "Test[fn:2][fn::inline]\n[fn:2] def\n"
- (let ((org-footnote-section nil)) (org-footnote-normalize))
- (buffer-string))))
- (should
- (equal
- "Test[fn:1][fn:3]
- \[fn:1] def[fn:2]
- \[fn:2] inline
- \[fn:3] last
- "
- (org-test-with-temp-text
- "Test[fn:lab1][fn:lab2]\n[fn:lab1] def[fn::inline]\n[fn:lab2] last"
- (let ((org-footnote-section nil)) (org-footnote-normalize))
- (buffer-string))))
-
-
- (should
- (equal
- "Test[fn:1] Next\n\n[fn:1] def\n"
- (org-test-with-temp-text "Test[fn::def]\nNext"
- (let ((org-footnote-section nil)
- (org-footnote-fill-after-inline-note-extraction t))
- (org-footnote-normalize))
- (buffer-string)))))
- (provide 'test-org-footnote)
|