test-org.el 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253
  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 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. (cl-letf (((symbol-function 'current-time)
  185. (lambda ()
  186. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  187. (org-read-date
  188. t nil "+1y" nil
  189. (apply #'encode-time (org-parse-time-string "2012-03-29"))))))
  190. (should
  191. (equal
  192. "2013-03-29"
  193. (cl-letf (((symbol-function 'current-time)
  194. (lambda ()
  195. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  196. (org-read-date
  197. t nil "++1y" nil
  198. (apply #'encode-time (org-parse-time-string "2012-03-29"))))))
  199. ;; When `org-read-date-prefer-future' is non-nil, prefer future
  200. ;; dates (relatively to now) when incomplete. Otherwise, use
  201. ;; default date.
  202. (should
  203. (equal
  204. "2014-04-01"
  205. (cl-letf (((symbol-function 'current-time)
  206. (lambda ()
  207. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  208. (let ((org-read-date-prefer-future t))
  209. (org-read-date t nil "1")))))
  210. (should
  211. (equal
  212. "2013-03-04"
  213. (cl-letf (((symbol-function 'current-time)
  214. (lambda ()
  215. (apply #'encode-time (org-parse-time-string "2012-03-29")))))
  216. (let ((org-read-date-prefer-future t))
  217. (org-read-date t nil "3-4")))))
  218. (should
  219. (equal
  220. "2012-03-04"
  221. (cl-letf (((symbol-function 'current-time)
  222. (lambda ()
  223. (apply #'encode-time (org-parse-time-string "2012-03-29")))))
  224. (let ((org-read-date-prefer-future nil))
  225. (org-read-date t nil "3-4")))))
  226. ;; When set to `org-read-date-prefer-future' is set to `time', read
  227. ;; day is moved to tomorrow if specified hour is before current
  228. ;; time. However, it only happens in no other part of the date is
  229. ;; specified.
  230. (should
  231. (equal
  232. "2012-03-30"
  233. (cl-letf (((symbol-function 'current-time)
  234. (lambda ()
  235. (apply #'encode-time (org-parse-time-string "2012-03-29 16:40")))))
  236. (let ((org-read-date-prefer-future 'time))
  237. (org-read-date t nil "00:40" nil)))))
  238. (should-not
  239. (equal
  240. "2012-03-30"
  241. (cl-letf (((symbol-function 'current-time)
  242. (lambda ()
  243. (apply #'encode-time (org-parse-time-string "2012-03-29 16:40")))))
  244. (let ((org-read-date-prefer-future 'time))
  245. (org-read-date t nil "29 00:40" nil)))))
  246. ;; Caveat: `org-read-date-prefer-future' always refers to current
  247. ;; time, not default time, when they differ.
  248. (should
  249. (equal
  250. "2014-04-01"
  251. (cl-letf (((symbol-function 'current-time)
  252. (lambda ()
  253. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  254. (let ((org-read-date-prefer-future t))
  255. (org-read-date
  256. t nil "1" nil
  257. (apply #'encode-time (org-parse-time-string "2012-03-29")))))))
  258. (should
  259. (equal
  260. "2014-03-25"
  261. (cl-letf (((symbol-function 'current-time)
  262. (lambda ()
  263. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  264. (let ((org-read-date-prefer-future t))
  265. (org-read-date
  266. t nil "25" nil
  267. (apply #'encode-time (org-parse-time-string "2012-03-29"))))))))
  268. (ert-deftest test-org/org-parse-time-string ()
  269. "Test `org-parse-time-string'."
  270. (should (equal (org-parse-time-string "2012-03-29 16:40")
  271. '(0 40 16 29 3 2012 nil nil nil)))
  272. (should (equal (org-parse-time-string "[2012-03-29 16:40]")
  273. '(0 40 16 29 3 2012 nil nil nil)))
  274. (should (equal (org-parse-time-string "<2012-03-29 16:40>")
  275. '(0 40 16 29 3 2012 nil nil nil)))
  276. (should (equal (org-parse-time-string "<2012-03-29>")
  277. '(0 0 0 29 3 2012 nil nil nil)))
  278. (should (equal (org-parse-time-string "<2012-03-29>" t)
  279. '(0 nil nil 29 3 2012 nil nil nil))))
  280. (ert-deftest test-org/closest-date ()
  281. "Test `org-closest-date' specifications."
  282. (require 'calendar)
  283. ;; Time stamps without a repeater are returned unchanged.
  284. (should
  285. (equal
  286. '(3 29 2012)
  287. (calendar-gregorian-from-absolute
  288. (org-closest-date "<2012-03-29>" "<2014-03-04>" nil))))
  289. ;; Time stamps with a null repeater are returned unchanged.
  290. (should
  291. (equal
  292. '(3 29 2012)
  293. (calendar-gregorian-from-absolute
  294. (org-closest-date "<2012-03-29 +0d>" "<2014-03-04>" nil))))
  295. ;; if PREFER is set to `past' always return a date before, or equal
  296. ;; to CURRENT.
  297. (should
  298. (equal
  299. '(3 1 2014)
  300. (calendar-gregorian-from-absolute
  301. (org-closest-date "<2012-03-29 +1m>" "<2014-03-04>" 'past))))
  302. (should
  303. (equal
  304. '(3 4 2014)
  305. (calendar-gregorian-from-absolute
  306. (org-closest-date "<2012-03-04 +1m>" "<2014-03-04>" 'past))))
  307. ;; if PREFER is set to `future' always return a date before, or equal
  308. ;; to CURRENT.
  309. (should
  310. (equal
  311. '(3 29 2014)
  312. (calendar-gregorian-from-absolute
  313. (org-closest-date "<2012-03-29 +1m>" "<2014-03-04>" 'future))))
  314. (should
  315. (equal
  316. '(3 4 2014)
  317. (calendar-gregorian-from-absolute
  318. (org-closest-date "<2012-03-04 +1m>" "<2014-03-04>" 'future))))
  319. ;; If PREFER is neither `past' nor `future', select closest date.
  320. (should
  321. (equal
  322. '(3 1 2014)
  323. (calendar-gregorian-from-absolute
  324. (org-closest-date "<2012-03-29 +1m>" "<2014-03-04>" nil))))
  325. (should
  326. (equal
  327. '(5 4 2014)
  328. (calendar-gregorian-from-absolute
  329. (org-closest-date "<2012-03-04 +1m>" "<2014-04-28>" nil))))
  330. ;; Test "day" repeater.
  331. (should
  332. (equal '(3 8 2014)
  333. (calendar-gregorian-from-absolute
  334. (org-closest-date "<2014-03-04 +2d>" "<2014-03-09>" 'past))))
  335. (should
  336. (equal '(3 10 2014)
  337. (calendar-gregorian-from-absolute
  338. (org-closest-date "<2014-03-04 +2d>" "<2014-03-09>" 'future))))
  339. ;; Test "month" repeater.
  340. (should
  341. (equal '(1 5 2015)
  342. (calendar-gregorian-from-absolute
  343. (org-closest-date "<2014-03-05 +2m>" "<2015-02-04>" 'past))))
  344. (should
  345. (equal '(3 29 2014)
  346. (calendar-gregorian-from-absolute
  347. (org-closest-date "<2012-03-29 +2m>" "<2014-03-04>" 'future))))
  348. ;; Test "year" repeater.
  349. (should
  350. (equal '(3 5 2014)
  351. (calendar-gregorian-from-absolute
  352. (org-closest-date "<2014-03-05 +2y>" "<2015-02-04>" 'past))))
  353. (should
  354. (equal '(3 29 2014)
  355. (calendar-gregorian-from-absolute
  356. (org-closest-date "<2012-03-29 +2y>" "<2014-03-04>" 'future)))))
  357. (ert-deftest test-org/deadline-close-p ()
  358. "Test `org-deadline-close-p' specifications."
  359. ;; Pretend that the current time is 2016-06-03 Fri 01:43
  360. (cl-letf (((symbol-function 'current-time)
  361. (lambda () '(22353 6425 905205 644000))))
  362. ;; Timestamps are close if they are within `ndays' of lead time.
  363. (org-test-with-temp-text "* Heading"
  364. (should (org-deadline-close-p "2016-06-03 Fri" 0))
  365. (should (org-deadline-close-p "2016-06-02 Thu" 0))
  366. (should-not (org-deadline-close-p "2016-06-04 Sat" 0))
  367. (should (org-deadline-close-p "2016-06-04 Sat" 1))
  368. (should (org-deadline-close-p "2016-06-03 Fri 12:00" 0)))
  369. ;; Read `ndays' from timestamp if argument not given.
  370. (org-test-with-temp-text "* H"
  371. (should (org-deadline-close-p "2016-06-04 Sat -1d"))
  372. (should-not (org-deadline-close-p "2016-06-04 Sat -0d"))
  373. (should (org-deadline-close-p "2016-06-10 Fri -1w"))
  374. (should-not (org-deadline-close-p "2016-06-11 Sat -1w")))
  375. ;; Prefer `ndays' argument over lead time in timestamp.
  376. (org-test-with-temp-text "* H"
  377. (should (org-deadline-close-p "2016-06-04 Sat -0d" 1))
  378. (should-not (org-deadline-close-p "2016-06-04 Sat -0d" 0)))
  379. ;; Completed tasks are never close.
  380. (let ((org-todo-keywords '(("TODO" "|" "DONE"))))
  381. (org-test-with-temp-text "* TODO Heading"
  382. (should (org-deadline-close-p "2016-06-03")))
  383. (org-test-with-temp-text "* DONE Heading"
  384. (should-not (org-deadline-close-p "2016-06-03"))))))
  385. ;;; Drawers
  386. (ert-deftest test-org/insert-property-drawer ()
  387. "Test `org-insert-property-drawer' specifications."
  388. ;; Error before first headline.
  389. (should-error (org-test-with-temp-text "" (org-insert-property-drawer)))
  390. ;; Insert drawer right after headline if there is no planning line,
  391. ;; or after it otherwise.
  392. (should
  393. (equal "* H\n:PROPERTIES:\n:END:\nParagraph"
  394. (org-test-with-temp-text "* H\nParagraph<point>"
  395. (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
  396. (buffer-string))))
  397. (should
  398. (equal "* H\nDEADLINE: <2014-03-04 tue.>\n:PROPERTIES:\n:END:\nParagraph"
  399. (org-test-with-temp-text
  400. "* H\nDEADLINE: <2014-03-04 tue.>\nParagraph<point>"
  401. (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
  402. (buffer-string))))
  403. ;; Indent inserted drawer.
  404. (should
  405. (equal "* H\n :PROPERTIES:\n :END:\nParagraph"
  406. (org-test-with-temp-text "* H\nParagraph<point>"
  407. (let ((org-adapt-indentation t)) (org-insert-property-drawer))
  408. (buffer-string))))
  409. ;; Handle insertion at eob.
  410. (should
  411. (equal "* H\n:PROPERTIES:\n:END:\n"
  412. (org-test-with-temp-text "* H"
  413. (let ((org-adapt-indentation nil)) (org-insert-property-drawer))
  414. (buffer-string))))
  415. ;; Skip inlinetasks before point.
  416. (when (featurep 'org-inlinetask)
  417. (should
  418. (equal "* H\n:PROPERTIES:\n:END:\n*************** I\n*************** END\nP"
  419. (org-test-with-temp-text
  420. "* H\n*************** I\n*************** END\nP<point>"
  421. (let ((org-adapt-indentation nil)
  422. (org-inlinetask-min-level 15))
  423. (org-insert-property-drawer))
  424. (buffer-string)))))
  425. ;; Correctly set drawer in an inlinetask.
  426. (when (featurep 'org-inlinetask)
  427. (should
  428. (equal "* H\n*************** I\n:PROPERTIES:\n:END:\nP\n*************** END"
  429. (org-test-with-temp-text
  430. "* H\n*************** I\nP<point>\n*************** END"
  431. (let ((org-adapt-indentation nil)
  432. (org-inlinetask-min-level 15))
  433. (org-insert-property-drawer))
  434. (buffer-string))))))
  435. ;;; Filling
  436. (ert-deftest test-org/fill-paragraph ()
  437. "Test `org-fill-paragraph' specifications."
  438. ;; At an Org table, align it.
  439. (should
  440. (equal "| a |\n"
  441. (org-test-with-temp-text "|a|"
  442. (org-fill-paragraph)
  443. (buffer-string))))
  444. (should
  445. (equal "#+name: table\n| a |\n"
  446. (org-test-with-temp-text "#+name: table\n| a |\n"
  447. (org-fill-paragraph)
  448. (buffer-string))))
  449. ;; At a paragraph, preserve line breaks.
  450. (org-test-with-temp-text "some \\\\\nlong\ntext"
  451. (let ((fill-column 20))
  452. (org-fill-paragraph)
  453. (should (equal (buffer-string) "some \\\\\nlong text"))))
  454. ;; Correctly fill a paragraph when point is at its very end.
  455. (should
  456. (equal "A B"
  457. (org-test-with-temp-text "A\nB"
  458. (let ((fill-column 20))
  459. (goto-char (point-max))
  460. (org-fill-paragraph)
  461. (buffer-string)))))
  462. ;; Correctly fill the last paragraph of a greater element.
  463. (should
  464. (equal "#+BEGIN_CENTER\n- 012345\n 789\n#+END_CENTER"
  465. (org-test-with-temp-text "#+BEGIN_CENTER\n- 012345 789\n#+END_CENTER"
  466. (let ((fill-column 8))
  467. (forward-line)
  468. (end-of-line)
  469. (org-fill-paragraph)
  470. (buffer-string)))))
  471. ;; Correctly fill an element in a narrowed buffer.
  472. (should
  473. (equal "01234\n6"
  474. (org-test-with-temp-text "01234 6789"
  475. (let ((fill-column 5))
  476. (narrow-to-region 1 8)
  477. (org-fill-paragraph)
  478. (buffer-string)))))
  479. ;; Handle `adaptive-fill-regexp' in paragraphs.
  480. (should
  481. (equal "> a b"
  482. (org-test-with-temp-text "> a\n> b"
  483. (let ((fill-column 5)
  484. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  485. (org-fill-paragraph)
  486. (buffer-string)))))
  487. ;; Special case: Fill first paragraph when point is at an item or
  488. ;; a plain-list or a footnote reference.
  489. (should
  490. (equal "- A B"
  491. (org-test-with-temp-text "- A\n B"
  492. (let ((fill-column 20))
  493. (org-fill-paragraph)
  494. (buffer-string)))))
  495. (should
  496. (equal "[fn:1] A B"
  497. (org-test-with-temp-text "[fn:1] A\nB"
  498. (let ((fill-column 20))
  499. (org-fill-paragraph)
  500. (buffer-string)))))
  501. (org-test-with-temp-text "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"
  502. (let ((fill-column 20))
  503. (org-fill-paragraph)
  504. (should (equal (buffer-string)
  505. "#+BEGIN_VERSE\nSome \\\\\nlong\ntext\n#+END_VERSE"))))
  506. ;; Fill contents of `comment-block' elements.
  507. (should
  508. (equal
  509. (org-test-with-temp-text "#+BEGIN_COMMENT\nSome\ntext\n#+END_COMMENT"
  510. (let ((fill-column 20))
  511. (forward-line)
  512. (org-fill-paragraph)
  513. (buffer-string)))
  514. "#+BEGIN_COMMENT\nSome text\n#+END_COMMENT"))
  515. ;; Fill `comment' elements.
  516. (should
  517. (equal " # A B"
  518. (org-test-with-temp-text " # A\n # B"
  519. (let ((fill-column 20))
  520. (org-fill-paragraph)
  521. (buffer-string)))))
  522. ;; Do not mix consecutive comments when filling one of them.
  523. (should
  524. (equal "# A B\n\n# C"
  525. (org-test-with-temp-text "# A\n# B\n\n# C"
  526. (let ((fill-column 20))
  527. (org-fill-paragraph)
  528. (buffer-string)))))
  529. ;; Use commented empty lines as separators when filling comments.
  530. (should
  531. (equal "# A B\n#\n# C"
  532. (org-test-with-temp-text "# A\n# B\n#\n# C"
  533. (let ((fill-column 20))
  534. (org-fill-paragraph)
  535. (buffer-string)))))
  536. ;; Handle `adaptive-fill-regexp' in comments.
  537. (should
  538. (equal "# > a b"
  539. (org-test-with-temp-text "# > a\n# > b"
  540. (let ((fill-column 20)
  541. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  542. (org-fill-paragraph)
  543. (buffer-string)))))
  544. ;; Do nothing at affiliated keywords.
  545. (org-test-with-temp-text "#+NAME: para\nSome\ntext."
  546. (let ((fill-column 20))
  547. (org-fill-paragraph)
  548. (should (equal (buffer-string) "#+NAME: para\nSome\ntext."))))
  549. ;; Do not move point after table when filling a table.
  550. (should-not
  551. (org-test-with-temp-text "| a | b |\n| c | d |\n"
  552. (forward-char)
  553. (org-fill-paragraph)
  554. (eobp))))
  555. (ert-deftest test-org/auto-fill-function ()
  556. "Test auto-filling features."
  557. ;; Auto fill paragraph.
  558. (should
  559. (equal "12345\n7890"
  560. (org-test-with-temp-text "12345 7890"
  561. (let ((fill-column 5))
  562. (end-of-line)
  563. (org-auto-fill-function)
  564. (buffer-string)))))
  565. ;; Auto fill first paragraph in an item.
  566. (should
  567. (equal "- 12345\n 7890"
  568. (org-test-with-temp-text "- 12345 7890"
  569. (let ((fill-column 7))
  570. (end-of-line)
  571. (org-auto-fill-function)
  572. (buffer-string)))))
  573. ;; Auto fill paragraph when `adaptive-fill-regexp' matches.
  574. (should
  575. (equal "> 12345\n 7890"
  576. (org-test-with-temp-text "> 12345 7890"
  577. (let ((fill-column 10)
  578. (adaptive-fill-regexp "[ \t]*>+[ \t]*")
  579. (adaptive-fill-first-line-regexp "\\`[ ]*\\'"))
  580. (end-of-line)
  581. (org-auto-fill-function)
  582. (buffer-string)))))
  583. (should
  584. (equal "> 12345\n> 12345\n> 7890"
  585. (org-test-with-temp-text "> 12345\n> 12345 7890"
  586. (let ((fill-column 10)
  587. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  588. (goto-char (point-max))
  589. (org-auto-fill-function)
  590. (buffer-string)))))
  591. (should-not
  592. (equal " 12345\n *12345\n *12345"
  593. (org-test-with-temp-text " 12345\n *12345 12345"
  594. (let ((fill-column 10)
  595. (adaptive-fill-regexp "[ \t]*>+[ \t]*"))
  596. (goto-char (point-max))
  597. (org-auto-fill-function)
  598. (buffer-string)))))
  599. ;; Auto fill comments.
  600. (should
  601. (equal " # 12345\n # 7890"
  602. (org-test-with-temp-text " # 12345 7890"
  603. (let ((fill-column 10))
  604. (end-of-line)
  605. (org-auto-fill-function)
  606. (buffer-string)))))
  607. ;; A hash within a line isn't a comment.
  608. (should-not
  609. (equal "12345 # 7890\n# 1"
  610. (org-test-with-temp-text "12345 # 7890 1"
  611. (let ((fill-column 12))
  612. (end-of-line)
  613. (org-auto-fill-function)
  614. (buffer-string)))))
  615. ;; Correctly interpret empty prefix.
  616. (should-not
  617. (equal "# a\n# b\nRegular\n# paragraph"
  618. (org-test-with-temp-text "# a\n# b\nRegular paragraph"
  619. (let ((fill-column 12))
  620. (end-of-line 3)
  621. (org-auto-fill-function)
  622. (buffer-string)))))
  623. ;; Comment block: auto fill contents.
  624. (should
  625. (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
  626. (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
  627. (let ((fill-column 5))
  628. (forward-line)
  629. (end-of-line)
  630. (org-auto-fill-function)
  631. (buffer-string)))))
  632. (should
  633. (equal "#+BEGIN_COMMENT\n12345\n7890\n#+END_COMMENT"
  634. (org-test-with-temp-text "#+BEGIN_COMMENT\n12345 7890\n#+END_COMMENT"
  635. (let ((fill-column 5))
  636. (forward-line)
  637. (end-of-line)
  638. (org-auto-fill-function)
  639. (buffer-string)))))
  640. ;; Do not fill if a new item could be created.
  641. (should-not
  642. (equal "12345\n- 90"
  643. (org-test-with-temp-text "12345 - 90"
  644. (let ((fill-column 5))
  645. (end-of-line)
  646. (org-auto-fill-function)
  647. (buffer-string)))))
  648. ;; Do not fill if a line break could be introduced.
  649. (should-not
  650. (equal "123\\\\\n7890"
  651. (org-test-with-temp-text "123\\\\ 7890"
  652. (let ((fill-column 6))
  653. (end-of-line)
  654. (org-auto-fill-function)
  655. (buffer-string)))))
  656. ;; Do not fill affiliated keywords.
  657. (should-not
  658. (equal "#+ATTR_LATEX: ABC\nDEFGHIJKL"
  659. (org-test-with-temp-text "#+ATTR_LATEX: ABC DEFGHIJKL"
  660. (let ((fill-column 20))
  661. (end-of-line)
  662. (org-auto-fill-function)
  663. (buffer-string))))))
  664. ;;; Indentation
  665. (ert-deftest test-org/indent-line ()
  666. "Test `org-indent-line' specifications."
  667. ;; Do not indent diary sexps, footnote definitions or headlines.
  668. (should
  669. (zerop
  670. (org-test-with-temp-text "%%(org-calendar-holiday)"
  671. (org-indent-line)
  672. (org-get-indentation))))
  673. (should
  674. (zerop
  675. (org-test-with-temp-text "[fn:1] fn"
  676. (let ((org-adapt-indentation t)) (org-indent-line))
  677. (org-get-indentation))))
  678. (should
  679. (zerop
  680. (org-test-with-temp-text "* H"
  681. (org-indent-line)
  682. (org-get-indentation))))
  683. ;; Do not indent before first headline.
  684. (should
  685. (zerop
  686. (org-test-with-temp-text ""
  687. (org-indent-line)
  688. (org-get-indentation))))
  689. ;; Indent according to headline level otherwise, unless
  690. ;; `org-adapt-indentation' is nil.
  691. (should
  692. (= 2
  693. (org-test-with-temp-text "* H\nA"
  694. (forward-line)
  695. (let ((org-adapt-indentation t)) (org-indent-line))
  696. (org-get-indentation))))
  697. (should
  698. (= 2
  699. (org-test-with-temp-text "* H\n\nA"
  700. (forward-line)
  701. (let ((org-adapt-indentation t)) (org-indent-line))
  702. (org-get-indentation))))
  703. (should
  704. (zerop
  705. (org-test-with-temp-text "* H\nA"
  706. (forward-line)
  707. (let ((org-adapt-indentation nil)) (org-indent-line))
  708. (org-get-indentation))))
  709. ;; Indenting preserves point position.
  710. (should
  711. (org-test-with-temp-text "* H\nAB"
  712. (forward-line)
  713. (forward-char)
  714. (let ((org-adapt-indentation t)) (org-indent-line))
  715. (looking-at "B")))
  716. ;; Do not change indentation at an item.
  717. (should
  718. (= 1
  719. (org-test-with-temp-text "* H\n - A"
  720. (forward-line)
  721. (let ((org-adapt-indentation t)) (org-indent-line))
  722. (org-get-indentation))))
  723. ;; On blank lines at the end of a list, indent like last element
  724. ;; within it if the line is still in the list. If the last element
  725. ;; is an item, indent like its contents. Otherwise, indent like the
  726. ;; whole list.
  727. (should
  728. (= 4
  729. (org-test-with-temp-text "* H\n- A\n - AA\n<point>"
  730. (let ((org-adapt-indentation t)) (org-indent-line))
  731. (org-get-indentation))))
  732. (should
  733. (= 4
  734. (org-test-with-temp-text "* H\n- A\n -\n\n<point>"
  735. (let ((org-adapt-indentation t)) (org-indent-line))
  736. (org-get-indentation))))
  737. (should
  738. (zerop
  739. (org-test-with-temp-text "* H\n- A\n - AA\n\n\n\n<point>"
  740. (let ((org-adapt-indentation t)) (org-indent-line))
  741. (org-get-indentation))))
  742. (should
  743. (= 4
  744. (org-test-with-temp-text "* H\n- A\n - \n<point>"
  745. (let ((org-adapt-indentation t)) (org-indent-line))
  746. (org-get-indentation))))
  747. (should
  748. (= 4
  749. (org-test-with-temp-text
  750. "* H\n - \n #+BEGIN_SRC emacs-lisp\n t\n #+END_SRC\n<point>"
  751. (let ((org-adapt-indentation t)) (org-indent-line))
  752. (org-get-indentation))))
  753. (should
  754. (= 2
  755. (org-test-with-temp-text "- A\n B\n\n<point>"
  756. (let ((org-adapt-indentation nil)) (org-indent-line))
  757. (org-get-indentation))))
  758. ;; Likewise, on a blank line at the end of a footnote definition,
  759. ;; indent at column 0 if line belongs to the definition. Otherwise,
  760. ;; indent like the definition itself.
  761. (should
  762. (zerop
  763. (org-test-with-temp-text "* H\n[fn:1] Definition\n"
  764. (goto-char (point-max))
  765. (let ((org-adapt-indentation t)) (org-indent-line))
  766. (org-get-indentation))))
  767. (should
  768. (zerop
  769. (org-test-with-temp-text "* H\n[fn:1] Definition\n\n\n\n"
  770. (goto-char (point-max))
  771. (let ((org-adapt-indentation t)) (org-indent-line))
  772. (org-get-indentation))))
  773. ;; After the end of the contents of a greater element, indent like
  774. ;; the beginning of the element.
  775. (should
  776. (= 1
  777. (org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
  778. (forward-line 2)
  779. (org-indent-line)
  780. (org-get-indentation))))
  781. ;; On blank lines after a paragraph, indent like its last non-empty
  782. ;; line.
  783. (should
  784. (= 1
  785. (org-test-with-temp-text " Paragraph\n\n<point>"
  786. (org-indent-line)
  787. (org-get-indentation))))
  788. ;; At the first line of an element, indent like previous element's
  789. ;; first line, ignoring footnotes definitions and inline tasks, or
  790. ;; according to parent.
  791. (should
  792. (= 2
  793. (org-test-with-temp-text "A\n\n B\n\nC"
  794. (goto-char (point-max))
  795. (org-indent-line)
  796. (org-get-indentation))))
  797. (should
  798. (= 1
  799. (org-test-with-temp-text " A\n\n[fn:1] B\n\n\nC"
  800. (goto-char (point-max))
  801. (org-indent-line)
  802. (org-get-indentation))))
  803. (should
  804. (= 1
  805. (org-test-with-temp-text " #+BEGIN_CENTER\n Contents\n#+END_CENTER"
  806. (forward-line 1)
  807. (org-indent-line)
  808. (org-get-indentation))))
  809. ;; Within code part of a source block, use language major mode if
  810. ;; `org-src-tab-acts-natively' is non-nil. Otherwise, indent
  811. ;; according to line above.
  812. (should
  813. (= 6
  814. (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  815. (forward-line 2)
  816. (let ((org-src-tab-acts-natively t)
  817. (org-edit-src-content-indentation 0))
  818. (org-indent-line))
  819. (org-get-indentation))))
  820. (should
  821. (= 1
  822. (org-test-with-temp-text "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  823. (forward-line 2)
  824. (let ((org-src-tab-acts-natively nil)
  825. (org-edit-src-content-indentation 0))
  826. (org-indent-line))
  827. (org-get-indentation))))
  828. ;; Otherwise, indent like the first non-blank line above.
  829. (should
  830. (zerop
  831. (org-test-with-temp-text "#+BEGIN_CENTER\nline1\n\n line2\n#+END_CENTER"
  832. (forward-line 3)
  833. (org-indent-line)
  834. (org-get-indentation))))
  835. ;; Align node properties according to `org-property-format'. Handle
  836. ;; nicely empty values.
  837. (should
  838. (equal "* H\n:PROPERTIES:\n:key: value\n:END:"
  839. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:key: value\n:END:"
  840. (let ((org-property-format "%-10s %s")) (org-indent-line))
  841. (buffer-string))))
  842. (should
  843. (equal "* H\n:PROPERTIES:\n:key:\n:END:"
  844. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:key:\n:END:"
  845. (let ((org-property-format "%-10s %s")) (org-indent-line))
  846. (buffer-string)))))
  847. (ert-deftest test-org/indent-region ()
  848. "Test `org-indent-region' specifications."
  849. ;; Indent paragraph.
  850. (should
  851. (equal "A\nB\nC"
  852. (org-test-with-temp-text " A\nB\n C"
  853. (org-indent-region (point-min) (point-max))
  854. (buffer-string))))
  855. ;; Indent greater elements along with their contents.
  856. (should
  857. (equal "#+BEGIN_CENTER\nA\nB\n#+END_CENTER"
  858. (org-test-with-temp-text "#+BEGIN_CENTER\n A\n B\n#+END_CENTER"
  859. (org-indent-region (point-min) (point-max))
  860. (buffer-string))))
  861. ;; Ignore contents of verse blocks and example blocks.
  862. (should
  863. (equal "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
  864. (org-test-with-temp-text "#+BEGIN_VERSE\n A\n B\n#+END_VERSE"
  865. (org-indent-region (point-min) (point-max))
  866. (buffer-string))))
  867. (should
  868. (equal "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
  869. (org-test-with-temp-text "#+BEGIN_EXAMPLE\n A\n B\n#+END_EXAMPLE"
  870. (org-indent-region (point-min) (point-max))
  871. (buffer-string))))
  872. ;; Indent according to mode if `org-src-tab-acts-natively' is
  873. ;; non-nil. Otherwise, do not indent code at all.
  874. (should
  875. (equal "#+BEGIN_SRC emacs-lisp\n(and A\n B)\n#+END_SRC"
  876. (org-test-with-temp-text
  877. "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  878. (let ((org-src-tab-acts-natively t)
  879. (org-edit-src-content-indentation 0))
  880. (org-indent-region (point-min) (point-max)))
  881. (buffer-string))))
  882. (should
  883. (equal "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  884. (org-test-with-temp-text
  885. "#+BEGIN_SRC emacs-lisp\n (and A\nB)\n#+END_SRC"
  886. (let ((org-src-tab-acts-natively nil)
  887. (org-edit-src-content-indentation 0))
  888. (org-indent-region (point-min) (point-max)))
  889. (buffer-string))))
  890. ;; Align node properties according to `org-property-format'. Handle
  891. ;; nicely empty values.
  892. (should
  893. (equal "* H\n:PROPERTIES:\n:key: value\n:END:"
  894. (org-test-with-temp-text "* H\n<point>:PROPERTIES:\n:key: value\n:END:"
  895. (let ((org-property-format "%-10s %s")
  896. (org-adapt-indentation nil))
  897. (org-indent-region (point) (point-max)))
  898. (buffer-string))))
  899. (should
  900. (equal "* H\n:PROPERTIES:\n:key:\n:END:"
  901. (org-test-with-temp-text "* H\n<point>:PROPERTIES:\n:key:\n:END:"
  902. (let ((org-property-format "%-10s %s")
  903. (org-adapt-indentation nil))
  904. (org-indent-region (point) (point-max)))
  905. (buffer-string))))
  906. ;; Indent plain lists.
  907. (should
  908. (equal "- A\n B\n - C\n\n D"
  909. (org-test-with-temp-text "- A\n B\n - C\n\n D"
  910. (org-indent-region (point-min) (point-max))
  911. (buffer-string))))
  912. (should
  913. (equal "- A\n\n- B"
  914. (org-test-with-temp-text " - A\n\n - B"
  915. (org-indent-region (point-min) (point-max))
  916. (buffer-string))))
  917. ;; Indent footnote definitions.
  918. (should
  919. (equal "[fn:1] Definition\n\nDefinition"
  920. (org-test-with-temp-text "[fn:1] Definition\n\n Definition"
  921. (org-indent-region (point-min) (point-max))
  922. (buffer-string))))
  923. ;; Special case: Start indenting on a blank line.
  924. (should
  925. (equal "\nParagraph"
  926. (org-test-with-temp-text "\n Paragraph"
  927. (org-indent-region (point-min) (point-max))
  928. (buffer-string)))))
  929. ;;; Editing
  930. (ert-deftest test-org/delete-indentation ()
  931. "Test `org-delete-indentation' specifications."
  932. ;; Regular test.
  933. (should (equal "foo bar"
  934. (org-test-with-temp-text
  935. "foo \n bar<point>"
  936. (org-delete-indentation)
  937. (buffer-string))))
  938. ;; With optional argument.
  939. (should (equal "foo bar"
  940. (org-test-with-temp-text
  941. "foo<point> \n bar"
  942. (org-delete-indentation t)
  943. (buffer-string))))
  944. ;; At headline text should be appended to the headline text.
  945. (should
  946. (equal"* foo bar :tag:"
  947. (let (org-auto-align-tags)
  948. (org-test-with-temp-text
  949. "* foo :tag:\n bar<point>"
  950. (org-delete-indentation)
  951. (buffer-string)))))
  952. (should
  953. (equal "* foo bar :tag:"
  954. (let (org-auto-align-tags)
  955. (org-test-with-temp-text
  956. "* foo <point>:tag:\n bar"
  957. (org-delete-indentation t)
  958. (buffer-string))))))
  959. (ert-deftest test-org/return ()
  960. "Test `org-return' specifications."
  961. ;; Regular test.
  962. (should
  963. (equal "Para\ngraph"
  964. (org-test-with-temp-text "Para<point>graph"
  965. (org-return)
  966. (buffer-string))))
  967. ;; With optional argument, indent line.
  968. (should
  969. (equal " Para\n graph"
  970. (org-test-with-temp-text " Para<point>graph"
  971. (org-return t)
  972. (buffer-string))))
  973. ;; On a table, call `org-table-next-row'.
  974. (should
  975. (org-test-with-temp-text "| <point>a |\n| b |"
  976. (org-return)
  977. (looking-at-p "b")))
  978. ;; Open link or timestamp under point when `org-return-follows-link'
  979. ;; is non-nil.
  980. (should
  981. (org-test-with-temp-text "Link [[target<point>]] <<target>>"
  982. (let ((org-return-follows-link t)
  983. (org-link-search-must-match-exact-headline nil))
  984. (org-return))
  985. (looking-at-p "<<target>>")))
  986. (should-not
  987. (org-test-with-temp-text "Link [[target<point>]] <<target>>"
  988. (let ((org-return-follows-link nil)) (org-return))
  989. (looking-at-p "<<target>>")))
  990. (should
  991. (org-test-with-temp-text "* [[b][a<point>]]\n* b"
  992. (let ((org-return-follows-link t)) (org-return))
  993. (looking-at-p "* b")))
  994. (should
  995. (org-test-with-temp-text "Link [[target][/descipt<point>ion/]] <<target>>"
  996. (let ((org-return-follows-link t)
  997. (org-link-search-must-match-exact-headline nil))
  998. (org-return))
  999. (looking-at-p "<<target>>")))
  1000. (should-not
  1001. (org-test-with-temp-text "Link [[target]]<point> <<target>>"
  1002. (let ((org-return-follows-link t)
  1003. (org-link-search-must-match-exact-headline nil))
  1004. (org-return))
  1005. (looking-at-p "<<target>>")))
  1006. ;; When `org-return-follows-link' is non-nil, tolerate links and
  1007. ;; timestamps in comments, node properties, etc.
  1008. (should
  1009. (org-test-with-temp-text "# Comment [[target<point>]]\n <<target>>"
  1010. (let ((org-return-follows-link t)
  1011. (org-link-search-must-match-exact-headline nil))
  1012. (org-return))
  1013. (looking-at-p "<<target>>")))
  1014. (should-not
  1015. (org-test-with-temp-text "# Comment [[target<point>]]\n <<target>>"
  1016. (let ((org-return-follows-link nil)) (org-return))
  1017. (looking-at-p "<<target>>")))
  1018. (should-not
  1019. (org-test-with-temp-text "# Comment [[target]]<point>\n <<target>>"
  1020. (let ((org-return-follows-link t)
  1021. (org-link-search-must-match-exact-headline nil))
  1022. (org-return))
  1023. (looking-at-p "<<target>>")))
  1024. ;; However, do not open link when point is in a table.
  1025. (should
  1026. (org-test-with-temp-text "| [[target<point>]] |\n| between |\n| <<target>> |"
  1027. (let ((org-return-follows-link t)) (org-return))
  1028. (looking-at-p "between")))
  1029. ;; Special case: in a list, when indenting, do not break structure.
  1030. (should
  1031. (equal "- A\n B"
  1032. (org-test-with-temp-text "- A <point>B"
  1033. (org-return t)
  1034. (buffer-string))))
  1035. (should
  1036. (equal "- A\n\n- B"
  1037. (org-test-with-temp-text "- A\n<point>- B"
  1038. (org-return t)
  1039. (buffer-string))))
  1040. ;; On tags part of a headline, add a newline below it instead of
  1041. ;; breaking it.
  1042. (should
  1043. (equal "* H :tag:\n"
  1044. (org-test-with-temp-text "* H :<point>tag:"
  1045. (org-return)
  1046. (buffer-string))))
  1047. ;; Before headline text, add a newline below it instead of breaking
  1048. ;; it.
  1049. (should
  1050. (equal "* TODO H :tag:\n"
  1051. (org-test-with-temp-text "* <point>TODO H :tag:"
  1052. (org-return)
  1053. (buffer-string))))
  1054. (should
  1055. (equal "* TODO [#B] H :tag:\n"
  1056. (org-test-with-temp-text "* TODO<point> [#B] H :tag:"
  1057. (org-return)
  1058. (buffer-string))))
  1059. (should ;TODO are case-sensitive
  1060. (equal "* \nTodo"
  1061. (org-test-with-temp-text "* <point>Todo"
  1062. (org-return)
  1063. (buffer-string))))
  1064. ;; At headline text, break headline text but preserve tags.
  1065. (should
  1066. (equal "* TODO [#B] foo :tag:\nbar"
  1067. (let (org-auto-align-tags)
  1068. (org-test-with-temp-text "* TODO [#B] foo<point>bar :tag:"
  1069. (org-return)
  1070. (buffer-string)))))
  1071. ;; At bol of headline insert newline.
  1072. (should
  1073. (equal "\n* h"
  1074. (org-test-with-temp-text "<point>* h"
  1075. (org-return)
  1076. (buffer-string))))
  1077. ;; Refuse to leave invalid headline in buffer.
  1078. (should
  1079. (equal "* h\n"
  1080. (org-test-with-temp-text "*<point> h"
  1081. (org-return)
  1082. (buffer-string)))))
  1083. (ert-deftest test-org/meta-return ()
  1084. "Test M-RET (`org-meta-return') specifications."
  1085. ;; In a table field insert a row above.
  1086. (should
  1087. (org-test-with-temp-text "| a |"
  1088. (forward-char)
  1089. (org-meta-return)
  1090. (forward-line -1)
  1091. (looking-at "| |$")))
  1092. ;; In a paragraph change current line into a header.
  1093. (should
  1094. (org-test-with-temp-text "a"
  1095. (org-meta-return)
  1096. (beginning-of-line)
  1097. (looking-at "\* a$")))
  1098. ;; In an item insert an item, in this case above.
  1099. (should
  1100. (org-test-with-temp-text "- a"
  1101. (org-meta-return)
  1102. (beginning-of-line)
  1103. (looking-at "- $")))
  1104. ;; In a drawer and item insert an item, in this case above.
  1105. (should
  1106. (org-test-with-temp-text ":MYDRAWER:\n- a\n:END:"
  1107. (forward-line)
  1108. (org-meta-return)
  1109. (beginning-of-line)
  1110. (looking-at "- $"))))
  1111. (ert-deftest test-org/insert-heading ()
  1112. "Test `org-insert-heading' specifications."
  1113. ;; In an empty buffer, insert a new headline.
  1114. (should
  1115. (equal "* "
  1116. (org-test-with-temp-text ""
  1117. (org-insert-heading)
  1118. (buffer-string))))
  1119. ;; At the beginning of a line, turn it into a headline.
  1120. (should
  1121. (equal "* P"
  1122. (org-test-with-temp-text "<point>P"
  1123. (org-insert-heading)
  1124. (buffer-string))))
  1125. ;; In the middle of a line, split the line if allowed, otherwise,
  1126. ;; insert the headline at its end.
  1127. (should
  1128. (equal "Para\n* graph"
  1129. (org-test-with-temp-text "Para<point>graph"
  1130. (let ((org-M-RET-may-split-line '((default . t))))
  1131. (org-insert-heading))
  1132. (buffer-string))))
  1133. (should
  1134. (equal "Paragraph\n* "
  1135. (org-test-with-temp-text "Para<point>graph"
  1136. (let ((org-M-RET-may-split-line '((default . nil))))
  1137. (org-insert-heading))
  1138. (buffer-string))))
  1139. ;; At the beginning of a headline, create one above.
  1140. (should
  1141. (equal "* \n* H"
  1142. (org-test-with-temp-text "* H"
  1143. (org-insert-heading)
  1144. (buffer-string))))
  1145. ;; In the middle of a headline, split it if allowed.
  1146. (should
  1147. (equal "* H\n* 1\n"
  1148. (org-test-with-temp-text "* H<point>1"
  1149. (let ((org-M-RET-may-split-line '((headline . t))))
  1150. (org-insert-heading))
  1151. (buffer-string))))
  1152. (should
  1153. (equal "* H1\n* \n"
  1154. (org-test-with-temp-text "* H<point>1"
  1155. (let ((org-M-RET-may-split-line '((headline . nil))))
  1156. (org-insert-heading))
  1157. (buffer-string))))
  1158. ;; However, splitting cannot happen on TODO keywords, priorities or
  1159. ;; tags.
  1160. (should
  1161. (equal "* TODO H1\n* \n"
  1162. (org-test-with-temp-text "* TO<point>DO H1"
  1163. (let ((org-M-RET-may-split-line '((headline . t))))
  1164. (org-insert-heading))
  1165. (buffer-string))))
  1166. (should
  1167. (equal "* [#A] H1\n* \n"
  1168. (org-test-with-temp-text "* [#<point>A] H1"
  1169. (let ((org-M-RET-may-split-line '((headline . t))))
  1170. (org-insert-heading))
  1171. (buffer-string))))
  1172. (should
  1173. (equal "* H1 :tag:\n* \n"
  1174. (org-test-with-temp-text "* H1 :ta<point>g:"
  1175. (let ((org-M-RET-may-split-line '((headline . t))))
  1176. (org-insert-heading))
  1177. (buffer-string))))
  1178. ;; New headline level depends on the level of the headline above.
  1179. (should
  1180. (equal "** H\n** P"
  1181. (org-test-with-temp-text "** H\n<point>P"
  1182. (org-insert-heading)
  1183. (buffer-string))))
  1184. (should
  1185. (equal "** H\nPara\n** graph"
  1186. (org-test-with-temp-text "** H\nPara<point>graph"
  1187. (let ((org-M-RET-may-split-line '((default . t))))
  1188. (org-insert-heading))
  1189. (buffer-string))))
  1190. (should
  1191. (equal "** \n** H"
  1192. (org-test-with-temp-text "** H"
  1193. (org-insert-heading)
  1194. (buffer-string))))
  1195. ;; When called with one universal argument, insert a new headline at
  1196. ;; the end of the current subtree, independently on the position of
  1197. ;; point.
  1198. (should
  1199. (equal
  1200. "* H1\n** H2\n* \n"
  1201. (org-test-with-temp-text "* H1\n** H2"
  1202. (let ((org-insert-heading-respect-content nil))
  1203. (org-insert-heading '(4)))
  1204. (buffer-string))))
  1205. (should
  1206. (equal
  1207. "* H1\n** H2\n* \n"
  1208. (org-test-with-temp-text "* H<point>1\n** H2"
  1209. (let ((org-insert-heading-respect-content nil))
  1210. (org-insert-heading '(4)))
  1211. (buffer-string))))
  1212. ;; When called with two universal arguments, insert a new headline
  1213. ;; at the end of the grandparent subtree.
  1214. (should
  1215. (equal "* H1\n** H3\n- item\n** H2\n** \n"
  1216. (org-test-with-temp-text "* H1\n** H3\n- item<point>\n** H2"
  1217. (let ((org-insert-heading-respect-content nil))
  1218. (org-insert-heading '(16)))
  1219. (buffer-string))))
  1220. ;; When optional TOP-LEVEL argument is non-nil, always insert
  1221. ;; a level 1 heading.
  1222. (should
  1223. (equal "* H1\n** H2\n* \n"
  1224. (org-test-with-temp-text "* H1\n** H2<point>"
  1225. (org-insert-heading nil nil t)
  1226. (buffer-string))))
  1227. (should
  1228. (equal "* H1\n- item\n* "
  1229. (org-test-with-temp-text "* H1\n- item<point>"
  1230. (org-insert-heading nil nil t)
  1231. (buffer-string))))
  1232. ;; Obey `org-blank-before-new-entry'.
  1233. (should
  1234. (equal "* H1\n\n* \n"
  1235. (org-test-with-temp-text "* H1<point>"
  1236. (let ((org-blank-before-new-entry '((heading . t))))
  1237. (org-insert-heading))
  1238. (buffer-string))))
  1239. (should
  1240. (equal "* H1\n* \n"
  1241. (org-test-with-temp-text "* H1<point>"
  1242. (let ((org-blank-before-new-entry '((heading . nil))))
  1243. (org-insert-heading))
  1244. (buffer-string))))
  1245. (should
  1246. (equal "* H1\n* H2\n* \n"
  1247. (org-test-with-temp-text "* H1\n* H2<point>"
  1248. (let ((org-blank-before-new-entry '((heading . auto))))
  1249. (org-insert-heading))
  1250. (buffer-string))))
  1251. (should
  1252. (equal "* H1\n\n* H2\n\n* \n"
  1253. (org-test-with-temp-text "* H1\n\n* H2<point>"
  1254. (let ((org-blank-before-new-entry '((heading . auto))))
  1255. (org-insert-heading))
  1256. (buffer-string))))
  1257. ;; Corner case: correctly insert a headline after an empty one.
  1258. (should
  1259. (equal "* \n* \n"
  1260. (org-test-with-temp-text "* <point>"
  1261. (org-insert-heading)
  1262. (buffer-string)))))
  1263. (ert-deftest test-org/insert-todo-heading-respect-content ()
  1264. "Test `org-insert-todo-heading-respect-content' specifications."
  1265. ;; Create a TODO heading.
  1266. (should
  1267. (org-test-with-temp-text "* H1\n Body"
  1268. (org-insert-todo-heading-respect-content)
  1269. (nth 2 (org-heading-components))))
  1270. ;; Add headline at the end of the first subtree
  1271. (should
  1272. (equal
  1273. "* TODO \n"
  1274. (org-test-with-temp-text "* H1\nH1Body<point>\n** H2\nH2Body"
  1275. (org-insert-todo-heading-respect-content)
  1276. (buffer-substring-no-properties (line-beginning-position) (point-max)))))
  1277. ;; In a list, do not create a new item.
  1278. (should
  1279. (equal
  1280. "* TODO \n"
  1281. (org-test-with-temp-text "* H\n- an item\n- another one"
  1282. (search-forward "an ")
  1283. (org-insert-todo-heading-respect-content)
  1284. (buffer-substring-no-properties (line-beginning-position) (point-max))))))
  1285. (ert-deftest test-org/clone-with-time-shift ()
  1286. "Test `org-clone-subtree-with-time-shift'."
  1287. ;; Clone non-repeating once.
  1288. (should
  1289. (equal "\
  1290. * H1\n<2015-06-21>
  1291. * H1\n<2015-06-23>
  1292. "
  1293. (org-test-with-temp-text "* H1\n<2015-06-21 Sun>"
  1294. (org-clone-subtree-with-time-shift 1 "+2d")
  1295. (replace-regexp-in-string
  1296. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1297. nil nil 1))))
  1298. ;; Clone repeating once.
  1299. (should
  1300. (equal "\
  1301. * H1\n<2015-06-21>
  1302. * H1\n<2015-06-23>
  1303. * H1\n<2015-06-25 +1w>
  1304. "
  1305. (org-test-with-temp-text "* H1\n<2015-06-21 Sun +1w>"
  1306. (org-clone-subtree-with-time-shift 1 "+2d")
  1307. (replace-regexp-in-string
  1308. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1309. nil nil 1))))
  1310. ;; Clone non-repeating zero times.
  1311. (should
  1312. (equal "\
  1313. * H1\n<2015-06-21>
  1314. "
  1315. (org-test-with-temp-text "* H1\n<2015-06-21 Sun>"
  1316. (org-clone-subtree-with-time-shift 0 "+2d")
  1317. (replace-regexp-in-string
  1318. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1319. nil nil 1))))
  1320. ;; Clone repeating "zero" times.
  1321. (should
  1322. (equal "\
  1323. * H1\n<2015-06-21>
  1324. * H1\n<2015-06-23 +1w>
  1325. "
  1326. (org-test-with-temp-text "* H1\n<2015-06-21 Sun +1w>"
  1327. (org-clone-subtree-with-time-shift 0 "+2d")
  1328. (replace-regexp-in-string
  1329. "\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
  1330. nil nil 1)))))
  1331. ;;; Fixed-Width Areas
  1332. (ert-deftest test-org/toggle-fixed-width ()
  1333. "Test `org-toggle-fixed-width' specifications."
  1334. ;; No region: Toggle on fixed-width marker in paragraphs.
  1335. (should
  1336. (equal ": A"
  1337. (org-test-with-temp-text "A"
  1338. (org-toggle-fixed-width)
  1339. (buffer-string))))
  1340. ;; No region: Toggle off fixed-width markers in fixed-width areas.
  1341. (should
  1342. (equal "A"
  1343. (org-test-with-temp-text ": A"
  1344. (org-toggle-fixed-width)
  1345. (buffer-string))))
  1346. ;; No region: Toggle on marker in blank lines after elements or just
  1347. ;; after a headline.
  1348. (should
  1349. (equal "* H\n: "
  1350. (org-test-with-temp-text "* H\n"
  1351. (forward-line)
  1352. (org-toggle-fixed-width)
  1353. (buffer-string))))
  1354. (should
  1355. (equal "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n: "
  1356. (org-test-with-temp-text "#+BEGIN_EXAMPLE\nContents\n#+END_EXAMPLE\n"
  1357. (goto-char (point-max))
  1358. (org-toggle-fixed-width)
  1359. (buffer-string))))
  1360. ;; No region: Toggle on marker in front of one line elements (e.g.,
  1361. ;; headlines, clocks)
  1362. (should
  1363. (equal ": * Headline"
  1364. (org-test-with-temp-text "* Headline"
  1365. (org-toggle-fixed-width)
  1366. (buffer-string))))
  1367. (should
  1368. (equal ": #+KEYWORD: value"
  1369. (org-test-with-temp-text "#+KEYWORD: value"
  1370. (org-toggle-fixed-width)
  1371. (buffer-string))))
  1372. ;; No region: error in other situations.
  1373. (should-error
  1374. (org-test-with-temp-text "#+BEGIN_EXAMPLE\n: A\n#+END_EXAMPLE"
  1375. (forward-line)
  1376. (org-toggle-fixed-width)
  1377. (buffer-string)))
  1378. ;; No region: Indentation is preserved.
  1379. (should
  1380. (equal "- A\n : B"
  1381. (org-test-with-temp-text "- A\n B"
  1382. (forward-line)
  1383. (org-toggle-fixed-width)
  1384. (buffer-string))))
  1385. ;; Region: If it contains only fixed-width elements and blank lines,
  1386. ;; toggle off fixed-width markup.
  1387. (should
  1388. (equal "A\n\nB"
  1389. (org-test-with-temp-text ": A\n\n: B"
  1390. (transient-mark-mode 1)
  1391. (push-mark (point) t t)
  1392. (goto-char (point-max))
  1393. (org-toggle-fixed-width)
  1394. (buffer-string))))
  1395. ;; Region: If it contains anything else, toggle on fixed-width but
  1396. ;; not on fixed-width areas.
  1397. (should
  1398. (equal ": A\n: \n: B\n: \n: C"
  1399. (org-test-with-temp-text "A\n\n: B\n\nC"
  1400. (transient-mark-mode 1)
  1401. (push-mark (point) t t)
  1402. (goto-char (point-max))
  1403. (org-toggle-fixed-width)
  1404. (buffer-string))))
  1405. ;; Region: Ignore blank lines at its end, unless it contains only
  1406. ;; such lines.
  1407. (should
  1408. (equal ": A\n\n"
  1409. (org-test-with-temp-text "A\n\n"
  1410. (transient-mark-mode 1)
  1411. (push-mark (point) t t)
  1412. (goto-char (point-max))
  1413. (org-toggle-fixed-width)
  1414. (buffer-string))))
  1415. (should
  1416. (equal ": \n: \n"
  1417. (org-test-with-temp-text "\n\n"
  1418. (transient-mark-mode 1)
  1419. (push-mark (point) t t)
  1420. (goto-char (point-max))
  1421. (org-toggle-fixed-width)
  1422. (buffer-string)))))
  1423. ;;; Headline
  1424. (ert-deftest test-org/get-heading ()
  1425. "Test `org-get-heading' specifications."
  1426. ;; Return current heading, even if point is not on it.
  1427. (should
  1428. (equal "H"
  1429. (org-test-with-temp-text "* H"
  1430. (org-get-heading))))
  1431. (should
  1432. (equal "H"
  1433. (org-test-with-temp-text "* H\nText<point>"
  1434. (org-get-heading))))
  1435. ;; Without any optional argument, return TODO keywords and tags.
  1436. (should
  1437. (equal "TODO H"
  1438. (org-test-with-temp-text "#+TODO: TODO | DONE\n* TODO H<point>"
  1439. (org-get-heading))))
  1440. (should
  1441. (equal "H :tag:"
  1442. (org-test-with-temp-text "* H :tag:"
  1443. (org-get-heading))))
  1444. ;; With NO-TAGS argument, ignore tags.
  1445. (should
  1446. (equal "TODO H"
  1447. (org-test-with-temp-text "#+TODO: TODO | DONE\n* TODO H<point>"
  1448. (org-get-heading t))))
  1449. (should
  1450. (equal "H"
  1451. (org-test-with-temp-text "* H :tag:"
  1452. (org-get-heading t))))
  1453. ;; With NO-TODO, ignore TODO keyword.
  1454. (should
  1455. (equal "H"
  1456. (org-test-with-temp-text "#+TODO: TODO | DONE\n* TODO H<point>"
  1457. (org-get-heading nil t))))
  1458. (should
  1459. (equal "H :tag:"
  1460. (org-test-with-temp-text "* H :tag:"
  1461. (org-get-heading nil t))))
  1462. ;; TODO keywords are case-sensitive.
  1463. (should
  1464. (equal "Todo H"
  1465. (org-test-with-temp-text "#+TODO: TODO | DONE\n* Todo H<point>"
  1466. (org-get-heading nil t))))
  1467. ;; On an empty headline, return value is consistent.
  1468. (should (equal "" (org-test-with-temp-text "* " (org-get-heading))))
  1469. (should (equal "" (org-test-with-temp-text "* " (org-get-heading t))))
  1470. (should (equal "" (org-test-with-temp-text "* " (org-get-heading nil t))))
  1471. (should (equal "" (org-test-with-temp-text "* " (org-get-heading t t)))))
  1472. (ert-deftest test-org/in-commented-heading-p ()
  1473. "Test `org-in-commented-heading-p' specifications."
  1474. ;; Commented headline.
  1475. (should
  1476. (org-test-with-temp-text "* COMMENT Headline\nBody"
  1477. (goto-char (point-max))
  1478. (org-in-commented-heading-p)))
  1479. ;; Commented ancestor.
  1480. (should
  1481. (org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
  1482. (goto-char (point-max))
  1483. (org-in-commented-heading-p)))
  1484. ;; Comment keyword is case-sensitive.
  1485. (should-not
  1486. (org-test-with-temp-text "* Comment Headline\nBody"
  1487. (goto-char (point-max))
  1488. (org-in-commented-heading-p)))
  1489. ;; Keyword is standalone.
  1490. (should-not
  1491. (org-test-with-temp-text "* COMMENTHeadline\nBody"
  1492. (goto-char (point-max))
  1493. (org-in-commented-heading-p)))
  1494. ;; Optional argument.
  1495. (should-not
  1496. (org-test-with-temp-text "* COMMENT Headline\n** Level 2\nBody"
  1497. (goto-char (point-max))
  1498. (org-in-commented-heading-p t))))
  1499. (ert-deftest test-org/entry-blocked-p ()
  1500. ;; Check other dependencies.
  1501. (should
  1502. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** TODO two"
  1503. (let ((org-enforce-todo-dependencies t)
  1504. (org-blocker-hook
  1505. '(org-block-todo-from-children-or-siblings-or-parent)))
  1506. (org-entry-blocked-p))))
  1507. (should-not
  1508. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** DONE two"
  1509. (let ((org-enforce-todo-dependencies t)
  1510. (org-blocker-hook
  1511. '(org-block-todo-from-children-or-siblings-or-parent)))
  1512. (org-entry-blocked-p))))
  1513. ;; Entry without a TODO keyword or with a DONE keyword cannot be
  1514. ;; blocked.
  1515. (should-not
  1516. (org-test-with-temp-text "* Blocked\n** TODO one"
  1517. (let ((org-enforce-todo-dependencies t)
  1518. (org-blocker-hook
  1519. '(org-block-todo-from-children-or-siblings-or-parent)))
  1520. (org-entry-blocked-p))))
  1521. (should-not
  1522. (org-test-with-temp-text "* DONE Blocked\n** TODO one"
  1523. (let ((org-enforce-todo-dependencies t)
  1524. (org-blocker-hook
  1525. '(org-block-todo-from-children-or-siblings-or-parent)))
  1526. (org-entry-blocked-p))))
  1527. ;; Follow :ORDERED: specifications.
  1528. (should
  1529. (org-test-with-temp-text
  1530. "* H\n:PROPERTIES:\n:ORDERED: t\n:END:\n** TODO one\n** <point>TODO two"
  1531. (let ((org-enforce-todo-dependencies t)
  1532. (org-blocker-hook
  1533. '(org-block-todo-from-children-or-siblings-or-parent)))
  1534. (org-entry-blocked-p))))
  1535. (should-not
  1536. (org-test-with-temp-text
  1537. "* H\n:PROPERTIES:\n:ORDERED: t\n:END:\n** <point>TODO one\n** DONE two"
  1538. (let ((org-enforce-todo-dependencies t)
  1539. (org-blocker-hook
  1540. '(org-block-todo-from-children-or-siblings-or-parent)))
  1541. (org-entry-blocked-p)))))
  1542. (ert-deftest test-org/get-outline-path ()
  1543. "Test `org-get-outline-path' specifications."
  1544. ;; Top-level headlines have no outline path.
  1545. (should-not
  1546. (org-test-with-temp-text "* H"
  1547. (org-get-outline-path)))
  1548. ;; Otherwise, outline path is the path leading to the headline.
  1549. (should
  1550. (equal '("H")
  1551. (org-test-with-temp-text "* H\n** S<point>"
  1552. (org-get-outline-path))))
  1553. ;; Find path even when point is not on a headline.
  1554. (should
  1555. (equal '("H")
  1556. (org-test-with-temp-text "* H\n** S\nText<point>"
  1557. (org-get-outline-path))))
  1558. ;; TODO keywords, tags and statistics cookies are ignored.
  1559. (should
  1560. (equal '("H")
  1561. (org-test-with-temp-text "* TODO H [0/1] :tag:\n** S<point>"
  1562. (org-get-outline-path))))
  1563. ;; Links are replaced with their description or their path.
  1564. (should
  1565. (equal '("Org")
  1566. (org-test-with-temp-text
  1567. "* [[http://orgmode.org][Org]]\n** S<point>"
  1568. (org-get-outline-path))))
  1569. (should
  1570. (equal '("http://orgmode.org")
  1571. (org-test-with-temp-text
  1572. "* [[http://orgmode.org]]\n** S<point>"
  1573. (org-get-outline-path))))
  1574. ;; When WITH-SELF is non-nil, include current heading.
  1575. (should
  1576. (equal '("H")
  1577. (org-test-with-temp-text "* H"
  1578. (org-get-outline-path t))))
  1579. (should
  1580. (equal '("H" "S")
  1581. (org-test-with-temp-text "* H\n** S\nText<point>"
  1582. (org-get-outline-path t))))
  1583. ;; Using cache is transparent to the user.
  1584. (should
  1585. (equal '("H")
  1586. (org-test-with-temp-text "* H\n** S<point>"
  1587. (setq org-outline-path-cache nil)
  1588. (org-get-outline-path nil t))))
  1589. ;; Do not corrupt cache when finding outline path in distant part of
  1590. ;; the buffer.
  1591. (should
  1592. (equal '("H2")
  1593. (org-test-with-temp-text "* H\n** S<point>\n* H2\n** S2"
  1594. (setq org-outline-path-cache nil)
  1595. (org-get-outline-path nil t)
  1596. (search-forward "S2")
  1597. (org-get-outline-path nil t))))
  1598. ;; Do not choke on empty headlines.
  1599. (should
  1600. (org-test-with-temp-text "* H\n** <point>"
  1601. (org-get-outline-path)))
  1602. (should
  1603. (org-test-with-temp-text "* \n** H<point>"
  1604. (org-get-outline-path))))
  1605. (ert-deftest test-org/format-outline-path ()
  1606. "Test `org-format-outline-path' specifications."
  1607. (should
  1608. (string= (org-format-outline-path (list "one" "two" "three"))
  1609. "one/two/three"))
  1610. ;; Empty path.
  1611. (should
  1612. (string= (org-format-outline-path '())
  1613. ""))
  1614. (should
  1615. (string= (org-format-outline-path '(nil))
  1616. ""))
  1617. ;; Empty path and prefix.
  1618. (should
  1619. (string= (org-format-outline-path '() nil ">>")
  1620. ">>"))
  1621. ;; Trailing whitespace in headings.
  1622. (should
  1623. (string= (org-format-outline-path (list "one\t" "tw o " "three "))
  1624. "one/tw o/three"))
  1625. ;; Non-default prefix and separators.
  1626. (should
  1627. (string= (org-format-outline-path (list "one" "two" "three") nil ">>" "|")
  1628. ">>|one|two|three"))
  1629. ;; Truncate.
  1630. (should
  1631. (string= (org-format-outline-path (list "one" "two" "three" "four") 10)
  1632. "one/two/.."))
  1633. ;; Give a very narrow width.
  1634. (should
  1635. (string= (org-format-outline-path (list "one" "two" "three" "four") 2)
  1636. "on"))
  1637. ;; Give a prefix that extends beyond the width.
  1638. (should
  1639. (string= (org-format-outline-path (list "one" "two" "three" "four") 10
  1640. ">>>>>>>>>>")
  1641. ">>>>>>>>..")))
  1642. (ert-deftest test-org/map-entries ()
  1643. "Test `org-map-entries' specifications."
  1644. ;; Full match.
  1645. (should
  1646. (equal '(1 11)
  1647. (org-test-with-temp-text "* Level 1\n** Level 2"
  1648. (org-map-entries #'point))))
  1649. ;; Level match.
  1650. (should
  1651. (equal '(1)
  1652. (org-test-with-temp-text "* Level 1\n** Level 2"
  1653. (let (org-odd-levels-only) (org-map-entries #'point "LEVEL=1")))))
  1654. (should
  1655. (equal '(11)
  1656. (org-test-with-temp-text "* Level 1\n** Level 2"
  1657. (let (org-odd-levels-only) (org-map-entries #'point "LEVEL>1")))))
  1658. ;; Tag match.
  1659. (should
  1660. (equal '(11)
  1661. (org-test-with-temp-text "* H1 :no:\n* H2 :yes:"
  1662. (org-map-entries #'point "yes"))))
  1663. (should
  1664. (equal '(14)
  1665. (org-test-with-temp-text "* H1 :yes:a:\n* H2 :yes:b:"
  1666. (org-map-entries #'point "+yes-a"))))
  1667. (should
  1668. (equal '(11 23)
  1669. (org-test-with-temp-text "* H1 :no:\n* H2 :yes1:\n* H3 :yes2:"
  1670. (org-map-entries #'point "{yes?}"))))
  1671. ;; Priority match.
  1672. (should
  1673. (equal '(1)
  1674. (org-test-with-temp-text "* [#A] H1\n* [#B] H2"
  1675. (org-map-entries #'point "PRIORITY=\"A\""))))
  1676. ;; Date match.
  1677. (should
  1678. (equal '(36)
  1679. (org-test-with-temp-text "
  1680. * H1
  1681. SCHEDULED: <2012-03-29 thu.>
  1682. * H2
  1683. SCHEDULED: <2014-03-04 tue.>"
  1684. (org-map-entries #'point "SCHEDULED=\"<2014-03-04 tue.>\""))))
  1685. (should
  1686. (equal '(2)
  1687. (org-test-with-temp-text "
  1688. * H1
  1689. SCHEDULED: <2012-03-29 thu.>
  1690. * H2
  1691. SCHEDULED: <2014-03-04 tue.>"
  1692. (org-map-entries #'point "SCHEDULED<\"<2013-01-01>\""))))
  1693. ;; Regular property match.
  1694. (should
  1695. (equal '(2)
  1696. (org-test-with-temp-text "
  1697. * H1
  1698. :PROPERTIES:
  1699. :TEST: 1
  1700. :END:
  1701. * H2
  1702. :PROPERTIES:
  1703. :TEST: 2
  1704. :END:"
  1705. (org-map-entries #'point "TEST=1"))))
  1706. ;; Multiple criteria.
  1707. (should
  1708. (equal '(23)
  1709. (org-test-with-temp-text "* H1 :no:\n** H2 :yes:\n* H3 :yes:"
  1710. (let (org-odd-levels-only
  1711. (org-use-tag-inheritance nil))
  1712. (org-map-entries #'point "yes+LEVEL=1")))))
  1713. ;; "or" criteria.
  1714. (should
  1715. (equal '(12 24)
  1716. (org-test-with-temp-text "* H1 :yes:\n** H2 :yes:\n** H3 :no:"
  1717. (let (org-odd-levels-only)
  1718. (org-map-entries #'point "LEVEL=2|no")))))
  1719. (should
  1720. (equal '(1 12)
  1721. (org-test-with-temp-text "* H1 :yes:\n* H2 :no:\n* H3 :maybe:"
  1722. (let (org-odd-levels-only)
  1723. (org-map-entries #'point "yes|no")))))
  1724. ;; "and" criteria.
  1725. (should
  1726. (equal '(22)
  1727. (org-test-with-temp-text "* H1 :yes:\n* H2 :no:\n* H3 :yes:no:"
  1728. (let (org-odd-levels-only)
  1729. (org-map-entries #'point "yes&no"))))))
  1730. (ert-deftest test-org/edit-headline ()
  1731. "Test `org-edit-headline' specifications."
  1732. (should
  1733. (equal "* B"
  1734. (org-test-with-temp-text "* A"
  1735. (org-edit-headline "B")
  1736. (buffer-string))))
  1737. ;; Handle empty headings.
  1738. (should
  1739. (equal "* "
  1740. (org-test-with-temp-text "* A"
  1741. (org-edit-headline "")
  1742. (buffer-string))))
  1743. (should
  1744. (equal "* A"
  1745. (org-test-with-temp-text "* "
  1746. (org-edit-headline "A")
  1747. (buffer-string))))
  1748. ;; Handle TODO keywords and priority cookies.
  1749. (should
  1750. (equal "* TODO B"
  1751. (org-test-with-temp-text "* TODO A"
  1752. (org-edit-headline "B")
  1753. (buffer-string))))
  1754. (should
  1755. (equal "* [#A] B"
  1756. (org-test-with-temp-text "* [#A] A"
  1757. (org-edit-headline "B")
  1758. (buffer-string))))
  1759. (should
  1760. (equal "* TODO [#A] B"
  1761. (org-test-with-temp-text "* TODO [#A] A"
  1762. (org-edit-headline "B")
  1763. (buffer-string))))
  1764. ;; Handle tags.
  1765. (equal "* B :tag:"
  1766. (org-test-with-temp-text "* A :tag:"
  1767. (let ((org-tags-column 4)) (org-edit-headline "B"))
  1768. (buffer-string))))
  1769. ;;; Keywords
  1770. (ert-deftest test-org/set-regexps-and-options ()
  1771. "Test `org-set-regexps-and-options' specifications."
  1772. ;; TAGS keyword.
  1773. (should
  1774. (equal '(("A"))
  1775. (let ((org-tag-alist '(("A")))
  1776. (org-tag-persistent-alist nil))
  1777. (org-test-with-temp-text ""
  1778. (org-mode-restart)
  1779. org-current-tag-alist))))
  1780. (should
  1781. (equal '(("B"))
  1782. (let ((org-tag-alist '(("A")))
  1783. (org-tag-persistent-alist nil))
  1784. (org-test-with-temp-text "#+TAGS: B"
  1785. (org-mode-restart)
  1786. org-current-tag-alist))))
  1787. (should
  1788. (equal '(("C") ("B"))
  1789. (let ((org-tag-alist '(("A")))
  1790. (org-tag-persistent-alist '(("C"))))
  1791. (org-test-with-temp-text "#+TAGS: B"
  1792. (org-mode-restart)
  1793. org-current-tag-alist))))
  1794. (should
  1795. (equal '(("B"))
  1796. (let ((org-tag-alist '(("A")))
  1797. (org-tag-persistent-alist '(("C"))))
  1798. (org-test-with-temp-text "#+STARTUP: noptag\n#+TAGS: B"
  1799. (org-mode-restart)
  1800. org-current-tag-alist))))
  1801. (should
  1802. (equal '(("A" . ?a) ("B") ("C"))
  1803. (let ((org-tag-persistant-alist nil))
  1804. (org-test-with-temp-text "#+TAGS: A(a) B C"
  1805. (org-mode-restart)
  1806. org-current-tag-alist))))
  1807. (should
  1808. (equal '(("A") (:newline) ("B"))
  1809. (let ((org-tag-persistent-alist nil))
  1810. (org-test-with-temp-text "#+TAGS: A\n#+TAGS: B"
  1811. (org-mode-restart)
  1812. org-current-tag-alist))))
  1813. (should
  1814. (equal '((:startgroup) ("A") ("B") (:endgroup) ("C"))
  1815. (let ((org-tag-persistent-alist nil))
  1816. (org-test-with-temp-text "#+TAGS: { A B } C"
  1817. (org-mode-restart)
  1818. org-current-tag-alist))))
  1819. (should
  1820. (equal '((:startgroup) ("A") (:grouptags) ("B") ("C") (:endgroup))
  1821. (let ((org-tag-persistent-alist nil))
  1822. (org-test-with-temp-text "#+TAGS: { A : B C }"
  1823. (org-mode-restart)
  1824. org-current-tag-alist))))
  1825. (should
  1826. (equal '(("A" "B" "C"))
  1827. (let ((org-tag-persistent-alist nil))
  1828. (org-test-with-temp-text "#+TAGS: { A : B C }"
  1829. (org-mode-restart)
  1830. org-tag-groups-alist))))
  1831. (should
  1832. (equal '((:startgrouptag) ("A") (:grouptags) ("B") ("C") (:endgrouptag))
  1833. (let ((org-tag-persistent-alist nil))
  1834. (org-test-with-temp-text "#+TAGS: [ A : B C ]"
  1835. (org-mode-restart)
  1836. org-current-tag-alist))))
  1837. (should
  1838. (equal '(("A" "B" "C"))
  1839. (let ((org-tag-persistent-alist nil))
  1840. (org-test-with-temp-text "#+TAGS: [ A : B C ]"
  1841. (org-mode-restart)
  1842. org-tag-groups-alist))))
  1843. ;; FILETAGS keyword.
  1844. (should
  1845. (equal '("A" "B" "C")
  1846. (org-test-with-temp-text "#+FILETAGS: :A:B:C:"
  1847. (org-mode-restart)
  1848. org-file-tags)))
  1849. ;; PROPERTY keyword. Property names are case-insensitive.
  1850. (should
  1851. (equal "foo=1"
  1852. (org-test-with-temp-text "#+PROPERTY: var foo=1"
  1853. (org-mode-restart)
  1854. (cdr (assoc "var" org-file-properties)))))
  1855. (should
  1856. (equal
  1857. "foo=1 bar=2"
  1858. (org-test-with-temp-text "#+PROPERTY: var foo=1\n#+PROPERTY: var+ bar=2"
  1859. (org-mode-restart)
  1860. (cdr (assoc "var" org-file-properties)))))
  1861. (should
  1862. (equal
  1863. "foo=1 bar=2"
  1864. (org-test-with-temp-text "#+PROPERTY: var foo=1\n#+PROPERTY: VAR+ bar=2"
  1865. (org-mode-restart)
  1866. (cdr (assoc "var" org-file-properties)))))
  1867. ;; ARCHIVE keyword.
  1868. (should
  1869. (equal "%s_done::"
  1870. (org-test-with-temp-text "#+ARCHIVE: %s_done::"
  1871. (org-mode-restart)
  1872. org-archive-location)))
  1873. ;; CATEGORY keyword.
  1874. (should
  1875. (eq 'test
  1876. (org-test-with-temp-text "#+CATEGORY: test"
  1877. (org-mode-restart)
  1878. org-category)))
  1879. (should
  1880. (equal "test"
  1881. (org-test-with-temp-text "#+CATEGORY: test"
  1882. (org-mode-restart)
  1883. (cdr (assoc "CATEGORY" org-file-properties)))))
  1884. ;; COLUMNS keyword.
  1885. (should
  1886. (equal "%25ITEM %TAGS %PRIORITY %TODO"
  1887. (org-test-with-temp-text "#+COLUMNS: %25ITEM %TAGS %PRIORITY %TODO"
  1888. (org-mode-restart)
  1889. org-columns-default-format)))
  1890. ;; CONSTANTS keyword. Constants names are case sensitive.
  1891. (should
  1892. (equal '("299792458." "3.14")
  1893. (org-test-with-temp-text "#+CONSTANTS: c=299792458. pi=3.14"
  1894. (org-mode-restart)
  1895. (mapcar
  1896. (lambda (n) (cdr (assoc n org-table-formula-constants-local)))
  1897. '("c" "pi")))))
  1898. (should
  1899. (equal "3.14"
  1900. (org-test-with-temp-text "#+CONSTANTS: pi=22/7 pi=3.14"
  1901. (org-mode-restart)
  1902. (cdr (assoc "pi" org-table-formula-constants-local)))))
  1903. (should
  1904. (equal "22/7"
  1905. (org-test-with-temp-text "#+CONSTANTS: PI=22/7 pi=3.14"
  1906. (org-mode-restart)
  1907. (cdr (assoc "PI" org-table-formula-constants-local)))))
  1908. ;; LINK keyword.
  1909. (should
  1910. (equal
  1911. '("url1" "url2")
  1912. (org-test-with-temp-text "#+LINK: a url1\n#+LINK: b url2"
  1913. (org-mode-restart)
  1914. (mapcar (lambda (abbrev) (cdr (assoc abbrev org-link-abbrev-alist-local)))
  1915. '("a" "b")))))
  1916. ;; PRIORITIES keyword. Incomplete priorities sets are ignored.
  1917. (should
  1918. (equal
  1919. '(?X ?Z ?Y)
  1920. (org-test-with-temp-text "#+PRIORITIES: X Z Y"
  1921. (org-mode-restart)
  1922. (list org-highest-priority org-lowest-priority org-default-priority))))
  1923. (should
  1924. (equal
  1925. '(?A ?C ?B)
  1926. (org-test-with-temp-text "#+PRIORITIES: X Z"
  1927. (org-mode-restart)
  1928. (list org-highest-priority org-lowest-priority org-default-priority))))
  1929. ;; STARTUP keyword.
  1930. (should
  1931. (equal '(t t)
  1932. (org-test-with-temp-text "#+STARTUP: fold odd"
  1933. (org-mode-restart)
  1934. (list org-startup-folded org-odd-levels-only))))
  1935. ;; TODO keywords.
  1936. (should
  1937. (equal '(("A" "B") ("C"))
  1938. (org-test-with-temp-text "#+TODO: A B | C"
  1939. (org-mode-restart)
  1940. (list org-not-done-keywords org-done-keywords))))
  1941. (should
  1942. (equal '(("A" "C") ("B" "D"))
  1943. (org-test-with-temp-text "#+TODO: A | B\n#+TODO: C | D"
  1944. (org-mode-restart)
  1945. (list org-not-done-keywords org-done-keywords))))
  1946. (should
  1947. (equal '(("A" "B") ("C"))
  1948. (org-test-with-temp-text "#+TYP_TODO: A B | C"
  1949. (org-mode-restart)
  1950. (list org-not-done-keywords org-done-keywords))))
  1951. (should
  1952. (equal '((:startgroup) ("A" . ?a) (:endgroup))
  1953. (org-test-with-temp-text "#+TODO: A(a)"
  1954. (org-mode-restart)
  1955. org-todo-key-alist)))
  1956. (should
  1957. (equal '(("D" note nil) ("C" time nil) ("B" note time))
  1958. (org-test-with-temp-text "#+TODO: A(a) B(b@/!) | C(c!) D(d@)"
  1959. (org-mode-restart)
  1960. org-todo-log-states)))
  1961. ;; Enter SETUPFILE keyword.
  1962. (should
  1963. (equal "1"
  1964. (org-test-with-temp-text
  1965. (format "#+SETUPFILE: \"%s/examples/setupfile.org\"" org-test-dir)
  1966. (org-mode-restart)
  1967. (cdr (assoc "a" org-file-properties))))))
  1968. ;;; Links
  1969. ;;;; Coderefs
  1970. (ert-deftest test-org/coderef ()
  1971. "Test coderef links specifications."
  1972. (should
  1973. (org-test-with-temp-text "
  1974. #+BEGIN_SRC emacs-lisp
  1975. \(+ 1 1) (ref:sc)
  1976. #+END_SRC
  1977. \[[(sc)<point>]]"
  1978. (org-open-at-point)
  1979. (looking-at "(ref:sc)")))
  1980. ;; Find coderef even with alternate label format.
  1981. (should
  1982. (org-test-with-temp-text "
  1983. #+BEGIN_SRC emacs-lisp -l \"{ref:%s}\"
  1984. \(+ 1 1) {ref:sc}
  1985. #+END_SRC
  1986. \[[(sc)<point>]]"
  1987. (org-open-at-point)
  1988. (looking-at "{ref:sc}"))))
  1989. ;;;; Custom ID
  1990. (ert-deftest test-org/custom-id ()
  1991. "Test custom ID links specifications."
  1992. (should
  1993. (org-test-with-temp-text
  1994. "* H1\n:PROPERTIES:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom<point>]]"
  1995. (org-open-at-point)
  1996. (looking-at-p "\\* H1")))
  1997. ;; Throw an error on false positives.
  1998. (should-error
  1999. (org-test-with-temp-text
  2000. "* H1\n:DRAWER:\n:CUSTOM_ID: custom\n:END:\n* H2\n[[#custom<point>]]"
  2001. (org-open-at-point)
  2002. (looking-at-p "\\* H1"))))
  2003. ;;;; Fuzzy Links
  2004. ;; Fuzzy links [[text]] encompass links to a target (<<text>>), to
  2005. ;; a named element (#+name: text) and to headlines (* Text).
  2006. (ert-deftest test-org/fuzzy-links ()
  2007. "Test fuzzy links specifications."
  2008. ;; Fuzzy link goes in priority to a matching target.
  2009. (should
  2010. (org-test-with-temp-text
  2011. "#+NAME: Test\n|a|b|\n<<Test>>\n* Test\n<point>[[Test]]"
  2012. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  2013. (looking-at "<<Test>>")))
  2014. ;; Then fuzzy link points to an element with a given name.
  2015. (should
  2016. (org-test-with-temp-text "Test\n#+NAME: Test\n|a|b|\n* Test\n<point>[[Test]]"
  2017. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  2018. (looking-at "#\\+NAME: Test")))
  2019. ;; A target still lead to a matching headline otherwise.
  2020. (should
  2021. (org-test-with-temp-text "* Head1\n* Head2\n*Head3\n<point>[[Head2]]"
  2022. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  2023. (looking-at "\\* Head2")))
  2024. ;; With a leading star in link, enforce heading match.
  2025. (should
  2026. (org-test-with-temp-text "* Test\n<<Test>>\n<point>[[*Test]]"
  2027. (let ((org-link-search-must-match-exact-headline nil)) (org-open-at-point))
  2028. (looking-at "\\* Test")))
  2029. ;; With a leading star in link, enforce exact heading match, even
  2030. ;; with `org-link-search-must-match-exact-headline' set to nil.
  2031. (should-error
  2032. (org-test-with-temp-text "* Test 1\nFoo Bar\n<point>[[*Test]]"
  2033. (let ((org-link-search-must-match-exact-headline nil))
  2034. (org-open-at-point))))
  2035. ;; Handle non-nil `org-link-search-must-match-exact-headline'.
  2036. (should
  2037. (org-test-with-temp-text "* Test\nFoo Bar\n<point>[[Test]]"
  2038. (let ((org-link-search-must-match-exact-headline t)) (org-open-at-point))
  2039. (looking-at "\\* Test")))
  2040. (should
  2041. (org-test-with-temp-text "* Test\nFoo Bar\n<point>[[*Test]]"
  2042. (let ((org-link-search-must-match-exact-headline t)) (org-open-at-point))
  2043. (looking-at "\\* Test")))
  2044. ;; Heading match should not care about spaces, cookies, TODO
  2045. ;; keywords, priorities, and tags. However, TODO keywords are
  2046. ;; case-sensitive.
  2047. (should
  2048. (let ((first-line
  2049. "** TODO [#A] [/] Test [1/2] [33%] 1 \t 2 [%] :work:urgent: "))
  2050. (org-test-with-temp-text
  2051. (concat first-line "\nFoo Bar\n<point>[[*Test 1 2]]")
  2052. (let ((org-link-search-must-match-exact-headline nil)
  2053. (org-todo-regexp "TODO"))
  2054. (org-open-at-point))
  2055. (looking-at (regexp-quote first-line)))))
  2056. (should-error
  2057. (org-test-with-temp-text "** todo Test 1 2\nFoo Bar\n<point>[[*Test 1 2]]"
  2058. (let ((org-link-search-must-match-exact-headline nil)
  2059. (org-todo-regexp "TODO"))
  2060. (org-open-at-point))))
  2061. ;; Heading match should still be exact.
  2062. (should-error
  2063. (org-test-with-temp-text "
  2064. ** TODO [#A] [/] Test [1/2] [33%] 1 \t 2 [%] :work:urgent:
  2065. Foo Bar
  2066. <point>[[*Test 1]]"
  2067. (let ((org-link-search-must-match-exact-headline nil)
  2068. (org-todo-regexp "TODO"))
  2069. (org-open-at-point))))
  2070. (should
  2071. (org-test-with-temp-text "* Test 1 2 3\n** Test 1 2\n<point>[[*Test 1 2]]"
  2072. (let ((org-link-search-must-match-exact-headline nil)
  2073. (org-todo-regexp "TODO"))
  2074. (org-open-at-point))
  2075. (looking-at-p (regexp-quote "** Test 1 2"))))
  2076. ;; Heading match ignores COMMENT keyword.
  2077. (should
  2078. (org-test-with-temp-text "[[*Test]]\n* COMMENT Test"
  2079. (org-open-at-point)
  2080. (looking-at "\\* COMMENT Test")))
  2081. (should
  2082. (org-test-with-temp-text "[[*Test]]\n* TODO COMMENT Test"
  2083. (org-open-at-point)
  2084. (looking-at "\\* TODO COMMENT Test")))
  2085. ;; Correctly un-hexify fuzzy links.
  2086. (should
  2087. (org-test-with-temp-text "* With space\n[[*With%20space][With space<point>]]"
  2088. (org-open-at-point)
  2089. (bobp)))
  2090. (should
  2091. (org-test-with-temp-text "* [1]\n[[*%5B1%5D<point>]]"
  2092. (org-open-at-point)
  2093. (bobp))))
  2094. ;;;; Link Escaping
  2095. (ert-deftest test-org/org-link-escape-ascii-character ()
  2096. "Escape an ascii character."
  2097. (should
  2098. (string=
  2099. "%5B"
  2100. (org-link-escape "["))))
  2101. (ert-deftest test-org/org-link-escape-ascii-ctrl-character ()
  2102. "Escape an ascii control character."
  2103. (should
  2104. (string=
  2105. "%09"
  2106. (org-link-escape "\t"))))
  2107. (ert-deftest test-org/org-link-escape-multibyte-character ()
  2108. "Escape an unicode multibyte character."
  2109. (should
  2110. (string=
  2111. "%E2%82%AC"
  2112. (org-link-escape "€"))))
  2113. (ert-deftest test-org/org-link-escape-custom-table ()
  2114. "Escape string with custom character table."
  2115. (should
  2116. (string=
  2117. "Foo%3A%42ar%0A"
  2118. (org-link-escape "Foo:Bar\n" '(?\: ?\B)))))
  2119. (ert-deftest test-org/org-link-escape-custom-table-merge ()
  2120. "Escape string with custom table merged with default table."
  2121. (should
  2122. (string=
  2123. "%5BF%6F%6F%3A%42ar%0A%5D"
  2124. (org-link-escape "[Foo:Bar\n]" '(?\: ?\B ?\o) t))))
  2125. (ert-deftest test-org/org-link-unescape-ascii-character ()
  2126. "Unescape an ascii character."
  2127. (should
  2128. (string=
  2129. "["
  2130. (org-link-unescape "%5B"))))
  2131. (ert-deftest test-org/org-link-unescape-ascii-ctrl-character ()
  2132. "Unescpae an ascii control character."
  2133. (should
  2134. (string=
  2135. "\n"
  2136. (org-link-unescape "%0A"))))
  2137. (ert-deftest test-org/org-link-unescape-multibyte-character ()
  2138. "Unescape unicode multibyte character."
  2139. (should
  2140. (string=
  2141. "€"
  2142. (org-link-unescape "%E2%82%AC"))))
  2143. (ert-deftest test-org/org-link-unescape-ascii-extended-char ()
  2144. "Unescape old style percent escaped character."
  2145. (should
  2146. (string=
  2147. "àâçèéêîôùû"
  2148. (decode-coding-string
  2149. (org-link-unescape "%E0%E2%E7%E8%E9%EA%EE%F4%F9%FB") 'latin-1))))
  2150. (ert-deftest test-org/org-link-escape-url-with-escaped-char ()
  2151. "Escape and unescape a URL that includes an escaped char.
  2152. http://article.gmane.org/gmane.emacs.orgmode/21459/"
  2153. (should
  2154. (string=
  2155. "http://some.host.com/form?&id=blah%2Bblah25"
  2156. (org-link-unescape
  2157. (org-link-escape "http://some.host.com/form?&id=blah%2Bblah25")))))
  2158. ;;;; Open at point
  2159. (ert-deftest test-org/open-at-point-in-keyword ()
  2160. "Does `org-open-at-point' open link in a keyword line?"
  2161. (should
  2162. (org-test-with-temp-text
  2163. "<<top>>\n#+KEYWORD: <point>[[top]]"
  2164. (org-open-at-point) t)))
  2165. (ert-deftest test-org/open-at-point-in-property ()
  2166. "Does `org-open-at-point' open link in property drawer?"
  2167. (should
  2168. (org-test-with-temp-text
  2169. "* Headline
  2170. :PROPERTIES:
  2171. :URL: <point>[[*Headline]]
  2172. :END:"
  2173. (org-open-at-point) t)))
  2174. (ert-deftest test-org/open-at-point-in-comment ()
  2175. "Does `org-open-at-point' open link in a commented line?"
  2176. (should
  2177. (org-test-with-temp-text
  2178. "<<top>>\n# <point>[[top]]"
  2179. (org-open-at-point) t)))
  2180. (ert-deftest test-org/open-at-point/inline-image ()
  2181. "Test `org-open-at-point' on nested links."
  2182. (should
  2183. (org-test-with-temp-text "<<top>>\n[[top][file:<point>unicorn.jpg]]"
  2184. (org-open-at-point)
  2185. (bobp))))
  2186. (ert-deftest test-org/open-at-point/radio-target ()
  2187. "Test `org-open-at-point' on radio targets."
  2188. (should
  2189. (org-test-with-temp-text "<<<target>>> <point>target"
  2190. (org-update-radio-target-regexp)
  2191. (org-open-at-point)
  2192. (eq (org-element-type (org-element-context)) 'radio-target))))
  2193. ;;;; Stored links
  2194. (ert-deftest test-org/store-link ()
  2195. "Test `org-store-link' specifications."
  2196. ;; On a headline, link to that headline. Use heading as the
  2197. ;; description of the link.
  2198. (should
  2199. (let (org-store-link-props org-stored-links)
  2200. (org-test-with-temp-text-in-file "* H1"
  2201. (let ((file (buffer-file-name)))
  2202. (equal (format "[[file:%s::*H1][H1]]" file)
  2203. (org-store-link nil))))))
  2204. ;; On a headline, remove any link from description.
  2205. (should
  2206. (let (org-store-link-props org-stored-links)
  2207. (org-test-with-temp-text-in-file "* [[#l][d]]"
  2208. (let ((file (buffer-file-name)))
  2209. (equal (format "[[file:%s::*%s][d]]"
  2210. file
  2211. (org-link-escape "[[#l][d]]"))
  2212. (org-store-link nil))))))
  2213. (should
  2214. (let (org-store-link-props org-stored-links)
  2215. (org-test-with-temp-text-in-file "* [[l]]"
  2216. (let ((file (buffer-file-name)))
  2217. (equal (format "[[file:%s::*%s][l]]" file (org-link-escape "[[l]]"))
  2218. (org-store-link nil))))))
  2219. (should
  2220. (let (org-store-link-props org-stored-links)
  2221. (org-test-with-temp-text-in-file "* [[l1][d1]] [[l2][d2]]"
  2222. (let ((file (buffer-file-name)))
  2223. (equal (format "[[file:%s::*%s][d1 d2]]"
  2224. file
  2225. (org-link-escape "[[l1][d1]] [[l2][d2]]"))
  2226. (org-store-link nil))))))
  2227. ;; On a named element, link to that element.
  2228. (should
  2229. (let (org-store-link-props org-stored-links)
  2230. (org-test-with-temp-text-in-file "#+NAME: foo\nParagraph"
  2231. (let ((file (buffer-file-name)))
  2232. (equal (format "[[file:%s::foo][foo]]" file)
  2233. (org-store-link nil)))))))
  2234. ;;; Node Properties
  2235. (ert-deftest test-org/accumulated-properties-in-drawers ()
  2236. "Ensure properties accumulate in subtree drawers."
  2237. (org-test-at-id "75282ba2-f77a-4309-a970-e87c149fe125"
  2238. (org-babel-next-src-block)
  2239. (should (equal '(2 1) (org-babel-execute-src-block)))))
  2240. (ert-deftest test-org/custom-properties ()
  2241. "Test custom properties specifications."
  2242. ;; Standard test.
  2243. (should
  2244. (let ((org-custom-properties '("FOO")))
  2245. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:FOO: val\n:END:\n"
  2246. (org-toggle-custom-properties-visibility)
  2247. (org-invisible-p2))))
  2248. ;; Properties are case-insensitive.
  2249. (should
  2250. (let ((org-custom-properties '("FOO")))
  2251. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:foo: val\n:END:\n"
  2252. (org-toggle-custom-properties-visibility)
  2253. (org-invisible-p2))))
  2254. (should
  2255. (let ((org-custom-properties '("foo")))
  2256. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:FOO: val\n:END:\n"
  2257. (org-toggle-custom-properties-visibility)
  2258. (org-invisible-p2))))
  2259. ;; Multiple custom properties in the same drawer.
  2260. (should
  2261. (let ((org-custom-properties '("FOO" "BAR")))
  2262. (org-test-with-temp-text
  2263. "* H\n:PROPERTIES:\n<point>:FOO: val\n:P: 1\n:BAR: baz\n:END:\n"
  2264. (org-toggle-custom-properties-visibility)
  2265. (and (org-invisible-p2)
  2266. (not (progn (forward-line) (org-invisible-p2)))
  2267. (progn (forward-line) (org-invisible-p2))))))
  2268. ;; Hide custom properties with an empty value.
  2269. (should
  2270. (let ((org-custom-properties '("FOO")))
  2271. (org-test-with-temp-text "* H\n:PROPERTIES:\n<point>:FOO:\n:END:\n"
  2272. (org-toggle-custom-properties-visibility)
  2273. (org-invisible-p2))))
  2274. ;; Do not hide fake properties.
  2275. (should-not
  2276. (let ((org-custom-properties '("FOO")))
  2277. (org-test-with-temp-text ":FOO: val\n"
  2278. (org-toggle-custom-properties-visibility)
  2279. (org-invisible-p2))))
  2280. (should-not
  2281. (let ((org-custom-properties '("A")))
  2282. (org-test-with-temp-text
  2283. "* H\n:PROPERTIES:\n:A: 1\n:END:\n\n:PROPERTIES:\n<point>:A: 2\n:END:"
  2284. (org-toggle-custom-properties-visibility)
  2285. (org-invisible-p2)))))
  2286. ;;; Mark Region
  2287. (ert-deftest test-org/mark-subtree ()
  2288. "Test `org-mark-subtree' specifications."
  2289. ;; Error when point is before first headline.
  2290. (should-error
  2291. (org-test-with-temp-text "Paragraph\n* Headline\nBody"
  2292. (progn (transient-mark-mode 1)
  2293. (org-mark-subtree))))
  2294. ;; Without argument, mark current subtree.
  2295. (should
  2296. (equal
  2297. '(12 32)
  2298. (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
  2299. (progn (transient-mark-mode 1)
  2300. (forward-line 2)
  2301. (org-mark-subtree)
  2302. (list (region-beginning) (region-end))))))
  2303. ;; With an argument, move ARG up.
  2304. (should
  2305. (equal
  2306. '(1 32)
  2307. (org-test-with-temp-text "* Headline\n** Sub-headline\nBody"
  2308. (progn (transient-mark-mode 1)
  2309. (forward-line 2)
  2310. (org-mark-subtree 1)
  2311. (list (region-beginning) (region-end))))))
  2312. ;; Do not get fooled by inlinetasks.
  2313. (when (featurep 'org-inlinetask)
  2314. (should
  2315. (= 1
  2316. (org-test-with-temp-text "* Headline\n*************** Task\nContents"
  2317. (progn (transient-mark-mode 1)
  2318. (forward-line 1)
  2319. (let ((org-inlinetask-min-level 15)) (org-mark-subtree))
  2320. (region-beginning)))))))
  2321. ;;; Miscellaneous
  2322. (ert-deftest test-org/in-regexp ()
  2323. "Test `org-in-regexp' specifications."
  2324. ;; Standard tests.
  2325. (should
  2326. (org-test-with-temp-text "xx ab<point>c xx"
  2327. (org-in-regexp "abc")))
  2328. (should-not
  2329. (org-test-with-temp-text "xx abc <point>xx"
  2330. (org-in-regexp "abc")))
  2331. ;; Return non-nil even with multiple matching regexps in the same
  2332. ;; line.
  2333. (should
  2334. (org-test-with-temp-text "abc xx ab<point>c xx"
  2335. (org-in-regexp "abc")))
  2336. ;; With optional argument NLINES, check extra lines around point.
  2337. (should-not
  2338. (org-test-with-temp-text "A\nB<point>\nC"
  2339. (org-in-regexp "A\nB\nC")))
  2340. (should
  2341. (org-test-with-temp-text "A\nB<point>\nC"
  2342. (org-in-regexp "A\nB\nC" 1)))
  2343. (should-not
  2344. (org-test-with-temp-text "A\nB\nC<point>"
  2345. (org-in-regexp "A\nB\nC" 1)))
  2346. ;; When optional argument VISUALLY is non-nil, return nil if at
  2347. ;; regexp boundaries.
  2348. (should
  2349. (org-test-with-temp-text "xx abc<point> xx"
  2350. (org-in-regexp "abc")))
  2351. (should-not
  2352. (org-test-with-temp-text "xx abc<point> xx"
  2353. (org-in-regexp "abc" nil t))))
  2354. ;;; Navigation
  2355. (ert-deftest test-org/end-of-meta-data ()
  2356. "Test `org-end-of-meta-data' specifications."
  2357. ;; Skip planning line.
  2358. (should
  2359. (org-test-with-temp-text "* Headline\nSCHEDULED: <2014-03-04 tue.>"
  2360. (org-end-of-meta-data)
  2361. (eobp)))
  2362. ;; Skip properties drawer.
  2363. (should
  2364. (org-test-with-temp-text
  2365. "* Headline\nSCHEDULED: <2014-03-04 tue.>\n:PROPERTIES:\n:A: 1\n:END:"
  2366. (org-end-of-meta-data)
  2367. (eobp)))
  2368. ;; Skip both.
  2369. (should
  2370. (org-test-with-temp-text "* Headline\n:PROPERTIES:\n:A: 1\n:END:"
  2371. (org-end-of-meta-data)
  2372. (eobp)))
  2373. ;; Nothing to skip, go to first line.
  2374. (should
  2375. (org-test-with-temp-text "* Headline\nContents"
  2376. (org-end-of-meta-data)
  2377. (looking-at "Contents")))
  2378. ;; With option argument, skip empty lines, regular drawers and
  2379. ;; clocking lines.
  2380. (should
  2381. (org-test-with-temp-text "* Headline\n\nContents"
  2382. (org-end-of-meta-data t)
  2383. (looking-at "Contents")))
  2384. (should
  2385. (org-test-with-temp-text "* Headline\nCLOCK:\nContents"
  2386. (org-end-of-meta-data t)
  2387. (looking-at "Contents")))
  2388. (should
  2389. (org-test-with-temp-text "* Headline\n:LOGBOOK:\nlogging\n:END:\nContents"
  2390. (org-end-of-meta-data t)
  2391. (looking-at "Contents")))
  2392. ;; Special case: do not skip incomplete drawers.
  2393. (should
  2394. (org-test-with-temp-text "* Headline\n:LOGBOOK:\nlogging\nContents"
  2395. (org-end-of-meta-data t)
  2396. (looking-at ":LOGBOOK:")))
  2397. ;; Special case: Be careful about consecutive headlines.
  2398. (should-not
  2399. (org-test-with-temp-text "* H1\n*H2\nContents"
  2400. (org-end-of-meta-data t)
  2401. (looking-at "Contents"))))
  2402. (ert-deftest test-org/beginning-of-line ()
  2403. "Test `org-beginning-of-line' specifications."
  2404. ;; Move to beginning of line. If current line in invisible, move to
  2405. ;; beginning of visible line instead.
  2406. (should
  2407. (org-test-with-temp-text "Some text\nSome other text<point>"
  2408. (org-beginning-of-line)
  2409. (bolp)))
  2410. (should
  2411. (org-test-with-temp-text "* H1\n** H2<point>"
  2412. (org-overview)
  2413. (org-beginning-of-line)
  2414. (= (line-beginning-position) 1)))
  2415. ;; With `visual-line-mode' active, move to beginning of visual line.
  2416. (should-not
  2417. (org-test-with-temp-text "A <point>long line of text\nSome other text"
  2418. (visual-line-mode)
  2419. (dotimes (i 1000) (insert "very "))
  2420. (org-beginning-of-line)
  2421. (bolp)))
  2422. ;; In a wide headline, with `visual-line-mode', prefer going to the
  2423. ;; beginning of a visual line than to the logical beginning of line,
  2424. ;; even if special movement is active.
  2425. (should-not
  2426. (org-test-with-temp-text "* A <point>long headline"
  2427. (visual-line-mode)
  2428. (dotimes (i 1000) (insert "very "))
  2429. (goto-char (point-max))
  2430. (org-beginning-of-line)
  2431. (bobp)))
  2432. (should-not
  2433. (org-test-with-temp-text "* A <point>long headline"
  2434. (visual-line-mode)
  2435. (dotimes (i 1000) (insert "very "))
  2436. (goto-char (point-max))
  2437. (let ((org-special-ctrl-a/e t)) (org-beginning-of-line))
  2438. (bobp)))
  2439. ;; At an headline with special movement, first move at beginning of
  2440. ;; title, then at the beginning of line, rinse, repeat.
  2441. (should
  2442. (org-test-with-temp-text "* TODO Headline<point>"
  2443. (let ((org-special-ctrl-a/e t))
  2444. (and (progn (org-beginning-of-line) (looking-at-p "Headline"))
  2445. (progn (org-beginning-of-line) (bolp))
  2446. (progn (org-beginning-of-line) (looking-at-p "Headline"))))))
  2447. (should
  2448. (org-test-with-temp-text "* TODO [#A] Headline<point>"
  2449. (let ((org-special-ctrl-a/e t))
  2450. (org-beginning-of-line)
  2451. (looking-at "Headline"))))
  2452. (should
  2453. (org-test-with-temp-text "* TODO [#A] Headline<point>"
  2454. (let ((org-special-ctrl-a/e '(t . nil)))
  2455. (org-beginning-of-line)
  2456. (looking-at "Headline"))))
  2457. (should-not
  2458. (org-test-with-temp-text "* TODO [#A] Headline<point>"
  2459. (let ((org-special-ctrl-a/e '(nil . nil)))
  2460. (org-beginning-of-line)
  2461. (looking-at "Headline"))))
  2462. ;; At an headline with reversed movement, first move to beginning of
  2463. ;; line, then to the beginning of title.
  2464. (should
  2465. (org-test-with-temp-text "* TODO Headline<point>"
  2466. (let ((org-special-ctrl-a/e 'reversed)
  2467. (this-command last-command))
  2468. (and (progn (org-beginning-of-line) (bolp))
  2469. (progn (org-beginning-of-line) (looking-at-p "Headline"))))))
  2470. (should
  2471. (org-test-with-temp-text "* TODO Headline<point>"
  2472. (let ((org-special-ctrl-a/e '(reversed . nil))
  2473. (this-command last-command))
  2474. (and (progn (org-beginning-of-line) (bolp))
  2475. (progn (org-beginning-of-line) (looking-at-p "Headline"))))))
  2476. (should-not
  2477. (org-test-with-temp-text "* TODO Headline<point>"
  2478. (let ((org-special-ctrl-a/e '(t . nil))
  2479. (this-command last-command))
  2480. (and (progn (org-beginning-of-line) (bolp))
  2481. (progn (org-beginning-of-line) (looking-at-p "Headline"))))))
  2482. ;; At an item with special movement, first move after to beginning
  2483. ;; of title, then to the beginning of line, rinse, repeat.
  2484. (should
  2485. (org-test-with-temp-text "- [ ] Item<point>"
  2486. (let ((org-special-ctrl-a/e t))
  2487. (and (progn (org-beginning-of-line) (looking-at-p "Item"))
  2488. (progn (org-beginning-of-line) (bolp))
  2489. (progn (org-beginning-of-line) (looking-at-p "Item"))))))
  2490. ;; At an item with reversed movement, first move to beginning of
  2491. ;; line, then to the beginning of title.
  2492. (should
  2493. (org-test-with-temp-text "- [X] Item<point>"
  2494. (let ((org-special-ctrl-a/e 'reversed)
  2495. (this-command last-command))
  2496. (and (progn (org-beginning-of-line) (bolp))
  2497. (progn (org-beginning-of-line) (looking-at-p "Item"))))))
  2498. ;; Leave point before invisible characters at column 0.
  2499. (should
  2500. (org-test-with-temp-text "[[http://orgmode.org]]<point>"
  2501. (let ((org-special-ctrl-a/e nil))
  2502. (org-beginning-of-line)
  2503. (bolp))))
  2504. (should
  2505. (org-test-with-temp-text "[[http://orgmode.org]]<point>"
  2506. (let ((org-special-ctrl-a/e t))
  2507. (org-beginning-of-line)
  2508. (bolp))))
  2509. (should
  2510. (org-test-with-temp-text "[[http<point>://orgmode.org]]"
  2511. (visual-line-mode)
  2512. (org-beginning-of-line)
  2513. (bolp)))
  2514. ;; Special case: Do not error when the buffer contains only a single
  2515. ;; asterisk.
  2516. (should
  2517. (org-test-with-temp-text "*<point>"
  2518. (let ((org-special-ctrl-a/e t)) (org-beginning-of-line) t)))
  2519. (should
  2520. (org-test-with-temp-text "*<point>"
  2521. (let ((org-special-ctrl-a/e nil)) (org-beginning-of-line) t))))
  2522. (ert-deftest test-org/end-of-line ()
  2523. "Test `org-end-of-line' specifications."
  2524. ;; Standard test.
  2525. (should
  2526. (org-test-with-temp-text "Some text\nSome other text"
  2527. (org-end-of-line)
  2528. (eolp)))
  2529. ;; With `visual-line-mode' active, move to end of visible line.
  2530. ;; However, never go past ellipsis.
  2531. (should-not
  2532. (org-test-with-temp-text "A <point>long line of text\nSome other text"
  2533. (visual-line-mode)
  2534. (dotimes (i 1000) (insert "very "))
  2535. (goto-char (point-min))
  2536. (org-end-of-line)
  2537. (eolp)))
  2538. (should-not
  2539. (org-test-with-temp-text "* A short headline\nSome contents"
  2540. (visual-line-mode)
  2541. (org-overview)
  2542. (org-end-of-line)
  2543. (eobp)))
  2544. ;; In a wide headline, with `visual-line-mode', prefer going to end
  2545. ;; of visible line if tags, or end of line, are farther.
  2546. (should-not
  2547. (org-test-with-temp-text "* A <point>long headline"
  2548. (visual-line-mode)
  2549. (dotimes (i 1000) (insert "very "))
  2550. (goto-char (point-min))
  2551. (org-end-of-line)
  2552. (eolp)))
  2553. (should-not
  2554. (org-test-with-temp-text "* A <point>long headline :tag:"
  2555. (visual-line-mode)
  2556. (dotimes (i 1000) (insert "very "))
  2557. (goto-char (point-min))
  2558. (org-end-of-line)
  2559. (eolp)))
  2560. ;; At an headline without special movement, go to end of line.
  2561. ;; However, never go past ellipsis.
  2562. (should
  2563. (org-test-with-temp-text "* Headline2b :tag:\n"
  2564. (let ((org-special-ctrl-a/e nil))
  2565. (and (progn (org-end-of-line) (eolp))
  2566. (progn (org-end-of-line) (eolp))))))
  2567. (should
  2568. (org-test-with-temp-text "* Headline2b :tag:\n"
  2569. (let ((org-special-ctrl-a/e '(t . nil)))
  2570. (and (progn (org-end-of-line) (eolp))
  2571. (progn (org-end-of-line) (eolp))))))
  2572. (should
  2573. (org-test-with-temp-text "* Headline2a :tag:\n** Sub"
  2574. (org-overview)
  2575. (let ((org-special-ctrl-a/e nil))
  2576. (org-end-of-line)
  2577. (= 1 (line-beginning-position)))))
  2578. ;; At an headline with special movement, first move before tags,
  2579. ;; then at the end of line, rinse, repeat. However, never go past
  2580. ;; ellipsis.
  2581. (should
  2582. (org-test-with-temp-text "* Headline1 :tag:\n"
  2583. (let ((org-special-ctrl-a/e t))
  2584. (and (progn (org-end-of-line) (looking-at-p " :tag:"))
  2585. (progn (org-end-of-line) (eolp))
  2586. (progn (org-end-of-line) (looking-at-p " :tag:"))))))
  2587. (should
  2588. (org-test-with-temp-text "* Headline1 :tag:\n"
  2589. (let ((org-special-ctrl-a/e '(nil . t)))
  2590. (and (progn (org-end-of-line) (looking-at-p " :tag:"))
  2591. (progn (org-end-of-line) (eolp))
  2592. (progn (org-end-of-line) (looking-at-p " :tag:"))))))
  2593. (should-not
  2594. (org-test-with-temp-text "* Headline1 :tag:\n"
  2595. (let ((org-special-ctrl-a/e '(nil . nil)))
  2596. (and (progn (org-end-of-line) (looking-at-p " :tag:"))
  2597. (progn (org-end-of-line) (eolp))
  2598. (progn (org-end-of-line) (looking-at-p " :tag:"))))))
  2599. (should
  2600. (org-test-with-temp-text "* Headline2a :tag:\n** Sub"
  2601. (org-overview)
  2602. (let ((org-special-ctrl-a/e t))
  2603. (org-end-of-line)
  2604. (org-end-of-line)
  2605. (= 1 (line-beginning-position)))))
  2606. ;; At an headline, with reversed movement, first go to end of line,
  2607. ;; then before tags. However, never go past ellipsis.
  2608. (should
  2609. (org-test-with-temp-text "* Headline3 :tag:\n"
  2610. (let ((org-special-ctrl-a/e 'reversed)
  2611. (this-command last-command))
  2612. (and (progn (org-end-of-line) (eolp))
  2613. (progn (org-end-of-line) (looking-at-p " :tag:"))))))
  2614. (should
  2615. (org-test-with-temp-text "* Headline3 :tag:\n"
  2616. (let ((org-special-ctrl-a/e '(nil . reversed))
  2617. (this-command last-command))
  2618. (and (progn (org-end-of-line) (eolp))
  2619. (progn (org-end-of-line) (looking-at-p " :tag:"))))))
  2620. (should-not
  2621. (org-test-with-temp-text "* Headline3 :tag:\n"
  2622. (let ((org-special-ctrl-a/e '(nil . t))
  2623. (this-command last-command))
  2624. (and (progn (org-end-of-line) (eolp))
  2625. (progn (org-end-of-line) (looking-at-p " :tag:"))))))
  2626. (should
  2627. (org-test-with-temp-text "* Headline2a :tag:\n** Sub"
  2628. (org-overview)
  2629. (let ((org-special-ctrl-a/e 'reversed))
  2630. (org-end-of-line)
  2631. (= 1 (line-beginning-position)))))
  2632. ;; At a block without hidden contents.
  2633. (should
  2634. (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
  2635. (progn (org-end-of-line) (eolp))))
  2636. ;; At a block with hidden contents.
  2637. (should-not
  2638. (org-test-with-temp-text "#+BEGIN_CENTER\nContents\n#+END_CENTER"
  2639. (let ((org-special-ctrl-a/e t))
  2640. (org-hide-block-toggle)
  2641. (org-end-of-line)
  2642. (eobp))))
  2643. ;; Get past invisible characters at the end of line.
  2644. (should
  2645. (org-test-with-temp-text "[[http://orgmode.org]]"
  2646. (org-end-of-line)
  2647. (eolp))))
  2648. (ert-deftest test-org/open-line ()
  2649. "Test `org-open-line' specifications."
  2650. ;; Call `open-line' outside of tables.
  2651. (should
  2652. (equal "\nText"
  2653. (org-test-with-temp-text "Text"
  2654. (org-open-line 1)
  2655. (buffer-string))))
  2656. ;; At a table, create a row above.
  2657. (should
  2658. (equal "\n| |\n| a |"
  2659. (org-test-with-temp-text "\n<point>| a |"
  2660. (org-open-line 1)
  2661. (buffer-string))))
  2662. ;; At the very first character of the buffer, also call `open-line'.
  2663. (should
  2664. (equal "\n| a |"
  2665. (org-test-with-temp-text "| a |"
  2666. (org-open-line 1)
  2667. (buffer-string))))
  2668. ;; Narrowing does not count.
  2669. (should
  2670. (equal "Text\n| |\n| a |"
  2671. (org-test-with-temp-text "Text\n<point>| a |"
  2672. (narrow-to-region (point) (point-max))
  2673. (org-open-line 1)
  2674. (widen)
  2675. (buffer-string)))))
  2676. (ert-deftest test-org/forward-sentence ()
  2677. "Test `org-forward-sentence' specifications."
  2678. ;; At the end of a table cell, move to the end of the next one.
  2679. (should
  2680. (org-test-with-temp-text "| a<point> | b |"
  2681. (org-forward-sentence)
  2682. (looking-at " |$")))
  2683. ;; Elsewhere in a cell, move to its end.
  2684. (should
  2685. (org-test-with-temp-text "| a<point>c | b |"
  2686. (org-forward-sentence)
  2687. (looking-at " | b |$")))
  2688. ;; Otherwise, simply call `forward-sentence'.
  2689. (should
  2690. (org-test-with-temp-text "Sentence<point> 1. Sentence 2."
  2691. (org-forward-sentence)
  2692. (looking-at " Sentence 2.")))
  2693. (should
  2694. (org-test-with-temp-text "Sentence<point> 1. Sentence 2."
  2695. (org-forward-sentence)
  2696. (org-forward-sentence)
  2697. (eobp)))
  2698. ;; At the end of an element, jump to the next one, without stopping
  2699. ;; on blank lines in-between.
  2700. (should
  2701. (org-test-with-temp-text "Paragraph 1.<point>\n\nParagraph 2."
  2702. (org-forward-sentence)
  2703. (eobp))))
  2704. (ert-deftest test-org/backward-sentence ()
  2705. "Test `org-backward-sentence' specifications."
  2706. ;; At the beginning of a table cell, move to the beginning of the
  2707. ;; previous one.
  2708. (should
  2709. (org-test-with-temp-text "| a | <point>b |"
  2710. (org-backward-sentence)
  2711. (looking-at "a | b |$")))
  2712. ;; Elsewhere in a cell, move to its beginning.
  2713. (should
  2714. (org-test-with-temp-text "| a | b<point>c |"
  2715. (org-backward-sentence)
  2716. (looking-at "bc |$")))
  2717. ;; Otherwise, simply call `backward-sentence'.
  2718. (should
  2719. (org-test-with-temp-text "Sentence 1. Sentence<point> 2."
  2720. (org-backward-sentence)
  2721. (looking-at "Sentence 2.")))
  2722. (should
  2723. (org-test-with-temp-text "Sentence 1. Sentence<point> 2."
  2724. (org-backward-sentence)
  2725. (org-backward-sentence)
  2726. (bobp)))
  2727. ;; Make sure to hit the beginning of a sentence on the same line as
  2728. ;; an item.
  2729. (should
  2730. (org-test-with-temp-text "- Line 1\n line <point>2."
  2731. (org-backward-sentence)
  2732. (looking-at "Line 1"))))
  2733. (ert-deftest test-org/forward-paragraph ()
  2734. "Test `org-forward-paragraph' specifications."
  2735. ;; At end of buffer, return an error.
  2736. (should-error
  2737. (org-test-with-temp-text "Paragraph"
  2738. (goto-char (point-max))
  2739. (org-forward-paragraph)))
  2740. ;; Standard test.
  2741. (should
  2742. (org-test-with-temp-text "P1\n\nP2\n\nP3"
  2743. (org-forward-paragraph)
  2744. (looking-at "P2")))
  2745. ;; Ignore depth.
  2746. (should
  2747. (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n#+END_CENTER\nP2"
  2748. (org-forward-paragraph)
  2749. (looking-at "P1")))
  2750. ;; Do not enter elements with invisible contents.
  2751. (should
  2752. (org-test-with-temp-text "#+BEGIN_CENTER\nP1\n\nP2\n#+END_CENTER\nP3"
  2753. (org-hide-block-toggle)
  2754. (org-forward-paragraph)
  2755. (looking-at "P3")))
  2756. ;; On an affiliated keyword, jump to the beginning of the element.
  2757. (should
  2758. (org-test-with-temp-text "#+name: para\n#+caption: caption\nPara"
  2759. (org-forward-paragraph)
  2760. (looking-at "Para")))
  2761. ;; On an item or a footnote definition, move to the second element
  2762. ;; inside, if any.
  2763. (should
  2764. (org-test-with-temp-text "- Item1\n\n Paragraph\n- Item2"
  2765. (org-forward-paragraph)
  2766. (looking-at " Paragraph")))
  2767. (should
  2768. (org-test-with-temp-text "[fn:1] Def1\n\nParagraph\n\n[fn:2] Def2"
  2769. (org-forward-paragraph)
  2770. (looking-at "Paragraph")))
  2771. ;; On an item, or a footnote definition, when the first line is
  2772. ;; empty, move to the first item.
  2773. (should
  2774. (org-test-with-temp-text "- \n\n Paragraph\n- Item2"
  2775. (org-forward-paragraph)
  2776. (looking-at " Paragraph")))
  2777. (should
  2778. (org-test-with-temp-text "[fn:1]\n\nParagraph\n\n[fn:2] Def2"
  2779. (org-forward-paragraph)
  2780. (looking-at "Paragraph")))
  2781. ;; On a table (resp. a property drawer) do not move through table
  2782. ;; rows (resp. node properties).
  2783. (should
  2784. (org-test-with-temp-text "| a | b |\n| c | d |\nParagraph"
  2785. (org-forward-paragraph)
  2786. (looking-at "Paragraph")))
  2787. (should
  2788. (org-test-with-temp-text
  2789. "* H\n<point>:PROPERTIES:\n:prop: value\n:END:\nParagraph"
  2790. (org-forward-paragraph)
  2791. (looking-at "Paragraph")))
  2792. ;; On a verse or source block, stop after blank lines.
  2793. (should
  2794. (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n#+END_VERSE"
  2795. (org-forward-paragraph)
  2796. (looking-at "L2")))
  2797. (should
  2798. (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n#+END_SRC"
  2799. (org-forward-paragraph)
  2800. (looking-at "L2"))))
  2801. (ert-deftest test-org/backward-paragraph ()
  2802. "Test `org-backward-paragraph' specifications."
  2803. ;; Error at beginning of buffer.
  2804. (should-error
  2805. (org-test-with-temp-text "Paragraph"
  2806. (org-backward-paragraph)))
  2807. ;; Regular test.
  2808. (should
  2809. (org-test-with-temp-text "P1\n\nP2\n\nP3"
  2810. (goto-char (point-max))
  2811. (org-backward-paragraph)
  2812. (looking-at "P3")))
  2813. (should
  2814. (org-test-with-temp-text "P1\n\nP2\n\nP3"
  2815. (goto-char (point-max))
  2816. (beginning-of-line)
  2817. (org-backward-paragraph)
  2818. (looking-at "P2")))
  2819. ;; Ignore depth.
  2820. (should
  2821. (org-test-with-temp-text "P1\n\n#+BEGIN_CENTER\nP2\n#+END_CENTER\nP3"
  2822. (goto-char (point-max))
  2823. (beginning-of-line)
  2824. (org-backward-paragraph)
  2825. (looking-at "P2")))
  2826. ;; Ignore invisible elements.
  2827. (should
  2828. (org-test-with-temp-text "* H1\n P1\n* H2"
  2829. (org-cycle)
  2830. (goto-char (point-max))
  2831. (beginning-of-line)
  2832. (org-backward-paragraph)
  2833. (bobp)))
  2834. ;; On an affiliated keyword, jump to the first one.
  2835. (should
  2836. (org-test-with-temp-text "P1\n#+name: n\n#+caption: c1\n#+caption: c2\nP2"
  2837. (search-forward "c2")
  2838. (org-backward-paragraph)
  2839. (looking-at "#\\+name")))
  2840. ;; On the second element in an item or a footnote definition, jump
  2841. ;; to item or the definition.
  2842. (should
  2843. (org-test-with-temp-text "- line1\n\n line2"
  2844. (goto-char (point-max))
  2845. (beginning-of-line)
  2846. (org-backward-paragraph)
  2847. (looking-at "- line1")))
  2848. (should
  2849. (org-test-with-temp-text "[fn:1] line1\n\n line2"
  2850. (goto-char (point-max))
  2851. (beginning-of-line)
  2852. (org-backward-paragraph)
  2853. (looking-at "\\[fn:1\\] line1")))
  2854. ;; On a table (resp. a property drawer), ignore table rows
  2855. ;; (resp. node properties).
  2856. (should
  2857. (org-test-with-temp-text "| a | b |\n| c | d |\nP1"
  2858. (goto-char (point-max))
  2859. (beginning-of-line)
  2860. (org-backward-paragraph)
  2861. (bobp)))
  2862. (should
  2863. (org-test-with-temp-text "* H\n:PROPERTIES:\n:prop: value\n:END:\n<point>P1"
  2864. (org-backward-paragraph)
  2865. (looking-at ":PROPERTIES:")))
  2866. ;; On a source or verse block, stop before blank lines.
  2867. (should
  2868. (org-test-with-temp-text "#+BEGIN_VERSE\nL1\n\nL2\n\nL3\n#+END_VERSE"
  2869. (search-forward "L3")
  2870. (beginning-of-line)
  2871. (org-backward-paragraph)
  2872. (looking-at "L2")))
  2873. (should
  2874. (org-test-with-temp-text "#+BEGIN_SRC\nL1\n\nL2\n\nL3#+END_SRC"
  2875. (search-forward "L3")
  2876. (beginning-of-line)
  2877. (org-backward-paragraph)
  2878. (looking-at "L2"))))
  2879. (ert-deftest test-org/forward-element ()
  2880. "Test `org-forward-element' specifications."
  2881. ;; 1. At EOB: should error.
  2882. (org-test-with-temp-text "Some text\n"
  2883. (goto-char (point-max))
  2884. (should-error (org-forward-element)))
  2885. ;; 2. Standard move: expected to ignore blank lines.
  2886. (org-test-with-temp-text "First paragraph.\n\n\nSecond paragraph."
  2887. (org-forward-element)
  2888. (should (looking-at (regexp-quote "Second paragraph."))))
  2889. ;; 3. Headline tests.
  2890. (org-test-with-temp-text "
  2891. * Head 1
  2892. ** Head 1.1
  2893. *** Head 1.1.1
  2894. ** Head 1.2"
  2895. ;; 3.1. At an headline beginning: move to next headline at the
  2896. ;; same level.
  2897. (goto-line 3)
  2898. (org-forward-element)
  2899. (should (looking-at (regexp-quote "** Head 1.2")))
  2900. ;; 3.2. At an headline beginning: move to parent headline if no
  2901. ;; headline at the same level.
  2902. (goto-line 3)
  2903. (org-forward-element)
  2904. (should (looking-at (regexp-quote "** Head 1.2"))))
  2905. ;; 4. Greater element tests.
  2906. (org-test-with-temp-text
  2907. "#+BEGIN_CENTER\nInside.\n#+END_CENTER\n\nOutside."
  2908. ;; 4.1. At a greater element: expected to skip contents.
  2909. (org-forward-element)
  2910. (should (looking-at (regexp-quote "Outside.")))
  2911. ;; 4.2. At the end of greater element contents: expected to skip
  2912. ;; to the end of the greater element.
  2913. (goto-line 2)
  2914. (org-forward-element)
  2915. (should (looking-at (regexp-quote "Outside."))))
  2916. ;; 5. List tests.
  2917. (org-test-with-temp-text "
  2918. - item1
  2919. - sub1
  2920. - sub2
  2921. - sub3
  2922. Inner paragraph.
  2923. - item2
  2924. Outside."
  2925. ;; 5.1. At list top point: expected to move to the element after
  2926. ;; the list.
  2927. (goto-line 2)
  2928. (org-forward-element)
  2929. (should (looking-at (regexp-quote "Outside.")))
  2930. ;; 5.2. Special case: at the first line of a sub-list, but not at
  2931. ;; beginning of line, move to next item.
  2932. (goto-line 2)
  2933. (forward-char)
  2934. (org-forward-element)
  2935. (should (looking-at "- item2"))
  2936. (goto-line 4)
  2937. (forward-char)
  2938. (org-forward-element)
  2939. (should (looking-at " - sub2"))
  2940. ;; 5.3 At sub-list beginning: expected to move after the sub-list.
  2941. (goto-line 4)
  2942. (org-forward-element)
  2943. (should (looking-at (regexp-quote " Inner paragraph.")))
  2944. ;; 5.4. At sub-list end: expected to move outside the sub-list.
  2945. (goto-line 8)
  2946. (org-forward-element)
  2947. (should (looking-at (regexp-quote " Inner paragraph.")))
  2948. ;; 5.5. At an item: expected to move to next item, if any.
  2949. (goto-line 6)
  2950. (org-forward-element)
  2951. (should (looking-at " - sub3"))))
  2952. (ert-deftest test-org/backward-element ()
  2953. "Test `org-backward-element' specifications."
  2954. ;; 1. Should error at BOB.
  2955. (org-test-with-temp-text " \nParagraph."
  2956. (should-error (org-backward-element)))
  2957. ;; 2. Should move at BOB when called on the first element in buffer.
  2958. (should
  2959. (org-test-with-temp-text "\n#+TITLE: test"
  2960. (progn (forward-line)
  2961. (org-backward-element)
  2962. (bobp))))
  2963. ;; 3. Not at the beginning of an element: move at its beginning.
  2964. (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
  2965. (goto-line 3)
  2966. (end-of-line)
  2967. (org-backward-element)
  2968. (should (looking-at (regexp-quote "Paragraph2."))))
  2969. ;; 4. Headline tests.
  2970. (org-test-with-temp-text "
  2971. * Head 1
  2972. ** Head 1.1
  2973. *** Head 1.1.1
  2974. ** Head 1.2"
  2975. ;; 4.1. At an headline beginning: move to previous headline at the
  2976. ;; same level.
  2977. (goto-line 5)
  2978. (org-backward-element)
  2979. (should (looking-at (regexp-quote "** Head 1.1")))
  2980. ;; 4.2. At an headline beginning: move to parent headline if no
  2981. ;; headline at the same level.
  2982. (goto-line 3)
  2983. (org-backward-element)
  2984. (should (looking-at (regexp-quote "* Head 1")))
  2985. ;; 4.3. At the first top-level headline: should error.
  2986. (goto-line 2)
  2987. (should-error (org-backward-element)))
  2988. ;; 5. At beginning of first element inside a greater element:
  2989. ;; expected to move to greater element's beginning.
  2990. (org-test-with-temp-text "Before.\n#+BEGIN_CENTER\nInside.\n#+END_CENTER"
  2991. (goto-line 3)
  2992. (org-backward-element)
  2993. (should (looking-at "#\\+BEGIN_CENTER")))
  2994. ;; 6. At the beginning of the first element in a section: should
  2995. ;; move back to headline, if any.
  2996. (should
  2997. (org-test-with-temp-text "#+TITLE: test\n* Headline\n\nParagraph"
  2998. (progn (goto-char (point-max))
  2999. (beginning-of-line)
  3000. (org-backward-element)
  3001. (org-at-heading-p))))
  3002. ;; 7. List tests.
  3003. (org-test-with-temp-text "
  3004. - item1
  3005. - sub1
  3006. - sub2
  3007. - sub3
  3008. Inner paragraph.
  3009. - item2
  3010. Outside."
  3011. ;; 7.1. At beginning of sub-list: expected to move to the
  3012. ;; paragraph before it.
  3013. (goto-line 4)
  3014. (org-backward-element)
  3015. (should (looking-at "item1"))
  3016. ;; 7.2. At an item in a list: expected to move at previous item.
  3017. (goto-line 8)
  3018. (org-backward-element)
  3019. (should (looking-at " - sub2"))
  3020. (goto-line 12)
  3021. (org-backward-element)
  3022. (should (looking-at "- item1"))
  3023. ;; 7.3. At end of list/sub-list: expected to move to list/sub-list
  3024. ;; beginning.
  3025. (goto-line 10)
  3026. (org-backward-element)
  3027. (should (looking-at " - sub1"))
  3028. (goto-line 15)
  3029. (org-backward-element)
  3030. (should (looking-at "- item1"))
  3031. ;; 7.4. At blank-lines before list end: expected to move to top
  3032. ;; item.
  3033. (goto-line 14)
  3034. (org-backward-element)
  3035. (should (looking-at "- item1"))))
  3036. (ert-deftest test-org/up-element ()
  3037. "Test `org-up-element' specifications."
  3038. ;; 1. At BOB or with no surrounding element: should error.
  3039. (org-test-with-temp-text "Paragraph."
  3040. (should-error (org-up-element)))
  3041. (org-test-with-temp-text "* Head1\n* Head2"
  3042. (goto-line 2)
  3043. (should-error (org-up-element)))
  3044. (org-test-with-temp-text "Paragraph1.\n\nParagraph2."
  3045. (goto-line 3)
  3046. (should-error (org-up-element)))
  3047. ;; 2. At an headline: move to parent headline.
  3048. (org-test-with-temp-text "* Head1\n** Sub-Head1\n** Sub-Head2"
  3049. (goto-line 3)
  3050. (org-up-element)
  3051. (should (looking-at "\\* Head1")))
  3052. ;; 3. Inside a greater element: move to greater element beginning.
  3053. (org-test-with-temp-text
  3054. "Before.\n#+BEGIN_CENTER\nParagraph1\nParagraph2\n#+END_CENTER\n"
  3055. (goto-line 3)
  3056. (org-up-element)
  3057. (should (looking-at "#\\+BEGIN_CENTER")))
  3058. ;; 4. List tests.
  3059. (org-test-with-temp-text "* Top
  3060. - item1
  3061. - sub1
  3062. - sub2
  3063. Paragraph within sub2.
  3064. - item2"
  3065. ;; 4.1. Within an item: move to the item beginning.
  3066. (goto-line 8)
  3067. (org-up-element)
  3068. (should (looking-at " - sub2"))
  3069. ;; 4.2. At an item in a sub-list: move to parent item.
  3070. (goto-line 4)
  3071. (org-up-element)
  3072. (should (looking-at "- item1"))
  3073. ;; 4.3. At an item in top list: move to beginning of whole list.
  3074. (goto-line 10)
  3075. (org-up-element)
  3076. (should (looking-at "- item1"))
  3077. ;; 4.4. Special case. At very top point: should move to parent of
  3078. ;; list.
  3079. (goto-line 2)
  3080. (org-up-element)
  3081. (should (looking-at "\\* Top"))))
  3082. (ert-deftest test-org/down-element ()
  3083. "Test `org-down-element' specifications."
  3084. ;; Error when the element hasn't got a recursive type.
  3085. (org-test-with-temp-text "Paragraph."
  3086. (should-error (org-down-element)))
  3087. ;; Error when the element has no contents
  3088. (org-test-with-temp-text "* Headline"
  3089. (should-error (org-down-element)))
  3090. ;; When at a plain-list, move to first item.
  3091. (org-test-with-temp-text "- Item 1\n - Item 1.1\n - Item 2.2"
  3092. (goto-line 2)
  3093. (org-down-element)
  3094. (should (looking-at " - Item 1.1")))
  3095. (org-test-with-temp-text "#+NAME: list\n- Item 1"
  3096. (org-down-element)
  3097. (should (looking-at " Item 1")))
  3098. ;; When at a table, move to first row
  3099. (org-test-with-temp-text "#+NAME: table\n| a | b |"
  3100. (org-down-element)
  3101. (should (looking-at " a | b |")))
  3102. ;; Otherwise, move inside the greater element.
  3103. (org-test-with-temp-text "#+BEGIN_CENTER\nParagraph.\n#+END_CENTER"
  3104. (org-down-element)
  3105. (should (looking-at "Paragraph"))))
  3106. (ert-deftest test-org/drag-element-backward ()
  3107. "Test `org-drag-element-backward' specifications."
  3108. ;; Standard test.
  3109. (should
  3110. (equal
  3111. "#+key2: val2\n#+key1: val1\n#+key3: val3"
  3112. (org-test-with-temp-text "#+key1: val1\n<point>#+key2: val2\n#+key3: val3"
  3113. (org-drag-element-backward)
  3114. (buffer-string))))
  3115. (should
  3116. (equal
  3117. "#+BEGIN_CENTER\n#+B: 2\n#+A: 1\n#+END_CENTER"
  3118. (org-test-with-temp-text
  3119. "#+BEGIN_CENTER\n#+A: 1\n<point>#+B: 2\n#+END_CENTER"
  3120. (org-drag-element-backward)
  3121. (buffer-string))))
  3122. ;; Preserve blank lines.
  3123. (should
  3124. (equal "Paragraph 2\n\n\nPara1\n\nPara3"
  3125. (org-test-with-temp-text "Para1\n\n\n<point>Paragraph 2\n\nPara3"
  3126. (org-drag-element-backward)
  3127. (buffer-string))))
  3128. ;; Preserve column.
  3129. (should
  3130. (org-test-with-temp-text "#+key1: v\n#+key<point>2: v\n#+key3: v"
  3131. (org-drag-element-backward)
  3132. (looking-at-p "2")))
  3133. ;; Error when trying to move first element of buffer.
  3134. (should-error
  3135. (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
  3136. (org-drag-element-backward))
  3137. :type 'user-error)
  3138. ;; Error when trying to swap nested elements.
  3139. (should-error
  3140. (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
  3141. (forward-line)
  3142. (org-drag-element-backward))
  3143. :type 'user-error)
  3144. ;; Error when trying to swap an headline element and a non-headline
  3145. ;; element.
  3146. (should-error
  3147. (org-test-with-temp-text "Test.\n* Head 1"
  3148. (forward-line)
  3149. (org-drag-element-backward))
  3150. :type 'user-error)
  3151. ;; Error when called before first element.
  3152. (should-error
  3153. (org-test-with-temp-text "\n"
  3154. (forward-line)
  3155. (org-drag-element-backward))
  3156. :type 'user-error)
  3157. ;; Preserve visibility of elements and their contents.
  3158. (should
  3159. (equal '((63 . 82) (26 . 48))
  3160. (org-test-with-temp-text "
  3161. #+BEGIN_CENTER
  3162. Text.
  3163. #+END_CENTER
  3164. - item 1
  3165. #+BEGIN_QUOTE
  3166. Text.
  3167. #+END_QUOTE"
  3168. (while (search-forward "BEGIN_" nil t) (org-cycle))
  3169. (search-backward "- item 1")
  3170. (org-drag-element-backward)
  3171. (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
  3172. (overlays-in (point-min) (point-max)))))))
  3173. (ert-deftest test-org/drag-element-forward ()
  3174. "Test `org-drag-element-forward' specifications."
  3175. ;; 1. Error when trying to move first element of buffer.
  3176. (org-test-with-temp-text "Paragraph 1.\n\nParagraph 2."
  3177. (goto-line 3)
  3178. (should-error (org-drag-element-forward)))
  3179. ;; 2. Error when trying to swap nested elements.
  3180. (org-test-with-temp-text "#+BEGIN_CENTER\nTest.\n#+END_CENTER"
  3181. (forward-line)
  3182. (should-error (org-drag-element-forward)))
  3183. ;; 3. Error when trying to swap a non-headline element and an
  3184. ;; headline.
  3185. (org-test-with-temp-text "Test.\n* Head 1"
  3186. (should-error (org-drag-element-forward)))
  3187. ;; 4. Error when called before first element.
  3188. (should-error
  3189. (org-test-with-temp-text "\n"
  3190. (forward-line)
  3191. (org-drag-element-backward))
  3192. :type 'user-error)
  3193. ;; 5. Otherwise, swap elements, preserving column and blank lines
  3194. ;; between elements.
  3195. (org-test-with-temp-text "Paragraph 1\n\n\nPara2\n\nPara3"
  3196. (search-forward "graph")
  3197. (org-drag-element-forward)
  3198. (should (equal (buffer-string) "Para2\n\n\nParagraph 1\n\nPara3"))
  3199. (should (looking-at " 1")))
  3200. ;; 5. Preserve visibility of elements and their contents.
  3201. (org-test-with-temp-text "
  3202. #+BEGIN_CENTER
  3203. Text.
  3204. #+END_CENTER
  3205. - item 1
  3206. #+BEGIN_QUOTE
  3207. Text.
  3208. #+END_QUOTE"
  3209. (while (search-forward "BEGIN_" nil t) (org-cycle))
  3210. (search-backward "#+BEGIN_CENTER")
  3211. (org-drag-element-forward)
  3212. (should
  3213. (equal
  3214. '((63 . 82) (26 . 48))
  3215. (mapcar (lambda (ov) (cons (overlay-start ov) (overlay-end ov)))
  3216. (overlays-in (point-min) (point-max)))))))
  3217. (ert-deftest test-org/next-block ()
  3218. "Test `org-next-block' specifications."
  3219. ;; Regular test.
  3220. (should
  3221. (org-test-with-temp-text "Paragraph\n#+BEGIN_CENTER\ncontents\n#+END_CENTER"
  3222. (org-next-block 1)
  3223. (looking-at "#\\+BEGIN_CENTER")))
  3224. ;; Ignore case.
  3225. (should
  3226. (org-test-with-temp-text "Paragraph\n#+begin_center\ncontents\n#+end_center"
  3227. (let ((case-fold-search nil))
  3228. (org-next-block 1)
  3229. (looking-at "#\\+begin_center"))))
  3230. ;; Ignore current line.
  3231. (should
  3232. (org-test-with-temp-text
  3233. "#+BEGIN_QUOTE\n#+END_QUOTE\n#+BEGIN_CENTER\n#+END_CENTER"
  3234. (org-next-block 1)
  3235. (looking-at "#\\+BEGIN_CENTER")))
  3236. ;; Throw an error when no block is found.
  3237. (should-error
  3238. (org-test-with-temp-text "Paragraph"
  3239. (org-next-block 1)))
  3240. ;; With an argument, skip many blocks at once.
  3241. (should
  3242. (org-test-with-temp-text
  3243. "Start\n#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE"
  3244. (org-next-block 2)
  3245. (looking-at "#\\+BEGIN_QUOTE")))
  3246. ;; With optional argument BLOCK-REGEXP, filter matched blocks.
  3247. (should
  3248. (org-test-with-temp-text
  3249. "Start\n#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE"
  3250. (org-next-block 1 nil "^[ \t]*#\\+BEGIN_QUOTE")
  3251. (looking-at "#\\+BEGIN_QUOTE")))
  3252. ;; Optional argument is also case-insensitive.
  3253. (should
  3254. (org-test-with-temp-text
  3255. "Start\n#+BEGIN_CENTER\nA\n#+END_CENTER\n#+begin_quote\nB\n#+end_quote"
  3256. (let ((case-fold-search nil))
  3257. (org-next-block 1 nil "^[ \t]*#\\+BEGIN_QUOTE")
  3258. (looking-at "#\\+begin_quote")))))
  3259. (ert-deftest test-org/previous-block ()
  3260. "Test `org-previous-block' specifications."
  3261. ;; Regular test.
  3262. (should
  3263. (org-test-with-temp-text "#+BEGIN_CENTER\ncontents\n#+END_CENTER\n<point>"
  3264. (org-previous-block 1)
  3265. (looking-at "#\\+BEGIN_CENTER")))
  3266. ;; Ignore case.
  3267. (should
  3268. (org-test-with-temp-text "#+begin_center\ncontents\n#+end_center\n<point>"
  3269. (let ((case-fold-search nil))
  3270. (org-previous-block 1)
  3271. (looking-at "#\\+begin_center"))))
  3272. ;; Ignore current line.
  3273. (should
  3274. (org-test-with-temp-text
  3275. "#+BEGIN_QUOTE\n#+END_QUOTE\n#+BEGIN_CENTER<point>\n#+END_CENTER"
  3276. (org-previous-block 1)
  3277. (looking-at "#\\+BEGIN_QUOTE")))
  3278. ;; Throw an error when no block is found.
  3279. (should-error
  3280. (org-test-with-temp-text "Paragraph<point>"
  3281. (org-previous-block 1)))
  3282. ;; With an argument, skip many blocks at once.
  3283. (should
  3284. (org-test-with-temp-text
  3285. "#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE\n<point>"
  3286. (org-previous-block 2)
  3287. (looking-at "#\\+BEGIN_CENTER")))
  3288. ;; With optional argument BLOCK-REGEXP, filter matched blocks.
  3289. (should
  3290. (org-test-with-temp-text
  3291. "#+BEGIN_CENTER\nA\n#+END_CENTER\n#+BEGIN_QUOTE\nB\n#+END_QUOTE\n<point>"
  3292. (org-previous-block 1 "^[ \t]*#\\+BEGIN_QUOTE")
  3293. (looking-at "#\\+BEGIN_QUOTE")))
  3294. ;; Optional argument is also case-insensitive.
  3295. (should
  3296. (org-test-with-temp-text
  3297. "#+BEGIN_CENTER\nA\n#+END_CENTER\n#+begin_quote\nB\n#+end_quote\n<point>"
  3298. (let ((case-fold-search nil))
  3299. (org-next-block 1 "^[ \t]*#\\+BEGIN_QUOTE")
  3300. (looking-at "#\\+begin_quote")))))
  3301. ;;; Outline structure
  3302. (ert-deftest test-org/demote ()
  3303. "Test `org-demote' specifications."
  3304. ;; Add correct number of stars according to `org-odd-levels-only'.
  3305. (should
  3306. (= 2
  3307. (org-test-with-temp-text "* H"
  3308. (let ((org-odd-levels-only nil)) (org-demote))
  3309. (org-current-level))))
  3310. (should
  3311. (= 3
  3312. (org-test-with-temp-text "* H"
  3313. (let ((org-odd-levels-only t)) (org-demote))
  3314. (org-current-level))))
  3315. ;; When `org-auto-align-tags' is non-nil, move tags accordingly.
  3316. (should
  3317. (org-test-with-temp-text "* H :tag:"
  3318. (let ((org-tags-column 10)
  3319. (org-auto-align-tags t)
  3320. (org-odd-levels-only nil))
  3321. (org-demote))
  3322. (org-move-to-column 10)
  3323. (looking-at-p ":tag:$")))
  3324. (should-not
  3325. (org-test-with-temp-text "* H :tag:"
  3326. (let ((org-tags-column 10)
  3327. (org-auto-align-tags nil)
  3328. (org-odd-levels-only nil))
  3329. (org-demote))
  3330. (org-move-to-column 10)
  3331. (looking-at-p ":tag:$")))
  3332. ;; When `org-adapt-indentation' is non-nil, always indent planning
  3333. ;; info and property drawers accordingly.
  3334. (should
  3335. (= 3
  3336. (org-test-with-temp-text "* H\n SCHEDULED: <2014-03-04 tue.>"
  3337. (let ((org-odd-levels-only nil)
  3338. (org-adapt-indentation t))
  3339. (org-demote))
  3340. (forward-line)
  3341. (org-get-indentation))))
  3342. (should
  3343. (= 3
  3344. (org-test-with-temp-text "* H\n :PROPERTIES:\n :FOO: Bar\n :END:"
  3345. (let ((org-odd-levels-only nil)
  3346. (org-adapt-indentation t))
  3347. (org-demote))
  3348. (forward-line)
  3349. (org-get-indentation))))
  3350. (should-not
  3351. (= 3
  3352. (org-test-with-temp-text "* H\n SCHEDULED: <2014-03-04 tue.>"
  3353. (let ((org-odd-levels-only nil)
  3354. (org-adapt-indentation nil))
  3355. (org-demote))
  3356. (forward-line)
  3357. (org-get-indentation))))
  3358. ;; When `org-adapt-indentation' is non-nil, shift all lines in
  3359. ;; section accordingly. Ignore, however, footnote definitions and
  3360. ;; inlinetasks boundaries.
  3361. (should
  3362. (= 3
  3363. (org-test-with-temp-text "* H\n Paragraph"
  3364. (let ((org-odd-levels-only nil)
  3365. (org-adapt-indentation t))
  3366. (org-demote))
  3367. (forward-line)
  3368. (org-get-indentation))))
  3369. (should
  3370. (= 2
  3371. (org-test-with-temp-text "* H\n Paragraph"
  3372. (let ((org-odd-levels-only nil)
  3373. (org-adapt-indentation nil))
  3374. (org-demote))
  3375. (forward-line)
  3376. (org-get-indentation))))
  3377. (should
  3378. (zerop
  3379. (org-test-with-temp-text "* H\n[fn:1] def line 1\ndef line 2"
  3380. (let ((org-odd-levels-only nil)
  3381. (org-adapt-indentation t))
  3382. (org-demote))
  3383. (goto-char (point-max))
  3384. (org-get-indentation))))
  3385. (should
  3386. (= 3
  3387. (org-test-with-temp-text "* H\n[fn:1] Def.\n\n\n After def."
  3388. (let ((org-odd-levels-only nil)
  3389. (org-adapt-indentation t))
  3390. (org-demote))
  3391. (goto-char (point-max))
  3392. (org-get-indentation))))
  3393. (when (featurep 'org-inlinetask)
  3394. (should
  3395. (zerop
  3396. (let ((org-inlinetask-min-level 5)
  3397. (org-adapt-indentation t))
  3398. (org-test-with-temp-text "* H\n***** I\n***** END"
  3399. (org-demote)
  3400. (forward-line)
  3401. (org-get-indentation))))))
  3402. (when (featurep 'org-inlinetask)
  3403. (should
  3404. (= 3
  3405. (let ((org-inlinetask-min-level 5)
  3406. (org-adapt-indentation t))
  3407. (org-test-with-temp-text "* H\n***** I\n Contents\n***** END"
  3408. (org-demote)
  3409. (forward-line 2)
  3410. (org-get-indentation))))))
  3411. ;; Ignore contents of source blocks or example blocks when
  3412. ;; indentation should be preserved (through
  3413. ;; `org-src-preserve-indentation' or "-i" flag).
  3414. (should-not
  3415. (zerop
  3416. (org-test-with-temp-text "* H\n#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
  3417. (let ((org-adapt-indentation t)
  3418. (org-src-preserve-indentation nil))
  3419. (org-demote))
  3420. (forward-line 2)
  3421. (org-get-indentation))))
  3422. (should
  3423. (zerop
  3424. (org-test-with-temp-text "* H\n#+BEGIN_EXAMPLE\n(+ 1 1)\n#+END_EXAMPLE"
  3425. (let ((org-adapt-indentation t)
  3426. (org-src-preserve-indentation t))
  3427. (org-demote))
  3428. (forward-line 2)
  3429. (org-get-indentation))))
  3430. (should
  3431. (zerop
  3432. (org-test-with-temp-text "* H\n#+BEGIN_SRC emacs-lisp\n(+ 1 1)\n#+END_SRC"
  3433. (let ((org-adapt-indentation t)
  3434. (org-src-preserve-indentation t))
  3435. (org-demote))
  3436. (forward-line 2)
  3437. (org-get-indentation))))
  3438. (should
  3439. (zerop
  3440. (org-test-with-temp-text
  3441. "* H\n#+BEGIN_SRC emacs-lisp -i\n(+ 1 1)\n#+END_SRC"
  3442. (let ((org-adapt-indentation t)
  3443. (org-src-preserve-indentation nil))
  3444. (org-demote))
  3445. (forward-line 2)
  3446. (org-get-indentation)))))
  3447. (ert-deftest test-org/promote ()
  3448. "Test `org-promote' specifications."
  3449. ;; Return an error if headline is to be promoted to level 0, unless
  3450. ;; `org-allow-promoting-top-level-subtree' is non-nil, in which case
  3451. ;; headline becomes a comment.
  3452. (should-error
  3453. (org-test-with-temp-text "* H"
  3454. (let ((org-allow-promoting-top-level-subtree nil)) (org-promote))))
  3455. (should
  3456. (equal "# H"
  3457. (org-test-with-temp-text "* H"
  3458. (let ((org-allow-promoting-top-level-subtree t)) (org-promote))
  3459. (buffer-string))))
  3460. ;; Remove correct number of stars according to
  3461. ;; `org-odd-levels-only'.
  3462. (should
  3463. (= 2
  3464. (org-test-with-temp-text "*** H"
  3465. (let ((org-odd-levels-only nil)) (org-promote))
  3466. (org-current-level))))
  3467. (should
  3468. (= 1
  3469. (org-test-with-temp-text "*** H"
  3470. (let ((org-odd-levels-only t)) (org-promote))
  3471. (org-current-level))))
  3472. ;; When `org-auto-align-tags' is non-nil, move tags accordingly.
  3473. (should
  3474. (org-test-with-temp-text "** H :tag:"
  3475. (let ((org-tags-column 10)
  3476. (org-auto-align-tags t)
  3477. (org-odd-levels-only nil))
  3478. (org-promote))
  3479. (org-move-to-column 10)
  3480. (looking-at-p ":tag:$")))
  3481. (should-not
  3482. (org-test-with-temp-text "** H :tag:"
  3483. (let ((org-tags-column 10)
  3484. (org-auto-align-tags nil)
  3485. (org-odd-levels-only nil))
  3486. (org-promote))
  3487. (org-move-to-column 10)
  3488. (looking-at-p ":tag:$")))
  3489. ;; When `org-adapt-indentation' is non-nil, always indent planning
  3490. ;; info and property drawers.
  3491. (should
  3492. (= 2
  3493. (org-test-with-temp-text "** H\n SCHEDULED: <2014-03-04 tue.>"
  3494. (let ((org-odd-levels-only nil)
  3495. (org-adapt-indentation t))
  3496. (org-promote))
  3497. (forward-line)
  3498. (org-get-indentation))))
  3499. (should
  3500. (= 2
  3501. (org-test-with-temp-text "** H\n :PROPERTIES:\n :FOO: Bar\n :END:"
  3502. (let ((org-odd-levels-only nil)
  3503. (org-adapt-indentation t))
  3504. (org-promote))
  3505. (forward-line)
  3506. (org-get-indentation))))
  3507. (should-not
  3508. (= 2
  3509. (org-test-with-temp-text "** H\n SCHEDULED: <2014-03-04 tue.>"
  3510. (let ((org-odd-levels-only nil)
  3511. (org-adapt-indentation nil))
  3512. (org-promote))
  3513. (forward-line)
  3514. (org-get-indentation))))
  3515. ;; When `org-adapt-indentation' is non-nil, shift all lines in
  3516. ;; section accordingly. Ignore, however, footnote definitions and
  3517. ;; inlinetasks boundaries.
  3518. (should
  3519. (= 2
  3520. (org-test-with-temp-text "** H\n Paragraph"
  3521. (let ((org-odd-levels-only nil)
  3522. (org-adapt-indentation t))
  3523. (org-promote))
  3524. (forward-line)
  3525. (org-get-indentation))))
  3526. (should-not
  3527. (= 2
  3528. (org-test-with-temp-text "** H\n Paragraph"
  3529. (let ((org-odd-levels-only nil)
  3530. (org-adapt-indentation nil))
  3531. (org-promote))
  3532. (forward-line)
  3533. (org-get-indentation))))
  3534. (should
  3535. (= 2
  3536. (org-test-with-temp-text "** H\n Paragraph\n[fn:1] line1\nline2"
  3537. (let ((org-odd-levels-only nil)
  3538. (org-adapt-indentation t))
  3539. (org-promote))
  3540. (forward-line)
  3541. (org-get-indentation))))
  3542. (when (featurep 'org-inlinetask)
  3543. (should
  3544. (zerop
  3545. (let ((org-inlinetask-min-level 5)
  3546. (org-adapt-indentation t))
  3547. (org-test-with-temp-text "** H\n***** I\n***** END"
  3548. (org-promote)
  3549. (forward-line)
  3550. (org-get-indentation))))))
  3551. (when (featurep 'org-inlinetask)
  3552. (should
  3553. (= 2
  3554. (let ((org-inlinetask-min-level 5)
  3555. (org-adapt-indentation t))
  3556. (org-test-with-temp-text "** H\n***** I\n Contents\n***** END"
  3557. (org-promote)
  3558. (forward-line 2)
  3559. (org-get-indentation))))))
  3560. ;; Give up shifting if it would break document's structure
  3561. ;; otherwise.
  3562. (should
  3563. (= 3
  3564. (org-test-with-temp-text "** H\n Paragraph\n [fn:1] Def."
  3565. (let ((org-odd-levels-only nil)
  3566. (org-adapt-indentation t))
  3567. (org-promote))
  3568. (forward-line)
  3569. (org-get-indentation))))
  3570. (should
  3571. (= 3
  3572. (org-test-with-temp-text "** H\n Paragraph\n * list."
  3573. (let ((org-odd-levels-only nil)
  3574. (org-adapt-indentation t))
  3575. (org-promote))
  3576. (forward-line)
  3577. (org-get-indentation))))
  3578. ;; Ignore contents of source blocks or example blocks when
  3579. ;; indentation should be preserved (through
  3580. ;; `org-src-preserve-indentation' or "-i" flag).
  3581. (should-not
  3582. (zerop
  3583. (org-test-with-temp-text
  3584. "** H\n #+BEGIN_SRC emacs-lisp\n(+ 1 1)\n #+END_SRC"
  3585. (let ((org-adapt-indentation t)
  3586. (org-src-preserve-indentation nil)
  3587. (org-odd-levels-only nil))
  3588. (org-promote))
  3589. (forward-line)
  3590. (org-get-indentation))))
  3591. (should
  3592. (zerop
  3593. (org-test-with-temp-text
  3594. "** H\n #+BEGIN_EXAMPLE\nContents\n #+END_EXAMPLE"
  3595. (let ((org-adapt-indentation t)
  3596. (org-src-preserve-indentation t)
  3597. (org-odd-levels-only nil))
  3598. (org-promote))
  3599. (forward-line)
  3600. (org-get-indentation))))
  3601. (should
  3602. (zerop
  3603. (org-test-with-temp-text
  3604. "** H\n #+BEGIN_SRC emacs-lisp\n(+ 1 1)\n #+END_SRC"
  3605. (let ((org-adapt-indentation t)
  3606. (org-src-preserve-indentation t)
  3607. (org-odd-levels-only nil))
  3608. (org-promote))
  3609. (forward-line)
  3610. (org-get-indentation))))
  3611. (should
  3612. (zerop
  3613. (org-test-with-temp-text
  3614. "** H\n #+BEGIN_SRC emacs-lisp -i\n(+ 1 1)\n #+END_SRC"
  3615. (let ((org-adapt-indentation t)
  3616. (org-src-preserve-indentation nil)
  3617. (org-odd-levels-only nil))
  3618. (org-promote))
  3619. (forward-line)
  3620. (org-get-indentation)))))
  3621. ;;; Planning
  3622. (ert-deftest test-org/at-planning-p ()
  3623. "Test `org-at-planning-p' specifications."
  3624. ;; Regular test.
  3625. (should
  3626. (org-test-with-temp-text "* Headline\n<point>DEADLINE: <2014-03-04 tue.>"
  3627. (org-at-planning-p)))
  3628. (should-not
  3629. (org-test-with-temp-text "DEADLINE: <2014-03-04 tue.>"
  3630. (org-at-planning-p)))
  3631. ;; Correctly find planning attached to inlinetasks.
  3632. (when (featurep 'org-inlinetask)
  3633. (should
  3634. (org-test-with-temp-text
  3635. "*** Inlinetask\n<point>DEADLINE: <2014-03-04 tue.>\n*** END"
  3636. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))
  3637. (should-not
  3638. (org-test-with-temp-text
  3639. "*** Inlinetask\n<point>DEADLINE: <2014-03-04 tue.>"
  3640. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))
  3641. (should-not
  3642. (org-test-with-temp-text
  3643. "* Headline\n*** Inlinetask\n<point>DEADLINE: <2014-03-04 tue.>"
  3644. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))
  3645. (should-not
  3646. (org-test-with-temp-text
  3647. "* Headline\n*** Inlinetask\n*** END\n<point>DEADLINE: <2014-03-04 tue.>"
  3648. (let ((org-inlinetask-min-level 3)) (org-at-planning-p))))))
  3649. (ert-deftest test-org/add-planning-info ()
  3650. "Test `org-add-planning-info'."
  3651. ;; Create deadline when `org-adapt-indentation' is non-nil.
  3652. (should
  3653. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  3654. (org-test-with-temp-text "* H\nParagraph<point>"
  3655. (let ((org-adapt-indentation t))
  3656. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  3657. (replace-regexp-in-string
  3658. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3659. nil nil 1))))
  3660. ;; Create deadline when `org-adapt-indentation' is nil.
  3661. (should
  3662. (equal "* H\nDEADLINE: <2015-06-25>\nParagraph"
  3663. (org-test-with-temp-text "* H\nParagraph<point>"
  3664. (let ((org-adapt-indentation nil))
  3665. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  3666. (replace-regexp-in-string
  3667. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3668. nil nil 1))))
  3669. ;; Update deadline when `org-adapt-indentation' is non-nil.
  3670. (should
  3671. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  3672. (org-test-with-temp-text "\
  3673. * H
  3674. DEADLINE: <2015-06-24 Wed>
  3675. Paragraph<point>"
  3676. (let ((org-adapt-indentation t))
  3677. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  3678. (replace-regexp-in-string
  3679. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3680. nil nil 1))))
  3681. ;; Update deadline when `org-adapt-indentation' is nil.
  3682. (should
  3683. (equal "* H\nDEADLINE: <2015-06-25>\nParagraph"
  3684. (org-test-with-temp-text "\
  3685. * H
  3686. DEADLINE: <2015-06-24 Wed>
  3687. Paragraph<point>"
  3688. (let ((org-adapt-indentation nil))
  3689. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  3690. (replace-regexp-in-string
  3691. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3692. nil nil 1))))
  3693. ;; Schedule when `org-adapt-indentation' is non-nil.
  3694. (should
  3695. (equal "* H\n SCHEDULED: <2015-06-25>\nParagraph"
  3696. (org-test-with-temp-text "* H\nParagraph<point>"
  3697. (let ((org-adapt-indentation t))
  3698. (org-add-planning-info 'scheduled "<2015-06-25 Thu>"))
  3699. (replace-regexp-in-string
  3700. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3701. nil nil 1))))
  3702. ;; Schedule when `org-adapt-indentation' is nil.
  3703. (should
  3704. (equal "* H\nSCHEDULED: <2015-06-25>\nParagraph"
  3705. (org-test-with-temp-text "* H\nParagraph<point>"
  3706. (let ((org-adapt-indentation nil))
  3707. (org-add-planning-info 'scheduled "<2015-06-25 Thu>"))
  3708. (replace-regexp-in-string
  3709. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3710. nil nil 1))))
  3711. ;; Add deadline when scheduled.
  3712. (should
  3713. (equal "\
  3714. * H
  3715. DEADLINE: <2015-06-25> SCHEDULED: <2015-06-24>
  3716. Paragraph"
  3717. (org-test-with-temp-text "\
  3718. * H
  3719. SCHEDULED: <2015-06-24 Wed>
  3720. Paragraph<point>"
  3721. (let ((org-adapt-indentation t))
  3722. (org-add-planning-info 'deadline "<2015-06-25 Thu>"))
  3723. (replace-regexp-in-string
  3724. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3725. nil nil 1))))
  3726. ;; Remove middle entry.
  3727. (should
  3728. (equal "\
  3729. * H
  3730. CLOSED: [2015-06-24] SCHEDULED: <2015-06-24>
  3731. Paragraph"
  3732. (org-test-with-temp-text "\
  3733. * H
  3734. CLOSED: [2015-06-24 Wed] DEADLINE: <2015-06-25 Thu> SCHEDULED: <2015-06-24 Wed>
  3735. Paragraph<point>"
  3736. (let ((org-adapt-indentation t))
  3737. (org-add-planning-info nil nil 'deadline))
  3738. (replace-regexp-in-string
  3739. "\\( [.A-Za-z]+\\)[]>]" "" (buffer-string)
  3740. nil nil 1))))
  3741. ;; Remove last entry and then middle entry (order should not
  3742. ;; matter).
  3743. (should
  3744. (equal "\
  3745. * H
  3746. CLOSED: [2015-06-24]
  3747. Paragraph"
  3748. (org-test-with-temp-text "\
  3749. * H
  3750. CLOSED: [2015-06-24 Wed] DEADLINE: <2015-06-25 Thu> SCHEDULED: <2015-06-24 Wed>
  3751. Paragraph<point>"
  3752. (let ((org-adapt-indentation t))
  3753. (org-add-planning-info nil nil 'scheduled 'deadline))
  3754. (replace-regexp-in-string
  3755. "\\( [.A-Za-z]+\\)[]>]" "" (buffer-string)
  3756. nil nil 1))))
  3757. ;; Remove closed when `org-adapt-indentation' is non-nil.
  3758. (should
  3759. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  3760. (org-test-with-temp-text "\
  3761. * H
  3762. CLOSED: [2015-06-25 Thu] DEADLINE: <2015-06-25 Thu>
  3763. Paragraph<point>"
  3764. (let ((org-adapt-indentation t))
  3765. (org-add-planning-info nil nil 'closed))
  3766. (replace-regexp-in-string
  3767. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3768. nil nil 1))))
  3769. (should
  3770. (equal "* H\n Paragraph"
  3771. (org-test-with-temp-text "\
  3772. * H
  3773. CLOSED: [2015-06-25 Thu]
  3774. Paragraph<point>"
  3775. (let ((org-adapt-indentation t))
  3776. (org-add-planning-info nil nil 'closed))
  3777. (replace-regexp-in-string
  3778. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3779. nil nil 1))))
  3780. ;; Remove closed when `org-adapt-indentation' is nil.
  3781. (should
  3782. (equal "* H\nDEADLINE: <2015-06-25>\nParagraph"
  3783. (org-test-with-temp-text "\
  3784. * H
  3785. CLOSED: [2015-06-25 Thu] DEADLINE: <2015-06-25 Thu>
  3786. Paragraph<point>"
  3787. (let ((org-adapt-indentation nil))
  3788. (org-add-planning-info nil nil 'closed))
  3789. (replace-regexp-in-string
  3790. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3791. nil nil 1))))
  3792. (should
  3793. (equal "* H\nParagraph"
  3794. (org-test-with-temp-text "\
  3795. * H
  3796. CLOSED: [2015-06-25 Thu]
  3797. Paragraph<point>"
  3798. (let ((org-adapt-indentation nil))
  3799. (org-add-planning-info nil nil 'closed))
  3800. (replace-regexp-in-string
  3801. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3802. nil nil 1))))
  3803. ;; Remove closed entry and delete empty line.
  3804. (should
  3805. (equal "\
  3806. * H
  3807. Paragraph"
  3808. (org-test-with-temp-text "\
  3809. * H
  3810. CLOSED: [2015-06-24 Wed]
  3811. Paragraph<point>"
  3812. (let ((org-adapt-indentation t))
  3813. (org-add-planning-info nil nil 'closed))
  3814. (replace-regexp-in-string
  3815. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3816. nil nil 1))))
  3817. ;; Remove one entry and update another.
  3818. (should
  3819. (equal "* H\n DEADLINE: <2015-06-25>\nParagraph"
  3820. (org-test-with-temp-text "\
  3821. * H
  3822. SCHEDULED: <2015-06-23 Tue> DEADLINE: <2015-06-24 Wed>
  3823. Paragraph<point>"
  3824. (let ((org-adapt-indentation t))
  3825. (org-add-planning-info 'deadline "<2015-06-25 Thu>" 'scheduled))
  3826. (replace-regexp-in-string
  3827. "\\( [.A-Za-z]+\\)>" "" (buffer-string)
  3828. nil nil 1)))))
  3829. ;;; Property API
  3830. (ert-deftest test-org/buffer-property-keys ()
  3831. "Test `org-buffer-property-keys' specifications."
  3832. ;; Retrieve properties accross siblings.
  3833. (should
  3834. (equal '("A" "B")
  3835. (org-test-with-temp-text "
  3836. * H1
  3837. :PROPERTIES:
  3838. :A: 1
  3839. :END:
  3840. * H2
  3841. :PROPERTIES:
  3842. :B: 1
  3843. :END:"
  3844. (org-buffer-property-keys))))
  3845. ;; Retrieve properties accross children.
  3846. (should
  3847. (equal '("A" "B")
  3848. (org-test-with-temp-text "
  3849. * H1
  3850. :PROPERTIES:
  3851. :A: 1
  3852. :END:
  3853. ** H2
  3854. :PROPERTIES:
  3855. :B: 1
  3856. :END:"
  3857. (org-buffer-property-keys))))
  3858. ;; Retrieve muliple properties in the same drawer.
  3859. (should
  3860. (equal '("A" "B")
  3861. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3862. (org-buffer-property-keys))))
  3863. ;; Ignore extension symbol in property name.
  3864. (should
  3865. (equal '("A")
  3866. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:END:"
  3867. (org-buffer-property-keys))))
  3868. ;; With non-nil COLUMNS, extract property names from columns.
  3869. (should
  3870. (equal '("A" "B")
  3871. (org-test-with-temp-text "#+COLUMNS: %25ITEM %A %20B"
  3872. (org-buffer-property-keys nil nil t))))
  3873. (should
  3874. (equal '("A" "B" "COLUMNS")
  3875. (org-test-with-temp-text
  3876. "* H\n:PROPERTIES:\n:COLUMNS: %25ITEM %A %20B\n:END:"
  3877. (org-buffer-property-keys nil nil t))))
  3878. ;; With non-nil IGNORE-MALFORMED malformed property drawers are silently ignored.
  3879. (should
  3880. (equal '("A")
  3881. (org-test-with-temp-text
  3882. "* a\n:PROPERTIES:\n:A: 1\n:END:\n* b\n:PROPERTIES:\nsome junk here\n:END:\n"
  3883. (org-buffer-property-keys nil nil nil t)))))
  3884. (ert-deftest test-org/property-values ()
  3885. "Test `org-property-values' specifications."
  3886. ;; Regular test.
  3887. (should
  3888. (equal '("2" "1")
  3889. (org-test-with-temp-text
  3890. "* H\n:PROPERTIES:\n:A: 1\n:END:\n* H\n:PROPERTIES:\n:A: 2\n:END:"
  3891. (org-property-values "A"))))
  3892. ;; Ignore empty values.
  3893. (should-not
  3894. (org-test-with-temp-text
  3895. "* H1\n:PROPERTIES:\n:A:\n:END:\n* H2\n:PROPERTIES:\n:A: \n:END:"
  3896. (org-property-values "A")))
  3897. ;; Take into consideration extended values.
  3898. (should
  3899. (equal '("1 2")
  3900. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:END:"
  3901. (org-property-values "A")))))
  3902. (ert-deftest test-org/find-property ()
  3903. "Test `org-find-property' specifications."
  3904. ;; Regular test.
  3905. (should
  3906. (= 1
  3907. (org-test-with-temp-text "* H\n:PROPERTIES:\n:PROP: value\n:END:"
  3908. (org-find-property "prop"))))
  3909. ;; Ignore false positives.
  3910. (should
  3911. (= 27
  3912. (org-test-with-temp-text
  3913. "* H1\n:DRAWER:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:A: 1\n:END:"
  3914. (org-find-property "A"))))
  3915. ;; Return first entry found in buffer.
  3916. (should
  3917. (= 1
  3918. (org-test-with-temp-text
  3919. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:<point>A: 1\n:END:"
  3920. (org-find-property "A"))))
  3921. ;; Only search visible part of the buffer.
  3922. (should
  3923. (= 31
  3924. (org-test-with-temp-text
  3925. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:<point>A: 1\n:END:"
  3926. (org-narrow-to-subtree)
  3927. (org-find-property "A"))))
  3928. ;; With optional argument, only find entries with a specific value.
  3929. (should-not
  3930. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3931. (org-find-property "A" "2")))
  3932. (should
  3933. (= 31
  3934. (org-test-with-temp-text
  3935. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:A: 2\n:END:"
  3936. (org-find-property "A" "2"))))
  3937. ;; Use "nil" for explicit nil values.
  3938. (should
  3939. (= 31
  3940. (org-test-with-temp-text
  3941. "* H1\n:PROPERTIES:\n:A: 1\n:END:\n* H2\n:PROPERTIES:\n:A: nil\n:END:"
  3942. (org-find-property "A" "nil")))))
  3943. (ert-deftest test-org/entry-delete ()
  3944. "Test `org-entry-delete' specifications."
  3945. ;; Regular test.
  3946. (should
  3947. (string-match
  3948. " *:PROPERTIES:\n *:B: +2\n *:END:"
  3949. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3950. (org-entry-delete (point) "A")
  3951. (buffer-string))))
  3952. ;; Also remove accumulated properties.
  3953. (should-not
  3954. (string-match
  3955. ":A"
  3956. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:A+: 2\n:B: 3\n:END:"
  3957. (org-entry-delete (point) "A")
  3958. (buffer-string))))
  3959. ;; When last property is removed, remove the property drawer.
  3960. (should-not
  3961. (string-match
  3962. ":PROPERTIES:"
  3963. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\nParagraph"
  3964. (org-entry-delete (point) "A")
  3965. (buffer-string))))
  3966. ;; Return a non-nil value when some property was removed.
  3967. (should
  3968. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3969. (org-entry-delete (point) "A")))
  3970. (should-not
  3971. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:B: 2\n:END:"
  3972. (org-entry-delete (point) "C"))))
  3973. (ert-deftest test-org/entry-get ()
  3974. "Test `org-entry-get' specifications."
  3975. ;; Regular test.
  3976. (should
  3977. (equal "1"
  3978. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3979. (org-entry-get (point) "A"))))
  3980. ;; Ignore case.
  3981. (should
  3982. (equal "1"
  3983. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  3984. (org-entry-get (point) "a"))))
  3985. ;; Handle extended values, both before and after base value.
  3986. (should
  3987. (equal "1 2 3"
  3988. (org-test-with-temp-text
  3989. "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:A+: 3\n:END:"
  3990. (org-entry-get (point) "A"))))
  3991. ;; Empty values are returned as the empty string.
  3992. (should
  3993. (equal ""
  3994. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A:\n:END:"
  3995. (org-entry-get (point) "A"))))
  3996. ;; Special nil value. If LITERAL-NIL is non-nil, return "nil",
  3997. ;; otherwise, return nil.
  3998. (should-not
  3999. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: nil\n:END:"
  4000. (org-entry-get (point) "A")))
  4001. (should
  4002. (equal "nil"
  4003. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: nil\n:END:"
  4004. (org-entry-get (point) "A" nil t))))
  4005. ;; Return nil when no property is found, independently on the
  4006. ;; LITERAL-NIL argument.
  4007. (should-not
  4008. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  4009. (org-entry-get (point) "B")))
  4010. (should-not
  4011. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  4012. (org-entry-get (point) "B" nil t)))
  4013. ;; Handle inheritance, when allowed. Include extended values and
  4014. ;; possibly global values.
  4015. (should
  4016. (equal
  4017. "1"
  4018. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
  4019. (org-entry-get (point) "A" t))))
  4020. (should
  4021. (equal
  4022. "1"
  4023. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
  4024. (let ((org-use-property-inheritance t))
  4025. (org-entry-get (point) "A" 'selective)))))
  4026. (should-not
  4027. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n** <point>H2"
  4028. (let ((org-use-property-inheritance nil))
  4029. (org-entry-get (point) "A" 'selective))))
  4030. (should
  4031. (equal
  4032. "1 2"
  4033. (org-test-with-temp-text
  4034. "* H\n:PROPERTIES:\n:A: 1\n:END:\n** H2\n:PROPERTIES:\n:A+: 2\n:END:"
  4035. (org-entry-get (point-max) "A" t))))
  4036. (should
  4037. (equal "1"
  4038. (org-test-with-temp-text
  4039. "#+PROPERTY: A 0\n* H\n:PROPERTIES:\n:A: 1\n:END:"
  4040. (org-mode-restart)
  4041. (org-entry-get (point-max) "A" t))))
  4042. (should
  4043. (equal "0 1"
  4044. (org-test-with-temp-text
  4045. "#+PROPERTY: A 0\n* H\n:PROPERTIES:\n:A+: 1\n:END:"
  4046. (org-mode-restart)
  4047. (org-entry-get (point-max) "A" t)))))
  4048. (ert-deftest test-org/entry-properties ()
  4049. "Test `org-entry-properties' specifications."
  4050. ;; Get "ITEM" property.
  4051. (should
  4052. (equal "H"
  4053. (org-test-with-temp-text "* TODO H"
  4054. (cdr (assoc "ITEM" (org-entry-properties nil "ITEM"))))))
  4055. (should
  4056. (equal "H"
  4057. (org-test-with-temp-text "* TODO H"
  4058. (cdr (assoc "ITEM" (org-entry-properties))))))
  4059. ;; Get "TODO" property. TODO keywords are case sensitive.
  4060. (should
  4061. (equal "TODO"
  4062. (org-test-with-temp-text "* TODO H"
  4063. (cdr (assoc "TODO" (org-entry-properties nil "TODO"))))))
  4064. (should
  4065. (equal "TODO"
  4066. (org-test-with-temp-text "* TODO H"
  4067. (cdr (assoc "TODO" (org-entry-properties))))))
  4068. (should-not
  4069. (org-test-with-temp-text "* H"
  4070. (assoc "TODO" (org-entry-properties nil "TODO"))))
  4071. (should-not
  4072. (org-test-with-temp-text "* todo H"
  4073. (assoc "TODO" (org-entry-properties nil "TODO"))))
  4074. ;; Get "PRIORITY" property.
  4075. (should
  4076. (equal "A"
  4077. (org-test-with-temp-text "* [#A] H"
  4078. (cdr (assoc "PRIORITY" (org-entry-properties nil "PRIORITY"))))))
  4079. (should
  4080. (equal "A"
  4081. (org-test-with-temp-text "* [#A] H"
  4082. (cdr (assoc "PRIORITY" (org-entry-properties))))))
  4083. (should
  4084. (equal (char-to-string org-default-priority)
  4085. (org-test-with-temp-text "* H"
  4086. (cdr (assoc "PRIORITY" (org-entry-properties nil "PRIORITY"))))))
  4087. ;; Get "FILE" property.
  4088. (should
  4089. (org-test-with-temp-text-in-file "* H\nParagraph"
  4090. (file-equal-p (cdr (assoc "FILE" (org-entry-properties nil "FILE")))
  4091. (buffer-file-name))))
  4092. (should
  4093. (org-test-with-temp-text-in-file "* H\nParagraph"
  4094. (file-equal-p (cdr (assoc "FILE" (org-entry-properties)))
  4095. (buffer-file-name))))
  4096. (should-not
  4097. (org-test-with-temp-text "* H\nParagraph"
  4098. (cdr (assoc "FILE" (org-entry-properties nil "FILE")))))
  4099. ;; Get "TAGS" property.
  4100. (should
  4101. (equal ":tag1:tag2:"
  4102. (org-test-with-temp-text "* H :tag1:tag2:"
  4103. (cdr (assoc "TAGS" (org-entry-properties nil "TAGS"))))))
  4104. (should
  4105. (equal ":tag1:tag2:"
  4106. (org-test-with-temp-text "* H :tag1:tag2:"
  4107. (cdr (assoc "TAGS" (org-entry-properties))))))
  4108. (should-not
  4109. (org-test-with-temp-text "* H"
  4110. (cdr (assoc "TAGS" (org-entry-properties nil "TAGS")))))
  4111. ;; Get "ALLTAGS" property.
  4112. (should
  4113. (equal ":tag1:tag2:"
  4114. (org-test-with-temp-text "* H :tag1:\n<point>** H2 :tag2:"
  4115. (cdr (assoc "ALLTAGS" (org-entry-properties nil "ALLTAGS"))))))
  4116. (should
  4117. (equal ":tag1:tag2:"
  4118. (org-test-with-temp-text "* H :tag1:\n<point>** H2 :tag2:"
  4119. (cdr (assoc "ALLTAGS" (org-entry-properties))))))
  4120. (should-not
  4121. (org-test-with-temp-text "* H"
  4122. (cdr (assoc "ALLTAGS" (org-entry-properties nil "ALLTAGS")))))
  4123. ;; Get "BLOCKED" property.
  4124. (should
  4125. (equal "t"
  4126. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** TODO two"
  4127. (let ((org-enforce-todo-dependencies t)
  4128. (org-blocker-hook
  4129. '(org-block-todo-from-children-or-siblings-or-parent)))
  4130. (cdr (assoc "BLOCKED" (org-entry-properties nil "BLOCKED")))))))
  4131. (should
  4132. (equal ""
  4133. (org-test-with-temp-text "* TODO Blocked\n** DONE one\n** DONE two"
  4134. (let ((org-enforce-todo-dependencies t)
  4135. (org-blocker-hook
  4136. '(org-block-todo-from-children-or-siblings-or-parent)))
  4137. (cdr (assoc "BLOCKED" (org-entry-properties nil "BLOCKED")))))))
  4138. ;; Get "CLOSED", "DEADLINE" and "SCHEDULED" properties.
  4139. (should
  4140. (equal
  4141. "[2012-03-29 thu.]"
  4142. (org-test-with-temp-text "* H\nCLOSED: [2012-03-29 thu.]"
  4143. (cdr (assoc "CLOSED" (org-entry-properties nil "CLOSED"))))))
  4144. (should
  4145. (equal
  4146. "[2012-03-29 thu.]"
  4147. (org-test-with-temp-text "* H\nCLOSED: [2012-03-29 thu.]"
  4148. (cdr (assoc "CLOSED" (org-entry-properties))))))
  4149. (should-not
  4150. (org-test-with-temp-text "* H"
  4151. (cdr (assoc "CLOSED" (org-entry-properties nil "CLOSED")))))
  4152. (should
  4153. (equal
  4154. "<2014-03-04 tue.>"
  4155. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  4156. (cdr (assoc "DEADLINE" (org-entry-properties nil "DEADLINE"))))))
  4157. (should
  4158. (equal
  4159. "<2014-03-04 tue.>"
  4160. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  4161. (cdr (assoc "DEADLINE" (org-entry-properties))))))
  4162. (should-not
  4163. (org-test-with-temp-text "* H"
  4164. (cdr (assoc "DEADLINE" (org-entry-properties nil "DEADLINE")))))
  4165. (should
  4166. (equal
  4167. "<2014-03-04 tue.>"
  4168. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  4169. (cdr (assoc "SCHEDULED" (org-entry-properties nil "SCHEDULED"))))))
  4170. (should
  4171. (equal
  4172. "<2014-03-04 tue.>"
  4173. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  4174. (cdr (assoc "SCHEDULED" (org-entry-properties))))))
  4175. (should-not
  4176. (org-test-with-temp-text "* H"
  4177. (cdr (assoc "SCHEDULED" (org-entry-properties nil "SCHEDULED")))))
  4178. ;; Get "CATEGORY"
  4179. (should
  4180. (equal "cat"
  4181. (org-test-with-temp-text "#+CATEGORY: cat\n<point>* H"
  4182. (cdr (assoc "CATEGORY" (org-entry-properties))))))
  4183. (should
  4184. (equal "cat"
  4185. (org-test-with-temp-text "#+CATEGORY: cat\n<point>* H"
  4186. (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
  4187. (should
  4188. (equal "cat"
  4189. (org-test-with-temp-text "* H\n:PROPERTIES:\n:CATEGORY: cat\n:END:"
  4190. (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
  4191. (should
  4192. (equal "cat2"
  4193. (org-test-with-temp-text
  4194. (concat "* H\n:PROPERTIES:\n:CATEGORY: cat1\n:END:"
  4195. "\n"
  4196. "** H2\n:PROPERTIES:\n:CATEGORY: cat2\n:END:<point>")
  4197. (cdr (assoc "CATEGORY" (org-entry-properties nil "CATEGORY"))))))
  4198. ;; Get "TIMESTAMP" and "TIMESTAMP_IA" properties.
  4199. (should
  4200. (equal "<2012-03-29 thu.>"
  4201. (org-test-with-temp-text "* Entry\n<2012-03-29 thu.>"
  4202. (cdr (assoc "TIMESTAMP" (org-entry-properties))))))
  4203. (should
  4204. (equal "[2012-03-29 thu.]"
  4205. (org-test-with-temp-text "* Entry\n[2012-03-29 thu.]"
  4206. (cdr (assoc "TIMESTAMP_IA" (org-entry-properties))))))
  4207. (should
  4208. (equal "<2012-03-29 thu.>"
  4209. (org-test-with-temp-text "* Entry\n[2014-03-04 tue.]<2012-03-29 thu.>"
  4210. (cdr (assoc "TIMESTAMP" (org-entry-properties nil "TIMESTAMP"))))))
  4211. (should
  4212. (equal "[2014-03-04 tue.]"
  4213. (org-test-with-temp-text "* Entry\n<2012-03-29 thu.>[2014-03-04 tue.]"
  4214. (cdr (assoc "TIMESTAMP_IA" (org-entry-properties nil "TIMESTAMP_IA"))))))
  4215. ;; Get standard properties.
  4216. (should
  4217. (equal "1"
  4218. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  4219. (cdr (assoc "A" (org-entry-properties nil 'standard))))))
  4220. ;; Handle extended properties.
  4221. (should
  4222. (equal "1 2 3"
  4223. (org-test-with-temp-text
  4224. "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:A+: 3\n:END:"
  4225. (cdr (assoc "A" (org-entry-properties nil 'standard))))))
  4226. (should
  4227. (equal "1 2 3"
  4228. (org-test-with-temp-text
  4229. "* H\n:PROPERTIES:\n:A+: 2\n:A: 1\n:a+: 3\n:END:"
  4230. (cdr (assoc "A" (org-entry-properties nil 'standard))))))
  4231. ;; Ignore forbidden (special) properties.
  4232. (should-not
  4233. (org-test-with-temp-text "* H\n:PROPERTIES:\n:TODO: foo\n:END:"
  4234. (cdr (assoc "TODO" (org-entry-properties nil 'standard))))))
  4235. (ert-deftest test-org/entry-put ()
  4236. "Test `org-entry-put' specifications."
  4237. ;; Error when not a string or nil.
  4238. (should-error
  4239. (org-test-with-temp-text "* H\n:PROPERTIES:\n:test: 1\n:END:"
  4240. (org-entry-put 1 "test" 2)))
  4241. ;; Error when property name is invalid.
  4242. (should-error
  4243. (org-test-with-temp-text "* H\n:PROPERTIES:\n:test: 1\n:END:"
  4244. (org-entry-put 1 "no space" "value")))
  4245. (should-error
  4246. (org-test-with-temp-text "* H\n:PROPERTIES:\n:test: 1\n:END:"
  4247. (org-entry-put 1 "" "value")))
  4248. ;; Set "TODO" property.
  4249. (should
  4250. (string-match (regexp-quote " TODO H")
  4251. (org-test-with-temp-text "#+TODO: TODO | DONE\n<point>* H"
  4252. (org-entry-put (point) "TODO" "TODO")
  4253. (buffer-string))))
  4254. (should
  4255. (string-match (regexp-quote "* H")
  4256. (org-test-with-temp-text "#+TODO: TODO | DONE\n<point>* H"
  4257. (org-entry-put (point) "TODO" nil)
  4258. (buffer-string))))
  4259. ;; Set "PRIORITY" property.
  4260. (should
  4261. (equal "* [#A] H"
  4262. (org-test-with-temp-text "* [#B] H"
  4263. (org-entry-put (point) "PRIORITY" "A")
  4264. (buffer-string))))
  4265. (should
  4266. (equal "* H"
  4267. (org-test-with-temp-text "* [#B] H"
  4268. (org-entry-put (point) "PRIORITY" nil)
  4269. (buffer-string))))
  4270. ;; Set "SCHEDULED" property.
  4271. (should
  4272. (string-match "* H\n *SCHEDULED: <2014-03-04 .*?>"
  4273. (org-test-with-temp-text "* H"
  4274. (org-entry-put (point) "SCHEDULED" "2014-03-04")
  4275. (buffer-string))))
  4276. (should
  4277. (string= "* H\n"
  4278. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  4279. (org-entry-put (point) "SCHEDULED" nil)
  4280. (buffer-string))))
  4281. (should
  4282. (string-match "* H\n *SCHEDULED: <2014-03-03 .*?>"
  4283. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  4284. (org-entry-put (point) "SCHEDULED" "earlier")
  4285. (buffer-string))))
  4286. (should
  4287. (string-match "^ *SCHEDULED: <2014-03-05 .*?>"
  4288. (org-test-with-temp-text "* H\nSCHEDULED: <2014-03-04 tue.>"
  4289. (org-entry-put (point) "SCHEDULED" "later")
  4290. (buffer-string))))
  4291. ;; Set "DEADLINE" property.
  4292. (should
  4293. (string-match "^ *DEADLINE: <2014-03-04 .*?>"
  4294. (org-test-with-temp-text "* H"
  4295. (org-entry-put (point) "DEADLINE" "2014-03-04")
  4296. (buffer-string))))
  4297. (should
  4298. (string= "* H\n"
  4299. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  4300. (org-entry-put (point) "DEADLINE" nil)
  4301. (buffer-string))))
  4302. (should
  4303. (string-match "^ *DEADLINE: <2014-03-03 .*?>"
  4304. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  4305. (org-entry-put (point) "DEADLINE" "earlier")
  4306. (buffer-string))))
  4307. (should
  4308. (string-match "^ *DEADLINE: <2014-03-05 .*?>"
  4309. (org-test-with-temp-text "* H\nDEADLINE: <2014-03-04 tue.>"
  4310. (org-entry-put (point) "DEADLINE" "later")
  4311. (buffer-string))))
  4312. ;; Set "CATEGORY" property
  4313. (should
  4314. (string-match "^ *:CATEGORY: cat"
  4315. (org-test-with-temp-text "* H"
  4316. (org-entry-put (point) "CATEGORY" "cat")
  4317. (buffer-string))))
  4318. ;; Regular properties, with or without pre-existing drawer.
  4319. (should
  4320. (string-match "^ *:A: +2$"
  4321. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  4322. (org-entry-put (point) "A" "2")
  4323. (buffer-string))))
  4324. (should
  4325. (string-match "^ *:A: +1$"
  4326. (org-test-with-temp-text "* H"
  4327. (org-entry-put (point) "A" "1")
  4328. (buffer-string))))
  4329. ;; Special case: two consecutive headlines.
  4330. (should
  4331. (string-match "\\* A\n *:PROPERTIES:"
  4332. (org-test-with-temp-text "* A\n** B"
  4333. (org-entry-put (point) "A" "1")
  4334. (buffer-string)))))
  4335. ;;; Radio Targets
  4336. (ert-deftest test-org/update-radio-target-regexp ()
  4337. "Test `org-update-radio-target-regexp' specifications."
  4338. ;; Properly update cache with no previous radio target regexp.
  4339. (should
  4340. (eq 'link
  4341. (org-test-with-temp-text "radio\n\nParagraph\n\nradio"
  4342. (save-excursion (goto-char (point-max)) (org-element-context))
  4343. (insert "<<<")
  4344. (search-forward "o")
  4345. (insert ">>>")
  4346. (org-update-radio-target-regexp)
  4347. (goto-char (point-max))
  4348. (org-element-type (org-element-context)))))
  4349. ;; Properly update cache with previous radio target regexp.
  4350. (should
  4351. (eq 'link
  4352. (org-test-with-temp-text "radio\n\nParagraph\n\nradio"
  4353. (save-excursion (goto-char (point-max)) (org-element-context))
  4354. (insert "<<<")
  4355. (search-forward "o")
  4356. (insert ">>>")
  4357. (org-update-radio-target-regexp)
  4358. (search-backward "r")
  4359. (delete-char 5)
  4360. (insert "new")
  4361. (org-update-radio-target-regexp)
  4362. (goto-char (point-max))
  4363. (delete-region (line-beginning-position) (point))
  4364. (insert "new")
  4365. (org-element-type (org-element-context))))))
  4366. ;;; Sparse trees
  4367. (ert-deftest test-org/match-sparse-tree ()
  4368. "Test `org-match-sparse-tree' specifications."
  4369. ;; Match tags.
  4370. (should-not
  4371. (org-test-with-temp-text "* H\n** H1 :tag:"
  4372. (org-match-sparse-tree nil "tag")
  4373. (search-forward "H1")
  4374. (org-invisible-p2)))
  4375. (should
  4376. (org-test-with-temp-text "* H\n** H1 :tag:\n** H2 :tag2:"
  4377. (org-match-sparse-tree nil "tag")
  4378. (search-forward "H2")
  4379. (org-invisible-p2)))
  4380. ;; "-" operator for tags.
  4381. (should-not
  4382. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  4383. (org-match-sparse-tree nil "tag1-tag2")
  4384. (search-forward "H1")
  4385. (org-invisible-p2)))
  4386. (should
  4387. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  4388. (org-match-sparse-tree nil "tag1-tag2")
  4389. (search-forward "H2")
  4390. (org-invisible-p2)))
  4391. ;; "&" operator for tags.
  4392. (should
  4393. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  4394. (org-match-sparse-tree nil "tag1&tag2")
  4395. (search-forward "H1")
  4396. (org-invisible-p2)))
  4397. (should-not
  4398. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  4399. (org-match-sparse-tree nil "tag1&tag2")
  4400. (search-forward "H2")
  4401. (org-invisible-p2)))
  4402. ;; "|" operator for tags.
  4403. (should-not
  4404. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  4405. (org-match-sparse-tree nil "tag1|tag2")
  4406. (search-forward "H1")
  4407. (org-invisible-p2)))
  4408. (should-not
  4409. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :tag1:tag2:"
  4410. (org-match-sparse-tree nil "tag1|tag2")
  4411. (search-forward "H2")
  4412. (org-invisible-p2)))
  4413. ;; Regexp match on tags.
  4414. (should-not
  4415. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :foo:"
  4416. (org-match-sparse-tree nil "{^tag.*}")
  4417. (search-forward "H1")
  4418. (org-invisible-p2)))
  4419. (should
  4420. (org-test-with-temp-text "* H\n** H1 :tag1:\n** H2 :foo:"
  4421. (org-match-sparse-tree nil "{^tag.*}")
  4422. (search-forward "H2")
  4423. (org-invisible-p2)))
  4424. ;; Match group tags.
  4425. (should-not
  4426. (org-test-with-temp-text
  4427. "#+TAGS: { work : lab }\n* H\n** H1 :work:\n** H2 :lab:"
  4428. (org-match-sparse-tree nil "work")
  4429. (search-forward "H1")
  4430. (org-invisible-p2)))
  4431. (should-not
  4432. (org-test-with-temp-text
  4433. "#+TAGS: { work : lab }\n* H\n** H1 :work:\n** H2 :lab:"
  4434. (org-match-sparse-tree nil "work")
  4435. (search-forward "H2")
  4436. (org-invisible-p2)))
  4437. ;; Match group tags with hard brackets.
  4438. (should-not
  4439. (org-test-with-temp-text
  4440. "#+TAGS: [ work : lab ]\n* H\n** H1 :work:\n** H2 :lab:"
  4441. (org-match-sparse-tree nil "work")
  4442. (search-forward "H1")
  4443. (org-invisible-p2)))
  4444. (should-not
  4445. (org-test-with-temp-text
  4446. "#+TAGS: [ work : lab ]\n* H\n** H1 :work:\n** H2 :lab:"
  4447. (org-match-sparse-tree nil "work")
  4448. (search-forward "H2")
  4449. (org-invisible-p2)))
  4450. ;; Match tags in hierarchies
  4451. (should-not
  4452. (org-test-with-temp-text
  4453. "#+TAGS: [ Lev_1 : Lev_2 ]\n
  4454. #+TAGS: [ Lev_2 : Lev_3 ]\n
  4455. #+TAGS: { Lev_3 : Lev_4 }\n
  4456. * H\n** H1 :Lev_1:\n** H2 :Lev_2:\n** H3 :Lev_3:\n** H4 :Lev_4:"
  4457. (org-match-sparse-tree nil "Lev_1")
  4458. (search-forward "H4")
  4459. (org-invisible-p2)))
  4460. ;; Match regular expressions in tags
  4461. (should-not
  4462. (org-test-with-temp-text
  4463. "#+TAGS: [ Lev : {Lev_[0-9]} ]\n* H\n** H1 :Lev_1:"
  4464. (org-match-sparse-tree nil "Lev")
  4465. (search-forward "H1")
  4466. (org-invisible-p2)))
  4467. (should
  4468. (org-test-with-temp-text
  4469. "#+TAGS: [ Lev : {Lev_[0-9]} ]\n* H\n** H1 :Lev_n:"
  4470. (org-match-sparse-tree nil "Lev")
  4471. (search-forward "H1")
  4472. (org-invisible-p2)))
  4473. ;; Match properties.
  4474. (should
  4475. (org-test-with-temp-text
  4476. "* H\n** H1\n:PROPERTIES:\n:A: 1\n:END:\n** H2\n:PROPERTIES:\n:A: 2\n:END:"
  4477. (org-match-sparse-tree nil "A=\"1\"")
  4478. (search-forward "H2")
  4479. (org-invisible-p2)))
  4480. (should-not
  4481. (org-test-with-temp-text "* H1\n** H2\n:PROPERTIES:\n:A: 1\n:END:"
  4482. (org-match-sparse-tree nil "A=\"1\"")
  4483. (search-forward "H2")
  4484. (org-invisible-p2)))
  4485. ;; Case is not significant when matching properties.
  4486. (should-not
  4487. (org-test-with-temp-text "* H1\n** H2\n:PROPERTIES:\n:A: 1\n:END:"
  4488. (org-match-sparse-tree nil "a=\"1\"")
  4489. (search-forward "H2")
  4490. (org-invisible-p2)))
  4491. (should-not
  4492. (org-test-with-temp-text "* H1\n** H2\n:PROPERTIES:\n:a: 1\n:END:"
  4493. (org-match-sparse-tree nil "A=\"1\"")
  4494. (search-forward "H2")
  4495. (org-invisible-p2)))
  4496. ;; Match special LEVEL property.
  4497. (should-not
  4498. (org-test-with-temp-text "* H\n** H1\n*** H2"
  4499. (let ((org-odd-levels-only nil)) (org-match-sparse-tree nil "LEVEL=2"))
  4500. (search-forward "H1")
  4501. (org-invisible-p2)))
  4502. (should
  4503. (org-test-with-temp-text "* H\n** H1\n*** H2"
  4504. (let ((org-odd-levels-only nil)) (org-match-sparse-tree nil "LEVEL=2"))
  4505. (search-forward "H2")
  4506. (org-invisible-p2)))
  4507. ;; Comparison operators when matching properties.
  4508. (should
  4509. (org-test-with-temp-text
  4510. "* H\n** H1\nSCHEDULED: <2014-03-04 tue.>\n** H2\nSCHEDULED: <2012-03-29 thu.>"
  4511. (org-match-sparse-tree nil "SCHEDULED<=\"<2013-01-01>\"")
  4512. (search-forward "H1")
  4513. (org-invisible-p2)))
  4514. (should-not
  4515. (org-test-with-temp-text
  4516. "* H\n** H1\nSCHEDULED: <2014-03-04 tue.>\n** H2\nSCHEDULED: <2012-03-29 thu.>"
  4517. (org-match-sparse-tree nil "SCHEDULED<=\"<2013-01-01>\"")
  4518. (search-forward "H2")
  4519. (org-invisible-p2)))
  4520. ;; Regexp match on properties values.
  4521. (should-not
  4522. (org-test-with-temp-text
  4523. "* H\n** H1\n:PROPERTIES:\n:A: foo\n:END:\n** H2\n:PROPERTIES:\n:A: bar\n:END:"
  4524. (org-match-sparse-tree nil "A={f.*}")
  4525. (search-forward "H1")
  4526. (org-invisible-p2)))
  4527. (should
  4528. (org-test-with-temp-text
  4529. "* H\n** H1\n:PROPERTIES:\n:A: foo\n:END:\n** H2\n:PROPERTIES:\n:A: bar\n:END:"
  4530. (org-match-sparse-tree nil "A={f.*}")
  4531. (search-forward "H2")
  4532. (org-invisible-p2)))
  4533. ;; With an optional argument, limit match to TODO entries.
  4534. (should-not
  4535. (org-test-with-temp-text "* H\n** TODO H1 :tag:\n** H2 :tag:"
  4536. (org-match-sparse-tree t "tag")
  4537. (search-forward "H1")
  4538. (org-invisible-p2)))
  4539. (should
  4540. (org-test-with-temp-text "* H\n** TODO H1 :tag:\n** H2 :tag:"
  4541. (org-match-sparse-tree t "tag")
  4542. (search-forward "H2")
  4543. (org-invisible-p2))))
  4544. (ert-deftest test-org/occur ()
  4545. "Test `org-occur' specifications."
  4546. ;; Count number of matches.
  4547. (should
  4548. (= 1
  4549. (org-test-with-temp-text "* H\nA\n* H2"
  4550. (org-occur "A"))))
  4551. (should
  4552. (= 2
  4553. (org-test-with-temp-text "* H\nA\n* H2\nA"
  4554. (org-occur "A"))))
  4555. ;; Test CALLBACK optional argument.
  4556. (should
  4557. (= 0
  4558. (org-test-with-temp-text "* H\nA\n* H2"
  4559. (org-occur "A" nil (lambda () (equal (org-get-heading) "H2"))))))
  4560. (should
  4561. (= 1
  4562. (org-test-with-temp-text "* H\nA\n* H2\nA"
  4563. (org-occur "A" nil (lambda () (equal (org-get-heading) "H2"))))))
  4564. ;; Case-fold searches according to `org-occur-case-fold-search'.
  4565. (should
  4566. (= 2
  4567. (org-test-with-temp-text "Aa"
  4568. (let ((org-occur-case-fold-search t)) (org-occur "A")))))
  4569. (should
  4570. (= 2
  4571. (org-test-with-temp-text "Aa"
  4572. (let ((org-occur-case-fold-search t)) (org-occur "a")))))
  4573. (should
  4574. (= 1
  4575. (org-test-with-temp-text "Aa"
  4576. (let ((org-occur-case-fold-search nil)) (org-occur "A")))))
  4577. (should
  4578. (= 1
  4579. (org-test-with-temp-text "Aa"
  4580. (let ((org-occur-case-fold-search nil)) (org-occur "a")))))
  4581. (should
  4582. (= 1
  4583. (org-test-with-temp-text "Aa"
  4584. (let ((org-occur-case-fold-search 'smart)) (org-occur "A")))))
  4585. (should
  4586. (= 2
  4587. (org-test-with-temp-text "Aa"
  4588. (let ((org-occur-case-fold-search 'smart)) (org-occur "a"))))))
  4589. ;;; Tags
  4590. (ert-deftest test-org/tag-string-to-alist ()
  4591. "Test `org-tag-string-to-alist' specifications."
  4592. ;; Tag without selection key.
  4593. (should (equal (org-tag-string-to-alist "tag1") '(("tag1"))))
  4594. ;; Tag with selection key.
  4595. (should (equal (org-tag-string-to-alist "tag1(t)") '(("tag1" . ?t))))
  4596. ;; Tag group.
  4597. (should
  4598. (equal
  4599. (org-tag-string-to-alist "[ group : t1 t2 ]")
  4600. '((:startgrouptag) ("group") (:grouptags) ("t1") ("t2") (:endgrouptag))))
  4601. ;; Mutually exclusive tags.
  4602. (should (equal (org-tag-string-to-alist "{ tag1 tag2 }")
  4603. '((:startgroup) ("tag1") ("tag2") (:endgroup))))
  4604. (should
  4605. (equal
  4606. (org-tag-string-to-alist "{ group : tag1 tag2 }")
  4607. '((:startgroup) ("group") (:grouptags) ("tag1") ("tag2") (:endgroup)))))
  4608. (ert-deftest test-org/tag-alist-to-string ()
  4609. "Test `org-tag-alist-to-string' specifications."
  4610. (should (equal (org-tag-alist-to-string '(("tag1"))) "tag1"))
  4611. (should (equal (org-tag-alist-to-string '(("tag1" . ?t))) "tag1(t)"))
  4612. (should
  4613. (equal
  4614. (org-tag-alist-to-string
  4615. '((:startgrouptag) ("group") (:grouptags) ("t1") ("t2") (:endgrouptag)))
  4616. "[ group : t1 t2 ]"))
  4617. (should
  4618. (equal (org-tag-alist-to-string
  4619. '((:startgroup) ("tag1") ("tag2") (:endgroup)))
  4620. "{ tag1 tag2 }"))
  4621. (should
  4622. (equal
  4623. (org-tag-alist-to-string
  4624. '((:startgroup) ("group") (:grouptags) ("tag1") ("tag2") (:endgroup)))
  4625. "{ group : tag1 tag2 }")))
  4626. (ert-deftest test-org/tag-alist-to-groups ()
  4627. "Test `org-tag-alist-to-groups' specifications."
  4628. (should
  4629. (equal (org-tag-alist-to-groups
  4630. '((:startgroup) ("group") (:grouptags) ("t1") ("t2") (:endgroup)))
  4631. '(("group" "t1" "t2"))))
  4632. (should
  4633. (equal
  4634. (org-tag-alist-to-groups
  4635. '((:startgrouptag) ("group") (:grouptags) ("t1") ("t2") (:endgrouptag)))
  4636. '(("group" "t1" "t2"))))
  4637. (should-not
  4638. (org-tag-alist-to-groups
  4639. '((:startgroup) ("group") ("t1") ("t2") (:endgroup)))))
  4640. (ert-deftest test-org/tag-align ()
  4641. "Test tags alignment."
  4642. ;; Test aligning tags with different display width.
  4643. (should
  4644. ;; 12345678901234567890
  4645. (equal "* Test :abc:"
  4646. (org-test-with-temp-text "* Test :abc:"
  4647. (let ((org-tags-column -20)
  4648. (indent-tabs-mode nil))
  4649. (org-fix-tags-on-the-fly))
  4650. (buffer-string))))
  4651. (should
  4652. ;; 12345678901234567890
  4653. (equal "* Test :日本語:"
  4654. (org-test-with-temp-text "* Test :日本語:"
  4655. (let ((org-tags-column -20)
  4656. (indent-tabs-mode nil))
  4657. (org-fix-tags-on-the-fly))
  4658. (buffer-string))))
  4659. ;; Make sure aligning tags do not skip invisible text.
  4660. (should
  4661. (equal "* [[linkx]] :tag:"
  4662. (org-test-with-temp-text "* [[link<point>]] :tag:"
  4663. (let ((org-tags-column 0))
  4664. (org-fix-tags-on-the-fly)
  4665. (insert "x")
  4666. (buffer-string))))))
  4667. (ert-deftest test-org/tags-at ()
  4668. (should
  4669. (equal '("foo" "bar")
  4670. (org-test-with-temp-text
  4671. "* T<point>est :foo:bar:"
  4672. (org-get-tags-at)))))
  4673. ;;; Timestamps API
  4674. (ert-deftest test-org/time-stamp ()
  4675. "Test `org-time-stamp' specifications."
  4676. ;; Insert chosen time stamp at point.
  4677. (should
  4678. (string-match
  4679. "Te<2014-03-04 .*?>xt"
  4680. (org-test-with-temp-text "Te<point>xt"
  4681. (cl-letf (((symbol-function 'org-read-date)
  4682. (lambda (&rest args)
  4683. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  4684. (org-time-stamp nil)
  4685. (buffer-string)))))
  4686. ;; With a prefix argument, also insert time.
  4687. (should
  4688. (string-match
  4689. "Te<2014-03-04 .*? 00:41>xt"
  4690. (org-test-with-temp-text "Te<point>xt"
  4691. (cl-letf (((symbol-function 'org-read-date)
  4692. (lambda (&rest args)
  4693. (apply #'encode-time
  4694. (org-parse-time-string "2014-03-04 00:41")))))
  4695. (org-time-stamp '(4))
  4696. (buffer-string)))))
  4697. ;; With two universal prefix arguments, insert an active timestamp
  4698. ;; with the current time without prompting the user.
  4699. (should
  4700. (string-match
  4701. "Te<2014-03-04 .*? 00:41>xt"
  4702. (org-test-with-temp-text "Te<point>xt"
  4703. (cl-letf (((symbol-function 'current-time)
  4704. (lambda ()
  4705. (apply #'encode-time
  4706. (org-parse-time-string "2014-03-04 00:41")))))
  4707. (org-time-stamp '(16))
  4708. (buffer-string)))))
  4709. ;; When optional argument is non-nil, insert an inactive timestamp.
  4710. (should
  4711. (string-match
  4712. "Te\\[2014-03-04 .*?\\]xt"
  4713. (org-test-with-temp-text "Te<point>xt"
  4714. (cl-letf (((symbol-function 'org-read-date)
  4715. (lambda (&rest args)
  4716. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  4717. (org-time-stamp nil t)
  4718. (buffer-string)))))
  4719. ;; When called from a timestamp, replace existing one.
  4720. (should
  4721. (string-match
  4722. "<2014-03-04 .*?>"
  4723. (org-test-with-temp-text "<2012-03-29<point> thu.>"
  4724. (cl-letf (((symbol-function 'org-read-date)
  4725. (lambda (&rest args)
  4726. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  4727. (org-time-stamp nil)
  4728. (buffer-string)))))
  4729. (should
  4730. (string-match
  4731. "<2014-03-04 .*?>--<2014-03-04 .*?>"
  4732. (org-test-with-temp-text "<2012-03-29<point> thu.>--<2014-03-04 tue.>"
  4733. (cl-letf (((symbol-function 'org-read-date)
  4734. (lambda (&rest args)
  4735. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  4736. (org-time-stamp nil)
  4737. (buffer-string)))))
  4738. ;; When replacing a timestamp, preserve repeater, if any.
  4739. (should
  4740. (string-match
  4741. "<2014-03-04 .*? \\+2y>"
  4742. (org-test-with-temp-text "<2012-03-29<point> thu. +2y>"
  4743. (cl-letf (((symbol-function 'org-read-date)
  4744. (lambda (&rest args)
  4745. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  4746. (org-time-stamp nil)
  4747. (buffer-string)))))
  4748. ;; When called twice in a raw, build a date range.
  4749. (should
  4750. (string-match
  4751. "<2012-03-29 .*?>--<2014-03-04 .*?>"
  4752. (org-test-with-temp-text "<2012-03-29 thu.><point>"
  4753. (cl-letf (((symbol-function 'org-read-date)
  4754. (lambda (&rest args)
  4755. (apply #'encode-time (org-parse-time-string "2014-03-04")))))
  4756. (let ((last-command 'org-time-stamp)
  4757. (this-command 'org-time-stamp))
  4758. (org-time-stamp nil))
  4759. (buffer-string))))))
  4760. (ert-deftest test-org/timestamp-has-time-p ()
  4761. "Test `org-timestamp-has-time-p' specifications."
  4762. ;; With time.
  4763. (should
  4764. (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
  4765. (org-timestamp-has-time-p (org-element-context))))
  4766. ;; Without time.
  4767. (should-not
  4768. (org-test-with-temp-text "<2012-03-29 Thu>"
  4769. (org-timestamp-has-time-p (org-element-context)))))
  4770. (ert-deftest test-org/timestamp-format ()
  4771. "Test `org-timestamp-format' specifications."
  4772. ;; Regular test.
  4773. (should
  4774. (equal
  4775. "2012-03-29 16:40"
  4776. (org-test-with-temp-text "<2012-03-29 Thu 16:40>"
  4777. (org-timestamp-format (org-element-context) "%Y-%m-%d %R"))))
  4778. ;; Range end.
  4779. (should
  4780. (equal
  4781. "2012-03-29"
  4782. (org-test-with-temp-text "[2011-07-14 Thu]--[2012-03-29 Thu]"
  4783. (org-timestamp-format (org-element-context) "%Y-%m-%d" t)))))
  4784. (ert-deftest test-org/timestamp-split-range ()
  4785. "Test `org-timestamp-split-range' specifications."
  4786. ;; Extract range start (active).
  4787. (should
  4788. (equal '(2012 3 29)
  4789. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  4790. (let ((ts (org-timestamp-split-range (org-element-context))))
  4791. (mapcar (lambda (p) (org-element-property p ts))
  4792. '(:year-end :month-end :day-end))))))
  4793. ;; Extract range start (inactive)
  4794. (should
  4795. (equal '(2012 3 29)
  4796. (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
  4797. (let ((ts (org-timestamp-split-range (org-element-context))))
  4798. (mapcar (lambda (p) (org-element-property p ts))
  4799. '(:year-end :month-end :day-end))))))
  4800. ;; Extract range end (active).
  4801. (should
  4802. (equal '(2012 3 30)
  4803. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  4804. (let ((ts (org-timestamp-split-range
  4805. (org-element-context) t)))
  4806. (mapcar (lambda (p) (org-element-property p ts))
  4807. '(:year-end :month-end :day-end))))))
  4808. ;; Extract range end (inactive)
  4809. (should
  4810. (equal '(2012 3 30)
  4811. (org-test-with-temp-text "[2012-03-29 Thu]--[2012-03-30 Fri]"
  4812. (let ((ts (org-timestamp-split-range
  4813. (org-element-context) t)))
  4814. (mapcar (lambda (p) (org-element-property p ts))
  4815. '(:year-end :month-end :day-end))))))
  4816. ;; Return the timestamp if not a range.
  4817. (should
  4818. (org-test-with-temp-text "[2012-03-29 Thu]"
  4819. (let* ((ts-orig (org-element-context))
  4820. (ts-copy (org-timestamp-split-range ts-orig)))
  4821. (eq ts-orig ts-copy))))
  4822. (should
  4823. (org-test-with-temp-text "<%%(org-float t 4 2)>"
  4824. (let* ((ts-orig (org-element-context))
  4825. (ts-copy (org-timestamp-split-range ts-orig)))
  4826. (eq ts-orig ts-copy)))))
  4827. (ert-deftest test-org/timestamp-translate ()
  4828. "Test `org-timestamp-translate' specifications."
  4829. ;; Translate whole date range.
  4830. (should
  4831. (equal "<29>--<30>"
  4832. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  4833. (let ((org-display-custom-times t)
  4834. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  4835. (org-timestamp-translate (org-element-context))))))
  4836. ;; Translate date range start.
  4837. (should
  4838. (equal "<29>"
  4839. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  4840. (let ((org-display-custom-times t)
  4841. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  4842. (org-timestamp-translate (org-element-context) 'start)))))
  4843. ;; Translate date range end.
  4844. (should
  4845. (equal "<30>"
  4846. (org-test-with-temp-text "<2012-03-29 Thu>--<2012-03-30 Fri>"
  4847. (let ((org-display-custom-times t)
  4848. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  4849. (org-timestamp-translate (org-element-context) 'end)))))
  4850. ;; Translate time range.
  4851. (should
  4852. (equal "<08>--<16>"
  4853. (org-test-with-temp-text "<2012-03-29 Thu 8:30-16:40>"
  4854. (let ((org-display-custom-times t)
  4855. (org-time-stamp-custom-formats '("<%d>" . "<%H>")))
  4856. (org-timestamp-translate (org-element-context))))))
  4857. ;; Translate non-range timestamp.
  4858. (should
  4859. (equal "<29>"
  4860. (org-test-with-temp-text "<2012-03-29 Thu>"
  4861. (let ((org-display-custom-times t)
  4862. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  4863. (org-timestamp-translate (org-element-context))))))
  4864. ;; Do not change `diary' timestamps.
  4865. (should
  4866. (equal "<%%(org-float t 4 2)>"
  4867. (org-test-with-temp-text "<%%(org-float t 4 2)>"
  4868. (let ((org-display-custom-times t)
  4869. (org-time-stamp-custom-formats '("<%d>" . "<%d>")))
  4870. (org-timestamp-translate (org-element-context)))))))
  4871. ;;; Visibility
  4872. (ert-deftest test-org/flag-drawer ()
  4873. "Test `org-flag-drawer' specifications."
  4874. ;; Hide drawer.
  4875. (should
  4876. (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
  4877. (org-flag-drawer t)
  4878. (get-char-property (line-end-position) 'invisible)))
  4879. ;; Show drawer.
  4880. (should-not
  4881. (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
  4882. (org-flag-drawer t)
  4883. (org-flag-drawer nil)
  4884. (get-char-property (line-end-position) 'invisible)))
  4885. ;; Test optional argument.
  4886. (should
  4887. (org-test-with-temp-text "Text\n:D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
  4888. (let ((drawer (save-excursion (search-forward ":D2")
  4889. (org-element-at-point))))
  4890. (org-flag-drawer t drawer)
  4891. (get-char-property (progn (search-forward ":D2") (line-end-position))
  4892. 'invisible))))
  4893. (should-not
  4894. (org-test-with-temp-text ":D1:\nc1\n:END:\n\n:D2:\nc2\n:END:"
  4895. (let ((drawer (save-excursion (search-forward ":D2")
  4896. (org-element-at-point))))
  4897. (org-flag-drawer t drawer)
  4898. (get-char-property (line-end-position) 'invisible))))
  4899. ;; Do not hide fake drawers.
  4900. (should-not
  4901. (org-test-with-temp-text "#+begin_example\n:D:\nc\n:END:\n#+end_example"
  4902. (forward-line 1)
  4903. (org-flag-drawer t)
  4904. (get-char-property (line-end-position) 'invisible)))
  4905. ;; Do not hide incomplete drawers.
  4906. (should-not
  4907. (org-test-with-temp-text ":D:\nparagraph"
  4908. (forward-line 1)
  4909. (org-flag-drawer t)
  4910. (get-char-property (line-end-position) 'invisible)))
  4911. ;; Do not hide drawers when called from final blank lines.
  4912. (should-not
  4913. (org-test-with-temp-text ":DRAWER:\nA\n:END:\n\n"
  4914. (goto-char (point-max))
  4915. (org-flag-drawer t)
  4916. (goto-char (point-min))
  4917. (get-char-property (line-end-position) 'invisible)))
  4918. ;; Don't leave point in an invisible part of the buffer when hiding
  4919. ;; a drawer away.
  4920. (should-not
  4921. (org-test-with-temp-text ":DRAWER:\ncontents\n:END:"
  4922. (goto-char (point-max))
  4923. (org-flag-drawer t)
  4924. (get-char-property (point) 'invisible))))
  4925. (ert-deftest test-org/hide-block-toggle ()
  4926. "Test `org-hide-block-toggle' specifications."
  4927. ;; Error when not at a block.
  4928. (should-error
  4929. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents"
  4930. (org-hide-block-toggle 'off)
  4931. (get-char-property (line-end-position) 'invisible)))
  4932. ;; Hide block.
  4933. (should
  4934. (org-test-with-temp-text "#+BEGIN_CENTER\ncontents\n#+END_CENTER"
  4935. (org-hide-block-toggle)
  4936. (get-char-property (line-end-position) 'invisible)))
  4937. (should
  4938. (org-test-with-temp-text "#+BEGIN_EXAMPLE\ncontents\n#+END_EXAMPLE"
  4939. (org-hide-block-toggle)
  4940. (get-char-property (line-end-position) 'invisible)))
  4941. ;; Show block unconditionally when optional argument is `off'.
  4942. (should-not
  4943. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  4944. (org-hide-block-toggle)
  4945. (org-hide-block-toggle 'off)
  4946. (get-char-property (line-end-position) 'invisible)))
  4947. (should-not
  4948. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  4949. (org-hide-block-toggle 'off)
  4950. (get-char-property (line-end-position) 'invisible)))
  4951. ;; Hide block unconditionally when optional argument is non-nil.
  4952. (should
  4953. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  4954. (org-hide-block-toggle t)
  4955. (get-char-property (line-end-position) 'invisible)))
  4956. (should
  4957. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE"
  4958. (org-hide-block-toggle)
  4959. (org-hide-block-toggle t)
  4960. (get-char-property (line-end-position) 'invisible)))
  4961. ;; Do not hide block when called from final blank lines.
  4962. (should-not
  4963. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n#+END_QUOTE\n\n<point>"
  4964. (org-hide-block-toggle)
  4965. (goto-char (point-min))
  4966. (get-char-property (line-end-position) 'invisible)))
  4967. ;; Don't leave point in an invisible part of the buffer when hiding
  4968. ;; a block away.
  4969. (should-not
  4970. (org-test-with-temp-text "#+BEGIN_QUOTE\ncontents\n<point>#+END_QUOTE"
  4971. (org-hide-block-toggle)
  4972. (get-char-property (point) 'invisible))))
  4973. (ert-deftest test-org/hide-block-toggle-maybe ()
  4974. "Test `org-hide-block-toggle-maybe' specifications."
  4975. (should
  4976. (org-test-with-temp-text "#+BEGIN: dynamic\nContents\n#+END:"
  4977. (org-hide-block-toggle-maybe)))
  4978. (should-not
  4979. (org-test-with-temp-text "Paragraph" (org-hide-block-toggle-maybe))))
  4980. (ert-deftest test-org/set-tags ()
  4981. "Test `org-set-tags' specifications."
  4982. ;; Tags set via fast-tag-selection should be visible afterwards
  4983. (should
  4984. (let ((org-tag-alist '(("NEXT" . ?n)))
  4985. (org-fast-tag-selection-single-key t))
  4986. (cl-letf (((symbol-function 'read-char-exclusive) (lambda () ?n))
  4987. ((symbol-function 'window-width) (lambda (&rest args) 100)))
  4988. (org-test-with-temp-text "<point>* Headline\nAnd its content\n* And another headline\n\nWith some content"
  4989. ;; Show only headlines
  4990. (org-content)
  4991. ;; Set NEXT tag on current entry
  4992. (org-set-tags nil nil)
  4993. ;; Move point to that NEXT tag
  4994. (search-forward "NEXT") (backward-word)
  4995. ;; And it should be visible (i.e. no overlays)
  4996. (not (overlays-at (point))))))))
  4997. (ert-deftest test-org/show-set-visibility ()
  4998. "Test `org-show-set-visibility' specifications."
  4999. ;; Do not throw an error before first heading.
  5000. (should
  5001. (org-test-with-temp-text "Preamble\n* Headline"
  5002. (org-show-set-visibility 'tree)
  5003. t))
  5004. ;; Test all visibility spans, both on headline and in entry.
  5005. (let ((list-visible-lines
  5006. (lambda (state headerp)
  5007. (org-test-with-temp-text "* Grandmother (0)
  5008. ** Uncle (1)
  5009. *** Heir (2)
  5010. ** Father (3)
  5011. Ancestor text (4)
  5012. *** Sister (5)
  5013. Sibling text (6)
  5014. *** Self (7)
  5015. Match (8)
  5016. **** First born (9)
  5017. Child text (10)
  5018. **** The other child (11)
  5019. *** Brother (12)
  5020. ** Aunt (13)
  5021. "
  5022. (org-cycle t)
  5023. (search-forward (if headerp "Self" "Match"))
  5024. (org-show-set-visibility state)
  5025. (goto-char (point-min))
  5026. (let (result (line 0))
  5027. (while (not (eobp))
  5028. (unless (org-invisible-p2) (push line result))
  5029. (incf line)
  5030. (forward-line))
  5031. (nreverse result))))))
  5032. (should (equal '(0 7) (funcall list-visible-lines 'minimal t)))
  5033. (should (equal '(0 7 8) (funcall list-visible-lines 'minimal nil)))
  5034. (should (equal '(0 7 8 9) (funcall list-visible-lines 'local t)))
  5035. (should (equal '(0 7 8 9) (funcall list-visible-lines 'local nil)))
  5036. (should (equal '(0 3 7) (funcall list-visible-lines 'ancestors t)))
  5037. (should (equal '(0 3 7 8) (funcall list-visible-lines 'ancestors nil)))
  5038. (should (equal '(0 3 5 7 12) (funcall list-visible-lines 'lineage t)))
  5039. (should (equal '(0 3 5 7 8 9 12) (funcall list-visible-lines 'lineage nil)))
  5040. (should (equal '(0 1 3 5 7 12 13) (funcall list-visible-lines 'tree t)))
  5041. (should (equal '(0 1 3 5 7 8 9 11 12 13)
  5042. (funcall list-visible-lines 'tree nil)))
  5043. (should (equal '(0 1 3 4 5 7 12 13)
  5044. (funcall list-visible-lines 'canonical t)))
  5045. (should (equal '(0 1 3 4 5 7 8 9 11 12 13)
  5046. (funcall list-visible-lines 'canonical nil))))
  5047. ;; When point is hidden in a drawer or a block, make sure to make it
  5048. ;; visible.
  5049. (should-not
  5050. (org-test-with-temp-text "#+BEGIN_QUOTE\nText\n#+END_QUOTE"
  5051. (org-hide-block-toggle)
  5052. (search-forward "Text")
  5053. (org-show-set-visibility 'minimal)
  5054. (org-invisible-p2)))
  5055. (should-not
  5056. (org-test-with-temp-text ":DRAWER:\nText\n:END:"
  5057. (org-flag-drawer t)
  5058. (search-forward "Text")
  5059. (org-show-set-visibility 'minimal)
  5060. (org-invisible-p2)))
  5061. (should-not
  5062. (org-test-with-temp-text
  5063. "#+BEGIN_QUOTE\n<point>:DRAWER:\nText\n:END:\n#+END_QUOTE"
  5064. (org-flag-drawer t)
  5065. (forward-line -1)
  5066. (org-hide-block-toggle)
  5067. (search-forward "Text")
  5068. (org-show-set-visibility 'minimal)
  5069. (org-invisible-p2))))
  5070. (provide 'test-org)
  5071. ;;; test-org.el ends here