test-org-list.el 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386
  1. ;;; test-org-list.el --- Tests for org-list.el
  2. ;; Copyright (C) 2012, 2013, 2014, 2018 Nicolas Goaziou
  3. ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
  4. ;; This program is free software; you can redistribute it and/or modify
  5. ;; it under the terms of the GNU General Public License as published by
  6. ;; the Free Software Foundation, either version 3 of the License, or
  7. ;; (at your option) any later version.
  8. ;; This program is distributed in the hope that it will be useful,
  9. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;; GNU General Public License for more details.
  12. ;; You should have received a copy of the GNU General Public License
  13. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. ;;; Code:
  15. (ert-deftest test-org-list/list-ending ()
  16. "Test if lists end at the right place."
  17. ;; With two blank lines.
  18. (org-test-with-temp-text "- item\n\n\n Text"
  19. (goto-line 4)
  20. (should-not (org-in-item-p)))
  21. ;; With text less indented than top items.
  22. (org-test-with-temp-text "- item\nText"
  23. (goto-line 2)
  24. (should-not (org-in-item-p)))
  25. ;; Though, blank lines and text indentation is ignored in blocks.
  26. (org-test-with-temp-text
  27. "- item\n #+begin_quote\n\n\nText at column 0\n #+end_quote\n Text"
  28. (goto-line 7)
  29. (should (org-in-item-p))))
  30. (ert-deftest test-org-list/list-navigation ()
  31. "Test list navigation specifications."
  32. (org-test-with-temp-text "
  33. - item A
  34. - item B
  35. - item 1
  36. - item 1.1
  37. - item 1.2
  38. - item 1.3
  39. - item 2
  40. - item X
  41. - item Y"
  42. (let ((org-list-use-circular-motion nil))
  43. ;; 1. Test `org-next-item'.
  44. ;;
  45. ;; 1.1. Should return an error if at last item in
  46. ;; a list/sub-list, unless `org-list-use-circular-motion'
  47. ;; is non-nil.
  48. (goto-line 9)
  49. (should-error (org-next-item))
  50. (let ((org-list-use-circular-motion t))
  51. (should (progn (org-next-item) t)))
  52. (goto-line 14)
  53. (should-error (org-next-item))
  54. (let ((org-list-use-circular-motion t))
  55. (should (progn (org-next-item) t)))
  56. ;; 1.2. Should jump over sub-lists.
  57. (goto-line 6)
  58. (org-next-item)
  59. (should (looking-at "- item 2"))
  60. ;; 1.3. Shouldn't move to another list.
  61. (goto-line 3)
  62. (should-error (org-next-item))
  63. (should-not (looking-at "- item 1"))
  64. ;; 1.4. Should move to the list/sub-list first item when
  65. ;; `org-list-use-circular-motion' is non-nil.
  66. (let ((org-list-use-circular-motion t))
  67. (goto-line 10)
  68. (org-next-item)
  69. (should (looking-at "- item 1"))
  70. (goto-line 9)
  71. (org-next-item)
  72. (should (looking-at " - item 1.1")))
  73. ;; 2. Test `org-previous-item'.
  74. ;;
  75. ;; 2.1. Should return an error if at first item in
  76. ;; a list/sub-list, unless `org-list-use-circular-motion is
  77. ;; non-nil.
  78. (goto-line 7)
  79. (should-error (org-previous-item))
  80. (let ((org-list-use-circular-motion t))
  81. (should (progn (org-previous-item) t)))
  82. (goto-line 13)
  83. (should-error (org-previous-item))
  84. (let ((org-list-use-circular-motion t))
  85. (should (progn (org-previous-item) t)))
  86. ;; 2.2. Should ignore sub-lists.
  87. (goto-line 10)
  88. (org-previous-item)
  89. (should (looking-at "- item 1"))
  90. ;; 2.3. Shouldn't move to another list.
  91. (goto-line 6)
  92. (should-error (org-previous-item))
  93. (should-not (looking-at "- item B"))
  94. ;; 2.4. Should move to the list/sub-list last item when
  95. ;; `org-list-use-circular-motion' is non-nil.
  96. (let ((org-list-use-circular-motion t))
  97. (goto-line 6)
  98. (org-previous-item)
  99. (should (looking-at "- item 2"))
  100. (goto-line 7)
  101. (org-previous-item)
  102. (should (looking-at " - item 1.3"))))))
  103. (ert-deftest test-org-list/cycle-bullet ()
  104. "Test `org-cycle-list-bullet' specifications."
  105. ;; Error when not at an item.
  106. (should-error
  107. (org-test-with-temp-text "Paragraph"
  108. (org-cycle-list-bullet)))
  109. ;; Cycle through "-", "+", "*", "1.", "1)".
  110. (org-test-with-temp-text " - item"
  111. (org-cycle-list-bullet)
  112. (should (looking-at "[ \t]+\\+"))
  113. (org-cycle-list-bullet)
  114. (should (looking-at "[ \t]+\\*"))
  115. (let ((org-plain-list-ordered-item-terminator t))
  116. (org-cycle-list-bullet))
  117. (should (looking-at "[ \t]+1\\."))
  118. (let ((org-plain-list-ordered-item-terminator t))
  119. (org-cycle-list-bullet))
  120. (should (looking-at "[ \t]+1)")))
  121. ;; Argument is a valid bullet: cycle to that bullet directly.
  122. (should
  123. (equal "1. item"
  124. (org-test-with-temp-text "- item"
  125. (let ((org-plain-list-ordered-item-terminator t))
  126. (org-cycle-list-bullet "1.")
  127. (buffer-string)))))
  128. ;; Argument is an integer N: cycle to the Nth allowed bullet.
  129. (should
  130. (equal "+ item"
  131. (org-test-with-temp-text "1. item"
  132. (let ((org-plain-list-ordered-item-terminator t))
  133. (org-cycle-list-bullet 1)
  134. (buffer-string)))))
  135. ;; Argument is `previous': cycle backwards.
  136. (should
  137. (equal "- item"
  138. (org-test-with-temp-text "+ item"
  139. (let ((org-plain-list-ordered-item-terminator t))
  140. (org-cycle-list-bullet 'previous)
  141. (buffer-string)))))
  142. ;; Do not cycle to "*" bullets when item is at column 0.
  143. (should
  144. (equal "1. item"
  145. (org-test-with-temp-text "+ item"
  146. (let ((org-plain-list-ordered-item-terminator t))
  147. (org-cycle-list-bullet)
  148. (buffer-string)))))
  149. ;; Do not cycle to numbered bullets in a description list.
  150. (should-not
  151. (equal "1. tag :: item"
  152. (org-test-with-temp-text "+ tag :: item"
  153. (let ((org-plain-list-ordered-item-terminator t))
  154. (org-cycle-list-bullet)
  155. (buffer-string)))))
  156. ;; Do not cycle to ordered item terminators if they are not allowed
  157. ;; in `org-plain-list-ordered-item-terminator'.
  158. (should
  159. (equal " 1) item"
  160. (org-test-with-temp-text " * item"
  161. (let ((org-plain-list-ordered-item-terminator 41))
  162. (org-cycle-list-bullet)
  163. (buffer-string)))))
  164. ;; When `org-list-allow-alphabetical' is non-nil, cycle to alpha bullets.
  165. (should
  166. (equal "a. item"
  167. (org-test-with-temp-text "1) item"
  168. (let ((org-plain-list-ordered-item-terminator t)
  169. (org-list-allow-alphabetical t))
  170. (org-cycle-list-bullet)
  171. (buffer-string)))))
  172. ;; Do not cycle to alpha bullets when list has more than 26
  173. ;; elements.
  174. (should-not
  175. (equal "a. item 1"
  176. (org-test-with-temp-text "1) item 1
  177. 2) item 2
  178. 3) item 3
  179. 4) item 4
  180. 5) item 5
  181. 6) item 6
  182. 7) item 7
  183. 8) item 8
  184. 9) item 9
  185. 10) item 10
  186. 11) item 11
  187. 12) item 12
  188. 13) item 13
  189. 14) item 14
  190. 15) item 15
  191. 16) item 16
  192. 17) item 17
  193. 18) item 18
  194. 19) item 19
  195. 20) item 20
  196. 21) item 21
  197. 22) item 22
  198. 23) item 23
  199. 24) item 24
  200. 25) item 25
  201. 26) item 26
  202. 27) item 27"
  203. (let ((org-plain-list-ordered-item-terminator t)
  204. (org-list-allow-alphabetical t))
  205. (org-cycle-list-bullet)
  206. (buffer-substring (point) (line-end-position)))))))
  207. (ert-deftest test-org-list/indent-item ()
  208. "Test `org-indent-item' specifications."
  209. ;; 1. Error when not at an item.
  210. (org-test-with-temp-text "Paragraph."
  211. (should-error (org-indent-item)))
  212. ;; 2. Error when trying to move first item of a list.
  213. (org-test-with-temp-text "
  214. - Item 1
  215. - Item 2"
  216. (forward-line)
  217. (should-error (org-indent-item)))
  218. ;; 3. Indent a single item, not its children.
  219. (org-test-with-temp-text "
  220. - Item 1
  221. - Item 2
  222. - Item 2.1"
  223. (search-forward "- Item 2")
  224. (let (org-list-demote-modify-bullet) (org-indent-item))
  225. (should (equal (buffer-string)
  226. "
  227. - Item 1
  228. - Item 2
  229. - Item 2.1")))
  230. ;; 4. Follow `org-list-demote-modify-bullet' specifications.
  231. ;;
  232. ;; 4.1. With unordered lists.
  233. (org-test-with-temp-text "
  234. - Item 1
  235. - Item 2"
  236. (search-forward "- Item 2")
  237. (let ((org-list-demote-modify-bullet '(("-" . "+")))) (org-indent-item))
  238. (should (equal (buffer-string)
  239. "
  240. - Item 1
  241. + Item 2")))
  242. ;; 4.2. and ordered lists.
  243. (org-test-with-temp-text "
  244. 1. Item 1
  245. 2. Item 2"
  246. (search-forward "2. Item 2")
  247. (let ((org-plain-list-ordered-item-terminator t)
  248. (org-list-demote-modify-bullet '(("1." . "+"))))
  249. (org-indent-item))
  250. (should (equal (buffer-string)
  251. "
  252. 1. Item 1
  253. + Item 2")))
  254. ;; 5. When a region is selected, indent every item within.
  255. (org-test-with-temp-text "
  256. - Item 1
  257. - Item 2
  258. - Item 3
  259. "
  260. (search-forward "- Item 2")
  261. (beginning-of-line)
  262. (transient-mark-mode 1)
  263. (push-mark (point) t t)
  264. (goto-char (point-max))
  265. (let (org-list-demote-modify-bullet) (org-indent-item))
  266. (should (equal (buffer-string)
  267. "
  268. - Item 1
  269. - Item 2
  270. - Item 3
  271. "))))
  272. (ert-deftest test-org-list/indent-item-tree ()
  273. "Test `org-indent-item-tree' specifications."
  274. ;; 1. Error when not at an item.
  275. (org-test-with-temp-text "Paragraph."
  276. (should-error (org-indent-item-tree)))
  277. ;; 2. Indent item along with its children.
  278. (org-test-with-temp-text "
  279. - Item 1
  280. - Item 2
  281. - Item 2.1"
  282. (search-forward "- Item 2")
  283. (let (org-list-demote-modify-bullet) (org-indent-item-tree))
  284. (should (equal (buffer-string)
  285. "
  286. - Item 1
  287. - Item 2
  288. - Item 2.1")))
  289. ;; 3. Special case: When indenting top item, move the whole list.
  290. (org-test-with-temp-text "
  291. - Item 1
  292. - Item 2"
  293. (search-forward "- Item 1")
  294. (let (org-list-demote-modify-bullet org-odd-levels-only)
  295. (org-indent-item-tree))
  296. (should (equal (buffer-string)
  297. "
  298. - Item 1
  299. - Item 2")))
  300. ;; 4. Follow `org-list-demote-modify-bullet' specifications.
  301. ;;
  302. ;; 4.1. With unordered lists.
  303. (org-test-with-temp-text "
  304. - Item 1
  305. - Item 2
  306. + Item 2.1"
  307. (search-forward "- Item 2")
  308. (let ((org-list-demote-modify-bullet '(("-" . "+") ("+" . "-"))))
  309. (org-indent-item-tree))
  310. (should (equal (buffer-string)
  311. "
  312. - Item 1
  313. + Item 2
  314. - Item 2.1")))
  315. ;; 4.2. and ordered lists.
  316. (org-test-with-temp-text "
  317. 1. Item 1
  318. 2. Item 2
  319. + Item 2.1"
  320. (search-forward "2. Item 2")
  321. (let ((org-plain-list-ordered-item-terminator t)
  322. (org-list-demote-modify-bullet '(("1." . "+") ("+" . "1."))))
  323. (org-indent-item-tree))
  324. (should (equal (buffer-string)
  325. "
  326. 1. Item 1
  327. + Item 2
  328. 1. Item 2.1")))
  329. ;; 5. When a region is selected, indent every item within.
  330. (org-test-with-temp-text "
  331. - Item 1
  332. - Item 2
  333. - Item 2.1
  334. - Item 3
  335. - Item 3.1
  336. "
  337. (search-forward "- Item 2")
  338. (beginning-of-line)
  339. (transient-mark-mode 1)
  340. (push-mark (point) t t)
  341. (goto-char (point-max))
  342. (let (org-list-demote-modify-bullet) (org-indent-item-tree))
  343. (should (equal (buffer-string)
  344. "
  345. - Item 1
  346. - Item 2
  347. - Item 2.1
  348. - Item 3
  349. - Item 3.1
  350. "))))
  351. (ert-deftest test-org-list/outdent-item ()
  352. "Test `org-outdent-item' specifications."
  353. ;; 1. Error when not at an item.
  354. (org-test-with-temp-text "Paragraph."
  355. (should-error (org-outdent-item)))
  356. ;; 2. Error when trying to move first item of a list.
  357. (org-test-with-temp-text "
  358. - Item 1
  359. - Item 2"
  360. (forward-line)
  361. (should-error (org-outdent-item)))
  362. ;; 3. Error when trying to outdent an item without its children.
  363. (org-test-with-temp-text "
  364. - Item 1
  365. - Item 1.1
  366. - Item 1.1.1"
  367. (search-forward "- Item 1.1")
  368. (should-error (org-outdent-item)))
  369. ;; 4. Error when trying to outdent before top item.
  370. (org-test-with-temp-text "
  371. - Item 1
  372. - Item 2"
  373. (search-forward "- Item 2")
  374. (should-error (org-outdent-item)))
  375. ;; 5. When a region is selected, outdent every item within.
  376. (org-test-with-temp-text "
  377. - Item 1
  378. - Item 2
  379. - Item 3
  380. "
  381. (search-forward "- Item 2")
  382. (beginning-of-line)
  383. (transient-mark-mode 1)
  384. (push-mark (point) t t)
  385. (goto-char (point-max))
  386. (let (org-list-demote-modify-bullet) (org-outdent-item))
  387. (should (equal (buffer-string)
  388. "
  389. - Item 1
  390. - Item 2
  391. - Item 3
  392. "))))
  393. (ert-deftest test-org-list/outdent-item-tree ()
  394. "Test `org-outdent-item-tree' specifications."
  395. ;; 1. Error when not at an item.
  396. (org-test-with-temp-text "Paragraph."
  397. (should-error (org-outdent-item-tree)))
  398. ;; 2. Error when trying to outdent before top item.
  399. (org-test-with-temp-text "
  400. - Item 1
  401. - Item 2"
  402. (search-forward "- Item 2")
  403. (should-error (org-outdent-item-tree)))
  404. ;; 3. Outdent item along with its children.
  405. (org-test-with-temp-text "
  406. - Item 1
  407. - Item 2
  408. - Item 2.1"
  409. (search-forward "- Item 2")
  410. (org-outdent-item-tree)
  411. (should (equal (buffer-string)
  412. "
  413. - Item 1
  414. - Item 2
  415. - Item 2.1")))
  416. ;; 3. Special case: When outdenting top item, move the whole list.
  417. (org-test-with-temp-text "
  418. - Item 1
  419. - Item 2"
  420. (search-forward "- Item 1")
  421. (let (org-odd-levels-only) (org-outdent-item-tree))
  422. (should (equal (buffer-string)
  423. "
  424. - Item 1
  425. - Item 2")))
  426. ;; 5. When a region is selected, outdent every item within.
  427. (org-test-with-temp-text "
  428. - Item 1
  429. - Item 2
  430. - Item 2.1
  431. - Item 3
  432. - Item 3.1
  433. "
  434. (search-forward "- Item 2")
  435. (beginning-of-line)
  436. (transient-mark-mode 1)
  437. (push-mark (point) t t)
  438. (goto-char (point-max))
  439. (org-outdent-item-tree)
  440. (should (equal (buffer-string)
  441. "
  442. - Item 1
  443. - Item 2
  444. - Item 2.1
  445. - Item 3
  446. - Item 3.1
  447. "))))
  448. (ert-deftest test-org-list/move-item-down ()
  449. "Test `org-move-item-down' specifications."
  450. ;; Standard test.
  451. (org-test-with-temp-text "- item 1\n- item 2"
  452. (org-move-item-down)
  453. (should (equal (buffer-string)
  454. "- item 2\n- item 1")))
  455. ;; Keep same column in item.
  456. (org-test-with-temp-text "- item 1\n- item 2"
  457. (forward-char 4)
  458. (org-move-item-down)
  459. (should (looking-at "em 1")))
  460. ;; Move sub-items.
  461. (org-test-with-temp-text "- item 1\n - sub-item 1\n- item 2"
  462. (org-move-item-down)
  463. (should (equal (buffer-string)
  464. "- item 2\n- item 1\n - sub-item 1")))
  465. ;; Preserve blank lines.
  466. (should
  467. (equal
  468. "- item 2\n\n- item 1"
  469. (org-test-with-temp-text "- item 1\n\n- item 2"
  470. (org-move-item-down)
  471. (buffer-string))))
  472. ;; Error when trying to move the last item...
  473. (org-test-with-temp-text "- item 1\n- item 2"
  474. (forward-line)
  475. (should-error (org-move-item-down)))
  476. ;; ... unless `org-list-use-circular-motion' is non-nil. In this
  477. ;; case, move to the first item.
  478. (org-test-with-temp-text "- item 1\n- item 2\n- item 3"
  479. (forward-line 2)
  480. (let ((org-list-use-circular-motion t)) (org-move-item-down))
  481. (should (equal (buffer-string) "- item 3\n- item 1\n- item 2\n")))
  482. ;; Preserve item visibility.
  483. (org-test-with-temp-text "* Headline\n- item 1\n body 1\n- item 2\n body 2"
  484. (let ((org-cycle-include-plain-lists t))
  485. (search-forward "- item 1")
  486. (org-cycle)
  487. (search-forward "- item 2")
  488. (org-cycle))
  489. (search-backward "- item 1")
  490. (org-move-item-down)
  491. (forward-line)
  492. (should (org-invisible-p2))
  493. (search-backward " body 2")
  494. (should (org-invisible-p2)))
  495. ;; Preserve children visibility.
  496. (org-test-with-temp-text "* Headline
  497. - item 1
  498. - sub-item 1
  499. sub-body 1
  500. - item 2
  501. - sub-item 2
  502. sub-body 2"
  503. (let ((org-cycle-include-plain-lists t))
  504. (search-forward "- sub-item 1")
  505. (org-cycle)
  506. (search-forward "- sub-item 2")
  507. (org-cycle))
  508. (search-backward "- item 1")
  509. (org-move-item-down)
  510. (search-forward "sub-body 1")
  511. (should (org-invisible-p2))
  512. (search-backward "sub-body 2")
  513. (should (org-invisible-p2))))
  514. (ert-deftest test-org-list/move-item-down-contents-visibility ()
  515. "Preserve contents visibility."
  516. (org-test-with-temp-text "
  517. - item 1
  518. #+BEGIN_CENTER
  519. Text1
  520. #+END_CENTER
  521. - item 2
  522. #+BEGIN_CENTER
  523. Text2
  524. #+END_CENTER"
  525. (org-hide-block-all)
  526. (let ((invisible-property-1
  527. (progn
  528. (search-forward "Text1")
  529. (get-char-property (point) 'invisible)))
  530. (invisible-property-2
  531. (progn
  532. (search-forward "Text2")
  533. (get-char-property (point) 'invisible))))
  534. (goto-char (point-min))
  535. (search-forward "- item 1")
  536. (org-move-item-down)
  537. (search-forward "Text1")
  538. (should (eq invisible-property-1 (get-char-property (point) 'invisible)))
  539. (search-backward "Text2")
  540. (should (eq invisible-property-2 (get-char-property (point) 'invisible))))))
  541. (ert-deftest test-org-list/move-item-up ()
  542. "Test `org-move-item-up' specifications."
  543. ;; Standard test.
  544. (org-test-with-temp-text "- item 1\n- item 2"
  545. (forward-line)
  546. (org-move-item-up)
  547. (should (equal (buffer-string)
  548. "- item 2\n- item 1")))
  549. ;; Keep same column in item.
  550. (org-test-with-temp-text "- item 1\n- item 2"
  551. (forward-line)
  552. (forward-char 4)
  553. (org-move-item-up)
  554. (should (looking-at "em 2")))
  555. ;; Move sub-items.
  556. (org-test-with-temp-text "- item 1\n- item 2\n - sub-item 2"
  557. (forward-line)
  558. (org-move-item-up)
  559. (should (equal (buffer-string)
  560. "- item 2\n - sub-item 2\n- item 1")))
  561. ;; Preserve blank lines.
  562. (should
  563. (equal
  564. "- item 2\n\n- item 1"
  565. (org-test-with-temp-text "- item 1\n\n- item 2"
  566. (search-forward "- item 2")
  567. (org-move-item-up)
  568. (buffer-string))))
  569. ;; Error when trying to move the first item...
  570. (org-test-with-temp-text "- item 1\n- item 2"
  571. (should-error (org-move-item-up)))
  572. ;; ... unless `org-list-use-circular-motion' is non-nil. In this
  573. ;; case, move to the first item.
  574. (org-test-with-temp-text "- item 1\n- item 2\n- item 3"
  575. (let ((org-list-use-circular-motion t)) (org-move-item-up))
  576. (should (equal (buffer-string) "- item 2\n- item 3\n- item 1")))
  577. ;; Preserve item visibility.
  578. (org-test-with-temp-text "* Headline\n- item 1\n body 1\n- item 2\n body 2"
  579. (let ((org-cycle-include-plain-lists t))
  580. (search-forward "- item 1")
  581. (org-cycle)
  582. (search-forward "- item 2")
  583. (org-cycle))
  584. (org-move-item-up)
  585. (forward-line)
  586. (should (org-invisible-p2))
  587. (search-forward " body 1")
  588. (should (org-invisible-p2)))
  589. ;; Preserve children visibility.
  590. (org-test-with-temp-text "* Headline
  591. - item 1
  592. - sub-item 1
  593. sub-body 1
  594. - item 2
  595. - sub-item 2
  596. sub-body 2"
  597. (let ((org-cycle-include-plain-lists t))
  598. (search-forward "- sub-item 1")
  599. (org-cycle)
  600. (search-forward "- sub-item 2")
  601. (org-cycle))
  602. (search-backward "- item 2")
  603. (org-move-item-up)
  604. (search-forward "sub-body 2")
  605. (should (org-invisible-p2))
  606. (search-forward "sub-body 1")
  607. (should (org-invisible-p2))))
  608. (ert-deftest test-org-list/move-item-up-contents-visibility ()
  609. (org-test-with-temp-text "
  610. - item 1
  611. #+BEGIN_CENTER
  612. Text1
  613. #+END_CENTER
  614. - item 2
  615. #+BEGIN_CENTER
  616. Text2
  617. #+END_CENTER"
  618. (org-hide-block-all)
  619. (let ((invisible-property-1
  620. (progn
  621. (search-forward "Text1")
  622. (get-char-property (point) 'invisible)))
  623. (invisible-property-2
  624. (progn
  625. (search-forward "Text2")
  626. (get-char-property (point) 'invisible))))
  627. (goto-char (point-min))
  628. (search-forward "- item 2")
  629. (org-move-item-up)
  630. (search-forward "Text2")
  631. (should (eq invisible-property-2 (get-char-property (point) 'invisible)))
  632. (search-forward "Text1")
  633. (should (eq invisible-property-1 (get-char-property (point) 'invisible))))))
  634. (ert-deftest test-org-list/insert-item ()
  635. "Test item insertion."
  636. ;; Blank lines specifications.
  637. ;;
  638. ;; Non-nil `org-blank-before-new-entry': insert a blank line.
  639. (should
  640. (org-test-with-temp-text "- a"
  641. (let ((org-blank-before-new-entry '((plain-list-item . t))))
  642. (end-of-line)
  643. (org-insert-item)
  644. (forward-line -1)
  645. (looking-at "$"))))
  646. ;; Nil `org-blank-before-new-entry': do not insert a blank line.
  647. (should-not
  648. (org-test-with-temp-text "- a"
  649. (let ((org-blank-before-new-entry '((plain-list-item . nil))))
  650. (end-of-line)
  651. (org-insert-item)
  652. (forward-line -1)
  653. (looking-at "$"))))
  654. ;; `org-blank-before-new-entry' set to auto: if there's no blank
  655. ;; line already in the sole item, do not insert one.
  656. (should-not
  657. (org-test-with-temp-text "- a"
  658. (let ((org-blank-before-new-entry '((plain-list-item . auto))))
  659. (end-of-line)
  660. (org-insert-item)
  661. (forward-line -1)
  662. (looking-at "$"))))
  663. ;; `org-blank-before-new-entry' set to `auto': if there's a blank
  664. ;; line in the sole item, insert another one.
  665. (should
  666. (org-test-with-temp-text "- a\n\n b<point>"
  667. (let ((org-blank-before-new-entry '((plain-list-item . auto))))
  668. (org-insert-item)
  669. (forward-line -1)
  670. (looking-at "$"))))
  671. ;; `org-blank-before-new-entry' set to `auto': if the user specified
  672. ;; a blank line, preserve it.
  673. (should
  674. (org-test-with-temp-text "- a\n\n<point>"
  675. (let ((org-blank-before-new-entry '((plain-list-item . auto))))
  676. (org-insert-item)
  677. (forward-line -1)
  678. (looking-at "$"))))
  679. ;; `org-blank-before-new-entry' set to `auto': if some items in list
  680. ;; are already separated by blank lines, insert one.
  681. (should
  682. (org-test-with-temp-text "- a\n\n- b<point>"
  683. (let ((org-blank-before-new-entry '((plain-list-item . auto))))
  684. (org-insert-item)
  685. (forward-line -1)
  686. (looking-at "$"))))
  687. (should
  688. (org-test-with-temp-text "- a\n\n- b"
  689. (let ((org-blank-before-new-entry '((plain-list-item . auto))))
  690. (org-insert-item)
  691. (forward-line)
  692. (looking-at "$"))))
  693. (should
  694. (org-test-with-temp-text
  695. "- a\n #+BEGIN_EXAMPLE\n\n x\n #+END_EXAMPLE<point>"
  696. (let ((org-blank-before-new-entry '((plain-list-item . auto))))
  697. (org-insert-item)
  698. (forward-line -1)
  699. (looking-at "$"))))
  700. ;; When called before or on the bullet, insert new item before
  701. ;; current one.
  702. (should
  703. (equal "- \n- item"
  704. (org-test-with-temp-text "- item"
  705. (org-insert-item)
  706. (buffer-string))))
  707. (should
  708. (equal "- \n- item"
  709. (org-test-with-temp-text "- <point>item"
  710. (org-insert-item)
  711. (buffer-string))))
  712. ;; When called on tag in a descriptive list, insert new item before
  713. ;; current one too.
  714. (should
  715. (equal "- :: \n- tag :: item"
  716. (org-test-with-temp-text "- tag <point>:: item"
  717. (org-insert-item)
  718. (buffer-string))))
  719. (should
  720. (equal "- :: \n- tag :: item"
  721. (org-test-with-temp-text "- ta<point>g :: item"
  722. (org-insert-item)
  723. (buffer-string))))
  724. ;; Further, it splits the line or add a blank new item after it,
  725. ;; according to `org-M-RET-may-split-line'.
  726. (should
  727. (equal "- it\n- em"
  728. (org-test-with-temp-text "- it<point>em"
  729. (let ((org-M-RET-may-split-line '((default . t))))
  730. (org-insert-item))
  731. (buffer-string))))
  732. (should
  733. (equal "- item\n- "
  734. (org-test-with-temp-text "- it<point>em"
  735. (let ((org-M-RET-may-split-line '((default . nil))))
  736. (org-insert-item))
  737. (buffer-string))))
  738. ;; Preserve list visibility when inserting an item.
  739. (should
  740. (equal
  741. '(outline outline)
  742. (org-test-with-temp-text "- A\n - B\n- C\n - D"
  743. (let ((org-cycle-include-plain-lists t))
  744. (org-cycle)
  745. (forward-line 2)
  746. (org-cycle)
  747. (org-insert-item)
  748. (list (get-char-property (line-beginning-position 0) 'invisible)
  749. (get-char-property (line-end-position 2) 'invisible)))))))
  750. (ert-deftest test-org-list/repair ()
  751. "Test `org-list-repair' specifications."
  752. ;; Repair indentation.
  753. (should
  754. (equal "- item\n - child"
  755. (org-test-with-temp-text "- item\n - child"
  756. (let ((org-list-indent-offset 0)) (org-list-repair))
  757. (buffer-string))))
  758. ;; Repair bullets and numbering.
  759. (should
  760. (equal "- a\n- b"
  761. (org-test-with-temp-text "- a\n+ b"
  762. (let ((org-list-indent-offset 0))
  763. (org-list-repair))
  764. (buffer-string))))
  765. (should
  766. (equal "1. a\n2. b"
  767. (org-test-with-temp-text "1. a\n1. b"
  768. (let ((org-list-indent-offset 0)
  769. (org-plain-list-ordered-item-terminator t))
  770. (org-list-repair))
  771. (buffer-string))))
  772. ;; Repair check-boxes.
  773. (should
  774. (equal "- [X] item\n - [X] child"
  775. (org-test-with-temp-text "- [ ] item\n - [X] child"
  776. (let ((org-list-indent-offset 0))
  777. (org-list-repair))
  778. (buffer-string))))
  779. ;; Special case: do not move contents of an item within its child.
  780. ;; Yet, preserve indentation differences within contents.
  781. (should
  782. (equal "- item\n - child\n within item"
  783. (org-test-with-temp-text "- item\n - child\n within item"
  784. (let ((org-list-indent-offset 0)) (org-list-repair))
  785. (buffer-string))))
  786. (should
  787. (equal
  788. "- item\n - child\n within item\n indented"
  789. (org-test-with-temp-text
  790. "- item\n - child\n within item\n indented"
  791. (let ((org-list-indent-offset 0)) (org-list-repair))
  792. (buffer-string)))))
  793. (ert-deftest test-org-list/update-checkbox-count ()
  794. "Test `org-update-checkbox-count' specifications."
  795. ;; From a headline.
  796. (should
  797. (string-match "\\[0/1\\]"
  798. (org-test-with-temp-text "* [/]\n- [ ] item"
  799. (org-update-checkbox-count)
  800. (buffer-string))))
  801. (should
  802. (string-match "\\[1/1\\]"
  803. (org-test-with-temp-text "* [/]\n- [X] item"
  804. (org-update-checkbox-count)
  805. (buffer-string))))
  806. (should
  807. (string-match "\\[100%\\]"
  808. (org-test-with-temp-text "* [%]\n- [X] item"
  809. (org-update-checkbox-count)
  810. (buffer-string))))
  811. ;; From a list or a sub-list.
  812. (should
  813. (string-match "\\[0/1\\]"
  814. (org-test-with-temp-text "- [/]\n - [ ] item"
  815. (org-update-checkbox-count)
  816. (buffer-string))))
  817. (should
  818. (string-match "\\[1/1\\]"
  819. (org-test-with-temp-text "- [/]\n - [X] item"
  820. (org-update-checkbox-count)
  821. (buffer-string))))
  822. (should
  823. (string-match "\\[100%\\]"
  824. (org-test-with-temp-text "- [%]\n - [X] item"
  825. (org-update-checkbox-count)
  826. (buffer-string))))
  827. (should
  828. (string-match
  829. "\\[1/1\\]"
  830. (org-test-with-temp-text "- [ ] item 1\n- [ ] item 2 [/]\n - [X] sub 1"
  831. (org-update-checkbox-count)
  832. (buffer-string))))
  833. ;; Count do not apply to sub-lists unless count is not hierarchical.
  834. ;; This state can be achieved with COOKIE_DATA node property set to
  835. ;; "recursive".
  836. (should
  837. (string-match "\\[1/1\\]"
  838. (org-test-with-temp-text "- [/]\n - item\n - [X] sub-item"
  839. (let ((org-checkbox-hierarchical-statistics nil))
  840. (org-update-checkbox-count))
  841. (buffer-string))))
  842. (should
  843. (string-match "\\[1/1\\]"
  844. (org-test-with-temp-text "
  845. <point>* H
  846. :PROPERTIES:
  847. :COOKIE_DATA: recursive
  848. :END:
  849. - [/]
  850. - item
  851. - [X] sub-item"
  852. (org-update-checkbox-count)
  853. (buffer-string))))
  854. (should
  855. (string-match "\\[0/0\\]"
  856. (org-test-with-temp-text "- [/]\n - item\n - [ ] sub-item"
  857. (org-update-checkbox-count)
  858. (buffer-string))))
  859. ;; With optional argument ALL, update all buffer.
  860. (should
  861. (= 2
  862. (org-test-with-temp-text "* [/]\n- [X] item\n* [/]\n- [X] item"
  863. (org-update-checkbox-count t)
  864. (count-matches "\\[1/1\\]"))))
  865. ;; Ignore boxes in drawers, blocks or inlinetasks when counting from
  866. ;; outside.
  867. (should
  868. (string-match "\\[2/2\\]"
  869. (org-test-with-temp-text "
  870. - [/]
  871. - [X] item1
  872. :DRAWER:
  873. - [X] item
  874. :END:
  875. - [X] item2"
  876. (let ((org-checkbox-hierarchical-statistics nil))
  877. (org-update-checkbox-count))
  878. (buffer-string)))))
  879. ;;; Miscellaneous
  880. (ert-deftest test-org-list/toggle-item ()
  881. "Test `org-toggle-item' specifications."
  882. ;; Convert normal lines to items.
  883. (should
  884. (equal "- line"
  885. (org-test-with-temp-text "line"
  886. (org-toggle-item nil)
  887. (buffer-string))))
  888. ;; Convert items to normal lines.
  889. (should
  890. (equal "line"
  891. (org-test-with-temp-text "- line"
  892. (org-toggle-item nil)
  893. (buffer-string))))
  894. ;; Convert headlines to items.
  895. (should
  896. (equal "- line"
  897. (org-test-with-temp-text "* line"
  898. (org-toggle-item nil)
  899. (buffer-string))))
  900. ;; When converting a headline to a list item, TODO keywords become
  901. ;; checkboxes.
  902. (should
  903. (equal "- [X] line"
  904. (org-test-with-temp-text "* DONE line"
  905. (org-toggle-item nil)
  906. (buffer-string))))
  907. (should
  908. (equal "- [ ] line"
  909. (org-test-with-temp-text "* TODO line"
  910. (org-toggle-item nil)
  911. (buffer-string))))
  912. ;; When turning headlines into items, make sure planning info line
  913. ;; and properties drawers are removed. This also includes empty
  914. ;; lines following them.
  915. (should
  916. (equal "- H\n"
  917. (org-test-with-temp-text "* H\nSCHEDULED: <2012-03-29 Thu>"
  918. (org-toggle-item nil)
  919. (buffer-string))))
  920. (should
  921. (equal "- H\n"
  922. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:"
  923. (org-toggle-item nil)
  924. (buffer-string))))
  925. (should
  926. (equal "- H\nText"
  927. (org-test-with-temp-text "* H\n:PROPERTIES:\n:A: 1\n:END:\n\n\nText"
  928. (org-toggle-item nil)
  929. (buffer-string))))
  930. ;; When a region is marked and first line is a headline, all
  931. ;; headlines are turned into items.
  932. (should
  933. (equal "- H1\n - H2"
  934. (org-test-with-temp-text "* H1\n** H2"
  935. (transient-mark-mode 1)
  936. (push-mark (point) t t)
  937. (goto-char (point-max))
  938. (org-toggle-item nil)
  939. (buffer-string))))
  940. (should
  941. (equal "- [ ] H1\n - [ ] H2"
  942. (org-test-with-temp-text "* TODO H1\n** TODO H2"
  943. (transient-mark-mode 1)
  944. (push-mark (point) t t)
  945. (goto-char (point-max))
  946. (org-toggle-item nil)
  947. (buffer-string))))
  948. ;; When turning headlines into items, make sure headings contents
  949. ;; are kept within items.
  950. (should
  951. (equal "- H1\n Text"
  952. (org-test-with-temp-text "* H1\nText"
  953. (transient-mark-mode 1)
  954. (push-mark (point) t t)
  955. (goto-char (point-max))
  956. (org-toggle-item nil)
  957. (buffer-string))))
  958. ;; When a region is marked and first line is an item, all items are
  959. ;; turned into normal lines.
  960. (should
  961. (equal "1\n 2"
  962. (org-test-with-temp-text "- 1\n - 2"
  963. (transient-mark-mode 1)
  964. (push-mark (point) t t)
  965. (goto-char (point-max))
  966. (org-toggle-item nil)
  967. (buffer-string))))
  968. (should
  969. (equal "1\n2"
  970. (org-test-with-temp-text "- 1\n2"
  971. (transient-mark-mode 1)
  972. (push-mark (point) t t)
  973. (goto-char (point-max))
  974. (org-toggle-item nil)
  975. (buffer-string))))
  976. ;; When a region is marked and first line is an item, all normal
  977. ;; lines are turned into items.
  978. (should
  979. (equal "- line 1\n- line 2"
  980. (org-test-with-temp-text "line 1\nline 2"
  981. (transient-mark-mode 1)
  982. (push-mark (point) t t)
  983. (goto-char (point-max))
  984. (org-toggle-item nil)
  985. (buffer-string))))
  986. (should
  987. (equal "- line 1\n- line 2"
  988. (org-test-with-temp-text "line 1\n- line 2"
  989. (transient-mark-mode 1)
  990. (push-mark (point) t t)
  991. (goto-char (point-max))
  992. (org-toggle-item nil)
  993. (buffer-string))))
  994. ;; When argument ARG is non-nil, change the whole region into
  995. ;; a single item.
  996. (should
  997. (equal "- line 1\n line 2"
  998. (org-test-with-temp-text "line 1\nline 2"
  999. (transient-mark-mode 1)
  1000. (push-mark (point) t t)
  1001. (goto-char (point-max))
  1002. (org-toggle-item t)
  1003. (buffer-string)))))
  1004. (ert-deftest test-org-list/sort ()
  1005. "Test `org-sort-list'."
  1006. ;; Sort alphabetically.
  1007. (let ((original-string-collate-lessp (symbol-function 'string-collate-lessp)))
  1008. (cl-letf (((symbol-function 'string-collate-lessp)
  1009. (lambda (s1 s2 &optional locale ignore-case)
  1010. (funcall original-string-collate-lessp
  1011. s1 s2 "C" ignore-case))))
  1012. (should
  1013. (equal "- abc\n- def\n- XYZ\n"
  1014. (org-test-with-temp-text "- def\n- XYZ\n- abc\n"
  1015. (org-sort-list nil ?a)
  1016. (buffer-string))))
  1017. (should
  1018. (equal "- XYZ\n- def\n- abc\n"
  1019. (org-test-with-temp-text "- def\n- XYZ\n- abc\n"
  1020. (org-sort-list nil ?A)
  1021. (buffer-string))))
  1022. ;; Sort alphabetically (with case).
  1023. (should
  1024. (equal "- C\n- a\n- b\n"
  1025. (org-test-with-temp-text "- b\n- C\n- a\n"
  1026. (org-sort-list t ?a)
  1027. (buffer-string))))
  1028. (should
  1029. (equal "- b\n- a\n- C\n"
  1030. (org-test-with-temp-text "- b\n- C\n- a\n"
  1031. (org-sort-list t ?A)
  1032. (buffer-string))))))
  1033. ;; Sort numerically.
  1034. (should
  1035. (equal "- 1\n- 2\n- 10\n"
  1036. (org-test-with-temp-text "- 10\n- 1\n- 2\n"
  1037. (org-sort-list nil ?n)
  1038. (buffer-string))))
  1039. (should
  1040. (equal "- 10\n- 2\n- 1\n"
  1041. (org-test-with-temp-text "- 10\n- 1\n- 2\n"
  1042. (org-sort-list nil ?N)
  1043. (buffer-string))))
  1044. ;; Sort by checked status.
  1045. (should
  1046. (equal "- [ ] xyz\n- [ ] def\n- [X] abc\n"
  1047. (org-test-with-temp-text "- [X] abc\n- [ ] xyz\n- [ ] def\n"
  1048. (org-sort-list nil ?x)
  1049. (buffer-string))))
  1050. (should
  1051. (equal "- [X] abc\n- [ ] xyz\n- [ ] def\n"
  1052. (org-test-with-temp-text "- [X] abc\n- [ ] xyz\n- [ ] def\n"
  1053. (org-sort-list nil ?X)
  1054. (buffer-string))))
  1055. ;; Sort by time stamp.
  1056. (should
  1057. (equal "- <2017-05-08 Mon>\n- <2017-05-09 Tue>\n- <2018-05-09 Wed>\n"
  1058. (org-test-with-temp-text
  1059. "- <2018-05-09 Wed>\n- <2017-05-09 Tue>\n- <2017-05-08 Mon>\n"
  1060. (org-sort-list nil ?t)
  1061. (buffer-string))))
  1062. (should
  1063. (equal "- <2018-05-09 Wed>\n- <2017-05-09 Tue>\n- <2017-05-08 Mon>\n"
  1064. (org-test-with-temp-text
  1065. "- <2018-05-09 Wed>\n- <2017-05-09 Tue>\n- <2017-05-08 Mon>\n"
  1066. (org-sort-list nil ?T)
  1067. (buffer-string))))
  1068. ;; Sort by custom function.
  1069. (should
  1070. (equal "- b\n- aa\n- ccc\n"
  1071. (org-test-with-temp-text "- ccc\n- b\n- aa\n"
  1072. (org-sort-list nil ?f
  1073. (lambda ()
  1074. (length (buffer-substring (point-at-bol)
  1075. (point-at-eol))))
  1076. #'<)
  1077. (buffer-string))))
  1078. (should
  1079. (equal "- ccc\n- aa\n- b\n"
  1080. (org-test-with-temp-text "- ccc\n- b\n- aa\n"
  1081. (org-sort-list nil ?F
  1082. (lambda ()
  1083. (length (buffer-substring (point-at-bol)
  1084. (point-at-eol))))
  1085. #'<)
  1086. (buffer-string)))))
  1087. ;;; List transformations
  1088. (ert-deftest test-org-list/to-generic ()
  1089. "Test `org-list-to-generic' specifications."
  1090. ;; Test `:ustart' and `:uend' parameters.
  1091. (should
  1092. (equal
  1093. "begin\na"
  1094. (org-test-with-temp-text "- a"
  1095. (org-list-to-generic (org-list-to-lisp) '(:ustart "begin")))))
  1096. (should-not
  1097. (equal
  1098. "begin\na"
  1099. (org-test-with-temp-text "1. a"
  1100. (org-list-to-generic (org-list-to-lisp) '(:ustart "begin")))))
  1101. (should
  1102. (equal
  1103. "a\nend"
  1104. (org-test-with-temp-text "- a"
  1105. (org-list-to-generic (org-list-to-lisp) '(:uend "end")))))
  1106. (should-not
  1107. (equal
  1108. "a\nend"
  1109. (org-test-with-temp-text "1. a"
  1110. (org-list-to-generic (org-list-to-lisp) '(:uend "end")))))
  1111. (should
  1112. (equal
  1113. "begin l1\na\nbegin l2\nb\nend l2\nend l1"
  1114. (org-test-with-temp-text "- a\n - b"
  1115. (org-list-to-generic
  1116. (org-list-to-lisp)
  1117. (list :ustart (lambda (l) (format "begin l%d" l))
  1118. :uend (lambda (l) (format "end l%d" l)))))))
  1119. ;; Test `:ostart' and `:oend' parameters.
  1120. (should
  1121. (equal
  1122. "begin\na"
  1123. (org-test-with-temp-text "1. a"
  1124. (org-list-to-generic (org-list-to-lisp) '(:ostart "begin")))))
  1125. (should-not
  1126. (equal
  1127. "begin\na"
  1128. (org-test-with-temp-text "- a"
  1129. (org-list-to-generic (org-list-to-lisp) '(:ostart "begin")))))
  1130. (should
  1131. (equal
  1132. "a\nend"
  1133. (org-test-with-temp-text "1. a"
  1134. (org-list-to-generic (org-list-to-lisp) '(:oend "end")))))
  1135. (should-not
  1136. (equal
  1137. "a\nend"
  1138. (org-test-with-temp-text "- a"
  1139. (org-list-to-generic (org-list-to-lisp) '(:oend "end")))))
  1140. (should
  1141. (equal
  1142. "begin l1\na\nbegin l2\nb\nend l2\nend l1"
  1143. (org-test-with-temp-text "1. a\n 1. b"
  1144. (org-list-to-generic
  1145. (org-list-to-lisp)
  1146. (list :ostart (lambda (l) (format "begin l%d" l))
  1147. :oend (lambda (l) (format "end l%d" l)))))))
  1148. ;; Test `:dstart' and `:dend' parameters.
  1149. (should
  1150. (equal
  1151. "begin\ntaga"
  1152. (org-test-with-temp-text "- tag :: a"
  1153. (org-list-to-generic (org-list-to-lisp) '(:dstart "begin")))))
  1154. (should-not
  1155. (equal
  1156. "begin\na"
  1157. (org-test-with-temp-text "- a"
  1158. (org-list-to-generic (org-list-to-lisp) '(:dstart "begin")))))
  1159. (should
  1160. (equal
  1161. "taga\nend"
  1162. (org-test-with-temp-text "- tag :: a"
  1163. (org-list-to-generic (org-list-to-lisp) '(:dend "end")))))
  1164. (should-not
  1165. (equal
  1166. "a\nend"
  1167. (org-test-with-temp-text "- a"
  1168. (org-list-to-generic (org-list-to-lisp) '(:dend "end")))))
  1169. (should
  1170. (equal
  1171. "begin l1\ntag1a\nbegin l2\ntag2b\nend l2\nend l1"
  1172. (org-test-with-temp-text "- tag1 :: a\n - tag2 :: b"
  1173. (org-list-to-generic
  1174. (org-list-to-lisp)
  1175. (list :dstart (lambda (l) (format "begin l%d" l))
  1176. :dend (lambda (l) (format "end l%d" l)))))))
  1177. ;; Test `:dtstart', `:dtend', `:ddstart' and `:ddend' parameters.
  1178. (should
  1179. (equal
  1180. ">tag<a"
  1181. (org-test-with-temp-text "- tag :: a"
  1182. (org-list-to-generic (org-list-to-lisp) '(:dtstart ">" :dtend "<")))))
  1183. (should
  1184. (equal
  1185. "tag>a<"
  1186. (org-test-with-temp-text "- tag :: a"
  1187. (org-list-to-generic (org-list-to-lisp) '(:ddstart ">" :ddend "<")))))
  1188. ;; Test `:istart' and `:iend' parameters.
  1189. (should
  1190. (equal
  1191. "starta"
  1192. (org-test-with-temp-text "- a"
  1193. (org-list-to-generic (org-list-to-lisp) '(:istart "start")))))
  1194. (should
  1195. (equal
  1196. "level1 a\nlevel2 b"
  1197. (org-test-with-temp-text "- a\n - b"
  1198. (org-list-to-generic (org-list-to-lisp)
  1199. '(:istart (lambda (type l) (format "level%d "l)))))))
  1200. (should
  1201. (equal
  1202. "a\nblevel2level1"
  1203. (org-test-with-temp-text "- a\n - b"
  1204. (org-list-to-generic (org-list-to-lisp)
  1205. '(:iend (lambda (type l) (format "level%d" l)))))))
  1206. ;; Test `:icount' parameter.
  1207. (should
  1208. (equal
  1209. "counta"
  1210. (org-test-with-temp-text "1. [@3] a"
  1211. (org-list-to-generic (org-list-to-lisp) '(:icount "count")))))
  1212. (should-not
  1213. (equal
  1214. "counta"
  1215. (org-test-with-temp-text "1. a"
  1216. (org-list-to-generic (org-list-to-lisp) '(:icount "count")))))
  1217. (should
  1218. (equal
  1219. "counta"
  1220. (org-test-with-temp-text "1. [@3] a"
  1221. (org-list-to-generic (org-list-to-lisp)
  1222. '(:icount "count" :istart "start")))))
  1223. (should
  1224. (equal
  1225. "level:1, counter:3 a"
  1226. (org-test-with-temp-text "1. [@3] a"
  1227. (org-list-to-generic
  1228. (org-list-to-lisp)
  1229. '(:icount (lambda (type l c) (format "level:%d, counter:%d " l c)))))))
  1230. ;; Test `:isep' parameter.
  1231. (should
  1232. (equal
  1233. "a\n--\nb"
  1234. (org-test-with-temp-text "- a\n- b"
  1235. (org-list-to-generic (org-list-to-lisp) '(:isep "--")))))
  1236. (should-not
  1237. (equal
  1238. "a\n--\nb"
  1239. (org-test-with-temp-text "- a\n - b"
  1240. (org-list-to-generic (org-list-to-lisp) '(:isep "--")))))
  1241. (should
  1242. (equal
  1243. "a\n- 1 -\nb"
  1244. (org-test-with-temp-text "- a\n- b"
  1245. (org-list-to-generic
  1246. (org-list-to-lisp)
  1247. '(:isep (lambda (type depth) (format "- %d -" depth)))))))
  1248. ;; Test `:ifmt' parameter.
  1249. (should
  1250. (equal
  1251. ">> a <<"
  1252. (org-test-with-temp-text "1. [@3] a"
  1253. (org-list-to-generic
  1254. (org-list-to-lisp)
  1255. '(:ifmt (lambda (type c) (format ">> %s <<" c)))))))
  1256. ;; Test `:cbon', `:cboff', `:cbtrans'
  1257. (should
  1258. (equal
  1259. "!a"
  1260. (org-test-with-temp-text "- [X] a"
  1261. (org-list-to-generic (org-list-to-lisp) '(:cbon "!")))))
  1262. (should-not
  1263. (equal
  1264. "!a"
  1265. (org-test-with-temp-text "- [X] a"
  1266. (org-list-to-generic (org-list-to-lisp) '(:cboff "!" :cbtrans "!")))))
  1267. (should
  1268. (equal
  1269. "!a"
  1270. (org-test-with-temp-text "- [ ] a"
  1271. (org-list-to-generic (org-list-to-lisp) '(:cboff "!")))))
  1272. (should-not
  1273. (equal
  1274. "!a"
  1275. (org-test-with-temp-text "- [ ] a"
  1276. (org-list-to-generic (org-list-to-lisp) '(:cbon "!" :cbtrans "!")))))
  1277. (should
  1278. (equal
  1279. "!a"
  1280. (org-test-with-temp-text "- [-] a"
  1281. (org-list-to-generic (org-list-to-lisp) '(:cbtrans "!")))))
  1282. (should-not
  1283. (equal
  1284. "!a"
  1285. (org-test-with-temp-text "- [-] a"
  1286. (org-list-to-generic (org-list-to-lisp) '(:cbon "!" :cboff "!")))))
  1287. ;; Test `:splice' parameter.
  1288. (should
  1289. (equal
  1290. "a"
  1291. (org-test-with-temp-text "- a"
  1292. (org-list-to-generic (org-list-to-lisp)
  1293. '(:ustart "begin" :uend "end" :splice t)))))
  1294. ;; No error on empty lists.
  1295. (should
  1296. (org-test-with-temp-text "-" (org-list-to-generic (org-list-to-lisp) nil))))
  1297. (ert-deftest test-org-list/to-html ()
  1298. "Test `org-list-to-html' specifications."
  1299. (should
  1300. (equal "<ul class=\"org-ul\">\n<li>a</li>\n</ul>"
  1301. (org-test-with-temp-text "- a"
  1302. (org-list-to-html (org-list-to-lisp) nil)))))
  1303. (ert-deftest test-org-list/to-latex ()
  1304. "Test `org-list-to-latex' specifications."
  1305. (should
  1306. (equal "\\begin{itemize}\n\\item a\n\\end{itemize}"
  1307. (org-test-with-temp-text "- a"
  1308. (org-list-to-latex (org-list-to-lisp) nil)))))
  1309. (ert-deftest test-org-list/to-texinfo ()
  1310. "Test `org-list-to-texinfo' specifications."
  1311. (should
  1312. (equal "@itemize\n@item\na\n@end itemize"
  1313. (org-test-with-temp-text "- a"
  1314. (org-list-to-texinfo (org-list-to-lisp) nil)))))
  1315. (ert-deftest test-org-list/to-org ()
  1316. "Test `org-list-to-org' specifications."
  1317. ;; Un-ordered list.
  1318. (should
  1319. (equal "- a"
  1320. (org-test-with-temp-text "- a"
  1321. (org-list-to-org (org-list-to-lisp) nil))))
  1322. ;; Ordered list.
  1323. (should
  1324. (equal "1. a"
  1325. (org-test-with-temp-text "1. a"
  1326. (org-list-to-org (org-list-to-lisp) nil))))
  1327. ;; Descriptive list.
  1328. (should
  1329. (equal "- a :: b"
  1330. (org-test-with-temp-text "- a :: b"
  1331. (org-list-to-org (org-list-to-lisp) nil))))
  1332. ;; Nested list.
  1333. (should
  1334. (equal "- a\n - b"
  1335. (org-test-with-temp-text "- a\n - b"
  1336. (org-list-to-org (org-list-to-lisp) nil))))
  1337. ;; Item spanning over multiple lines.
  1338. (should
  1339. (equal "- a\n b"
  1340. (org-test-with-temp-text "- a\n b"
  1341. (org-list-to-org (org-list-to-lisp) nil))))
  1342. ;; Item with continuation text after a sub-list.
  1343. (should
  1344. (equal "- a\n - b\n c"
  1345. (org-test-with-temp-text "- a\n - b\n c"
  1346. (org-list-to-org (org-list-to-lisp) nil)))))
  1347. (provide 'test-org-list)
  1348. ;;; test-org-list.el ends here