test-org.el 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215
  1. ;;; test-org.el --- tests for org.el
  2. ;; Copyright (c) David Maus
  3. ;; Authors: David Maus
  4. ;; This file is not part of GNU Emacs.
  5. ;; This program is free software; you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. ;;; Comments:
  16. ;; Template test file for Org-mode tests
  17. ;;; Code:
  18. ;;; Comments
  19. (ert-deftest test-org/toggle-comment ()
  20. "Test `org-toggle-comment' specifications."
  21. ;; Simple headline.
  22. (should
  23. (equal "* Test"
  24. (org-test-with-temp-text "* COMMENT Test"
  25. (org-toggle-comment)
  26. (buffer-string))))
  27. (should
  28. (equal "* COMMENT Test"
  29. (org-test-with-temp-text "* Test"
  30. (org-toggle-comment)
  31. (buffer-string))))
  32. ;; Headline with a regular keyword.
  33. (should
  34. (equal "* TODO Test"
  35. (org-test-with-temp-text "* TODO COMMENT Test"
  36. (org-toggle-comment)
  37. (buffer-string))))
  38. (should
  39. (equal "* TODO COMMENT Test"
  40. (org-test-with-temp-text "* TODO Test"
  41. (org-toggle-comment)
  42. (buffer-string))))
  43. ;; Empty headline.
  44. (should
  45. (equal "* "
  46. (org-test-with-temp-text "* COMMENT"
  47. (org-toggle-comment)
  48. (buffer-string))))
  49. (should
  50. (equal "* COMMENT"
  51. (org-test-with-temp-text "* "
  52. (org-toggle-comment)
  53. (buffer-string))))
  54. ;; Headline with a single keyword.
  55. (should
  56. (equal "* TODO "
  57. (org-test-with-temp-text "* TODO COMMENT"
  58. (org-toggle-comment)
  59. (buffer-string))))
  60. (should
  61. (equal "* TODO COMMENT"
  62. (org-test-with-temp-text "* TODO"
  63. (org-toggle-comment)
  64. (buffer-string))))
  65. ;; Headline with a keyword, a priority cookie and contents.
  66. (should
  67. (equal "* TODO [#A] Headline"
  68. (org-test-with-temp-text "* TODO [#A] COMMENT Headline"
  69. (org-toggle-comment)
  70. (buffer-string))))
  71. (should
  72. (equal "* TODO [#A] COMMENT Headline"
  73. (org-test-with-temp-text "* TODO [#A] Headline"
  74. (org-toggle-comment)
  75. (buffer-string)))))
  76. (ert-deftest test-org/comment-dwim ()
  77. "Test `comment-dwim' behaviour in an Org buffer."
  78. ;; No region selected, no comment on current line and line not
  79. ;; empty: insert comment on line above.
  80. (should
  81. (equal "# \nComment"
  82. (org-test-with-temp-text "Comment"
  83. (progn (call-interactively 'comment-dwim)
  84. (buffer-string)))))
  85. ;; No region selected, no comment on current line and line empty:
  86. ;; insert comment on this line.
  87. (should
  88. (equal "# \nParagraph"
  89. (org-test-with-temp-text "\nParagraph"
  90. (progn (call-interactively 'comment-dwim)
  91. (buffer-string)))))
  92. ;; No region selected, and a comment on this line: indent it.
  93. (should
  94. (equal "* Headline\n # Comment"
  95. (org-test-with-temp-text "* Headline\n# Comment"
  96. (progn (forward-line)
  97. (let ((org-adapt-indentation t))
  98. (call-interactively 'comment-dwim))
  99. (buffer-string)))))
  100. ;; Also recognize single # at column 0 as comments.
  101. (should
  102. (equal "# Comment"
  103. (org-test-with-temp-text "# Comment"
  104. (progn (forward-line)
  105. (call-interactively 'comment-dwim)
  106. (buffer-string)))))
  107. ;; Region selected and only comments and blank lines within it:
  108. ;; un-comment all commented lines.
  109. (should
  110. (equal "Comment 1\n\nComment 2"
  111. (org-test-with-temp-text "# Comment 1\n\n# Comment 2"
  112. (progn
  113. (transient-mark-mode 1)
  114. (push-mark (point) t t)
  115. (goto-char (point-max))
  116. (call-interactively 'comment-dwim)
  117. (buffer-string)))))
  118. ;; Region selected without comments: comment all lines if
  119. ;; `comment-empty-lines' is non-nil, only non-blank lines otherwise.
  120. (should
  121. (equal "# Comment 1\n\n# Comment 2"
  122. (org-test-with-temp-text "Comment 1\n\nComment 2"
  123. (progn
  124. (transient-mark-mode 1)
  125. (push-mark (point) t t)
  126. (goto-char (point-max))
  127. (let ((comment-empty-lines nil))
  128. (call-interactively 'comment-dwim))
  129. (buffer-string)))))
  130. (should
  131. (equal "# Comment 1\n# \n# Comment 2"
  132. (org-test-with-temp-text "Comment 1\n\nComment 2"
  133. (progn
  134. (transient-mark-mode 1)
  135. (push-mark (point) t t)
  136. (goto-char (point-max))
  137. (let ((comment-empty-lines t))
  138. (call-interactively 'comment-dwim))
  139. (buffer-string)))))
  140. ;; In front of a keyword without region, insert a new comment.
  141. (should
  142. (equal "# \n#+KEYWORD: value"
  143. (org-test-with-temp-text "#+KEYWORD: value"
  144. (progn (call-interactively 'comment-dwim)
  145. (buffer-string)))))
  146. ;; In a source block, use appropriate syntax.
  147. (should
  148. (equal " ;; "
  149. (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n\n#+END_SRC"
  150. (forward-line)
  151. (let ((org-edit-src-content-indentation 2))
  152. (call-interactively 'comment-dwim))
  153. (buffer-substring-no-properties (line-beginning-position) (point)))))
  154. (should
  155. (equal "#+BEGIN_SRC emacs-lisp\n ;; a\n ;; b\n#+END_SRC"
  156. (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\na\nb\n#+END_SRC"
  157. (forward-line)
  158. (transient-mark-mode 1)
  159. (push-mark (point) t t)
  160. (forward-line 2)
  161. (let ((org-edit-src-content-indentation 2))
  162. (call-interactively 'comment-dwim))
  163. (buffer-string)))))
  164. ;;; Date and time analysis
  165. (ert-deftest test-org/org-read-date ()
  166. "Test `org-read-date' specifications."
  167. ;; Parse ISO date with abbreviated year and month.
  168. (should (equal "2012-03-29 16:40"
  169. (let ((org-time-was-given t))
  170. (org-read-date t nil "12-3-29 16:40"))))
  171. ;; Parse Europeans dates.
  172. (should (equal "2012-03-29 16:40"
  173. (let ((org-time-was-given t))
  174. (org-read-date t nil "29.03.2012 16:40"))))
  175. ;; Parse Europeans dates without year.
  176. (should (string-match "2[0-9]\\{3\\}-03-29 16:40"
  177. (let ((org-time-was-given t))
  178. (org-read-date t nil "29.03. 16:40"))))
  179. ;; Relative date applied to current time if there is single
  180. ;; plus/minus, or to default date when there are two of them.
  181. (should
  182. (equal
  183. "2015-03-04"
  184. (flet ((current-time () (apply #'encode-time
  185. (org-parse-time-string "2014-03-04"))))
  186. (org-read-date
  187. t nil "+1y" nil
  188. (apply #'encode-time (org-parse-time-string "2012-03-29"))))))
  189. (should
  190. (equal
  191. "2013-03-29"
  192. (flet ((current-time () (apply #'encode-time
  193. (org-parse-time-string "2014-03-04"))))
  194. (org-read-date
  195. t nil "++1y" nil
  196. (apply #'encode-time (org-parse-time-string "2012-03-29"))))))
  197. ;; When `org-read-date-prefer-future' is non-nil, prefer future
  198. ;; dates (relatively to now) when incomplete. Otherwise, use
  199. ;; default date.
  200. (should
  201. (equal
  202. "2014-04-01"
  203. (flet ((current-time () (apply #'encode-time
  204. (org-parse-time-string "2014-03-04"))))
  205. (let ((org-read-date-prefer-future t))
  206. (org-read-date t nil "1")))))
  207. (should
  208. (equal
  209. "2013-03-04"
  210. (flet ((current-time () (apply #'encode-time
  211. (org-parse-time-string "2012-03-29"))))
  212. (let ((org-read-date-prefer-future t))
  213. (org-read-date t nil "3-4")))))
  214. (should
  215. (equal
  216. "2012-03-04"
  217. (flet ((current-time () (apply #'encode-time
  218. (org-parse-time-string "2012-03-29"))))
  219. (let ((org-read-date-prefer-future nil))
  220. (org-read-date t nil "3-4")))))
  221. ;; When set to `org-read-date-prefer-future' is set to `time', read
  222. ;; day is moved to tomorrow if specified hour is before current
  223. ;; time. However, it only happens in no other part of the date is
  224. ;; specified.
  225. (should
  226. (equal
  227. "2012-03-30"
  228. (flet ((current-time () (apply #'encode-time
  229. (org-parse-time-string "2012-03-29 16:40"))))
  230. (let ((org-read-date-prefer-future 'time))
  231. (org-read-date t nil "00:40" nil)))))
  232. (should-not
  233. (equal
  234. "2012-03-30"
  235. (flet ((current-time () (apply #'encode-time
  236. (org-parse-time-string "2012-03-29 16:40"))))
  237. (let ((org-read-date-prefer-future 'time))
  238. (org-read-date t nil "29 00:40" nil)))))
  239. ;; Caveat: `org-read-date-prefer-future' always refers to current
  240. ;; time, not default time, when they differ.
  241. (should
  242. (equal
  243. "2014-04-01"
  244. (flet ((current-time
  245. () (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  246. (let ((org-read-date-prefer-future t))
  247. (org-read-date
  248. t nil "1" nil
  249. (apply #'encode-time (org-parse-time-string "2012-03-29")))))))
  250. (should
  251. (equal
  252. "2014-03-25"
  253. (flet ((current-time
  254. () (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  255. (let ((org-read-date-prefer-future t))
  256. (org-read-date
  257. t nil "25" nil
  258. (apply #'encode-time (org-parse-time-string "2012-03-29"))))))))
  259. (ert-deftest test-org/org-parse-time-string ()
  260. "Test `org-parse-time-string'."
  261. (should (equal (org-parse-time-string "2012-03-29 16:40")
  262. '(0 40 16 29 3 2012 nil nil nil)))
  263. (should (equal (org-parse-time-string "[2012-03-29 16:40]")
  264. '(0 40 16 29 3 2012 nil nil nil)))
  265. (should (equal (org-parse-time-string "<2012-03-29 16:40>")
  266. '(0 40 16 29 3 2012 nil nil nil)))
  267. (should (equal (org-parse-time-string "<2012-03-29>")
  268. '(0 0 0 29 3 2012 nil nil nil)))
  269. (should (equal (org-parse-time-string "<2012-03-29>" t)
  270. '(0 nil nil 29 3 2012 nil nil nil))))
  271. ;;; Drawers
  272. (ert-deftest test-org/insert-property-drawer ()
  273. "Test `org-insert-property-drawer' specifications."
  274. ;; Error before first headline.
  275. (should-error (org-test-with-temp-text "" (org-insert-property-drawer)))
  276. ;; Insert drawer right after headline if there is no planning line,
  277. ;; or after it otherwise.
  278. (should
  279. (equal "* H\n:PROPERTIES:\n:END:\nParagraph"
  280. (org-test-with-temp-text "* H\nParagraph<point>"
  281. (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
  282. (buffer-string))))
  283. (should
  284. (equal "* H\nDEADLINE: <2014-03-04 tue.>\n:PROPERTIES:\n:END:\nParagraph"
  285. (org-test-with-temp-text
  286. "* H\nDEADLINE: <2014-03-04 tue.>\nParagraph<point>"
  287. (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
  288. (buffer-string))))
  289. ;; Indent inserted drawer.
  290. (should
  291. (equal "* H\n :PROPERTIES:\n :END:\nParagraph"
  292. (org-test-with-temp-text "* H\nParagraph<point>"
  293. (let ((org-adapt-indentation t)) (org-insert-property-drawer))
  294. (buffer-string))))
  295. ;; Handle insertion at eob.
  296. (should
  297. (equal "* H\n:PROPERTIES:\n:END:\n"
  298. (org-test-with-temp-text "* H"
  299. (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
  300. (buffer-string))))
  301. ;; Skip inlinetasks before point.
  302. (when (featurep 'org-inlinetask)
  303. (should
  304. (equal "* H\n:PROPERTIES:\n:END:\n*************** I\n*************** END\nP"
  305. (org-test-with-temp-text
  306. "* H\n*************** I\n*************** END\nP<point>"
  307. (let ((org-adapt-indentation nil)
  308. (org-inlinetask-min-level 15))
  309. (org-insert-property-drawer))
  310. (buffer-string)))))
  311. ;; Correctly set drawer in an inlinetask.
  312. (when (featurep 'org-inlinetask)
  313. (should
  314. (equal "* H\n*************** I\n:PROPERTIES:\n:END:\nP\n*************** END"
  315. (org-test-with-temp-text
  316. "* H\n*************** I\nP<point>\n*************** END"
  317. (let ((org-adapt-indentation nil)
  318. (org-inlinetask-min-level 15))
  319. (org-insert-property-drawer))
  320. (buffer-string))))))
  321. ;;; Filling
  322. (ert-deftest test-org/fill-paragraph ()
  323. "Test `org-fill-paragraph' specifications."
  324. ;; At an Org table, align it.
  325. (should
  326. (equal "| a |\n"
  327. (org-test-with-temp-text "|a|"
  328. (org-fill-paragraph)
  329. (buffer-string))))
  330. (should
  331. (equal "#+name: table\n| a |\n"
  332. (org-test-with-temp-text "#+name: table\n| a |\n"
  333. (org-fill-paragraph)
  334. (buffer-string))))
  335. ;; At a paragraph, preserve line breaks.
  336. (org-test-with-temp-text "some \\\\\nlong\ntext"
  337. (let ((fill-column 20))
  338. (org-fill-paragraph)
  339. (should (equal (buffer-string) "some \\\\\nlong text"))))
  340. ;; Correctly fill a paragraph when point is at its very end.
  341. (should
  342. (equal "A B"
  343. (org-test-with-temp-text "A\nB"
  344. (let ((fill-column 20))
  345. (goto-char (point-max))
  346. (org-fill-paragraph)
  347. (buffer-string)))))
  348. ;; Correctly fill the last paragraph of a greater element.
  349. (should
  350. (equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
  351. (org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
  352. (let ((fill-column 8))
  353. (forward-line)
  354. (end-of-line)
  355. (org-fill-paragraph)
  356. (buffer-string)))))
  357. ;; Correctly fill an element in a narrowed buffer.
  358. (should
  359. (equal "01234\n6"
  360. (org-test-with-temp-text "01234 6789"
  361. (let ((fill-column 5))
  362. (narrow-to-region 1 8)
  363. (org-fill-paragraph)
  364. (buffer-string)))))
  365. ;; Handle `adaptive-fill-regexp' in paragraphs.
  366. (should
  367. (equal "> a b"
  368. (org-test-with-temp-text "> a\n> b"
  369. (let ((fill-column 5)
  370. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  371. (org-fill-paragraph)
  372. (buffer-string)))))
  373. ;; Special case: Fill first paragraph when point is at an item or
  374. ;; a plain-list or a footnote reference.
  375. (should
  376. (equal "- A B"
  377. (org-test-with-temp-text "- A\n B"
  378. (let ((fill-column 20))
  379. (org-fill-paragraph)
  380. (buffer-string)))))
  381. (should
  382. (equal "[fn:1] A B"
  383. (org-test-with-temp-text "[fn:1] A\nB"
  384. (let ((fill-column 20))
  385. (org-fill-paragraph)
  386. (buffer-string)))))
  387. (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
  388. (let ((fill-column 20))
  389. (org-fill-paragraph)
  390. (should (equal (buffer-string)
  391. "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
  392. ;; Fill contents of `comment-block' elements.
  393. (should
  394. (equal
  395. (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
  396. (let ((fill-column 20))
  397. (forward-line)
  398. (org-fill-paragraph)
  399. (buffer-string)))
  400. "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
  401. ;; Fill `comment' elements.
  402. (should
  403. (equal " # A B"
  404. (org-test-with-temp-text " # A\n # B"
  405. (let ((fill-column 20))
  406. (org-fill-paragraph)
  407. (buffer-string)))))
  408. ;; Do not mix consecutive comments when filling one of them.
  409. (should
  410. (equal "# A B\n\n# C"
  411. (org-test-with-temp-text "# A\n# B\n\n# C"
  412. (let ((fill-column 20))
  413. (org-fill-paragraph)
  414. (buffer-string)))))
  415. ;; Use commented empty lines as separators when filling comments.
  416. (should
  417. (equal "# A B\n#\n# C"
  418. (org-test-with-temp-text "# A\n# B\n#\n# C"
  419. (let ((fill-column 20))
  420. (org-fill-paragraph)
  421. (buffer-string)))))
  422. ;; Handle `adaptive-fill-regexp' in comments.
  423. (should
  424. (equal "# > a b"
  425. (org-test-with-temp-text "# > a\n# > b"
  426. (let ((fill-column 20)
  427. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  428. (org-fill-paragraph)
  429. (buffer-string)))))
  430. ;; Do nothing at affiliated keywords.
  431. (org-test-with-temp-text "#+NAME: para\nSome\ntext."
  432. (let ((fill-column 20))
  433. (org-fill-paragraph)
  434. (should (equal (buffer-string) "#+NAME: para\nSome\ntext."))))
  435. ;; Do not move point after table when filling a table.
  436. (should-not
  437. (org-test-with-temp-text "| a | b |\n| c | d |\n"
  438. (forward-char)
  439. (org-fill-paragraph)
  440. (eobp))))
  441. (ert-deftest test-org/auto-fill-function ()
  442. "Test auto-filling features."
  443. ;; Auto fill paragraph.
  444. (should
  445. (equal "12345\n7890"
  446. (org-test-with-temp-text "12345 7890"
  447. (let ((fill-column 5))
  448. (end-of-line)
  449. (org-auto-fill-function)
  450. (buffer-string)))))
  451. ;; Auto fill first paragraph in an item.
  452. (should
  453. (equal "- 12345\n 7890"
  454. (org-test-with-temp-text "- 12345 7890"
  455. (let ((fill-column 7))
  456. (end-of-line)
  457. (org-auto-fill-function)
  458. (buffer-string)))))
  459. ;; Auto fill paragraph when `adaptive-fill-regexp' matches.
  460. (should
  461. (equal "> 12345\n 7890"
  462. (org-test-with-temp-text "> 12345 7890"
  463. (let ((fill-column 10)
  464. (adaptive-fill-regexp "[ \t]*>+[ \t]*")
  465. (adaptive-fill-first-line-regexp "\\`[ ]*\\'"))
  466. (end-of-line)
  467. (org-auto-fill-function)
  468. (buffer-string)))))
  469. (should
  470. (equal "> 12345\n> 12345\n> 7890"
  471. (org-test-with-temp-text "> 12345\n> 12345 7890"
  472. (let ((fill-column 10)
  473. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  474. (goto-char (point-max))
  475. (org-auto-fill-function)
  476. (buffer-string)))))
  477. (should-not
  478. (equal " 12345\n *12345\n *12345"
  479. (org-test-with-temp-text " 12345\n *12345 12345"
  480. (let ((fill-column 10)
  481. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  482. (goto-char (point-max))
  483. (org-auto-fill-function)
  484. (buffer-string)))))
  485. ;; Auto fill comments.
  486. (should
  487. (equal " # 12345\n # 7890"
  488. (org-test-with-temp-text " # 12345 7890"
  489. (let ((fill-column 10))
  490. (end-of-line)
  491. (org-auto-fill-function)
  492. (buffer-string)))))
  493. ;; A hash within a line isn't a comment.
  494. (should-not
  495. (equal "12345 # 7890\n# 1"
  496. (org-test-with-temp-text "12345 # 7890 1"
  497. (let ((fill-column 12))
  498. (end-of-line)
  499. (org-auto-fill-function)
  500. (buffer-string)))))
  501. ;; Correctly interpret empty prefix.
  502. (should-not
  503. (equal "# a\n# b\nRegular\n# paragraph"
  504. (org-test-with-temp-text "# a\n# b\nRegular paragraph"
  505. (let ((fill-column 12))
  506. (end-of-line 3)
  507. (org-auto-fill-function)
  508. (buffer-string)))))
  509. ;; Comment block: auto fill contents.
  510. (should
  511. (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
  512. (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
  513. (let ((fill-column 5))
  514. (forward-line)
  515. (end-of-line)
  516. (org-auto-fill-function)
  517. (buffer-string)))))
  518. (should
  519. (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
  520. (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
  521. (let ((fill-column 5))
  522. (forward-line)
  523. (end-of-line)
  524. (org-auto-fill-function)
  525. (buffer-string)))))
  526. ;; Do not fill if a new item could be created.
  527. (should-not
  528. (equal "12345\n- 90"
  529. (org-test-with-temp-text "12345 - 90"
  530. (let ((fill-column 5))
  531. (end-of-line)
  532. (org-auto-fill-function)
  533. (buffer-string)))))
  534. ;; Do not fill if a line break could be introduced.
  535. (should-not
  536. (equal "123\\\\\n7890"
  537. (org-test-with-temp-text "123\\\\ 7890"
  538. (let ((fill-column 6))
  539. (end-of-line)
  540. (org-auto-fill-function)
  541. (buffer-string)))))
  542. ;; Do not fill affiliated keywords.
  543. (should-not
  544. (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
  545. (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
  546. (let ((fill-column 20))
  547. (end-of-line)
  548. (org-auto-fill-function)
  549. (buffer-string))))))
  550. ;;; Indentation
  551. (ert-deftest test-org/indent-line ()
  552. "Test `org-indent-line' specifications."
  553. ;; Do not indent diary sexps, footnote definitions or headlines.
  554. (should
  555. (zerop
  556. (org-test-with-temp-text "%%(org-calendar-holiday)"
  557. (org-indent-line)
  558. (org-get-indentation))))
  559. (should
  560. (zerop
  561. (org-test-with-temp-text "[fn:1] fn"
  562. (let ((org-adapt-indentation t)) (org-indent-line))
  563. (org-get-indentation))))
  564. (should
  565. (zerop
  566. (org-test-with-temp-text "* H"
  567. (org-indent-line)
  568. (org-get-indentation))))
  569. ;; Do not indent before first headline.
  570. (should
  571. (zerop
  572. (org-test-with-temp-text ""
  573. (org-indent-line)
  574. (org-get-indentation))))
  575. ;; Indent according to headline level otherwise, unless
  576. ;; `org-adapt-indentation' is nil.
  577. (should
  578. (= 2
  579. (org-test-with-temp-text "* H\nA"
  580. (forward-line)
  581. (let ((org-adapt-indentation t)) (org-indent-line))
  582. (org-get-indentation))))
  583. (should
  584. (= 2
  585. (org-test-with-temp-text "* H\n\nA"
  586. (forward-line)
  587. (let ((org-adapt-indentation t)) (org-indent-line))
  588. (org-get-indentation))))
  589. (should
  590. (zerop
  591. (org-test-with-temp-text "* H\nA"
  592. (forward-line)
  593. (let ((org-adapt-indentation nil)) (org-indent-line))
  594. (org-get-indentation))))
  595. ;; Indenting preserves point position.
  596. (should
  597. (org-test-with-temp-text "* H\nAB"
  598. (forward-line)
  599. (forward-char)
  600. (let ((org-adapt-indentation t)) (org-indent-line))
  601. (looking-at "B")))
  602. ;; Do not change indentation at an item.
  603. (should
  604. (= 1
  605. (org-test-with-temp-text "* H\n - A"
  606. (forward-line)
  607. (let ((org-adapt-indentation t)) (org-indent-line))
  608. (org-get-indentation))))
  609. ;; On blank lines at the end of a list, indent like last element
  610. ;; within it if the line is still in the list. If the last element
  611. ;; is an item, indent like its contents. Otherwise, indent like the
  612. ;; whole list.
  613. (should
  614. (= 4
  615. (org-test-with-temp-text "* H\n- A\n - AA\n"
  616. (goto-char (point-max))
  617. (let ((org-adapt-indentation t)) (org-indent-line))
  618. (org-get-indentation))))
  619. (should
  620. (zerop
  621. (org-test-with-temp-text "* H\n- A\n - AA\n\n\n\n"
  622. (goto-char (point-max))
  623. (let ((org-adapt-indentation t)) (org-indent-line))
  624. (org-get-indentation))))
  625. (should
  626. (= 4
  627. (org-test-with-temp-text "* H\n- A\n - \n"
  628. (goto-char (point-max))
  629. (let ((org-adapt-indentation t)) (org-indent-line))
  630. (org-get-indentation))))
  631. ;; Likewise, on a blank line at the end of a footnote definition,
  632. ;; indent at column 0 if line belongs to the definition. Otherwise,
  633. ;; indent like the definition itself.
  634. (should
  635. (zerop
  636. (org-test-with-temp-text "* H\n[fn:1] Definition\n"
  637. (goto-char (point-max))
  638. (let ((org-adapt-indentation t)) (org-indent-line))
  639. (org-get-indentation))))
  640. (should
  641. (zerop
  642. (org-test-with-temp-text "* H\n[fn:1] Definition\n\n\n\n"
  643. (goto-char (point-max))
  644. (let ((org-adapt-indentation t)) (org-indent-line))
  645. (org-get-indentation))))
  646. ;; After the end of the contents of a greater element, indent like
  647. ;; the beginning of the element.
  648. (should
  649. (= 1
  650. (org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
  651. (forward-line 2)
  652. (org-indent-line)
  653. (org-get-indentation))))
  654. ;; On blank lines after a paragraph, indent like its last non-empty
  655. ;; line.
  656. (should
  657. (= 1
  658. (org-test-with-temp-text " Paragraph\n\n<point>"
  659. (org-indent-line)
  660. (org-get-indentation))))
  661. ;; At the first line of an element, indent like previous element's
  662. ;; first line, ignoring footnotes definitions and inline tasks, or
  663. ;; according to parent.
  664. (should
  665. (= 2
  666. (org-test-with-temp-text "A\n\n B\n\nC"
  667. (goto-char (point-max))
  668. (org-indent-line)
  669. (org-get-indentation))))
  670. (should
  671. (= 1
  672. (org-test-with-temp-text " A\n\n[fn:1] B\n\n\nC"
  673. (goto-char (point-max))
  674. (org-indent-line)
  675. (org-get-indentation))))
  676. (should
  677. (= 1
  678. (org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
  679. (forward-line 1)
  680. (org-indent-line)
  681. (org-get-indentation))))
  682. ;; Within code part of a source block, use language major mode if
  683. ;; `org-src-tab-acts-natively' is non-nil. Otherwise, indent
  684. ;; according to line above.
  685. (should
  686. (= 6
  687. (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  688. (forward-line 2)
  689. (let ((org-src-tab-acts-natively t)
  690. (org-edit-src-content-indentation 0))
  691. (org-indent-line))
  692. (org-get-indentation))))
  693. (should
  694. (= 1
  695. (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  696. (forward-line 2)
  697. (let ((org-src-tab-acts-natively nil)
  698. (org-edit-src-content-indentation 0))
  699. (org-indent-line))
  700. (org-get-indentation))))
  701. ;; Otherwise, indent like the first non-blank line above.
  702. (should
  703. (zerop
  704. (org-test-with-temp-text "#+BEGIN_CENTER\nline1\n\n line2\n#+END_CENTER"
  705. (forward-line 3)
  706. (org-indent-line)
  707. (org-get-indentation))))
  708. ;; Align node properties according to `org-property-format'. Handle
  709. ;; nicely empty values.
  710. (should
  711. (equal "* H\n:PROPERTIES:\n:key: value\n:END:"
  712. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:key: value\n:END:"
  713. (let ((org-property-format "%-10s %s")) (org-indent-line))
  714. (buffer-string))))
  715. (should
  716. (equal "* H\n:PROPERTIES:\n:key:\n:END:"
  717. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:key:\n:END:"
  718. (let ((org-property-format "%-10s %s")) (org-indent-line))
  719. (buffer-string)))))
  720. (ert-deftest test-org/indent-region ()
  721. "Test `org-indent-region' specifications."
  722. ;; Indent paragraph.
  723. (should
  724. (equal "A\nB\nC"
  725. (org-test-with-temp-text " A\nB\n C"
  726. (org-indent-region (point-min) (point-max))
  727. (buffer-string))))
  728. ;; Indent greater elements along with their contents.
  729. (should
  730. (equal "#+BEGIN_CENTER\nA\nB\n#+END_CENTER"
  731. (org-test-with-temp-text "#+BEGIN_CENTER\n A\n B\n#+END_CENTER"
  732. (org-indent-region (point-min) (point-max))
  733. (buffer-string))))
  734. ;; Ignore contents of verse blocks and example blocks.
  735. (should
  736. (equal "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
  737. (org-test-with-temp-text "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
  738. (org-indent-region (point-min) (point-max))
  739. (buffer-string))))
  740. (should
  741. (equal "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
  742. (org-test-with-temp-text "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
  743. (org-indent-region (point-min) (point-max))
  744. (buffer-string))))
  745. ;; Indent according to mode if `org-src-tab-acts-natively' is
  746. ;; non-nil. Otherwise, do not indent code at all.
  747. (should
  748. (equal "#+BEGIN_SRC emacs-lisp\n(and A\n B)\n#+END_SRC"
  749. (org-test-with-temp-text
  750. "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  751. (let ((org-src-tab-acts-natively t)
  752. (org-edit-src-content-indentation 0))
  753. (org-indent-region (point-min) (point-max)))
  754. (buffer-string))))
  755. (should
  756. (equal "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  757. (org-test-with-temp-text
  758. "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  759. (let ((org-src-tab-acts-natively nil)
  760. (org-edit-src-content-indentation 0))
  761. (org-indent-region (point-min) (point-max)))
  762. (buffer-string))))
  763. ;; Align node properties according to `org-property-format'. Handle
  764. ;; nicely empty values.
  765. (should
  766. (equal "* H\n:PROPERTIES:\n:key: value\n:END:"
  767. (org-test-with-temp-text "* H\n<point>:PROPERTIES:\n:key: value\n:END:"
  768. (let ((org-property-format "%-10s %s")
  769. (org-adapt-indentation nil))
  770. (org-indent-region (point) (point-max)))
  771. (buffer-string))))
  772. (should
  773. (equal "* H\n:PROPERTIES:\n:key:\n:END:"
  774. (org-test-with-temp-text "* H\n<point>:PROPERTIES:\n:key:\n:END:"
  775. (let ((org-property-format "%-10s %s")
  776. (org-adapt-indentation nil))
  777. (org-indent-region (point) (point-max)))
  778. (buffer-string))))
  779. ;; Indent plain lists.
  780. (should
  781. (equal "- A\n B\n - C\n\n D"
  782. (org-test-with-temp-text "- A\n B\n - C\n\n D"
  783. (org-indent-region (point-min) (point-max))
  784. (buffer-string))))
  785. (should
  786. (equal "- A\n\n- B"
  787. (org-test-with-temp-text " - A\n\n - B"
  788. (org-indent-region (point-min) (point-max))
  789. (buffer-string))))
  790. ;; Indent footnote definitions.
  791. (should
  792. (equal "[fn:1] Definition\n\nDefinition"
  793. (org-test-with-temp-text "[fn:1] Definition\n\n Definition"
  794. (org-indent-region (point-min) (point-max))
  795. (buffer-string))))
  796. ;; Special case: Start indenting on a blank line.
  797. (should
  798. (equal "\nParagraph"
  799. (org-test-with-temp-text "\n Paragraph"
  800. (org-indent-region (point-min) (point-max))
  801. (buffer-string)))))
  802. ;;; Editing
  803. (ert-deftest test-org/delete-indentation ()
  804. "Test `org-delete-indentation' specifications."
  805. ;; Regular test.
  806. (should (equal "foo bar"
  807. (org-test-with-temp-text
  808. "foo \n bar<point>"
  809. (org-delete-indentation)
  810. (buffer-string))))
  811. ;; With optional argument.
  812. (should (equal "foo bar"
  813. (org-test-with-temp-text
  814. "foo<point> \n bar"
  815. (org-delete-indentation t)
  816. (buffer-string))))
  817. ;; At headline text should be appended to the headline text.
  818. (should
  819. (equal"* foo bar :tag:"
  820. (let (org-auto-align-tags)
  821. (org-test-with-temp-text
  822. "* foo :tag:\n bar<point>"
  823. (org-delete-indentation)
  824. (buffer-string)))))
  825. (should
  826. (equal "* foo bar :tag:"
  827. (let (org-auto-align-tags)
  828. (org-test-with-temp-text
  829. "* foo <point>:tag:\n bar"
  830. (org-delete-indentation t)
  831. (buffer-string))))))
  832. (ert-deftest test-org/return ()
  833. "Test `org-return' specifications."
  834. ;; Regular test.
  835. (should
  836. (equal "Para\ngraph"
  837. (org-test-with-temp-text "Para<point>graph"
  838. (org-return)
  839. (buffer-string))))
  840. ;; With optional argument, indent line.
  841. (should
  842. (equal " Para\n graph"
  843. (org-test-with-temp-text " Para<point>graph"
  844. (org-return t)
  845. (buffer-string))))
  846. ;; On a table, call `org-table-next-row'.
  847. (should
  848. (org-test-with-temp-text "| <point>a |\n| b |"
  849. (org-return)
  850. (org-looking-at-p "b")))
  851. ;; Open link or timestamp under point when `org-return-follows-link'
  852. ;; is non-nil.
  853. (should
  854. (org-test-with-temp-text "Link [[target<point>]] <<target>>"
  855. (let ((org-return-follows-link t)
  856. (org-link-search-must-match-exact-headline nil)) (org-return))
  857. (org-looking-at-p "<<target>>")))
  858. (should-not
  859. (org-test-with-temp-text "Link [[target<point>]] <<target>>"
  860. (let ((org-return-follows-link nil)) (org-return))
  861. (org-looking-at-p "<<target>>")))
  862. ;; Link in heading should also be opened when
  863. ;; `org-return-follows-link` is non-nil.
  864. (should
  865. (org-test-with-temp-text "* [[b][a<point>]]\n* b"
  866. (let ((org-return-follows-link t)) (org-return))
  867. (org-looking-at-p "* b")))
  868. ;; However, do not open link when point is in a table.
  869. (should
  870. (org-test-with-temp-text "| [[target<point>]] |\n| between |\n| <<target>> |"
  871. (let ((org-return-follows-link t)) (org-return))
  872. (org-looking-at-p "between")))
  873. ;; Special case: in a list, when indenting, do not break structure.
  874. (should
  875. (equal "- A\n B"
  876. (org-test-with-temp-text "- A <point>B"
  877. (org-return t)
  878. (buffer-string))))
  879. (should
  880. (equal "- A\n\n- B"
  881. (org-test-with-temp-text "- A\n<point>- B"
  882. (org-return t)
  883. (buffer-string))))
  884. ;; On tags part of a headline, add a newline below it instead of
  885. ;; breaking it.
  886. (should
  887. (equal "* H :tag:\n"
  888. (org-test-with-temp-text "* H :<point>tag:"
  889. (org-return)
  890. (buffer-string))))
  891. ;; Before headline text, add a newline below it instead of breaking
  892. ;; it.
  893. (should
  894. (equal "* TODO H :tag:\n"
  895. (org-test-with-temp-text "* <point>TODO H :tag:"
  896. (org-return)
  897. (buffer-string))))
  898. (should
  899. (equal "* TODO [#B] H :tag:\n"
  900. (org-test-with-temp-text "* TODO<point> [#B] H :tag:"
  901. (org-return)
  902. (buffer-string))))
  903. ;; At headline text, break headline text but preserve tags.
  904. (should
  905. (equal "* TODO [#B] foo :tag:\nbar"
  906. (let (org-auto-align-tags)
  907. (org-test-with-temp-text "* TODO [#B] foo<point>bar :tag:"
  908. (org-return)
  909. (buffer-string)))))
  910. ;; At bol of headline insert newline.
  911. (should
  912. (equal "\n* h"
  913. (org-test-with-temp-text "<point>* h"
  914. (org-return)
  915. (buffer-string))))
  916. ;; Refuse to leave invalid headline in buffer.
  917. (should
  918. (equal "* h\n"
  919. (org-test-with-temp-text "*<point> h"
  920. (org-return)
  921. (buffer-string)))))
  922. (ert-deftest test-org/meta-return ()
  923. "Test M-RET (`org-meta-return') specifications."
  924. ;; In a table field insert a row above.
  925. (should
  926. (org-test-with-temp-text "| a |"
  927. (forward-char)
  928. (org-meta-return)
  929. (forward-line -1)
  930. (looking-at "| |$")))
  931. ;; In a paragraph change current line into a header.
  932. (should
  933. (org-test-with-temp-text "a"
  934. (org-meta-return)
  935. (beginning-of-line)
  936. (looking-at "\* a$")))
  937. ;; In an item insert an item, in this case above.
  938. (should
  939. (org-test-with-temp-text "- a"
  940. (org-meta-return)
  941. (beginning-of-line)
  942. (looking-at "- $")))
  943. ;; In a drawer and item insert an item, in this case above.
  944. (should
  945. (org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
  946. (forward-line)
  947. (org-meta-return)
  948. (beginning-of-line)
  949. (looking-at "- $"))))
  950. (ert-deftest test-org/insert-heading ()
  951. "Test `org-insert-heading' specifications."
  952. ;; In an empty buffer, insert a new headline.
  953. (should
  954. (equal "* "
  955. (org-test-with-temp-text ""
  956. (org-insert-heading)
  957. (buffer-string))))
  958. ;; At the beginning of a line, turn it into a headline
  959. (should
  960. (equal "* P"
  961. (org-test-with-temp-text "<point>P"
  962. (org-insert-heading)
  963. (buffer-string))))
  964. ;; In the middle of a line, split the line if allowed, otherwise,
  965. ;; insert the headline at its end.
  966. (should
  967. (equal "Para\n* graph"
  968. (org-test-with-temp-text "Para<point>graph"
  969. (let ((org-M-RET-may-split-line '((default . t))))
  970. (org-insert-heading))
  971. (buffer-string))))
  972. (should
  973. (equal "Paragraph\n* "
  974. (org-test-with-temp-text "Para<point>graph"
  975. (let ((org-M-RET-may-split-line '((default . nil))))
  976. (org-insert-heading))
  977. (buffer-string))))
  978. ;; When on a list, insert an item instead, unless called with an
  979. ;; universal argument or if list is invisible. In this case, create
  980. ;; a new headline after contents.
  981. (should
  982. (equal "* H\n- item\n- "
  983. (org-test-with-temp-text "* H\n- item<point>"
  984. (let ((org-insert-heading-respect-content nil))
  985. (org-insert-heading))
  986. (buffer-string))))
  987. (should
  988. (equal "* H\n- item\n- item 2\n* "
  989. (org-test-with-temp-text "* H\n- item<point>\n- item 2"
  990. (let ((org-insert-heading-respect-content nil))
  991. (org-insert-heading '(4)))
  992. (buffer-string))))
  993. (should
  994. (equal "* H\n- item\n* "
  995. (org-test-with-temp-text "* H\n- item"
  996. (org-cycle)
  997. (goto-char (point-max))
  998. (let ((org-insert-heading-respect-content nil)) (org-insert-heading))
  999. (buffer-string))))
  1000. ;; When called with two universal arguments, insert a new headline
  1001. ;; at the end of the grandparent subtree.
  1002. (should
  1003. (equal "* H1\n** H3\n- item\n** H2\n** "
  1004. (org-test-with-temp-text "* H1\n** H3\n- item<point>\n** H2"
  1005. (let ((org-insert-heading-respect-content nil))
  1006. (org-insert-heading '(16)))
  1007. (buffer-string))))
  1008. ;; When optional TOP-LEVEL argument is non-nil, always insert
  1009. ;; a level 1 heading.
  1010. (should
  1011. (equal "* H1\n** H2\n* "
  1012. (org-test-with-temp-text "* H1\n** H2<point>"
  1013. (org-insert-heading nil nil t)
  1014. (buffer-string))))
  1015. (should
  1016. (equal "* H1\n- item\n* "
  1017. (org-test-with-temp-text "* H1\n- item<point>"
  1018. (org-insert-heading nil nil t)
  1019. (buffer-string))))
  1020. ;; Corner case: correctly insert a headline after an empty one.
  1021. (should
  1022. (equal "* \n* "
  1023. (org-test-with-temp-text "* <point>"
  1024. (org-insert-heading)
  1025. (buffer-string)))))
  1026. (ert-deftest test-org/insert-todo-heading-respect-content ()
  1027. "Test `org-insert-todo-heading-respect-content' specifications."
  1028. ;; Create a TODO heading.
  1029. (should
  1030. (org-test-with-temp-text "* H1\n Body"
  1031. (org-insert-todo-heading-respect-content)
  1032. (nth 2 (org-heading-components))))
  1033. ;; Add headline at the end of the first subtree
  1034. (should
  1035. (org-test-with-temp-text "* H1\nH1Body\n** H2\nH2Body"
  1036. (search-forward "H1Body")
  1037. (org-insert-todo-heading-respect-content)
  1038. (and (eobp) (org-at-heading-p))))
  1039. ;; In a list, do not create a new item.
  1040. (should
  1041. (org-test-with-temp-text "* H\n- an item\n- another one"
  1042. (search-forward "an ")
  1043. (org-insert-todo-heading-respect-content)
  1044. (and (eobp) (org-at-heading-p)))))
  1045. (ert-deftest test-org/clone-with-time-shift ()
  1046. "Test `org-clone-subtree-with-time-shift'."
  1047. ;; Clone non-repeating once.
  1048. (should
  1049. (equal "\
  1050. * H1\n<2015-06-21>
  1051. * H1\n<2015-06-23>
  1052. "
  1053. (org-test-with-temp-text "* H1\n<2015-06-21 Sun>"
  1054. (org-clone-subtree-with-time-shift 1 "+2d")
  1055. (replace-regexp-in-string
  1056. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1057. nil nil 1))))
  1058. ;; Clone repeating once.
  1059. (should
  1060. (equal "\
  1061. * H1\n<2015-06-21>
  1062. * H1\n<2015-06-23>
  1063. * H1\n<2015-06-25 +1w>
  1064. "
  1065. (org-test-with-temp-text "* H1\n<2015-06-21 Sun +1w>"
  1066. (org-clone-subtree-with-time-shift 1 "+2d")
  1067. (replace-regexp-in-string
  1068. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1069. nil nil 1))))
  1070. ;; Clone non-repeating zero times.
  1071. (should
  1072. (equal "\
  1073. * H1\n<2015-06-21>
  1074. "
  1075. (org-test-with-temp-text "* H1\n<2015-06-21 Sun>"
  1076. (org-clone-subtree-with-time-shift 0 "+2d")
  1077. (replace-regexp-in-string
  1078. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1079. nil nil 1))))
  1080. ;; Clone repeating "zero" times.
  1081. (should
  1082. (equal "\
  1083. * H1\n<2015-06-21>
  1084. * H1\n<2015-06-23 +1w>
  1085. "
  1086. (org-test-with-temp-text "* H1\n<2015-06-21 Sun +1w>"
  1087. (org-clone-subtree-with-time-shift 0 "+2d")
  1088. (replace-regexp-in-string
  1089. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1090. nil nil 1)))))
  1091. ;;; Fixed-Width Areas
  1092. (ert-deftest test-org/toggle-fixed-width ()
  1093. "Test `org-toggle-fixed-width' specifications."
  1094. ;; No region: Toggle on fixed-width marker in paragraphs.
  1095. (should
  1096. (equal ": A"
  1097. (org-test-with-temp-text "A"
  1098. (org-toggle-fixed-width)
  1099. (buffer-string))))
  1100. ;; No region: Toggle off fixed-width markers in fixed-width areas.
  1101. (should
  1102. (equal "A"
  1103. (org-test-with-temp-text ": A"
  1104. (org-toggle-fixed-width)
  1105. (buffer-string))))
  1106. ;; No region: Toggle on marker in blank lines after elements or just
  1107. ;; after a headline.
  1108. (should
  1109. (equal "* H\n: "
  1110. (org-test-with-temp-text "* H\n"
  1111. (forward-line)
  1112. (org-toggle-fixed-width)
  1113. (buffer-string))))
  1114. (should
  1115. (equal "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n: "
  1116. (org-test-with-temp-text "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n"
  1117. (goto-char (point-max))
  1118. (org-toggle-fixed-width)
  1119. (buffer-string))))
  1120. ;; No region: Toggle on marker in front of one line elements (e.g.,
  1121. ;; headlines, clocks)
  1122. (should
  1123. (equal ": * Headline"
  1124. (org-test-with-temp-text "* Headline"
  1125. (org-toggle-fixed-width)
  1126. (buffer-string))))
  1127. (should
  1128. (equal ": #+KEYWORD: value"
  1129. (org-test-with-temp-text "#+KEYWORD: value"
  1130. (org-toggle-fixed-width)
  1131. (buffer-string))))
  1132. ;; No region: error in other situations.
  1133. (should-error
  1134. (org-test-with-temp-text "#+BEGIN_EXAMPLE\n: A\n#+END_EXAMPLE"
  1135. (forward-line)
  1136. (org-toggle-fixed-width)
  1137. (buffer-string)))
  1138. ;; No region: Indentation is preserved.
  1139. (should
  1140. (equal "- A\n : B"
  1141. (org-test-with-temp-text "- A\n B"
  1142. (forward-line)
  1143. (org-toggle-fixed-width)
  1144. (buffer-string))))
  1145. ;; Region: If it contains only fixed-width elements and blank lines,
  1146. ;; toggle off fixed-width markup.
  1147. (should
  1148. (equal "A\n\nB"
  1149. (org-test-with-temp-text ": A\n\n: B"
  1150. (transient-mark-mode 1)
  1151. (push-mark (point) t t)
  1152. (goto-char (point-max))
  1153. (org-toggle-fixed-width)
  1154. (buffer-string))))
  1155. ;; Region: If it contains anything else, toggle on fixed-width but
  1156. ;; not on fixed-width areas.
  1157. (should
  1158. (equal ": A\n: \n: B\n: \n: C"
  1159. (org-test-with-temp-text "A\n\n: B\n\nC"
  1160. (transient-mark-mode 1)
  1161. (push-mark (point) t t)
  1162. (goto-char (point-max))
  1163. (org-toggle-fixed-width)
  1164. (buffer-string))))
  1165. ;; Region: Ignore blank lines at its end, unless it contains only
  1166. ;; such lines.
  1167. (should
  1168. (equal ": A\n\n"
  1169. (org-test-with-temp-text "A\n\n"
  1170. (transient-mark-mode 1)
  1171. (push-mark (point) t t)
  1172. (goto-char (point-max))
  1173. (org-toggle-fixed-width)
  1174. (buffer-string))))
  1175. (should
  1176. (equal ": \n: \n"
  1177. (org-test-with-temp-text "\n\n"
  1178. (transient-mark-mode 1)
  1179. (push-mark (point) t t)
  1180. (goto-char (point-max))
  1181. (org-toggle-fixed-width)
  1182. (buffer-string)))))
  1183. ;;; Headline
  1184. (ert-deftest test-org/in-commented-heading-p ()
  1185. "Test `org-in-commented-heading-p' specifications."
  1186. ;; Commented headline.
  1187. (should
  1188. (org-test-with-temp-text "* COMMENT Headline\nBody"
  1189. (goto-char (point-max))
  1190. (org-in-commented-heading-p)))
  1191. ;; Commented ancestor.
  1192. (should
  1193. (org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
  1194. (goto-char (point-max))
  1195. (org-in-commented-heading-p)))
  1196. ;; Comment keyword is case-sensitive.
  1197. (should-not
  1198. (org-test-with-temp-text "* Comment Headline\nBody"
  1199. (goto-char (point-max))
  1200. (org-in-commented-heading-p)))
  1201. ;; Keyword is standalone.
  1202. (should-not
  1203. (org-test-with-temp-text "* COMMENTHeadline\nBody"
  1204. (goto-char (point-max))
  1205. (org-in-commented-heading-p)))
  1206. ;; Optional argument.
  1207. (should-not
  1208. (org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
  1209. (goto-char (point-max))
  1210. (org-in-commented-heading-p t))))
  1211. (ert-deftest test-org/entry-blocked-p ()
  1212. ;; Check other dependencies.
  1213. (should
  1214. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** TODO two"
  1215. (let ((org-enforce-todo-dependencies t)
  1216. (org-blocker-hook
  1217. '(org-block-todo-from-children-or-siblings-or-parent)))
  1218. (org-entry-blocked-p))))
  1219. (should-not
  1220. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** DONE two"
  1221. (let ((org-enforce-todo-dependencies t)
  1222. (org-blocker-hook
  1223. '(org-block-todo-from-children-or-siblings-or-parent)))
  1224. (org-entry-blocked-p))))
  1225. ;; Entry without a TODO keyword or with a DONE keyword cannot be
  1226. ;; blocked.
  1227. (should-not
  1228. (org-test-with-temp-text "* Blocked\n** TODO one"
  1229. (let ((org-enforce-todo-dependencies t)
  1230. (org-blocker-hook
  1231. '(org-block-todo-from-children-or-siblings-or-parent)))
  1232. (org-entry-blocked-p))))
  1233. (should-not
  1234. (org-test-with-temp-text "* DONE Blocked\n** TODO one"
  1235. (let ((org-enforce-todo-dependencies t)
  1236. (org-blocker-hook
  1237. '(org-block-todo-from-children-or-siblings-or-parent)))
  1238. (org-entry-blocked-p))))
  1239. ;; Follow :ORDERED: specifications.
  1240. (should
  1241. (org-test-with-temp-text
  1242. "* H\n:PROPERTIES:\n:ORDERED: t\n:END:\n** TODO one\n** <point>TODO two"
  1243. (let ((org-enforce-todo-dependencies t)
  1244. (org-blocker-hook
  1245. '(org-block-todo-from-children-or-siblings-or-parent)))
  1246. (org-entry-blocked-p))))
  1247. (should-not
  1248. (org-test-with-temp-text
  1249. "* H\n:PROPERTIES:\n:ORDERED: t\n:END:\n** <point>TODO one\n** DONE two"
  1250. (let ((org-enforce-todo-dependencies t)
  1251. (org-blocker-hook
  1252. '(org-block-todo-from-children-or-siblings-or-parent)))
  1253. (org-entry-blocked-p)))))
  1254. ;;; Keywords
  1255. (ert-deftest test-org/set-regexps-and-options ()
  1256. "Test `org-set-regexps-and-options' specifications."
  1257. ;; TAGS keyword.
  1258. (should
  1259. (equal '(("A" . ?a) ("B") ("C"))
  1260. (org-test-with-temp-text "#+TAGS: A(a) B C"
  1261. (org-mode-restart)
  1262. org-tag-alist)))
  1263. (should
  1264. (equal '(("A") (:newline) ("B"))
  1265. (org-test-with-temp-text "#+TAGS: A\n#+TAGS: B"
  1266. (org-mode-restart)
  1267. org-tag-alist)))
  1268. (should
  1269. (equal '((:startgroup) ("A") ("B") (:endgroup) ("C"))
  1270. (org-test-with-temp-text "#+TAGS: { A B } C"
  1271. (org-mode-restart)
  1272. org-tag-alist)))
  1273. (should
  1274. (equal '((:startgroup) ("A") (:grouptags) ("B") ("C") (:endgroup))
  1275. (org-test-with-temp-text "#+TAGS: { A : B C }"
  1276. (org-mode-restart)
  1277. org-tag-alist)))
  1278. (should
  1279. (equal '(("A" "B" "C"))
  1280. (org-test-with-temp-text "#+TAGS: { A : B C }"
  1281. (org-mode-restart)
  1282. org-tag-groups-alist)))
  1283. (should
  1284. (equal '((:startgrouptag) ("A") (:grouptags) ("B") ("C") (:endgrouptag))
  1285. (org-test-with-temp-text "#+TAGS: [ A : B C ]"
  1286. (org-mode-restart)
  1287. org-tag-alist)))
  1288. (should
  1289. (equal '(("A" "B" "C"))
  1290. (org-test-with-temp-text "#+TAGS: [ A : B C ]"
  1291. (org-mode-restart)
  1292. org-tag-groups-alist)))
  1293. ;; FILETAGS keyword.
  1294. (should
  1295. (equal '("A" "B" "C")
  1296. (org-test-with-temp-text "#+FILETAGS: :A:B:C:"
  1297. (org-mode-restart)
  1298. org-file-tags)))
  1299. ;; PROPERTY keyword. Property names are case-insensitive.
  1300. (should
  1301. (equal "foo=1"
  1302. (org-test-with-temp-text "#+PROPERTY: var foo=1"
  1303. (org-mode-restart)
  1304. (cdr (assoc "var" org-file-properties)))))
  1305. (should
  1306. (equal
  1307. "foo=1 bar=2"
  1308. (org-test-with-temp-text "#+PROPERTY: var foo=1\n#+PROPERTY: var+ bar=2"
  1309. (org-mode-restart)
  1310. (cdr (assoc "var" org-file-properties)))))
  1311. (should
  1312. (equal
  1313. "foo=1 bar=2"
  1314. (org-test-with-temp-text "#+PROPERTY: var foo=1\n#+PROPERTY: VAR+ bar=2"
  1315. (org-mode-restart)
  1316. (cdr (assoc "var" org-file-properties)))))
  1317. ;; ARCHIVE keyword.
  1318. (should
  1319. (equal "%s_done::"
  1320. (org-test-with-temp-text "#+ARCHIVE: %s_done::"
  1321. (org-mode-restart)
  1322. org-archive-location)))
  1323. ;; CATEGORY keyword.
  1324. (should
  1325. (eq 'test
  1326. (org-test-with-temp-text "#+CATEGORY: test"
  1327. (org-mode-restart)
  1328. org-category)))
  1329. (should
  1330. (equal "test"
  1331. (org-test-with-temp-text "#+CATEGORY: test"
  1332. (org-mode-restart)
  1333. (cdr (assoc "CATEGORY" org-file-properties)))))
  1334. ;; COLUMNS keyword.
  1335. (should
  1336. (equal "%25ITEM %TAGS %PRIORITY %TODO"
  1337. (org-test-with-temp-text "#+COLUMNS: %25ITEM %TAGS %PRIORITY %TODO"
  1338. (org-mode-restart)
  1339. org-columns-default-format)))
  1340. ;; CONSTANTS keyword. Constants names are case sensitive.
  1341. (should
  1342. (equal '("299792458." "3.14")
  1343. (org-test-with-temp-text "#+CONSTANTS: c=299792458. pi=3.14"
  1344. (org-mode-restart)
  1345. (mapcar
  1346. (lambda (n) (cdr (assoc n org-table-formula-constants-local)))
  1347. '("c" "pi")))))
  1348. (should
  1349. (equal "3.14"
  1350. (org-test-with-temp-text "#+CONSTANTS: pi=22/7 pi=3.14"
  1351. (org-mode-restart)
  1352. (cdr (assoc "pi" org-table-formula-constants-local)))))
  1353. (should
  1354. (equal "22/7"
  1355. (org-test-with-temp-text "#+CONSTANTS: PI=22/7 pi=3.14"
  1356. (org-mode-restart)
  1357. (cdr (assoc "PI" org-table-formula-constants-local)))))
  1358. ;; LINK keyword.
  1359. (should
  1360. (equal
  1361. '("url1" "url2")
  1362. (org-test-with-temp-text "#+LINK: a url1\n#+LINK: b url2"
  1363. (org-mode-restart)
  1364. (mapcar (lambda (abbrev) (cdr (assoc abbrev org-link-abbrev-alist-local)))
  1365. '("a" "b")))))
  1366. ;; PRIORITIES keyword. Incomplete priorities sets are ignored.
  1367. (should
  1368. (equal
  1369. '(?X ?Z ?Y)
  1370. (org-test-with-temp-text "#+PRIORITIES: X Z Y"
  1371. (org-mode-restart)
  1372. (list org-highest-priority org-lowest-priority org-default-priority))))
  1373. (should
  1374. (equal
  1375. '(?A ?C ?B)
  1376. (org-test-with-temp-text "#+PRIORITIES: X Z"
  1377. (org-mode-restart)
  1378. (list org-highest-priority org-lowest-priority org-default-priority))))
  1379. ;; STARTUP keyword.
  1380. (should
  1381. (equal '(t t)
  1382. (org-test-with-temp-text "#+STARTUP: fold odd"
  1383. (org-mode-restart)
  1384. (list org-startup-folded org-odd-levels-only))))
  1385. ;; TODO keywords.
  1386. (should
  1387. (equal '(("A" "B") ("C"))
  1388. (org-test-with-temp-text "#+TODO: A B | C"
  1389. (org-mode-restart)
  1390. (list org-not-done-keywords org-done-keywords))))
  1391. (should
  1392. (equal '(("A" "C") ("B" "D"))
  1393. (org-test-with-temp-text "#+TODO: A | B\n#+TODO: C | D"
  1394. (org-mode-restart)
  1395. (list org-not-done-keywords org-done-keywords))))
  1396. (should
  1397. (equal '(("A" "B") ("C"))
  1398. (org-test-with-temp-text "#+TYP_TODO: A B | C"
  1399. (org-mode-restart)
  1400. (list org-not-done-keywords org-done-keywords))))
  1401. (should
  1402. (equal '((:startgroup) ("A" . ?a) (:endgroup))
  1403. (org-test-with-temp-text "#+TODO: A(a)"
  1404. (org-mode-restart)
  1405. org-todo-key-alist)))
  1406. (should
  1407. (equal '(("D" note nil) ("C" time nil) ("B" note time))
  1408. (org-test-with-temp-text "#+TODO: A(a) B(b@/!) | C(c!) D(d@)"
  1409. (org-mode-restart)
  1410. org-todo-log-states)))
  1411. ;; Enter SETUPFILE keyword.
  1412. (should
  1413. (equal "1"
  1414. (org-test-with-temp-text
  1415. (format "#+SETUPFILE: \"%s/examples/setupfile.org\"" org-test-dir)
  1416. (org-mode-restart)
  1417. (cdr (assoc "a" org-file-properties))))))
  1418. ;;; Links
  1419. ;;;; Coderefs
  1420. (ert-deftest test-org/coderef ()
  1421. "Test coderef links specifications."
  1422. (should
  1423. (org-test-with-temp-text "
  1424. #+BEGIN_SRC emacs-lisp
  1425. \(+ 1 1) (ref:sc)
  1426. #+END_SRC
  1427. \[[(sc)]]<point>"
  1428. (org-open-at-point)
  1429. (looking-at "(ref:sc)")))
  1430. ;; Find coderef even with alternate label format.
  1431. (should
  1432. (org-test-with-temp-text "
  1433. #+BEGIN_SRC emacs-lisp -l \"{ref:%s}\"
  1434. \(+ 1 1) {ref:sc}
  1435. #+END_SRC
  1436. \[[(sc)]]<point>"
  1437. (org-open-at-point)
  1438. (looking-at "{ref:sc}"))))
  1439. ;;;; Custom ID
  1440. (ert-deftest test-org/custom-id ()
  1441. "Test custom ID links specifications."
  1442. (should
  1443. (org-test-with-temp-text
  1444. "* H1\n:PROPERTIES:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom]]<point>"
  1445. (org-open-at-point)
  1446. (org-looking-at-p "\\* H1")))
  1447. ;; Throw an error on false positives.
  1448. (should-error
  1449. (org-test-with-temp-text
  1450. "* H1\n:DRAWER:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom]]<point>"
  1451. (org-open-at-point)
  1452. (org-looking-at-p "\\* H1"))))
  1453. ;;;; Fuzzy Links
  1454. ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
  1455. ;; a named element (#+name: text) and to headlines (* Text).
  1456. (ert-deftest test-org/fuzzy-links ()
  1457. "Test fuzzy links specifications."
  1458. ;; Fuzzy link goes in priority to a matching target.
  1459. (should
  1460. (org-test-with-temp-text
  1461. "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n<point>[[Test]]"
  1462. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  1463. (looking-at "<<Test>>")))
  1464. ;; Then fuzzy link points to an element with a given name.
  1465. (should
  1466. (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n<point>[[Test]]"
  1467. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  1468. (looking-at "#\\+NAME: Test")))
  1469. ;; A target still lead to a matching headline otherwise.
  1470. (should
  1471. (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n<point>[[Head2]]"
  1472. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  1473. (looking-at "\\* Head2")))
  1474. ;; With a leading star in link, enforce heading match.
  1475. (should
  1476. (org-test-with-temp-text "* Test\n<<Test>>\n<point>[[*Test]]"
  1477. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  1478. (looking-at "\\* Test")))
  1479. ;; With a leading star in link, enforce exact heading match, even
  1480. ;; with `org-link-search-must-match-exact-headline' set to nil.
  1481. (should-error
  1482. (org-test-with-temp-text "* Test 1\nFoo Bar\n<point>[[*Test]]"
  1483. (let ((org-link-search-must-match-exact-headline nil))
  1484. (org-open-at-point))))
  1485. ;; Handle non-nil `org-link-search-must-match-exact-headline'.
  1486. (should
  1487. (org-test-with-temp-text "* Test\nFoo Bar\n<point>[[Test]]"
  1488. (let ((org-link-search-must-match-exact-headline t)) (org-open-at-point))
  1489. (looking-at "\\* Test")))
  1490. (should
  1491. (org-test-with-temp-text "* Test\nFoo Bar\n<point>[[*Test]]"
  1492. (let ((org-link-search-must-match-exact-headline t)) (org-open-at-point))
  1493. (looking-at "\\* Test")))
  1494. ;; Heading match should not care about spaces, cookies, TODO
  1495. ;; keywords, priorities, and tags.
  1496. (should
  1497. (let ((first-line
  1498. "** TODO [#A] [/] Test [1/2] [33%] 1 \t 2 [%] :work:urgent: "))
  1499. (org-test-with-temp-text
  1500. (concat first-line "\nFoo Bar\n<point>[[*Test 1 2]]")
  1501. (let ((org-link-search-must-match-exact-headline nil)
  1502. (org-todo-regexp "TODO"))
  1503. (org-open-at-point))
  1504. (looking-at (regexp-quote first-line)))))
  1505. ;; Heading match should still be exact.
  1506. (should-error
  1507. (let ((first-line
  1508. "** TODO [#A] [/] Test [1/2] [33%] 1 \t 2 [%] :work:urgent: "))
  1509. (org-test-with-temp-text
  1510. (concat first-line "\nFoo Bar\n<point>[[*Test 1]]")
  1511. (let ((org-link-search-must-match-exact-headline nil)
  1512. (org-todo-regexp "TODO"))
  1513. (org-open-at-point)))))
  1514. ;; Heading match ignores COMMENT keyword.
  1515. (should
  1516. (org-test-with-temp-text "[[*Test]]\n* COMMENT Test"
  1517. (org-open-at-point)
  1518. (looking-at "\\* COMMENT Test")))
  1519. ;; Correctly un-hexify fuzzy links.
  1520. (should
  1521. (org-test-with-temp-text "* With space\n[[*With%20space][With space]]"
  1522. (goto-char (point-max))
  1523. (org-open-at-point)
  1524. (bobp))))
  1525. ;;;; Link Escaping
  1526. (ert-deftest test-org/org-link-escape-ascii-character ()
  1527. "Escape an ascii character."
  1528. (should
  1529. (string=
  1530. "%5B"
  1531. (org-link-escape "["))))
  1532. (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
  1533. "Escape an ascii control character."
  1534. (should
  1535. (string=
  1536. "%09"
  1537. (org-link-escape "\t"))))
  1538. (ert-deftest test-org/org-link-escape-multibyte-character ()
  1539. "Escape an unicode multibyte character."
  1540. (should
  1541. (string=
  1542. "%E2%82%AC"
  1543. (org-link-escape "€"))))
  1544. (ert-deftest test-org/org-link-escape-custom-table ()
  1545. "Escape string with custom character table."
  1546. (should
  1547. (string=
  1548. "Foo%3A%42ar%0A"
  1549. (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
  1550. (ert-deftest test-org/org-link-escape-custom-table-merge ()
  1551. "Escape string with custom table merged with default table."
  1552. (should
  1553. (string=
  1554. "%5BF%6F%6F%3A%42ar%0A%5D"
  1555. (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
  1556. (ert-deftest test-org/org-link-unescape-ascii-character ()
  1557. "Unescape an ascii character."
  1558. (should
  1559. (string=
  1560. "["
  1561. (org-link-unescape "%5B"))))
  1562. (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
  1563. "Unescpae an ascii control character."
  1564. (should
  1565. (string=
  1566. "\n"
  1567. (org-link-unescape "%0A"))))
  1568. (ert-deftest test-org/org-link-unescape-multibyte-character ()
  1569. "Unescape unicode multibyte character."
  1570. (should
  1571. (string=
  1572. "€"
  1573. (org-link-unescape "%E2%82%AC"))))
  1574. (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
  1575. "Unescape old style percent escaped character."
  1576. (should
  1577. (string=
  1578. "àâçèéêîôùû"
  1579. (decode-coding-string
  1580. (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
  1581. (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
  1582. "Escape and unescape a URL that includes an escaped char.
  1583. http://article.gmane.org/gmane.emacs.orgmode/21459/"
  1584. (should
  1585. (string=
  1586. "http://some.host.com/form?&id=blah%2Bblah25"
  1587. (org-link-unescape
  1588. (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
  1589. (ert-deftest test-org/org-link-escape-chars-browser ()
  1590. "Test of the constant `org-link-escape-chars-browser'.
  1591. See there why this test is a candidate to be removed once Org
  1592. drops support for Emacs 24.1 and 24.2."
  1593. (should
  1594. (string=
  1595. (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
  1596. "%22Release%208.2%22&idxname=emacs-orgmode")
  1597. (org-link-escape-browser ; Do not replace with `url-encode-url',
  1598. ; see docstring above.
  1599. (concat "http://lists.gnu.org/archive/cgi-bin/namazu.cgi?query="
  1600. "\"Release 8.2\"&idxname=emacs-orgmode")))))
  1601. ;;;; Open at point
  1602. (ert-deftest test-org/open-at-point-in-keyword ()
  1603. "Does `org-open-at-point' open link in a keyword line?"
  1604. (should
  1605. (org-test-with-temp-text
  1606. "#+KEYWORD: <point>[[info:emacs#Top]]"
  1607. (org-open-at-point) t)))
  1608. (ert-deftest test-org/open-at-point-in-property ()
  1609. "Does `org-open-at-point' open link in property drawer?"
  1610. (should
  1611. (org-test-with-temp-text
  1612. "* Headline
  1613. :PROPERTIES:
  1614. :URL: <point>[[info:emacs#Top]]
  1615. :END:"
  1616. (org-open-at-point) t)))
  1617. (ert-deftest test-org/open-at-point-in-comment ()
  1618. "Does `org-open-at-point' open link in a commented line?"
  1619. (should
  1620. (org-test-with-temp-text
  1621. "# <point>[[info:emacs#Top]]"
  1622. (org-open-at-point) t)))
  1623. (ert-deftest test-org/open-at-point/info ()
  1624. "Test `org-open-at-point' on info links."
  1625. (should
  1626. (org-test-with-temp-text
  1627. "<point>[[info:emacs#Top]]"
  1628. (org-open-at-point)
  1629. (and (switch-to-buffer "*info*")
  1630. (prog1
  1631. (looking-at "\nThe Emacs Editor")
  1632. (kill-buffer))))))
  1633. (ert-deftest test-org/open-at-point/inline-image ()
  1634. "Test `org-open-at-point' on nested links."
  1635. (should
  1636. (org-test-with-temp-text "[[info:org#Top][info:<point>emacs#Top]]"
  1637. (org-open-at-point)
  1638. (prog1 (with-current-buffer "*info*" (looking-at "\nOrg Mode Manual"))
  1639. (kill-buffer "*info*")))))
  1640. (ert-deftest test-org/open-at-point/radio-target ()
  1641. "Test `org-open-at-point' on radio targets."
  1642. (should
  1643. (org-test-with-temp-text "<<<target>>> <point>target"
  1644. (org-update-radio-target-regexp)
  1645. (org-open-at-point)
  1646. (eq (org-element-type (org-element-context)) 'radio-target))))
  1647. ;;; Node Properties
  1648. (ert-deftest test-org/accumulated-properties-in-drawers ()
  1649. "Ensure properties accumulate in subtree drawers."
  1650. (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
  1651. (org-babel-next-src-block)
  1652. (should (equal '(2 1) (org-babel-execute-src-block)))))
  1653. (ert-deftest test-org/custom-properties ()
  1654. "Test custom properties specifications."
  1655. ;; Standard test.
  1656. (should
  1657. (let ((org-custom-properties '("FOO")))
  1658. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:FOO: val\n:END:\n"
  1659. (org-toggle-custom-properties-visibility)
  1660. (org-invisible-p2))))
  1661. ;; Properties are case-insensitive.
  1662. (should
  1663. (let ((org-custom-properties '("FOO")))
  1664. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:foo: val\n:END:\n"
  1665. (org-toggle-custom-properties-visibility)
  1666. (org-invisible-p2))))
  1667. (should
  1668. (let ((org-custom-properties '("foo")))
  1669. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:FOO: val\n:END:\n"
  1670. (org-toggle-custom-properties-visibility)
  1671. (org-invisible-p2))))
  1672. ;; Multiple custom properties in the same drawer.
  1673. (should
  1674. (let ((org-custom-properties '("FOO" "BAR")))
  1675. (org-test-with-temp-text
  1676. "* H\n:PROPERTIES:\n<point>:FOO: val\n:P: 1\n:BAR: baz\n:END:\n"
  1677. (org-toggle-custom-properties-visibility)
  1678. (and (org-invisible-p2)
  1679. (not (progn (forward-line) (org-invisible-p2)))
  1680. (progn (forward-line) (org-invisible-p2))))))
  1681. ;; Hide custom properties with an empty value.
  1682. (should
  1683. (let ((org-custom-properties '("FOO")))
  1684. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:FOO:\n:END:\n"
  1685. (org-toggle-custom-properties-visibility)
  1686. (org-invisible-p2))))
  1687. ;; Do not hide fake properties.
  1688. (should-not
  1689. (let ((org-custom-properties '("FOO")))
  1690. (org-test-with-temp-text ":FOO: val\n"
  1691. (org-toggle-custom-properties-visibility)
  1692. (org-invisible-p2))))
  1693. (should-not
  1694. (let ((org-custom-properties '("A")))
  1695. (org-test-with-temp-text
  1696. "* H\n:PROPERTIES:\n:A: 1\n:END:\n\n:PROPERTIES:\n<point>:A: 2\n:END:"
  1697. (org-toggle-custom-properties-visibility)
  1698. (org-invisible-p2)))))
  1699. ;;; Mark Region
  1700. (ert-deftest test-org/mark-subtree ()
  1701. "Test `org-mark-subtree' specifications."
  1702. ;; Error when point is before first headline.
  1703. (should-error
  1704. (org-test-with-temp-text "Paragraph\n* Headline\nBody"
  1705. (progn (transient-mark-mode 1)
  1706. (org-mark-subtree))))
  1707. ;; Without argument, mark current subtree.
  1708. (should
  1709. (equal
  1710. '(12 32)
  1711. (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
  1712. (progn (transient-mark-mode 1)
  1713. (forward-line 2)
  1714. (org-mark-subtree)
  1715. (list (region-beginning) (region-end))))))
  1716. ;; With an argument, move ARG up.
  1717. (should
  1718. (equal
  1719. '(1 32)
  1720. (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
  1721. (progn (transient-mark-mode 1)
  1722. (forward-line 2)
  1723. (org-mark-subtree 1)
  1724. (list (region-beginning) (region-end))))))
  1725. ;; Do not get fooled by inlinetasks.
  1726. (when (featurep 'org-inlinetask)
  1727. (should
  1728. (= 1
  1729. (org-test-with-temp-text "* Headline\n*************** Task\nContents"
  1730. (progn (transient-mark-mode 1)
  1731. (forward-line 1)
  1732. (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
  1733. (region-beginning)))))))
  1734. ;;; Navigation
  1735. (ert-deftest test-org/end-of-meta-data ()
  1736. "Test `org-end-of-meta-data' specifications."
  1737. ;; Skip planning line.
  1738. (should
  1739. (org-test-with-temp-text "* Headline\nSCHEDULED: <2014-03-04 tue.>"
  1740. (org-end-of-meta-data)
  1741. (eobp)))
  1742. ;; Skip properties drawer.
  1743. (should
  1744. (org-test-with-temp-text
  1745. "* Headline\nSCHEDULED: <2014-03-04 tue.>\n:PROPERTIES:\n:A: 1\n:END:"
  1746. (org-end-of-meta-data)
  1747. (eobp)))
  1748. ;; Skip both.
  1749. (should
  1750. (org-test-with-temp-text "* Headline\n:PROPERTIES:\n:A: 1\n:END:"
  1751. (org-end-of-meta-data)
  1752. (eobp)))
  1753. ;; Nothing to skip, go to first line.
  1754. (should
  1755. (org-test-with-temp-text "* Headline\nContents"
  1756. (org-end-of-meta-data)
  1757. (looking-at "Contents")))
  1758. ;; With option argument, skip empty lines, regular drawers and
  1759. ;; clocking lines.
  1760. (should
  1761. (org-test-with-temp-text "* Headline\n\nContents"
  1762. (org-end-of-meta-data t)
  1763. (looking-at "Contents")))
  1764. (should
  1765. (org-test-with-temp-text "* Headline\nCLOCK:\nContents"
  1766. (org-end-of-meta-data t)
  1767. (looking-at "Contents")))
  1768. (should
  1769. (org-test-with-temp-text "* Headline\n:LOGBOOK:\nlogging\n:END:\nContents"
  1770. (org-end-of-meta-data t)
  1771. (looking-at "Contents")))
  1772. ;; Special case: do not skip incomplete drawers.
  1773. (should
  1774. (org-test-with-temp-text "* Headline\n:LOGBOOK:\nlogging\nContents"
  1775. (org-end-of-meta-data t)
  1776. (looking-at ":LOGBOOK:")))
  1777. ;; Special case: Be careful about consecutive headlines.
  1778. (should-not
  1779. (org-test-with-temp-text "* H1\n*H2\nContents"
  1780. (org-end-of-meta-data t)
  1781. (looking-at "Contents"))))
  1782. (ert-deftest test-org/beginning-of-line ()
  1783. "Test `org-beginning-of-line' specifications."
  1784. ;; Standard test.
  1785. (should
  1786. (org-test-with-temp-text "Some text\nSome other text"
  1787. (progn (org-beginning-of-line) (bolp))))
  1788. ;; Standard test with `visual-line-mode'.
  1789. (should-not
  1790. (org-test-with-temp-text "A long line of text\nSome other text"
  1791. (progn (visual-line-mode)
  1792. (forward-char 2)
  1793. (dotimes (i 1000) (insert "very "))
  1794. (org-beginning-of-line)
  1795. (bolp))))
  1796. ;; At an headline with special movement.
  1797. (should
  1798. (org-test-with-temp-text "* TODO Headline"
  1799. (let ((org-special-ctrl-a/e t))
  1800. (org-end-of-line)
  1801. (and (progn (org-beginning-of-line) (looking-at "Headline"))
  1802. (progn (org-beginning-of-line) (bolp))
  1803. (progn (org-beginning-of-line) (looking-at "Headline"))))))
  1804. ;; Special case: Do not error when the buffer contains only a single
  1805. ;; asterisk.
  1806. (should
  1807. (org-test-with-temp-text "*<point>"
  1808. (let ((org-special-ctrl-a/e t)) (org-beginning-of-line))))
  1809. (should
  1810. (org-test-with-temp-text "*<point>"
  1811. (let ((org-special-ctrl-a/e nil)) (org-beginning-of-line)))))
  1812. (ert-deftest test-org/end-of-line ()
  1813. "Test `org-end-of-line' specifications."
  1814. ;; Standard test.
  1815. (should
  1816. (org-test-with-temp-text "Some text\nSome other text"
  1817. (progn (org-end-of-line) (eolp))))
  1818. ;; Standard test with `visual-line-mode'.
  1819. (should-not
  1820. (org-test-with-temp-text "A long line of text\nSome other text"
  1821. (progn (visual-line-mode)
  1822. (forward-char 2)
  1823. (dotimes (i 1000) (insert "very "))
  1824. (goto-char (point-min))
  1825. (org-end-of-line)
  1826. (eolp))))
  1827. ;; At an headline with special movement.
  1828. (should
  1829. (org-test-with-temp-text "* Headline1 :tag:\n"
  1830. (let ((org-special-ctrl-a/e t))
  1831. (and (progn (org-end-of-line) (looking-at " :tag:"))
  1832. (progn (org-end-of-line) (eolp))
  1833. (progn (org-end-of-line) (looking-at " :tag:"))))))
  1834. ;; At an headline without special movement.
  1835. (should
  1836. (org-test-with-temp-text "* Headline2 :tag:\n"
  1837. (let ((org-special-ctrl-a/e nil))
  1838. (and (progn (org-end-of-line) (eolp))
  1839. (progn (org-end-of-line) (eolp))))))
  1840. ;; At an headline, with reversed movement.
  1841. (should
  1842. (org-test-with-temp-text "* Headline3 :tag:\n"
  1843. (let ((org-special-ctrl-a/e 'reversed)
  1844. (this-command last-command))
  1845. (and (progn (org-end-of-line) (eolp))
  1846. (progn (org-end-of-line) (looking-at " :tag:"))))))
  1847. ;; At a block without hidden contents.
  1848. (should
  1849. (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
  1850. (progn (org-end-of-line) (eolp))))
  1851. ;; At a block with hidden contents.
  1852. (should-not
  1853. (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
  1854. (let ((org-special-ctrl-a/e t))
  1855. (org-hide-block-toggle)
  1856. (org-end-of-line)
  1857. (eobp)))))
  1858. (ert-deftest test-org/forward-sentence ()
  1859. "Test `org-forward-sentence' specifications."
  1860. ;; At the end of a table cell, move to the end of the next one.
  1861. (should
  1862. (org-test-with-temp-text "| a<point> | b |"
  1863. (org-forward-sentence)
  1864. (looking-at " |$")))
  1865. ;; Elsewhere in a cell, move to its end.
  1866. (should
  1867. (org-test-with-temp-text "| a<point>c | b |"
  1868. (org-forward-sentence)
  1869. (looking-at " | b |$")))
  1870. ;; Otherwise, simply call `forward-sentence'.
  1871. (should
  1872. (org-test-with-temp-text "Sentence<point> 1. Sentence 2."
  1873. (org-forward-sentence)
  1874. (looking-at " Sentence 2.")))
  1875. (should
  1876. (org-test-with-temp-text "Sentence<point> 1. Sentence 2."
  1877. (org-forward-sentence)
  1878. (org-forward-sentence)
  1879. (eobp)))
  1880. ;; At the end of an element, jump to the next one, without stopping
  1881. ;; on blank lines in-between.
  1882. (should
  1883. (org-test-with-temp-text "Paragraph 1.<point>\n\nParagraph 2."
  1884. (org-forward-sentence)
  1885. (eobp))))
  1886. (ert-deftest test-org/backward-sentence ()
  1887. "Test `org-backward-sentence' specifications."
  1888. ;; At the beginning of a table cell, move to the beginning of the
  1889. ;; previous one.
  1890. (should
  1891. (org-test-with-temp-text "| a | <point>b |"
  1892. (org-backward-sentence)
  1893. (looking-at "a | b |$")))
  1894. ;; Elsewhere in a cell, move to its beginning.
  1895. (should
  1896. (org-test-with-temp-text "| a | b<point>c |"
  1897. (org-backward-sentence)
  1898. (looking-at "bc |$")))
  1899. ;; Otherwise, simply call `backward-sentence'.
  1900. (should
  1901. (org-test-with-temp-text "Sentence 1. Sentence<point> 2."
  1902. (org-backward-sentence)
  1903. (looking-at "Sentence 2.")))
  1904. (should
  1905. (org-test-with-temp-text "Sentence 1. Sentence<point> 2."
  1906. (org-backward-sentence)
  1907. (org-backward-sentence)
  1908. (bobp)))
  1909. ;; Make sure to hit the beginning of a sentence on the same line as
  1910. ;; an item.
  1911. (should
  1912. (org-test-with-temp-text "- Line 1\n line <point>2."
  1913. (org-backward-sentence)
  1914. (looking-at "Line 1"))))
  1915. (ert-deftest test-org/forward-paragraph ()
  1916. "Test `org-forward-paragraph' specifications."
  1917. ;; At end of buffer, return an error.
  1918. (should-error
  1919. (org-test-with-temp-text "Paragraph"
  1920. (goto-char (point-max))
  1921. (org-forward-paragraph)))
  1922. ;; Standard test.
  1923. (should
  1924. (org-test-with-temp-text "P1\n\nP2\n\nP3"
  1925. (org-forward-paragraph)
  1926. (looking-at "P2")))
  1927. ;; Ignore depth.
  1928. (should
  1929. (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
  1930. (org-forward-paragraph)
  1931. (looking-at "P1")))
  1932. ;; Do not enter elements with invisible contents.
  1933. (should
  1934. (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
  1935. (org-hide-block-toggle)
  1936. (org-forward-paragraph)
  1937. (looking-at "P3")))
  1938. ;; On an affiliated keyword, jump to the beginning of the element.
  1939. (should
  1940. (org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
  1941. (org-forward-paragraph)
  1942. (looking-at "Para")))
  1943. ;; On an item or a footnote definition, move to the second element
  1944. ;; inside, if any.
  1945. (should
  1946. (org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
  1947. (org-forward-paragraph)
  1948. (looking-at " Paragraph")))
  1949. (should
  1950. (org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
  1951. (org-forward-paragraph)
  1952. (looking-at "Paragraph")))
  1953. ;; On an item, or a footnote definition, when the first line is
  1954. ;; empty, move to the first item.
  1955. (should
  1956. (org-test-with-temp-text "- \n\n Paragraph\n- Item2"
  1957. (org-forward-paragraph)
  1958. (looking-at " Paragraph")))
  1959. (should
  1960. (org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
  1961. (org-forward-paragraph)
  1962. (looking-at "Paragraph")))
  1963. ;; On a table (resp. a property drawer) do not move through table
  1964. ;; rows (resp. node properties).
  1965. (should
  1966. (org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
  1967. (org-forward-paragraph)
  1968. (looking-at "Paragraph")))
  1969. (should
  1970. (org-test-with-temp-text
  1971. "* H\n<point>:PROPERTIES:\n:prop: value\n:END:\nParagraph"
  1972. (org-forward-paragraph)
  1973. (looking-at "Paragraph")))
  1974. ;; On a verse or source block, stop after blank lines.
  1975. (should
  1976. (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
  1977. (org-forward-paragraph)
  1978. (looking-at "L2")))
  1979. (should
  1980. (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
  1981. (org-forward-paragraph)
  1982. (looking-at "L2"))))
  1983. (ert-deftest test-org/backward-paragraph ()
  1984. "Test `org-backward-paragraph' specifications."
  1985. ;; Error at beginning of buffer.
  1986. (should-error
  1987. (org-test-with-temp-text "Paragraph"
  1988. (org-backward-paragraph)))
  1989. ;; Regular test.
  1990. (should
  1991. (org-test-with-temp-text "P1\n\nP2\n\nP3"
  1992. (goto-char (point-max))
  1993. (org-backward-paragraph)
  1994. (looking-at "P3")))
  1995. (should
  1996. (org-test-with-temp-text "P1\n\nP2\n\nP3"
  1997. (goto-char (point-max))
  1998. (beginning-of-line)
  1999. (org-backward-paragraph)
  2000. (looking-at "P2")))
  2001. ;; Ignore depth.
  2002. (should
  2003. (org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
  2004. (goto-char (point-max))
  2005. (beginning-of-line)
  2006. (org-backward-paragraph)
  2007. (looking-at "P2")))
  2008. ;; Ignore invisible elements.
  2009. (should
  2010. (org-test-with-temp-text "* H1\n P1\n* H2"
  2011. (org-cycle)
  2012. (goto-char (point-max))
  2013. (beginning-of-line)
  2014. (org-backward-paragraph)
  2015. (bobp)))
  2016. ;; On an affiliated keyword, jump to the first one.
  2017. (should
  2018. (org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
  2019. (search-forward "c2")
  2020. (org-backward-paragraph)
  2021. (looking-at "#\\+name")))
  2022. ;; On the second element in an item or a footnote definition, jump
  2023. ;; to item or the definition.
  2024. (should
  2025. (org-test-with-temp-text "- line1\n\n line2"
  2026. (goto-char (point-max))
  2027. (beginning-of-line)
  2028. (org-backward-paragraph)
  2029. (looking-at "- line1")))
  2030. (should
  2031. (org-test-with-temp-text "[fn:1] line1\n\n line2"
  2032. (goto-char (point-max))
  2033. (beginning-of-line)
  2034. (org-backward-paragraph)
  2035. (looking-at "\\[fn:1\\] line1")))
  2036. ;; On a table (resp. a property drawer), ignore table rows
  2037. ;; (resp. node properties).
  2038. (should
  2039. (org-test-with-temp-text "| a | b |\n| c | d |\nP1"
  2040. (goto-char (point-max))
  2041. (beginning-of-line)
  2042. (org-backward-paragraph)
  2043. (bobp)))
  2044. (should
  2045. (org-test-with-temp-text "* H\n:PROPERTIES:\n:prop: value\n:END:\n<point>P1"
  2046. (org-backward-paragraph)
  2047. (looking-at ":PROPERTIES:")))
  2048. ;; On a source or verse block, stop before blank lines.
  2049. (should
  2050. (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
  2051. (search-forward "L3")
  2052. (beginning-of-line)
  2053. (org-backward-paragraph)
  2054. (looking-at "L2")))
  2055. (should
  2056. (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
  2057. (search-forward "L3")
  2058. (beginning-of-line)
  2059. (org-backward-paragraph)
  2060. (looking-at "L2"))))
  2061. (ert-deftest test-org/forward-element ()
  2062. "Test `org-forward-element' specifications."
  2063. ;; 1. At EOB: should error.
  2064. (org-test-with-temp-text "Some text\n"
  2065. (goto-char (point-max))
  2066. (should-error (org-forward-element)))
  2067. ;; 2. Standard move: expected to ignore blank lines.
  2068. (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
  2069. (org-forward-element)
  2070. (should (looking-at (regexp-quote "Second paragraph."))))
  2071. ;; 3. Headline tests.
  2072. (org-test-with-temp-text "
  2073. * Head 1
  2074. ** Head 1.1
  2075. *** Head 1.1.1
  2076. ** Head 1.2"
  2077. ;; 3.1. At an headline beginning: move to next headline at the
  2078. ;; same level.
  2079. (goto-line 3)
  2080. (org-forward-element)
  2081. (should (looking-at (regexp-quote "** Head 1.2")))
  2082. ;; 3.2. At an headline beginning: move to parent headline if no
  2083. ;; headline at the same level.
  2084. (goto-line 3)
  2085. (org-forward-element)
  2086. (should (looking-at (regexp-quote "** Head 1.2"))))
  2087. ;; 4. Greater element tests.
  2088. (org-test-with-temp-text
  2089. "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
  2090. ;; 4.1. At a greater element: expected to skip contents.
  2091. (org-forward-element)
  2092. (should (looking-at (regexp-quote "Outside.")))
  2093. ;; 4.2. At the end of greater element contents: expected to skip
  2094. ;; to the end of the greater element.
  2095. (goto-line 2)
  2096. (org-forward-element)
  2097. (should (looking-at (regexp-quote "Outside."))))
  2098. ;; 5. List tests.
  2099. (org-test-with-temp-text "
  2100. - item1
  2101. - sub1
  2102. - sub2
  2103. - sub3
  2104. Inner paragraph.
  2105. - item2
  2106. Outside."
  2107. ;; 5.1. At list top point: expected to move to the element after
  2108. ;; the list.
  2109. (goto-line 2)
  2110. (org-forward-element)
  2111. (should (looking-at (regexp-quote "Outside.")))
  2112. ;; 5.2. Special case: at the first line of a sub-list, but not at
  2113. ;; beginning of line, move to next item.
  2114. (goto-line 2)
  2115. (forward-char)
  2116. (org-forward-element)
  2117. (should (looking-at "- item2"))
  2118. (goto-line 4)
  2119. (forward-char)
  2120. (org-forward-element)
  2121. (should (looking-at " - sub2"))
  2122. ;; 5.3 At sub-list beginning: expected to move after the sub-list.
  2123. (goto-line 4)
  2124. (org-forward-element)
  2125. (should (looking-at (regexp-quote " Inner paragraph.")))
  2126. ;; 5.4. At sub-list end: expected to move outside the sub-list.
  2127. (goto-line 8)
  2128. (org-forward-element)
  2129. (should (looking-at (regexp-quote " Inner paragraph.")))
  2130. ;; 5.5. At an item: expected to move to next item, if any.
  2131. (goto-line 6)
  2132. (org-forward-element)
  2133. (should (looking-at " - sub3"))))
  2134. (ert-deftest test-org/backward-element ()
  2135. "Test `org-backward-element' specifications."
  2136. ;; 1. Should error at BOB.
  2137. (org-test-with-temp-text " \nParagraph."
  2138. (should-error (org-backward-element)))
  2139. ;; 2. Should move at BOB when called on the first element in buffer.
  2140. (should
  2141. (org-test-with-temp-text "\n#+TITLE: test"
  2142. (progn (forward-line)
  2143. (org-backward-element)
  2144. (bobp))))
  2145. ;; 3. Not at the beginning of an element: move at its beginning.
  2146. (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
  2147. (goto-line 3)
  2148. (end-of-line)
  2149. (org-backward-element)
  2150. (should (looking-at (regexp-quote "Paragraph2."))))
  2151. ;; 4. Headline tests.
  2152. (org-test-with-temp-text "
  2153. * Head 1
  2154. ** Head 1.1
  2155. *** Head 1.1.1
  2156. ** Head 1.2"
  2157. ;; 4.1. At an headline beginning: move to previous headline at the
  2158. ;; same level.
  2159. (goto-line 5)
  2160. (org-backward-element)
  2161. (should (looking-at (regexp-quote "** Head 1.1")))
  2162. ;; 4.2. At an headline beginning: move to parent headline if no
  2163. ;; headline at the same level.
  2164. (goto-line 3)
  2165. (org-backward-element)
  2166. (should (looking-at (regexp-quote "* Head 1")))
  2167. ;; 4.3. At the first top-level headline: should error.
  2168. (goto-line 2)
  2169. (should-error (org-backward-element)))
  2170. ;; 5. At beginning of first element inside a greater element:
  2171. ;; expected to move to greater element's beginning.
  2172. (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
  2173. (goto-line 3)
  2174. (org-backward-element)
  2175. (should (looking-at "#\\+BEGIN_CENTER")))
  2176. ;; 6. At the beginning of the first element in a section: should
  2177. ;; move back to headline, if any.
  2178. (should
  2179. (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
  2180. (progn (goto-char (point-max))
  2181. (beginning-of-line)
  2182. (org-backward-element)
  2183. (org-at-heading-p))))
  2184. ;; 7. List tests.
  2185. (org-test-with-temp-text "
  2186. - item1
  2187. - sub1
  2188. - sub2
  2189. - sub3
  2190. Inner paragraph.
  2191. - item2
  2192. Outside."
  2193. ;; 7.1. At beginning of sub-list: expected to move to the
  2194. ;; paragraph before it.
  2195. (goto-line 4)
  2196. (org-backward-element)
  2197. (should (looking-at "item1"))
  2198. ;; 7.2. At an item in a list: expected to move at previous item.
  2199. (goto-line 8)
  2200. (org-backward-element)
  2201. (should (looking-at " - sub2"))
  2202. (goto-line 12)
  2203. (org-backward-element)
  2204. (should (looking-at "- item1"))
  2205. ;; 7.3. At end of list/sub-list: expected to move to list/sub-list
  2206. ;; beginning.
  2207. (goto-line 10)
  2208. (org-backward-element)
  2209. (should (looking-at " - sub1"))
  2210. (goto-line 15)
  2211. (org-backward-element)
  2212. (should (looking-at "- item1"))
  2213. ;; 7.4. At blank-lines before list end: expected to move to top
  2214. ;; item.
  2215. (goto-line 14)
  2216. (org-backward-element)
  2217. (should (looking-at "- item1"))))
  2218. (ert-deftest test-org/up-element ()
  2219. "Test `org-up-element' specifications."
  2220. ;; 1. At BOB or with no surrounding element: should error.
  2221. (org-test-with-temp-text "Paragraph."
  2222. (should-error (org-up-element)))
  2223. (org-test-with-temp-text "* Head1\n* Head2"
  2224. (goto-line 2)
  2225. (should-error (org-up-element)))
  2226. (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
  2227. (goto-line 3)
  2228. (should-error (org-up-element)))
  2229. ;; 2. At an headline: move to parent headline.
  2230. (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
  2231. (goto-line 3)
  2232. (org-up-element)
  2233. (should (looking-at "\\* Head1")))
  2234. ;; 3. Inside a greater element: move to greater element beginning.
  2235. (org-test-with-temp-text
  2236. "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
  2237. (goto-line 3)
  2238. (org-up-element)
  2239. (should (looking-at "#\\+BEGIN_CENTER")))
  2240. ;; 4. List tests.
  2241. (org-test-with-temp-text "* Top
  2242. - item1
  2243. - sub1
  2244. - sub2
  2245. Paragraph within sub2.
  2246. - item2"
  2247. ;; 4.1. Within an item: move to the item beginning.
  2248. (goto-line 8)
  2249. (org-up-element)
  2250. (should (looking-at " - sub2"))
  2251. ;; 4.2. At an item in a sub-list: move to parent item.
  2252. (goto-line 4)
  2253. (org-up-element)
  2254. (should (looking-at "- item1"))
  2255. ;; 4.3. At an item in top list: move to beginning of whole list.
  2256. (goto-line 10)
  2257. (org-up-element)
  2258. (should (looking-at "- item1"))
  2259. ;; 4.4. Special case. At very top point: should move to parent of
  2260. ;; list.
  2261. (goto-line 2)
  2262. (org-up-element)
  2263. (should (looking-at "\\* Top"))))
  2264. (ert-deftest test-org/down-element ()
  2265. "Test `org-down-element' specifications."
  2266. ;; Error when the element hasn't got a recursive type.
  2267. (org-test-with-temp-text "Paragraph."
  2268. (should-error (org-down-element)))
  2269. ;; Error when the element has no contents
  2270. (org-test-with-temp-text "* Headline"
  2271. (should-error (org-down-element)))
  2272. ;; When at a plain-list, move to first item.
  2273. (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
  2274. (goto-line 2)
  2275. (org-down-element)
  2276. (should (looking-at " - Item 1.1")))
  2277. (org-test-with-temp-text "#+NAME: list\n- Item 1"
  2278. (org-down-element)
  2279. (should (looking-at " Item 1")))
  2280. ;; When at a table, move to first row
  2281. (org-test-with-temp-text "#+NAME: table\n| a | b |"
  2282. (org-down-element)
  2283. (should (looking-at " a | b |")))
  2284. ;; Otherwise, move inside the greater element.
  2285. (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
  2286. (org-down-element)
  2287. (should (looking-at "Paragraph"))))
  2288. (ert-deftest test-org/drag-element-backward ()
  2289. "Test `org-drag-element-backward' specifications."
  2290. ;; Standard test.
  2291. (should
  2292. (equal
  2293. "#+key2: val2\n#+key1: val1\n#+key3: val3"
  2294. (org-test-with-temp-text "#+key1: val1\n<point>#+key2: val2\n#+key3: val3"
  2295. (org-drag-element-backward)
  2296. (buffer-string))))
  2297. (should
  2298. (equal
  2299. "#+BEGIN_CENTER\n#+B: 2\n#+A: 1\n#+END_CENTER"
  2300. (org-test-with-temp-text
  2301. "#+BEGIN_CENTER\n#+A: 1\n<point>#+B: 2\n#+END_CENTER"
  2302. (org-drag-element-backward)
  2303. (buffer-string))))
  2304. ;; Preserve blank lines.
  2305. (should
  2306. (equal "Paragraph 2\n\n\nPara1\n\nPara3"
  2307. (org-test-with-temp-text "Para1\n\n\n<point>Paragraph 2\n\nPara3"
  2308. (org-drag-element-backward)
  2309. (buffer-string))))
  2310. ;; Preserve column.
  2311. (should
  2312. (org-test-with-temp-text "#+key1: v\n#+key<point>2: v\n#+key3: v"
  2313. (org-drag-element-backward)
  2314. (org-looking-at-p "2")))
  2315. ;; Error when trying to move first element of buffer.
  2316. (should-error
  2317. (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
  2318. (org-drag-element-backward)))
  2319. ;; Error when trying to swap nested elements.
  2320. (should-error
  2321. (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
  2322. (forward-line)
  2323. (org-drag-element-backward)))
  2324. ;; Error when trying to swap an headline element and a non-headline
  2325. ;; element.
  2326. (should-error
  2327. (org-test-with-temp-text "Test.\n* Head 1"
  2328. (forward-line)
  2329. (org-drag-element-backward)))
  2330. ;; Preserve visibility of elements and their contents.
  2331. (should
  2332. (equal '((63 . 82) (26 . 48))
  2333. (org-test-with-temp-text "
  2334. #+BEGIN_CENTER
  2335. Text.
  2336. #+END_CENTER
  2337. - item 1
  2338. #+BEGIN_QUOTE
  2339. Text.
  2340. #+END_QUOTE"
  2341. (while (search-forward "BEGIN_" nil t) (org-cycle))
  2342. (search-backward "- item 1")
  2343. (org-drag-element-backward)
  2344. (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
  2345. (overlays-in (point-min) (point-max)))))))
  2346. (ert-deftest test-org/drag-element-forward ()
  2347. "Test `org-drag-element-forward' specifications."
  2348. ;; 1. Error when trying to move first element of buffer.
  2349. (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
  2350. (goto-line 3)
  2351. (should-error (org-drag-element-forward)))
  2352. ;; 2. Error when trying to swap nested elements.
  2353. (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
  2354. (forward-line)
  2355. (should-error (org-drag-element-forward)))
  2356. ;; 3. Error when trying to swap a non-headline element and an
  2357. ;; headline.
  2358. (org-test-with-temp-text "Test.\n* Head 1"
  2359. (should-error (org-drag-element-forward)))
  2360. ;; 4. Otherwise, swap elements, preserving column and blank lines
  2361. ;; between elements.
  2362. (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
  2363. (search-forward "graph")
  2364. (org-drag-element-forward)
  2365. (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
  2366. (should (looking-at " 1")))
  2367. ;; 5. Preserve visibility of elements and their contents.
  2368. (org-test-with-temp-text "
  2369. #+BEGIN_CENTER
  2370. Text.
  2371. #+END_CENTER
  2372. - item 1
  2373. #+BEGIN_QUOTE
  2374. Text.
  2375. #+END_QUOTE"
  2376. (while (search-forward "BEGIN_" nil t) (org-cycle))
  2377. (search-backward "#+BEGIN_CENTER")
  2378. (org-drag-element-forward)
  2379. (should
  2380. (equal
  2381. '((63 . 82) (26 . 48))
  2382. (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
  2383. (overlays-in (point-min) (point-max)))))))
  2384. (ert-deftest test-org/next-block ()
  2385. "Test `org-next-block' specifications."
  2386. ;; Regular test.
  2387. (should
  2388. (org-test-with-temp-text "Paragraph\n#+BEGIN_CENTER\ncontents\n#+END_CENTER"
  2389. (org-next-block 1)
  2390. (looking-at "#\\+BEGIN_CENTER")))
  2391. ;; Ignore case.
  2392. (should
  2393. (org-test-with-temp-text "Paragraph\n#+begin_center\ncontents\n#+end_center"
  2394. (let ((case-fold-search nil))
  2395. (org-next-block 1)
  2396. (looking-at "#\\+begin_center"))))
  2397. ;; Ignore current line.
  2398. (should
  2399. (org-test-with-temp-text
  2400. "#+BEGIN_QUOTE\n#+END_QUOTE\n#+BEGIN_CENTER\n#+END_CENTER"
  2401. (org-next-block 1)
  2402. (looking-at "#\\+BEGIN_CENTER")))
  2403. ;; Throw an error when no block is found.
  2404. (should-error
  2405. (org-test-with-temp-text "Paragraph"
  2406. (org-next-block 1)))
  2407. ;; With an argument, skip many blocks at once.
  2408. (should
  2409. (org-test-with-temp-text
  2410. "Start\n#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE"
  2411. (org-next-block 2)
  2412. (looking-at "#\\+BEGIN_QUOTE")))
  2413. ;; With optional argument BLOCK-REGEXP, filter matched blocks.
  2414. (should
  2415. (org-test-with-temp-text
  2416. "Start\n#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE"
  2417. (org-next-block 1 nil "^[ \t]*#\\+BEGIN_QUOTE")
  2418. (looking-at "#\\+BEGIN_QUOTE")))
  2419. ;; Optional argument is also case-insensitive.
  2420. (should
  2421. (org-test-with-temp-text
  2422. "Start\n#+BEGIN_CENTER\nA\n#+END_CENTER\n#+begin_quote\nB\n#+end_quote"
  2423. (let ((case-fold-search nil))
  2424. (org-next-block 1 nil "^[ \t]*#\\+BEGIN_QUOTE")
  2425. (looking-at "#\\+begin_quote")))))
  2426. (ert-deftest test-org/previous-block ()
  2427. "Test `org-previous-block' specifications."
  2428. ;; Regular test.
  2429. (should
  2430. (org-test-with-temp-text "#+BEGIN_CENTER\ncontents\n#+END_CENTER\n<point>"
  2431. (org-previous-block 1)
  2432. (looking-at "#\\+BEGIN_CENTER")))
  2433. ;; Ignore case.
  2434. (should
  2435. (org-test-with-temp-text "#+begin_center\ncontents\n#+end_center\n<point>"
  2436. (let ((case-fold-search nil))
  2437. (org-previous-block 1)
  2438. (looking-at "#\\+begin_center"))))
  2439. ;; Ignore current line.
  2440. (should
  2441. (org-test-with-temp-text
  2442. "#+BEGIN_QUOTE\n#+END_QUOTE\n#+BEGIN_CENTER<point>\n#+END_CENTER"
  2443. (org-previous-block 1)
  2444. (looking-at "#\\+BEGIN_QUOTE")))
  2445. ;; Throw an error when no block is found.
  2446. (should-error
  2447. (org-test-with-temp-text "Paragraph<point>"
  2448. (org-previous-block 1)))
  2449. ;; With an argument, skip many blocks at once.
  2450. (should
  2451. (org-test-with-temp-text
  2452. "#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE\n<point>"
  2453. (org-previous-block 2)
  2454. (looking-at "#\\+BEGIN_CENTER")))
  2455. ;; With optional argument BLOCK-REGEXP, filter matched blocks.
  2456. (should
  2457. (org-test-with-temp-text
  2458. "#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE\n<point>"
  2459. (org-previous-block 1 "^[ \t]*#\\+BEGIN_QUOTE")
  2460. (looking-at "#\\+BEGIN_QUOTE")))
  2461. ;; Optional argument is also case-insensitive.
  2462. (should
  2463. (org-test-with-temp-text
  2464. "#+BEGIN_CENTER\nA\n#+END_CENTER\n#+begin_quote\nB\n#+end_quote\n<point>"
  2465. (let ((case-fold-search nil))
  2466. (org-next-block 1 "^[ \t]*#\\+BEGIN_QUOTE")
  2467. (looking-at "#\\+begin_quote")))))
  2468. ;;; Outline structure
  2469. (ert-deftest test-org/demote ()
  2470. "Test `org-demote' specifications."
  2471. ;; Add correct number of stars according to `org-odd-levels-only'.
  2472. (should
  2473. (= 2
  2474. (org-test-with-temp-text "* H"
  2475. (let ((org-odd-levels-only nil)) (org-demote))
  2476. (org-current-level))))
  2477. (should
  2478. (= 3
  2479. (org-test-with-temp-text "* H"
  2480. (let ((org-odd-levels-only t)) (org-demote))
  2481. (org-current-level))))
  2482. ;; When `org-auto-align-tags' is non-nil, move tags accordingly.
  2483. (should
  2484. (org-test-with-temp-text "* H :tag:"
  2485. (let ((org-tags-column 10)
  2486. (org-auto-align-tags t)
  2487. (org-odd-levels-only nil))
  2488. (org-demote))
  2489. (org-move-to-column 10)
  2490. (org-looking-at-p ":tag:$")))
  2491. (should-not
  2492. (org-test-with-temp-text "* H :tag:"
  2493. (let ((org-tags-column 10)
  2494. (org-auto-align-tags nil)
  2495. (org-odd-levels-only nil))
  2496. (org-demote))
  2497. (org-move-to-column 10)
  2498. (org-looking-at-p ":tag:$")))
  2499. ;; When `org-adapt-indentation' is non-nil, always indent planning
  2500. ;; info and property drawers accordingly.
  2501. (should
  2502. (= 3
  2503. (org-test-with-temp-text "* H\n SCHEDULED: <2014-03-04 tue.>"
  2504. (let ((org-odd-levels-only nil)
  2505. (org-adapt-indentation t))
  2506. (org-demote))
  2507. (forward-line)
  2508. (org-get-indentation))))
  2509. (should
  2510. (= 3
  2511. (org-test-with-temp-text "* H\n :PROPERTIES:\n :FOO: Bar\n :END:"
  2512. (let ((org-odd-levels-only nil)
  2513. (org-adapt-indentation t))
  2514. (org-demote))
  2515. (forward-line)
  2516. (org-get-indentation))))
  2517. (should-not
  2518. (= 3
  2519. (org-test-with-temp-text "* H\n SCHEDULED: <2014-03-04 tue.>"
  2520. (let ((org-odd-levels-only nil)
  2521. (org-adapt-indentation nil))
  2522. (org-demote))
  2523. (forward-line)
  2524. (org-get-indentation))))
  2525. ;; When `org-adapt-indentation' is non-nil, shift all lines in
  2526. ;; section accordingly. Ignore, however, footnote definitions and
  2527. ;; inlinetasks boundaries.
  2528. (should
  2529. (= 3
  2530. (org-test-with-temp-text "* H\n Paragraph"
  2531. (let ((org-odd-levels-only nil)
  2532. (org-adapt-indentation t))
  2533. (org-demote))
  2534. (forward-line)
  2535. (org-get-indentation))))
  2536. (should
  2537. (= 2
  2538. (org-test-with-temp-text "* H\n Paragraph"
  2539. (let ((org-odd-levels-only nil)
  2540. (org-adapt-indentation nil))
  2541. (org-demote))
  2542. (forward-line)
  2543. (org-get-indentation))))
  2544. (should
  2545. (zerop
  2546. (org-test-with-temp-text "* H\n[fn:1] def line 1\ndef line 2"
  2547. (let ((org-odd-levels-only nil)
  2548. (org-adapt-indentation t))
  2549. (org-demote))
  2550. (goto-char (point-max))
  2551. (org-get-indentation))))
  2552. (should
  2553. (= 3
  2554. (org-test-with-temp-text "* H\n[fn:1] Def.\n\n\n After def."
  2555. (let ((org-odd-levels-only nil)
  2556. (org-adapt-indentation t))
  2557. (org-demote))
  2558. (goto-char (point-max))
  2559. (org-get-indentation))))
  2560. (when (featurep 'org-inlinetask)
  2561. (should
  2562. (zerop
  2563. (let ((org-inlinetask-min-level 5)
  2564. (org-adapt-indentation t))
  2565. (org-test-with-temp-text "* H\n***** I\n***** END"
  2566. (org-demote)
  2567. (forward-line)
  2568. (org-get-indentation))))))
  2569. (when (featurep 'org-inlinetask)
  2570. (should
  2571. (= 3
  2572. (let ((org-inlinetask-min-level 5)
  2573. (org-adapt-indentation t))
  2574. (org-test-with-temp-text "* H\n***** I\n Contents\n***** END"
  2575. (org-demote)
  2576. (forward-line 2)
  2577. (org-get-indentation))))))
  2578. ;; Ignore contents of source blocks or example blocks when
  2579. ;; indentation should be preserved (through
  2580. ;; `org-src-preserve-indentation' or "-i" flag).
  2581. (should-not
  2582. (zerop
  2583. (org-test-with-temp-text "* H\n#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
  2584. (let ((org-adapt-indentation t)
  2585. (org-src-preserve-indentation nil))
  2586. (org-demote))
  2587. (forward-line 2)
  2588. (org-get-indentation))))
  2589. (should
  2590. (zerop
  2591. (org-test-with-temp-text "* H\n#+BEGIN_EXAMPLE\n(+ 1 1)\n#+END_EXAMPLE"
  2592. (let ((org-adapt-indentation t)
  2593. (org-src-preserve-indentation t))
  2594. (org-demote))
  2595. (forward-line 2)
  2596. (org-get-indentation))))
  2597. (should
  2598. (zerop
  2599. (org-test-with-temp-text "* H\n#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
  2600. (let ((org-adapt-indentation t)
  2601. (org-src-preserve-indentation t))
  2602. (org-demote))
  2603. (forward-line 2)
  2604. (org-get-indentation))))
  2605. (should
  2606. (zerop
  2607. (org-test-with-temp-text
  2608. "* H\n#+BEGIN_SRC emacs-lisp -i\n(+ 1 1)\n#+END_SRC"
  2609. (let ((org-adapt-indentation t)
  2610. (org-src-preserve-indentation nil))
  2611. (org-demote))
  2612. (forward-line 2)
  2613. (org-get-indentation)))))
  2614. (ert-deftest test-org/promote ()
  2615. "Test `org-promote' specifications."
  2616. ;; Return an error if headline is to be promoted to level 0, unless
  2617. ;; `org-allow-promoting-top-level-subtree' is non-nil, in which case
  2618. ;; headline becomes a comment.
  2619. (should-error
  2620. (org-test-with-temp-text "* H"
  2621. (let ((org-allow-promoting-top-level-subtree nil)) (org-promote))))
  2622. (should
  2623. (equal "# H"
  2624. (org-test-with-temp-text "* H"
  2625. (let ((org-allow-promoting-top-level-subtree t)) (org-promote))
  2626. (buffer-string))))
  2627. ;; Remove correct number of stars according to
  2628. ;; `org-odd-levels-only'.
  2629. (should
  2630. (= 2
  2631. (org-test-with-temp-text "*** H"
  2632. (let ((org-odd-levels-only nil)) (org-promote))
  2633. (org-current-level))))
  2634. (should
  2635. (= 1
  2636. (org-test-with-temp-text "*** H"
  2637. (let ((org-odd-levels-only t)) (org-promote))
  2638. (org-current-level))))
  2639. ;; When `org-auto-align-tags' is non-nil, move tags accordingly.
  2640. (should
  2641. (org-test-with-temp-text "** H :tag:"
  2642. (let ((org-tags-column 10)
  2643. (org-auto-align-tags t)
  2644. (org-odd-levels-only nil))
  2645. (org-promote))
  2646. (org-move-to-column 10)
  2647. (org-looking-at-p ":tag:$")))
  2648. (should-not
  2649. (org-test-with-temp-text "** H :tag:"
  2650. (let ((org-tags-column 10)
  2651. (org-auto-align-tags nil)
  2652. (org-odd-levels-only nil))
  2653. (org-promote))
  2654. (org-move-to-column 10)
  2655. (org-looking-at-p ":tag:$")))
  2656. ;; When `org-adapt-indentation' is non-nil, always indent planning
  2657. ;; info and property drawers.
  2658. (should
  2659. (= 2
  2660. (org-test-with-temp-text "** H\n SCHEDULED: <2014-03-04 tue.>"
  2661. (let ((org-odd-levels-only nil)
  2662. (org-adapt-indentation t))
  2663. (org-promote))
  2664. (forward-line)
  2665. (org-get-indentation))))
  2666. (should
  2667. (= 2
  2668. (org-test-with-temp-text "** H\n :PROPERTIES:\n :FOO: Bar\n :END:"
  2669. (let ((org-odd-levels-only nil)
  2670. (org-adapt-indentation t))
  2671. (org-promote))
  2672. (forward-line)
  2673. (org-get-indentation))))
  2674. (should-not
  2675. (= 2
  2676. (org-test-with-temp-text "** H\n SCHEDULED: <2014-03-04 tue.>"
  2677. (let ((org-odd-levels-only nil)
  2678. (org-adapt-indentation nil))
  2679. (org-promote))
  2680. (forward-line)
  2681. (org-get-indentation))))
  2682. ;; When `org-adapt-indentation' is non-nil, shift all lines in
  2683. ;; section accordingly. Ignore, however, footnote definitions and
  2684. ;; inlinetasks boundaries.
  2685. (should
  2686. (= 2
  2687. (org-test-with-temp-text "** H\n Paragraph"
  2688. (let ((org-odd-levels-only nil)
  2689. (org-adapt-indentation t))
  2690. (org-promote))
  2691. (forward-line)
  2692. (org-get-indentation))))
  2693. (should-not
  2694. (= 2
  2695. (org-test-with-temp-text "** H\n Paragraph"
  2696. (let ((org-odd-levels-only nil)
  2697. (org-adapt-indentation nil))
  2698. (org-promote))
  2699. (forward-line)
  2700. (org-get-indentation))))
  2701. (should
  2702. (= 2
  2703. (org-test-with-temp-text "** H\n Paragraph\n[fn:1] line1\nline2"
  2704. (let ((org-odd-levels-only nil)
  2705. (org-adapt-indentation t))
  2706. (org-promote))
  2707. (forward-line)
  2708. (org-get-indentation))))
  2709. (when (featurep 'org-inlinetask)
  2710. (should
  2711. (zerop
  2712. (let ((org-inlinetask-min-level 5)
  2713. (org-adapt-indentation t))
  2714. (org-test-with-temp-text "** H\n***** I\n***** END"
  2715. (org-promote)
  2716. (forward-line)
  2717. (org-get-indentation))))))
  2718. (when (featurep 'org-inlinetask)
  2719. (should
  2720. (= 2
  2721. (let ((org-inlinetask-min-level 5)
  2722. (org-adapt-indentation t))
  2723. (org-test-with-temp-text "** H\n***** I\n Contents\n***** END"
  2724. (org-promote)
  2725. (forward-line 2)
  2726. (org-get-indentation))))))
  2727. ;; Give up shifting if it would break document's structure
  2728. ;; otherwise.
  2729. (should
  2730. (= 3
  2731. (org-test-with-temp-text "** H\n Paragraph\n [fn:1] Def."
  2732. (let ((org-odd-levels-only nil)
  2733. (org-adapt-indentation t))
  2734. (org-promote))
  2735. (forward-line)
  2736. (org-get-indentation))))
  2737. (should
  2738. (= 3
  2739. (org-test-with-temp-text "** H\n Paragraph\n * list."
  2740. (let ((org-odd-levels-only nil)
  2741. (org-adapt-indentation t))
  2742. (org-promote))
  2743. (forward-line)
  2744. (org-get-indentation))))
  2745. ;; Ignore contents of source blocks or example blocks when
  2746. ;; indentation should be preserved (through
  2747. ;; `org-src-preserve-indentation' or "-i" flag).
  2748. (should-not
  2749. (zerop
  2750. (org-test-with-temp-text
  2751. "** H\n #+BEGIN_SRC emacs-lisp\n(+ 1 1)\n #+END_SRC"
  2752. (let ((org-adapt-indentation t)
  2753. (org-src-preserve-indentation nil)
  2754. (org-odd-levels-only nil))
  2755. (org-promote))
  2756. (forward-line)
  2757. (org-get-indentation))))
  2758. (should
  2759. (zerop
  2760. (org-test-with-temp-text
  2761. "** H\n #+BEGIN_EXAMPLE\nContents\n #+END_EXAMPLE"
  2762. (let ((org-adapt-indentation t)
  2763. (org-src-preserve-indentation t)
  2764. (org-odd-levels-only nil))
  2765. (org-promote))
  2766. (forward-line)
  2767. (org-get-indentation))))
  2768. (should
  2769. (zerop
  2770. (org-test-with-temp-text
  2771. "** H\n #+BEGIN_SRC emacs-lisp\n(+ 1 1)\n #+END_SRC"
  2772. (let ((org-adapt-indentation t)
  2773. (org-src-preserve-indentation t)
  2774. (org-odd-levels-only nil))
  2775. (org-promote))
  2776. (forward-line)
  2777. (org-get-indentation))))
  2778. (should
  2779. (zerop
  2780. (org-test-with-temp-text
  2781. "** H\n #+BEGIN_SRC emacs-lisp -i\n(+ 1 1)\n #+END_SRC"
  2782. (let ((org-adapt-indentation t)
  2783. (org-src-preserve-indentation nil)
  2784. (org-odd-levels-only nil))
  2785. (org-promote))
  2786. (forward-line)
  2787. (org-get-indentation)))))
  2788. ;;; Planning
  2789. (ert-deftest test-org/at-planning-p ()
  2790. "Test `org-at-planning-p' specifications."
  2791. ;; Regular test.
  2792. (should
  2793. (org-test-with-temp-text "* Headline\n<point>DEADLINE: <2014-03-04 tue.>"
  2794. (org-at-planning-p)))
  2795. (should-not
  2796. (org-test-with-temp-text "DEADLINE: <2014-03-04 tue.>"
  2797. (org-at-planning-p)))
  2798. ;; Correctly find planning attached to inlinetasks.
  2799. (when (featurep 'org-inlinetask)
  2800. (should
  2801. (org-test-with-temp-text
  2802. "*** Inlinetask\n<point>DEADLINE: <2014-03-04 tue.>\n*** END"
  2803. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))
  2804. (should-not
  2805. (org-test-with-temp-text
  2806. "*** Inlinetask\n<point>DEADLINE: <2014-03-04 tue.>"
  2807. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))
  2808. (should-not
  2809. (org-test-with-temp-text
  2810. "* Headline\n*** Inlinetask\n<point>DEADLINE: <2014-03-04 tue.>"
  2811. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))
  2812. (should-not
  2813. (org-test-with-temp-text
  2814. "* Headline\n*** Inlinetask\n*** END\n<point>DEADLINE: <2014-03-04 tue.>"
  2815. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))))
  2816. (ert-deftest test-org/add-planning-info ()
  2817. "Test `org-add-planning-info'."
  2818. ;; Create deadline when `org-adapt-indentation' is non-nil.
  2819. (should
  2820. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  2821. (org-test-with-temp-text "* H\nParagraph<point>"
  2822. (let ((org-adapt-indentation t))
  2823. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  2824. (replace-regexp-in-string
  2825. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2826. nil nil 1))))
  2827. ;; Create deadline when `org-adapt-indentation' is nil.
  2828. (should
  2829. (equal "* H\nDEADLINE: <2015-06-25>\nParagraph"
  2830. (org-test-with-temp-text "* H\nParagraph<point>"
  2831. (let ((org-adapt-indentation nil))
  2832. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  2833. (replace-regexp-in-string
  2834. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2835. nil nil 1))))
  2836. ;; Update deadline when `org-adapt-indentation' is non-nil.
  2837. (should
  2838. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  2839. (org-test-with-temp-text "\
  2840. * H
  2841. DEADLINE: <2015-06-24 Wed>
  2842. Paragraph<point>"
  2843. (let ((org-adapt-indentation t))
  2844. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  2845. (replace-regexp-in-string
  2846. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2847. nil nil 1))))
  2848. ;; Update deadline when `org-adapt-indentation' is nil.
  2849. (should
  2850. (equal "* H\nDEADLINE: <2015-06-25>\nParagraph"
  2851. (org-test-with-temp-text "\
  2852. * H
  2853. DEADLINE: <2015-06-24 Wed>
  2854. Paragraph<point>"
  2855. (let ((org-adapt-indentation nil))
  2856. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  2857. (replace-regexp-in-string
  2858. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2859. nil nil 1))))
  2860. ;; Schedule when `org-adapt-indentation' is non-nil.
  2861. (should
  2862. (equal "* H\n SCHEDULED: <2015-06-25>\nParagraph"
  2863. (org-test-with-temp-text "* H\nParagraph<point>"
  2864. (let ((org-adapt-indentation t))
  2865. (org-add-planning-info 'scheduled "<2015-06-25 Thu>"))
  2866. (replace-regexp-in-string
  2867. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2868. nil nil 1))))
  2869. ;; Schedule when `org-adapt-indentation' is nil.
  2870. (should
  2871. (equal "* H\nSCHEDULED: <2015-06-25>\nParagraph"
  2872. (org-test-with-temp-text "* H\nParagraph<point>"
  2873. (let ((org-adapt-indentation nil))
  2874. (org-add-planning-info 'scheduled "<2015-06-25 Thu>"))
  2875. (replace-regexp-in-string
  2876. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2877. nil nil 1))))
  2878. ;; Add deadline when scheduled.
  2879. (should
  2880. (equal "\
  2881. * H
  2882. DEADLINE: <2015-06-25> SCHEDULED: <2015-06-24>
  2883. Paragraph"
  2884. (org-test-with-temp-text "\
  2885. * H
  2886. SCHEDULED: <2015-06-24 Wed>
  2887. Paragraph<point>"
  2888. (let ((org-adapt-indentation t))
  2889. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  2890. (replace-regexp-in-string
  2891. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2892. nil nil 1))))
  2893. ;; Remove middle entry.
  2894. (should
  2895. (equal "\
  2896. * H
  2897. CLOSED: [2015-06-24] SCHEDULED: <2015-06-24>
  2898. Paragraph"
  2899. (org-test-with-temp-text "\
  2900. * H
  2901. CLOSED: [2015-06-24 Wed] DEADLINE: <2015-06-25 Thu> SCHEDULED: <2015-06-24 Wed>
  2902. Paragraph<point>"
  2903. (let ((org-adapt-indentation t))
  2904. (org-add-planning-info nil nil 'deadline))
  2905. (replace-regexp-in-string
  2906. "\\( [.A-Za-z]+\\)[]>]" "" (buffer-string)
  2907. nil nil 1))))
  2908. ;; Remove last entry and then middle entry (order should not
  2909. ;; matter).
  2910. (should
  2911. (equal "\
  2912. * H
  2913. CLOSED: [2015-06-24]
  2914. Paragraph"
  2915. (org-test-with-temp-text "\
  2916. * H
  2917. CLOSED: [2015-06-24 Wed] DEADLINE: <2015-06-25 Thu> SCHEDULED: <2015-06-24 Wed>
  2918. Paragraph<point>"
  2919. (let ((org-adapt-indentation t))
  2920. (org-add-planning-info nil nil 'scheduled 'deadline))
  2921. (replace-regexp-in-string
  2922. "\\( [.A-Za-z]+\\)[]>]" "" (buffer-string)
  2923. nil nil 1))))
  2924. ;; Remove closed when `org-adapt-indentation' is non-nil.
  2925. (should
  2926. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  2927. (org-test-with-temp-text "\
  2928. * H
  2929. CLOSED: [2015-06-25 Thu] DEADLINE: <2015-06-25 Thu>
  2930. Paragraph<point>"
  2931. (let ((org-adapt-indentation t))
  2932. (org-add-planning-info nil nil 'closed))
  2933. (replace-regexp-in-string
  2934. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2935. nil nil 1))))
  2936. (should
  2937. (equal "* H\n Paragraph"
  2938. (org-test-with-temp-text "\
  2939. * H
  2940. CLOSED: [2015-06-25 Thu]
  2941. Paragraph<point>"
  2942. (let ((org-adapt-indentation t))
  2943. (org-add-planning-info nil nil 'closed))
  2944. (replace-regexp-in-string
  2945. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2946. nil nil 1))))
  2947. ;; Remove closed when `org-adapt-indentation' is nil.
  2948. (should
  2949. (equal "* H\nDEADLINE: <2015-06-25>\nParagraph"
  2950. (org-test-with-temp-text "\
  2951. * H
  2952. CLOSED: [2015-06-25 Thu] DEADLINE: <2015-06-25 Thu>
  2953. Paragraph<point>"
  2954. (let ((org-adapt-indentation nil))
  2955. (org-add-planning-info nil nil 'closed))
  2956. (replace-regexp-in-string
  2957. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2958. nil nil 1))))
  2959. (should
  2960. (equal "* H\nParagraph"
  2961. (org-test-with-temp-text "\
  2962. * H
  2963. CLOSED: [2015-06-25 Thu]
  2964. Paragraph<point>"
  2965. (let ((org-adapt-indentation nil))
  2966. (org-add-planning-info nil nil 'closed))
  2967. (replace-regexp-in-string
  2968. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2969. nil nil 1))))
  2970. ;; Remove closed entry and delete empty line.
  2971. (should
  2972. (equal "\
  2973. * H
  2974. Paragraph"
  2975. (org-test-with-temp-text "\
  2976. * H
  2977. CLOSED: [2015-06-24 Wed]
  2978. Paragraph<point>"
  2979. (let ((org-adapt-indentation t))
  2980. (org-add-planning-info nil nil 'closed))
  2981. (replace-regexp-in-string
  2982. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2983. nil nil 1))))
  2984. ;; Remove one entry and update another.
  2985. (should
  2986. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  2987. (org-test-with-temp-text "\
  2988. * H
  2989. SCHEDULED: <2015-06-23 Tue> DEADLINE: <2015-06-24 Wed>
  2990. Paragraph<point>"
  2991. (let ((org-adapt-indentation t))
  2992. (org-add-planning-info 'deadline "<2015-06-25 Thu>" 'scheduled))
  2993. (replace-regexp-in-string
  2994. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  2995. nil nil 1)))))
  2996. ;;; Property API
  2997. (ert-deftest test-org/buffer-property-keys ()
  2998. "Test `org-buffer-property-keys' specifications."
  2999. ;; Retrieve properties accross siblings.
  3000. (should
  3001. (equal '("A" "B")
  3002. (org-test-with-temp-text "
  3003. * H1
  3004. :PROPERTIES:
  3005. :A: 1
  3006. :END:
  3007. * H2
  3008. :PROPERTIES:
  3009. :B: 1
  3010. :END:"
  3011. (org-buffer-property-keys))))
  3012. ;; Retrieve properties accross children.
  3013. (should
  3014. (equal '("A" "B")
  3015. (org-test-with-temp-text "
  3016. * H1
  3017. :PROPERTIES:
  3018. :A: 1
  3019. :END:
  3020. ** H2
  3021. :PROPERTIES:
  3022. :B: 1
  3023. :END:"
  3024. (org-buffer-property-keys))))
  3025. ;; Retrieve muliple properties in the same drawer.
  3026. (should
  3027. (equal '("A" "B")
  3028. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3029. (org-buffer-property-keys))))
  3030. ;; Ignore extension symbol in property name.
  3031. (should
  3032. (equal '("A")
  3033. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:END:"
  3034. (org-buffer-property-keys))))
  3035. ;; With non-nil COLUMNS, extract property names from columns.
  3036. (should
  3037. (equal '("A" "B")
  3038. (org-test-with-temp-text "#+COLUMNS: %25ITEM %A %20B"
  3039. (org-buffer-property-keys nil nil t))))
  3040. (should
  3041. (equal '("A" "B" "COLUMNS")
  3042. (org-test-with-temp-text
  3043. "* H\n:PROPERTIES:\n:COLUMNS: %25ITEM %A %20B\n:END:"
  3044. (org-buffer-property-keys nil nil t)))))
  3045. (ert-deftest test-org/property-values ()
  3046. "Test `org-property-values' specifications."
  3047. ;; Regular test.
  3048. (should
  3049. (equal '("2" "1")
  3050. (org-test-with-temp-text
  3051. "* H\n:PROPERTIES:\n:A: 1\n:END:\n* H\n:PROPERTIES:\n:A: 2\n:END:"
  3052. (org-property-values "A"))))
  3053. ;; Ignore empty values.
  3054. (should-not
  3055. (org-test-with-temp-text
  3056. "* H1\n:PROPERTIES:\n:A:\n:END:\n* H2\n:PROPERTIES:\n:A: \n:END:"
  3057. (org-property-values "A")))
  3058. ;; Take into consideration extended values.
  3059. (should
  3060. (equal '("1 2")
  3061. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:END:"
  3062. (org-property-values "A")))))
  3063. (ert-deftest test-org/find-property ()
  3064. "Test `org-find-property' specifications."
  3065. ;; Regular test.
  3066. (should
  3067. (= 1
  3068. (org-test-with-temp-text "* H\n:PROPERTIES:\n:PROP: value\n:END:"
  3069. (org-find-property "prop"))))
  3070. ;; Ignore false positives.
  3071. (should
  3072. (= 27
  3073. (org-test-with-temp-text
  3074. "* H1\n:DRAWER:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:A: 1\n:END:"
  3075. (org-find-property "A"))))
  3076. ;; Return first entry found in buffer.
  3077. (should
  3078. (= 1
  3079. (org-test-with-temp-text
  3080. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:<point>A: 1\n:END:"
  3081. (org-find-property "A"))))
  3082. ;; Only search visible part of the buffer.
  3083. (should
  3084. (= 31
  3085. (org-test-with-temp-text
  3086. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:<point>A: 1\n:END:"
  3087. (org-narrow-to-subtree)
  3088. (org-find-property "A"))))
  3089. ;; With optional argument, only find entries with a specific value.
  3090. (should-not
  3091. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3092. (org-find-property "A" "2")))
  3093. (should
  3094. (= 31
  3095. (org-test-with-temp-text
  3096. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:A: 2\n:END:"
  3097. (org-find-property "A" "2"))))
  3098. ;; Use "nil" for explicit nil values.
  3099. (should
  3100. (= 31
  3101. (org-test-with-temp-text
  3102. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:A: nil\n:END:"
  3103. (org-find-property "A" "nil")))))
  3104. (ert-deftest test-org/entry-delete ()
  3105. "Test `org-entry-delete' specifications."
  3106. ;; Regular test.
  3107. (should
  3108. (string-match
  3109. " *:PROPERTIES:\n *:B: +2\n *:END:"
  3110. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3111. (org-entry-delete (point) "A")
  3112. (buffer-string))))
  3113. ;; Also remove accumulated properties.
  3114. (should-not
  3115. (string-match
  3116. ":A"
  3117. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:B: 3\n:END:"
  3118. (org-entry-delete (point) "A")
  3119. (buffer-string))))
  3120. ;; When last property is removed, remove the property drawer.
  3121. (should-not
  3122. (string-match
  3123. ":PROPERTIES:"
  3124. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\nParagraph"
  3125. (org-entry-delete (point) "A")
  3126. (buffer-string))))
  3127. ;; Return a non-nil value when some property was removed.
  3128. (should
  3129. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3130. (org-entry-delete (point) "A")))
  3131. (should-not
  3132. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3133. (org-entry-delete (point) "C"))))
  3134. (ert-deftest test-org/entry-get ()
  3135. "Test `org-entry-get' specifications."
  3136. ;; Regular test.
  3137. (should
  3138. (equal "1"
  3139. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3140. (org-entry-get (point) "A"))))
  3141. ;; Ignore case.
  3142. (should
  3143. (equal "1"
  3144. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3145. (org-entry-get (point) "a"))))
  3146. ;; Handle extended values, both before and after base value.
  3147. (should
  3148. (equal "1 2 3"
  3149. (org-test-with-temp-text
  3150. "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:A+: 3\n:END:"
  3151. (org-entry-get (point) "A"))))
  3152. ;; Empty values are returned as the empty string.
  3153. (should
  3154. (equal ""
  3155. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A:\n:END:"
  3156. (org-entry-get (point) "A"))))
  3157. ;; Special nil value. If LITERAL-NIL is non-nil, return "nil",
  3158. ;; otherwise, return nil.
  3159. (should-not
  3160. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: nil\n:END:"
  3161. (org-entry-get (point) "A")))
  3162. (should
  3163. (equal "nil"
  3164. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: nil\n:END:"
  3165. (org-entry-get (point) "A" nil t))))
  3166. ;; Return nil when no property is found, independently on the
  3167. ;; LITERAL-NIL argument.
  3168. (should-not
  3169. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3170. (org-entry-get (point) "B")))
  3171. (should-not
  3172. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3173. (org-entry-get (point) "B" nil t)))
  3174. ;; Handle inheritance, when allowed. Include extended values and
  3175. ;; possibly global values.
  3176. (should
  3177. (equal
  3178. "1"
  3179. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
  3180. (org-entry-get (point) "A" t))))
  3181. (should
  3182. (equal
  3183. "1"
  3184. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
  3185. (let ((org-use-property-inheritance t))
  3186. (org-entry-get (point) "A" 'selective)))))
  3187. (should-not
  3188. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
  3189. (let ((org-use-property-inheritance nil))
  3190. (org-entry-get (point) "A" 'selective))))
  3191. (should
  3192. (equal
  3193. "1 2"
  3194. (org-test-with-temp-text
  3195. "* H\n:PROPERTIES:\n:A: 1\n:END:\n** H2\n:PROPERTIES:\n:A+: 2\n:END:"
  3196. (org-entry-get (point-max) "A" t))))
  3197. (should
  3198. (equal "1"
  3199. (org-test-with-temp-text
  3200. "#+PROPERTY: A 0\n* H\n:PROPERTIES:\n:A: 1\n:END:"
  3201. (org-mode-restart)
  3202. (org-entry-get (point-max) "A" t))))
  3203. (should
  3204. (equal "0 1"
  3205. (org-test-with-temp-text
  3206. "#+PROPERTY: A 0\n* H\n:PROPERTIES:\n:A+: 1\n:END:"
  3207. (org-mode-restart)
  3208. (org-entry-get (point-max) "A" t)))))
  3209. (ert-deftest test-org/entry-properties ()
  3210. "Test `org-entry-properties' specifications."
  3211. ;; Get "ITEM" property.
  3212. (should
  3213. (equal "* H"
  3214. (org-test-with-temp-text "* TODO H"
  3215. (cdr (assoc "ITEM" (org-entry-properties nil "ITEM"))))))
  3216. (should
  3217. (equal "* H"
  3218. (org-test-with-temp-text "* TODO H"
  3219. (cdr (assoc "ITEM" (org-entry-properties))))))
  3220. ;; Get "TODO" property. TODO keywords are case sensitive.
  3221. (should
  3222. (equal "TODO"
  3223. (org-test-with-temp-text "* TODO H"
  3224. (cdr (assoc "TODO" (org-entry-properties nil "TODO"))))))
  3225. (should
  3226. (equal "TODO"
  3227. (org-test-with-temp-text "* TODO H"
  3228. (cdr (assoc "TODO" (org-entry-properties))))))
  3229. (should-not
  3230. (org-test-with-temp-text "* H"
  3231. (assoc "TODO" (org-entry-properties nil "TODO"))))
  3232. (should-not
  3233. (org-test-with-temp-text "* todo H"
  3234. (assoc "TODO" (org-entry-properties nil "TODO"))))
  3235. ;; Get "PRIORITY" property.
  3236. (should
  3237. (equal "A"
  3238. (org-test-with-temp-text "* [#A] H"
  3239. (cdr (assoc "PRIORITY" (org-entry-properties nil "PRIORITY"))))))
  3240. (should
  3241. (equal "A"
  3242. (org-test-with-temp-text "* [#A] H"
  3243. (cdr (assoc "PRIORITY" (org-entry-properties))))))
  3244. (should
  3245. (equal (char-to-string org-default-priority)
  3246. (org-test-with-temp-text "* H"
  3247. (cdr (assoc "PRIORITY" (org-entry-properties nil "PRIORITY"))))))
  3248. ;; Get "FILE" property.
  3249. (should
  3250. (org-test-with-temp-text-in-file "* H\nParagraph"
  3251. (org-file-equal-p (cdr (assoc "FILE" (org-entry-properties nil "FILE")))
  3252. (buffer-file-name))))
  3253. (should
  3254. (org-test-with-temp-text-in-file "* H\nParagraph"
  3255. (org-file-equal-p (cdr (assoc "FILE" (org-entry-properties)))
  3256. (buffer-file-name))))
  3257. (should-not
  3258. (org-test-with-temp-text "* H\nParagraph"
  3259. (cdr (assoc "FILE" (org-entry-properties nil "FILE")))))
  3260. ;; Get "TAGS" property.
  3261. (should
  3262. (equal ":tag1:tag2:"
  3263. (org-test-with-temp-text "* H :tag1:tag2:"
  3264. (cdr (assoc "TAGS" (org-entry-properties nil "TAGS"))))))
  3265. (should
  3266. (equal ":tag1:tag2:"
  3267. (org-test-with-temp-text "* H :tag1:tag2:"
  3268. (cdr (assoc "TAGS" (org-entry-properties))))))
  3269. (should-not
  3270. (org-test-with-temp-text "* H"
  3271. (cdr (assoc "TAGS" (org-entry-properties nil "TAGS")))))
  3272. ;; Get "ALLTAGS" property.
  3273. (should
  3274. (equal ":tag1:tag2:"
  3275. (org-test-with-temp-text "* H :tag1:\n<point>** H2 :tag2:"
  3276. (cdr (assoc "ALLTAGS" (org-entry-properties nil "ALLTAGS"))))))
  3277. (should
  3278. (equal ":tag1:tag2:"
  3279. (org-test-with-temp-text "* H :tag1:\n<point>** H2 :tag2:"
  3280. (cdr (assoc "ALLTAGS" (org-entry-properties))))))
  3281. (should-not
  3282. (org-test-with-temp-text "* H"
  3283. (cdr (assoc "ALLTAGS" (org-entry-properties nil "ALLTAGS")))))
  3284. ;; Get "BLOCKED" property.
  3285. (should
  3286. (equal "t"
  3287. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** TODO two"
  3288. (let ((org-enforce-todo-dependencies t)
  3289. (org-blocker-hook
  3290. '(org-block-todo-from-children-or-siblings-or-parent)))
  3291. (cdr (assoc "BLOCKED" (org-entry-properties nil "BLOCKED")))))))
  3292. (should
  3293. (equal ""
  3294. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** DONE two"
  3295. (let ((org-enforce-todo-dependencies t)
  3296. (org-blocker-hook
  3297. '(org-block-todo-from-children-or-siblings-or-parent)))
  3298. (cdr (assoc "BLOCKED" (org-entry-properties nil "BLOCKED")))))))
  3299. ;; Get "CLOSED", "DEADLINE" and "SCHEDULED" properties.
  3300. (should
  3301. (equal
  3302. "[2012-03-29 thu.]"
  3303. (org-test-with-temp-text "* H\nCLOSED: [2012-03-29 thu.]"
  3304. (cdr (assoc "CLOSED" (org-entry-properties nil "CLOSED"))))))
  3305. (should
  3306. (equal
  3307. "[2012-03-29 thu.]"
  3308. (org-test-with-temp-text "* H\nCLOSED: [2012-03-29 thu.]"
  3309. (cdr (assoc "CLOSED" (org-entry-properties))))))
  3310. (should-not
  3311. (org-test-with-temp-text "* H"
  3312. (cdr (assoc "CLOSED" (org-entry-properties nil "CLOSED")))))
  3313. (should
  3314. (equal
  3315. "<2014-03-04 tue.>"
  3316. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  3317. (cdr (assoc "DEADLINE" (org-entry-properties nil "DEADLINE"))))))
  3318. (should
  3319. (equal
  3320. "<2014-03-04 tue.>"
  3321. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  3322. (cdr (assoc "DEADLINE" (org-entry-properties))))))
  3323. (should-not
  3324. (org-test-with-temp-text "* H"
  3325. (cdr (assoc "DEADLINE" (org-entry-properties nil "DEADLINE")))))
  3326. (should
  3327. (equal
  3328. "<2014-03-04 tue.>"
  3329. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  3330. (cdr (assoc "SCHEDULED" (org-entry-properties nil "SCHEDULED"))))))
  3331. (should
  3332. (equal
  3333. "<2014-03-04 tue.>"
  3334. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  3335. (cdr (assoc "SCHEDULED" (org-entry-properties))))))
  3336. (should-not
  3337. (org-test-with-temp-text "* H"
  3338. (cdr (assoc "SCHEDULED" (org-entry-properties nil "SCHEDULED")))))
  3339. ;; Get "CATEGORY"
  3340. (should
  3341. (equal "cat"
  3342. (org-test-with-temp-text "#+CATEGORY: cat\n<point>* H"
  3343. (cdr (assoc "CATEGORY" (org-entry-properties))))))
  3344. (should
  3345. (equal "cat"
  3346. (org-test-with-temp-text "#+CATEGORY: cat\n<point>* H"
  3347. (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
  3348. (should
  3349. (equal "cat"
  3350. (org-test-with-temp-text "* H\n:PROPERTIES:\n:CATEGORY: cat\n:END:"
  3351. (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
  3352. (should
  3353. (equal "cat2"
  3354. (org-test-with-temp-text
  3355. (concat "* H\n:PROPERTIES:\n:CATEGORY: cat1\n:END:"
  3356. "\n"
  3357. "** H2\n:PROPERTIES:\n:CATEGORY: cat2\n:END:<point>")
  3358. (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
  3359. ;; Get "TIMESTAMP" and "TIMESTAMP_IA" properties.
  3360. (should
  3361. (equal "<2012-03-29 thu.>"
  3362. (org-test-with-temp-text "* Entry\n<2012-03-29 thu.>"
  3363. (cdr (assoc "TIMESTAMP" (org-entry-properties))))))
  3364. (should
  3365. (equal "[2012-03-29 thu.]"
  3366. (org-test-with-temp-text "* Entry\n[2012-03-29 thu.]"
  3367. (cdr (assoc "TIMESTAMP_IA" (org-entry-properties))))))
  3368. (should
  3369. (equal "<2012-03-29 thu.>"
  3370. (org-test-with-temp-text "* Entry\n[2014-03-04 tue.]<2012-03-29 thu.>"
  3371. (cdr (assoc "TIMESTAMP" (org-entry-properties nil "TIMESTAMP"))))))
  3372. (should
  3373. (equal "[2014-03-04 tue.]"
  3374. (org-test-with-temp-text "* Entry\n<2012-03-29 thu.>[2014-03-04 tue.]"
  3375. (cdr (assoc "TIMESTAMP_IA" (org-entry-properties nil "TIMESTAMP_IA"))))))
  3376. ;; Get standard properties.
  3377. (should
  3378. (equal "1"
  3379. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3380. (cdr (assoc "A" (org-entry-properties nil 'standard))))))
  3381. ;; Handle extended properties.
  3382. (should
  3383. (equal "1 2 3"
  3384. (org-test-with-temp-text
  3385. "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:A+: 3\n:END:"
  3386. (cdr (assoc "A" (org-entry-properties nil 'standard))))))
  3387. (should
  3388. (equal "1 2 3"
  3389. (org-test-with-temp-text
  3390. "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:a+: 3\n:END:"
  3391. (cdr (assoc "A" (org-entry-properties nil 'standard))))))
  3392. ;; Ignore forbidden (special) properties.
  3393. (should-not
  3394. (org-test-with-temp-text "* H\n:PROPERTIES:\n:TODO: foo\n:END:"
  3395. (cdr (assoc "TODO" (org-entry-properties nil 'standard))))))
  3396. (ert-deftest test-org/entry-put ()
  3397. "Test `org-entry-put' specifications."
  3398. ;; Error when not a string or nil.
  3399. (should-error
  3400. (org-test-with-temp-text "* H\n:PROPERTIES:\n:test: 1\n:END:"
  3401. (org-entry-put 1 "test" 2)))
  3402. ;; Set "TODO" property.
  3403. (should
  3404. (string-match (regexp-quote " TODO H")
  3405. (org-test-with-temp-text "#+TODO: TODO | DONE\n<point>* H"
  3406. (org-entry-put (point) "TODO" "TODO")
  3407. (buffer-string))))
  3408. (should
  3409. (string-match (regexp-quote "* H")
  3410. (org-test-with-temp-text "#+TODO: TODO | DONE\n<point>* H"
  3411. (org-entry-put (point) "TODO" nil)
  3412. (buffer-string))))
  3413. ;; Set "PRIORITY" property.
  3414. (should
  3415. (equal "* [#A] H"
  3416. (org-test-with-temp-text "* [#B] H"
  3417. (org-entry-put (point) "PRIORITY" "A")
  3418. (buffer-string))))
  3419. (should
  3420. (equal "* H"
  3421. (org-test-with-temp-text "* [#B] H"
  3422. (org-entry-put (point) "PRIORITY" nil)
  3423. (buffer-string))))
  3424. ;; Set "SCHEDULED" property.
  3425. (should
  3426. (string-match "* H\n *SCHEDULED: <2014-03-04 .*?>"
  3427. (org-test-with-temp-text "* H"
  3428. (org-entry-put (point) "SCHEDULED" "2014-03-04")
  3429. (buffer-string))))
  3430. (should
  3431. (string= "* H\n"
  3432. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  3433. (org-entry-put (point) "SCHEDULED" nil)
  3434. (buffer-string))))
  3435. (should
  3436. (string-match "* H\n *SCHEDULED: <2014-03-03 .*?>"
  3437. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  3438. (org-entry-put (point) "SCHEDULED" "earlier")
  3439. (buffer-string))))
  3440. (should
  3441. (string-match "^ *SCHEDULED: <2014-03-05 .*?>"
  3442. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  3443. (org-entry-put (point) "SCHEDULED" "later")
  3444. (buffer-string))))
  3445. ;; Set "DEADLINE" property.
  3446. (should
  3447. (string-match "^ *DEADLINE: <2014-03-04 .*?>"
  3448. (org-test-with-temp-text "* H"
  3449. (org-entry-put (point) "DEADLINE" "2014-03-04")
  3450. (buffer-string))))
  3451. (should
  3452. (string= "* H\n"
  3453. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  3454. (org-entry-put (point) "DEADLINE" nil)
  3455. (buffer-string))))
  3456. (should
  3457. (string-match "^ *DEADLINE: <2014-03-03 .*?>"
  3458. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  3459. (org-entry-put (point) "DEADLINE" "earlier")
  3460. (buffer-string))))
  3461. (should
  3462. (string-match "^ *DEADLINE: <2014-03-05 .*?>"
  3463. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  3464. (org-entry-put (point) "DEADLINE" "later")
  3465. (buffer-string))))
  3466. ;; Set "CATEGORY" property
  3467. (should
  3468. (string-match "^ *:CATEGORY: cat"
  3469. (org-test-with-temp-text "* H"
  3470. (org-entry-put (point) "CATEGORY" "cat")
  3471. (buffer-string))))
  3472. ;; Regular properties, with or without pre-existing drawer.
  3473. (should
  3474. (string-match "^ *:A: +2$"
  3475. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3476. (org-entry-put (point) "A" "2")
  3477. (buffer-string))))
  3478. (should
  3479. (string-match "^ *:A: +1$"
  3480. (org-test-with-temp-text "* H"
  3481. (org-entry-put (point) "A" "1")
  3482. (buffer-string))))
  3483. ;; Special case: two consecutive headlines.
  3484. (should
  3485. (string-match "\\* A\n *:PROPERTIES:"
  3486. (org-test-with-temp-text "* A\n** B"
  3487. (org-entry-put (point) "A" "1")
  3488. (buffer-string)))))
  3489. ;;; Radio Targets
  3490. (ert-deftest test-org/update-radio-target-regexp ()
  3491. "Test `org-update-radio-target-regexp' specifications."
  3492. ;; Properly update cache with no previous radio target regexp.
  3493. (should
  3494. (eq 'link
  3495. (org-test-with-temp-text "radio\n\nParagraph\n\nradio"
  3496. (save-excursion (goto-char (point-max)) (org-element-context))
  3497. (insert "<<<")
  3498. (search-forward "o")
  3499. (insert ">>>")
  3500. (org-update-radio-target-regexp)
  3501. (goto-char (point-max))
  3502. (org-element-type (org-element-context)))))
  3503. ;; Properly update cache with previous radio target regexp.
  3504. (should
  3505. (eq 'link
  3506. (org-test-with-temp-text "radio\n\nParagraph\n\nradio"
  3507. (save-excursion (goto-char (point-max)) (org-element-context))
  3508. (insert "<<<")
  3509. (search-forward "o")
  3510. (insert ">>>")
  3511. (org-update-radio-target-regexp)
  3512. (search-backward "r")
  3513. (delete-char 5)
  3514. (insert "new")
  3515. (org-update-radio-target-regexp)
  3516. (goto-char (point-max))
  3517. (delete-region (line-beginning-position) (point))
  3518. (insert "new")
  3519. (org-element-type (org-element-context))))))
  3520. ;;; Sparse trees
  3521. (ert-deftest test-org/match-sparse-tree ()
  3522. "Test `org-match-sparse-tree' specifications."
  3523. ;; Match tags.
  3524. (should-not
  3525. (org-test-with-temp-text "* H\n** H1 :tag:"
  3526. (org-match-sparse-tree nil "tag")
  3527. (search-forward "H1")
  3528. (org-invisible-p2)))
  3529. (should
  3530. (org-test-with-temp-text "* H\n** H1 :tag:\n** H2 :tag2:"
  3531. (org-match-sparse-tree nil "tag")
  3532. (search-forward "H2")
  3533. (org-invisible-p2)))
  3534. ;; "-" operator for tags.
  3535. (should-not
  3536. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  3537. (org-match-sparse-tree nil "tag1-tag2")
  3538. (search-forward "H1")
  3539. (org-invisible-p2)))
  3540. (should
  3541. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  3542. (org-match-sparse-tree nil "tag1-tag2")
  3543. (search-forward "H2")
  3544. (org-invisible-p2)))
  3545. ;; "&" operator for tags.
  3546. (should
  3547. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  3548. (org-match-sparse-tree nil "tag1&tag2")
  3549. (search-forward "H1")
  3550. (org-invisible-p2)))
  3551. (should-not
  3552. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  3553. (org-match-sparse-tree nil "tag1&tag2")
  3554. (search-forward "H2")
  3555. (org-invisible-p2)))
  3556. ;; "|" operator for tags.
  3557. (should-not
  3558. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  3559. (org-match-sparse-tree nil "tag1|tag2")
  3560. (search-forward "H1")
  3561. (org-invisible-p2)))
  3562. (should-not
  3563. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  3564. (org-match-sparse-tree nil "tag1|tag2")
  3565. (search-forward "H2")
  3566. (org-invisible-p2)))
  3567. ;; Regexp match on tags.
  3568. (should-not
  3569. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :foo:"
  3570. (org-match-sparse-tree nil "{^tag.*}")
  3571. (search-forward "H1")
  3572. (org-invisible-p2)))
  3573. (should
  3574. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :foo:"
  3575. (org-match-sparse-tree nil "{^tag.*}")
  3576. (search-forward "H2")
  3577. (org-invisible-p2)))
  3578. ;; Match group tags.
  3579. (should-not
  3580. (org-test-with-temp-text
  3581. "#+TAGS: { work : lab }\n* H\n** H1 :work:\n** H2 :lab:"
  3582. (org-match-sparse-tree nil "work")
  3583. (search-forward "H1")
  3584. (org-invisible-p2)))
  3585. (should-not
  3586. (org-test-with-temp-text
  3587. "#+TAGS: { work : lab }\n* H\n** H1 :work:\n** H2 :lab:"
  3588. (org-match-sparse-tree nil "work")
  3589. (search-forward "H2")
  3590. (org-invisible-p2)))
  3591. ;; Match group tags with hard brackets.
  3592. (should-not
  3593. (org-test-with-temp-text
  3594. "#+TAGS: [ work : lab ]\n* H\n** H1 :work:\n** H2 :lab:"
  3595. (org-match-sparse-tree nil "work")
  3596. (search-forward "H1")
  3597. (org-invisible-p2)))
  3598. (should-not
  3599. (org-test-with-temp-text
  3600. "#+TAGS: [ work : lab ]\n* H\n** H1 :work:\n** H2 :lab:"
  3601. (org-match-sparse-tree nil "work")
  3602. (search-forward "H2")
  3603. (org-invisible-p2)))
  3604. ;; Match tags in hierarchies
  3605. (should-not
  3606. (org-test-with-temp-text
  3607. "#+TAGS: [ Lev_1 : Lev_2 ]\n
  3608. #+TAGS: [ Lev_2 : Lev_3 ]\n
  3609. #+TAGS: { Lev_3 : Lev_4 }\n
  3610. * H\n** H1 :Lev_1:\n** H2 :Lev_2:\n** H3 :Lev_3:\n** H4 :Lev_4:"
  3611. (org-match-sparse-tree nil "Lev_1")
  3612. (search-forward "H4")
  3613. (org-invisible-p2)))
  3614. ;; Match regular expressions in tags
  3615. (should-not
  3616. (org-test-with-temp-text
  3617. "#+TAGS: [ Lev : {Lev_[0-9]} ]\n* H\n** H1 :Lev_1:"
  3618. (org-match-sparse-tree nil "Lev")
  3619. (search-forward "H1")
  3620. (org-invisible-p2)))
  3621. (should
  3622. (org-test-with-temp-text
  3623. "#+TAGS: [ Lev : {Lev_[0-9]} ]\n* H\n** H1 :Lev_n:"
  3624. (org-match-sparse-tree nil "Lev")
  3625. (search-forward "H1")
  3626. (org-invisible-p2)))
  3627. ;; Match properties.
  3628. (should
  3629. (org-test-with-temp-text
  3630. "* H\n** H1\n:PROPERTIES:\n:A: 1\n:END:\n** H2\n:PROPERTIES:\n:A: 2\n:END:"
  3631. (org-match-sparse-tree nil "A=\"1\"")
  3632. (search-forward "H2")
  3633. (org-invisible-p2)))
  3634. (should-not
  3635. (org-test-with-temp-text "* H1\n** H2\n:PROPERTIES:\n:A: 1\n:END:"
  3636. (org-match-sparse-tree nil "A=\"1\"")
  3637. (search-forward "H2")
  3638. (org-invisible-p2)))
  3639. ;; Case is not significant when matching properties.
  3640. (should-not
  3641. (org-test-with-temp-text "* H1\n** H2\n:PROPERTIES:\n:A: 1\n:END:"
  3642. (org-match-sparse-tree nil "a=\"1\"")
  3643. (search-forward "H2")
  3644. (org-invisible-p2)))
  3645. (should-not
  3646. (org-test-with-temp-text "* H1\n** H2\n:PROPERTIES:\n:a: 1\n:END:"
  3647. (org-match-sparse-tree nil "A=\"1\"")
  3648. (search-forward "H2")
  3649. (org-invisible-p2)))
  3650. ;; Match special LEVEL property.
  3651. (should-not
  3652. (org-test-with-temp-text "* H\n** H1\n*** H2"
  3653. (let ((org-odd-levels-only nil)) (org-match-sparse-tree nil "LEVEL=2"))
  3654. (search-forward "H1")
  3655. (org-invisible-p2)))
  3656. (should
  3657. (org-test-with-temp-text "* H\n** H1\n*** H2"
  3658. (let ((org-odd-levels-only nil)) (org-match-sparse-tree nil "LEVEL=2"))
  3659. (search-forward "H2")
  3660. (org-invisible-p2)))
  3661. ;; Comparison operators when matching properties.
  3662. (should
  3663. (org-test-with-temp-text
  3664. "* H\n** H1\nSCHEDULED: <2014-03-04 tue.>\n** H2\nSCHEDULED: <2012-03-29 thu.>"
  3665. (org-match-sparse-tree nil "SCHEDULED<=\"<2013-01-01>\"")
  3666. (search-forward "H1")
  3667. (org-invisible-p2)))
  3668. (should-not
  3669. (org-test-with-temp-text
  3670. "* H\n** H1\nSCHEDULED: <2014-03-04 tue.>\n** H2\nSCHEDULED: <2012-03-29 thu.>"
  3671. (org-match-sparse-tree nil "SCHEDULED<=\"<2013-01-01>\"")
  3672. (search-forward "H2")
  3673. (org-invisible-p2)))
  3674. ;; Regexp match on properties values.
  3675. (should-not
  3676. (org-test-with-temp-text
  3677. "* H\n** H1\n:PROPERTIES:\n:A: foo\n:END:\n** H2\n:PROPERTIES:\n:A: bar\n:END:"
  3678. (org-match-sparse-tree nil "A={f.*}")
  3679. (search-forward "H1")
  3680. (org-invisible-p2)))
  3681. (should
  3682. (org-test-with-temp-text
  3683. "* H\n** H1\n:PROPERTIES:\n:A: foo\n:END:\n** H2\n:PROPERTIES:\n:A: bar\n:END:"
  3684. (org-match-sparse-tree nil "A={f.*}")
  3685. (search-forward "H2")
  3686. (org-invisible-p2)))
  3687. ;; With an optional argument, limit match to TODO entries.
  3688. (should-not
  3689. (org-test-with-temp-text "* H\n** TODO H1 :tag:\n** H2 :tag:"
  3690. (org-match-sparse-tree t "tag")
  3691. (search-forward "H1")
  3692. (org-invisible-p2)))
  3693. (should
  3694. (org-test-with-temp-text "* H\n** TODO H1 :tag:\n** H2 :tag:"
  3695. (org-match-sparse-tree t "tag")
  3696. (search-forward "H2")
  3697. (org-invisible-p2))))
  3698. ;;; Timestamps API
  3699. (ert-deftest test-org/time-stamp ()
  3700. "Test `org-time-stamp' specifications."
  3701. ;; Insert chosen time stamp at point.
  3702. (should
  3703. (string-match
  3704. "Te<2014-03-04 .*?>xt"
  3705. (org-test-with-temp-text "Te<point>xt"
  3706. (flet ((org-read-date
  3707. (&rest args)
  3708. (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  3709. (org-time-stamp nil)
  3710. (buffer-string)))))
  3711. ;; With a prefix argument, also insert time.
  3712. (should
  3713. (string-match
  3714. "Te<2014-03-04 .*? 00:41>xt"
  3715. (org-test-with-temp-text "Te<point>xt"
  3716. (flet ((org-read-date
  3717. (&rest args)
  3718. (apply #'encode-time (org-parse-time-string "2014-03-04 00:41"))))
  3719. (org-time-stamp '(4))
  3720. (buffer-string)))))
  3721. ;; With two universal prefix arguments, insert an active timestamp
  3722. ;; with the current time without prompting the user.
  3723. (should
  3724. (string-match
  3725. "Te<2014-03-04 .*? 00:41>xt"
  3726. (org-test-with-temp-text "Te<point>xt"
  3727. (flet ((current-time
  3728. ()
  3729. (apply #'encode-time (org-parse-time-string "2014-03-04 00:41"))))
  3730. (org-time-stamp '(16))
  3731. (buffer-string)))))
  3732. ;; When optional argument is non-nil, insert an inactive timestamp.
  3733. (should
  3734. (string-match
  3735. "Te\\[2014-03-04 .*?\\]xt"
  3736. (org-test-with-temp-text "Te<point>xt"
  3737. (flet ((org-read-date
  3738. (&rest args)
  3739. (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  3740. (org-time-stamp nil t)
  3741. (buffer-string)))))
  3742. ;; When called from a timestamp, replace existing one.
  3743. (should
  3744. (string-match
  3745. "<2014-03-04 .*?>"
  3746. (org-test-with-temp-text "<2012-03-29<point> thu.>"
  3747. (flet ((org-read-date
  3748. (&rest args)
  3749. (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  3750. (org-time-stamp nil)
  3751. (buffer-string)))))
  3752. (should
  3753. (string-match
  3754. "<2014-03-04 .*?>--<2014-03-04 .*?>"
  3755. (org-test-with-temp-text "<2012-03-29<point> thu.>--<2014-03-04 tue.>"
  3756. (flet ((org-read-date
  3757. (&rest args)
  3758. (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  3759. (org-time-stamp nil)
  3760. (buffer-string)))))
  3761. ;; When replacing a timestamp, preserve repeater, if any.
  3762. (should
  3763. (string-match
  3764. "<2014-03-04 .*? \\+2y>"
  3765. (org-test-with-temp-text "<2012-03-29<point> thu. +2y>"
  3766. (flet ((org-read-date
  3767. (&rest args)
  3768. (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  3769. (org-time-stamp nil)
  3770. (buffer-string)))))
  3771. ;; When called twice in a raw, build a date range.
  3772. (should
  3773. (string-match
  3774. "<2012-03-29 .*?>--<2014-03-04 .*?>"
  3775. (org-test-with-temp-text "<2012-03-29 thu.><point>"
  3776. (flet ((org-read-date
  3777. (&rest args)
  3778. (apply #'encode-time (org-parse-time-string "2014-03-04"))))
  3779. (let ((last-command 'org-time-stamp)
  3780. (this-command 'org-time-stamp))
  3781. (org-time-stamp nil))
  3782. (buffer-string))))))
  3783. (ert-deftest test-org/timestamp-has-time-p ()
  3784. "Test `org-timestamp-has-time-p' specifications."
  3785. ;; With time.
  3786. (should
  3787. (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
  3788. (org-timestamp-has-time-p (org-element-context))))
  3789. ;; Without time.
  3790. (should-not
  3791. (org-test-with-temp-text "<2012-03-29 Thu>"
  3792. (org-timestamp-has-time-p (org-element-context)))))
  3793. (ert-deftest test-org/timestamp-format ()
  3794. "Test `org-timestamp-format' specifications."
  3795. ;; Regular test.
  3796. (should
  3797. (equal
  3798. "2012-03-29 16:40"
  3799. (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
  3800. (org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
  3801. ;; Range end.
  3802. (should
  3803. (equal
  3804. "2012-03-29"
  3805. (org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
  3806. (org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
  3807. (ert-deftest test-org/timestamp-split-range ()
  3808. "Test `org-timestamp-split-range' specifications."
  3809. ;; Extract range start (active).
  3810. (should
  3811. (equal '(2012 3 29)
  3812. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  3813. (let ((ts (org-timestamp-split-range (org-element-context))))
  3814. (mapcar (lambda (p) (org-element-property p ts))
  3815. '(:year-end :month-end :day-end))))))
  3816. ;; Extract range start (inactive)
  3817. (should
  3818. (equal '(2012 3 29)
  3819. (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
  3820. (let ((ts (org-timestamp-split-range (org-element-context))))
  3821. (mapcar (lambda (p) (org-element-property p ts))
  3822. '(:year-end :month-end :day-end))))))
  3823. ;; Extract range end (active).
  3824. (should
  3825. (equal '(2012 3 30)
  3826. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  3827. (let ((ts (org-timestamp-split-range
  3828. (org-element-context) t)))
  3829. (mapcar (lambda (p) (org-element-property p ts))
  3830. '(:year-end :month-end :day-end))))))
  3831. ;; Extract range end (inactive)
  3832. (should
  3833. (equal '(2012 3 30)
  3834. (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
  3835. (let ((ts (org-timestamp-split-range
  3836. (org-element-context) t)))
  3837. (mapcar (lambda (p) (org-element-property p ts))
  3838. '(:year-end :month-end :day-end))))))
  3839. ;; Return the timestamp if not a range.
  3840. (should
  3841. (org-test-with-temp-text "[2012-03-29 Thu]"
  3842. (let* ((ts-orig (org-element-context))
  3843. (ts-copy (org-timestamp-split-range ts-orig)))
  3844. (eq ts-orig ts-copy))))
  3845. (should
  3846. (org-test-with-temp-text "<%%(org-float t 4 2)>"
  3847. (let* ((ts-orig (org-element-context))
  3848. (ts-copy (org-timestamp-split-range ts-orig)))
  3849. (eq ts-orig ts-copy)))))
  3850. (ert-deftest test-org/timestamp-translate ()
  3851. "Test `org-timestamp-translate' specifications."
  3852. ;; Translate whole date range.
  3853. (should
  3854. (equal "<29>--<30>"
  3855. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  3856. (let ((org-display-custom-times t)
  3857. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  3858. (org-timestamp-translate (org-element-context))))))
  3859. ;; Translate date range start.
  3860. (should
  3861. (equal "<29>"
  3862. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  3863. (let ((org-display-custom-times t)
  3864. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  3865. (org-timestamp-translate (org-element-context) 'start)))))
  3866. ;; Translate date range end.
  3867. (should
  3868. (equal "<30>"
  3869. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  3870. (let ((org-display-custom-times t)
  3871. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  3872. (org-timestamp-translate (org-element-context) 'end)))))
  3873. ;; Translate time range.
  3874. (should
  3875. (equal "<08>--<16>"
  3876. (org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
  3877. (let ((org-display-custom-times t)
  3878. (org-time-stamp-custom-formats '("<%d>" . "<%H>")))
  3879. (org-timestamp-translate (org-element-context))))))
  3880. ;; Translate non-range timestamp.
  3881. (should
  3882. (equal "<29>"
  3883. (org-test-with-temp-text "<2012-03-29 Thu>"
  3884. (let ((org-display-custom-times t)
  3885. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  3886. (org-timestamp-translate (org-element-context))))))
  3887. ;; Do not change `diary' timestamps.
  3888. (should
  3889. (equal "<%%(org-float t 4 2)>"
  3890. (org-test-with-temp-text "<%%(org-float t 4 2)>"
  3891. (let ((org-display-custom-times t)
  3892. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  3893. (org-timestamp-translate (org-element-context)))))))
  3894. ;;; Visibility
  3895. (ert-deftest test-org/flag-drawer ()
  3896. "Test `org-flag-drawer' specifications."
  3897. ;; Hide drawer.
  3898. (should
  3899. (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
  3900. (org-flag-drawer t)
  3901. (get-char-property (line-end-position) 'invisible)))
  3902. ;; Show drawer.
  3903. (should-not
  3904. (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
  3905. (org-flag-drawer t)
  3906. (org-flag-drawer nil)
  3907. (get-char-property (line-end-position) 'invisible)))
  3908. ;; Test optional argument.
  3909. (should
  3910. (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
  3911. (let ((drawer (save-excursion (search-forward ":D2")
  3912. (org-element-at-point))))
  3913. (org-flag-drawer t drawer)
  3914. (get-char-property (progn (search-forward ":D2") (line-end-position))
  3915. 'invisible))))
  3916. (should-not
  3917. (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
  3918. (let ((drawer (save-excursion (search-forward ":D2")
  3919. (org-element-at-point))))
  3920. (org-flag-drawer t drawer)
  3921. (get-char-property (line-end-position) 'invisible))))
  3922. ;; Do not hide fake drawers.
  3923. (should-not
  3924. (org-test-with-temp-text "#+begin_example\n:D:\nc\n:END:\n#+end_example"
  3925. (forward-line 1)
  3926. (org-flag-drawer t)
  3927. (get-char-property (line-end-position) 'invisible)))
  3928. ;; Do not hide incomplete drawers.
  3929. (should-not
  3930. (org-test-with-temp-text ":D:\nparagraph"
  3931. (forward-line 1)
  3932. (org-flag-drawer t)
  3933. (get-char-property (line-end-position) 'invisible)))
  3934. ;; Do not hide drawers when called from final blank lines.
  3935. (should-not
  3936. (org-test-with-temp-text ":DRAWER:\nA\n:END:\n\n"
  3937. (goto-char (point-max))
  3938. (org-flag-drawer t)
  3939. (goto-char (point-min))
  3940. (get-char-property (line-end-position) 'invisible)))
  3941. ;; Don't leave point in an invisible part of the buffer when hiding
  3942. ;; a drawer away.
  3943. (should-not
  3944. (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
  3945. (goto-char (point-max))
  3946. (org-flag-drawer t)
  3947. (get-char-property (point) 'invisible))))
  3948. (ert-deftest test-org/hide-block-toggle ()
  3949. "Test `org-hide-block-toggle' specifications."
  3950. ;; Error when not at a block.
  3951. (should-error
  3952. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents"
  3953. (org-hide-block-toggle 'off)
  3954. (get-char-property (line-end-position) 'invisible)))
  3955. ;; Hide block.
  3956. (should
  3957. (org-test-with-temp-text "#+BEGIN_CENTER\ncontents\n#+END_CENTER"
  3958. (org-hide-block-toggle)
  3959. (get-char-property (line-end-position) 'invisible)))
  3960. (should
  3961. (org-test-with-temp-text "#+BEGIN_EXAMPLE\ncontents\n#+END_EXAMPLE"
  3962. (org-hide-block-toggle)
  3963. (get-char-property (line-end-position) 'invisible)))
  3964. ;; Show block unconditionally when optional argument is `off'.
  3965. (should-not
  3966. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  3967. (org-hide-block-toggle)
  3968. (org-hide-block-toggle 'off)
  3969. (get-char-property (line-end-position) 'invisible)))
  3970. (should-not
  3971. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  3972. (org-hide-block-toggle 'off)
  3973. (get-char-property (line-end-position) 'invisible)))
  3974. ;; Hide block unconditionally when optional argument is non-nil.
  3975. (should
  3976. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  3977. (org-hide-block-toggle t)
  3978. (get-char-property (line-end-position) 'invisible)))
  3979. (should
  3980. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  3981. (org-hide-block-toggle)
  3982. (org-hide-block-toggle t)
  3983. (get-char-property (line-end-position) 'invisible)))
  3984. ;; Do not hide block when called from final blank lines.
  3985. (should-not
  3986. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE\n\n<point>"
  3987. (org-hide-block-toggle)
  3988. (goto-char (point-min))
  3989. (get-char-property (line-end-position) 'invisible)))
  3990. ;; Don't leave point in an invisible part of the buffer when hiding
  3991. ;; a block away.
  3992. (should-not
  3993. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n<point>#+END_QUOTE"
  3994. (org-hide-block-toggle)
  3995. (get-char-property (point) 'invisible))))
  3996. (ert-deftest test-org/hide-block-toggle-maybe ()
  3997. "Test `org-hide-block-toggle-maybe' specifications."
  3998. (should
  3999. (org-test-with-temp-text "#+BEGIN: dynamic\nContents\n#+END:"
  4000. (org-hide-block-toggle-maybe)))
  4001. (should-not
  4002. (org-test-with-temp-text "Paragraph" (org-hide-block-toggle-maybe))))
  4003. (ert-deftest test-org/show-set-visibility ()
  4004. "Test `org-show-set-visibility' specifications."
  4005. ;; Do not throw an error before first heading.
  4006. (should
  4007. (org-test-with-temp-text "Preamble\n* Headline"
  4008. (org-show-set-visibility 'tree)
  4009. t))
  4010. ;; Test all visibility spans, both on headline and in entry.
  4011. (let ((list-visible-lines
  4012. (lambda (state headerp)
  4013. (org-test-with-temp-text "* Grandmother (0)
  4014. ** Uncle (1)
  4015. *** Heir (2)
  4016. ** Father (3)
  4017. Ancestor text (4)
  4018. *** Sister (5)
  4019. Sibling text (6)
  4020. *** Self (7)
  4021. Match (8)
  4022. **** First born (9)
  4023. Child text (10)
  4024. **** The other child (11)
  4025. *** Brother (12)
  4026. ** Aunt (13)
  4027. "
  4028. (org-cycle t)
  4029. (search-forward (if headerp "Self" "Match"))
  4030. (org-show-set-visibility state)
  4031. (goto-char (point-min))
  4032. (let (result (line 0))
  4033. (while (not (eobp))
  4034. (unless (org-invisible-p2) (push line result))
  4035. (incf line)
  4036. (forward-line))
  4037. (nreverse result))))))
  4038. (should (equal '(0 7) (funcall list-visible-lines 'minimal t)))
  4039. (should (equal '(0 7 8) (funcall list-visible-lines 'minimal nil)))
  4040. (should (equal '(0 7 8 9) (funcall list-visible-lines 'local t)))
  4041. (should (equal '(0 7 8 9) (funcall list-visible-lines 'local nil)))
  4042. (should (equal '(0 3 7) (funcall list-visible-lines 'ancestors t)))
  4043. (should (equal '(0 3 7 8) (funcall list-visible-lines 'ancestors nil)))
  4044. (should (equal '(0 3 5 7 12) (funcall list-visible-lines 'lineage t)))
  4045. (should (equal '(0 3 5 7 8 9 12) (funcall list-visible-lines 'lineage nil)))
  4046. (should (equal '(0 1 3 5 7 12 13) (funcall list-visible-lines 'tree t)))
  4047. (should (equal '(0 1 3 5 7 8 9 11 12 13)
  4048. (funcall list-visible-lines 'tree nil)))
  4049. (should (equal '(0 1 3 4 5 7 12 13)
  4050. (funcall list-visible-lines 'canonical t)))
  4051. (should (equal '(0 1 3 4 5 7 8 9 11 12 13)
  4052. (funcall list-visible-lines 'canonical nil)))))
  4053. (provide 'test-org)
  4054. ;;; test-org.el ends here