test-org-list.el 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399
  1. ;;; test-org-list.el --- Tests for org-list.el
  2. ;; Copyright (C) 2012, 2013, 2014 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. (ert-deftest test-org-list/repair ()
  739. "Test `org-list-repair' specifications."
  740. ;; Repair indentation.
  741. (should
  742. (equal "- item\n - child"
  743. (org-test-with-temp-text "- item\n - child"
  744. (let ((org-list-indent-offset 0)) (org-list-repair))
  745. (buffer-string))))
  746. ;; Repair bullets and numbering.
  747. (should
  748. (equal "- a\n- b"
  749. (org-test-with-temp-text "- a\n+ b"
  750. (let ((org-list-indent-offset 0))
  751. (org-list-repair))
  752. (buffer-string))))
  753. (should
  754. (equal "1. a\n2. b"
  755. (org-test-with-temp-text "1. a\n1. b"
  756. (let ((org-list-indent-offset 0)
  757. (org-plain-list-ordered-item-terminator t))
  758. (org-list-repair))
  759. (buffer-string))))
  760. ;; Repair check-boxes.
  761. (should
  762. (equal "- [X] item\n - [X] child"
  763. (org-test-with-temp-text "- [ ] item\n - [X] child"
  764. (let ((org-list-indent-offset 0))
  765. (org-list-repair))
  766. (buffer-string))))
  767. ;; Special case: do not move contents of an item within its child.
  768. ;; Yet, preserve indentation differences within contents.
  769. (should
  770. (equal "- item\n - child\n within item"
  771. (org-test-with-temp-text "- item\n - child\n within item"
  772. (let ((org-list-indent-offset 0)) (org-list-repair))
  773. (buffer-string))))
  774. (should
  775. (equal
  776. "- item\n - child\n within item\n indented"
  777. (org-test-with-temp-text
  778. "- item\n - child\n within item\n indented"
  779. (let ((org-list-indent-offset 0)) (org-list-repair))
  780. (buffer-string)))))
  781. (ert-deftest test-org-list/update-checkbox-count ()
  782. "Test `org-update-checkbox-count' specifications."
  783. ;; From a headline.
  784. (should
  785. (string-match "\\[0/1\\]"
  786. (org-test-with-temp-text "* [/]\n- [ ] item"
  787. (org-update-checkbox-count)
  788. (buffer-string))))
  789. (should
  790. (string-match "\\[1/1\\]"
  791. (org-test-with-temp-text "* [/]\n- [X] item"
  792. (org-update-checkbox-count)
  793. (buffer-string))))
  794. (should
  795. (string-match "\\[100%\\]"
  796. (org-test-with-temp-text "* [%]\n- [X] item"
  797. (org-update-checkbox-count)
  798. (buffer-string))))
  799. ;; From a list or a sub-list.
  800. (should
  801. (string-match "\\[0/1\\]"
  802. (org-test-with-temp-text "- [/]\n - [ ] item"
  803. (org-update-checkbox-count)
  804. (buffer-string))))
  805. (should
  806. (string-match "\\[1/1\\]"
  807. (org-test-with-temp-text "- [/]\n - [X] item"
  808. (org-update-checkbox-count)
  809. (buffer-string))))
  810. (should
  811. (string-match "\\[100%\\]"
  812. (org-test-with-temp-text "- [%]\n - [X] item"
  813. (org-update-checkbox-count)
  814. (buffer-string))))
  815. (should
  816. (string-match
  817. "\\[1/1\\]"
  818. (org-test-with-temp-text "- [ ] item 1\n- [ ] item 2 [/]\n - [X] sub 1"
  819. (org-update-checkbox-count)
  820. (buffer-string))))
  821. ;; Count do not apply to sub-lists unless count is not hierarchical.
  822. ;; This state can be achieved with COOKIE_DATA node property set to
  823. ;; "recursive".
  824. (should
  825. (string-match "\\[1/1\\]"
  826. (org-test-with-temp-text "- [/]\n - item\n - [X] sub-item"
  827. (let ((org-checkbox-hierarchical-statistics nil))
  828. (org-update-checkbox-count))
  829. (buffer-string))))
  830. (should
  831. (string-match "\\[1/1\\]"
  832. (org-test-with-temp-text "
  833. <point>* H
  834. :PROPERTIES:
  835. :COOKIE_DATA: recursive
  836. :END:
  837. - [/]
  838. - item
  839. - [X] sub-item"
  840. (org-update-checkbox-count)
  841. (buffer-string))))
  842. (should
  843. (string-match "\\[0/0\\]"
  844. (org-test-with-temp-text "- [/]\n - item\n - [ ] sub-item"
  845. (org-update-checkbox-count)
  846. (buffer-string))))
  847. ;; With optional argument ALL, update all buffer.
  848. (should
  849. (= 2
  850. (org-test-with-temp-text "* [/]\n- [X] item\n* [/]\n- [X] item"
  851. (org-update-checkbox-count t)
  852. (count-matches "\\[1/1\\]"))))
  853. ;; Ignore boxes in drawers, blocks or inlinetasks when counting from
  854. ;; outside.
  855. (should
  856. (string-match "\\[2/2\\]"
  857. (org-test-with-temp-text "
  858. - [/]
  859. - [X] item1
  860. :DRAWER:
  861. - [X] item
  862. :END:
  863. - [X] item2"
  864. (let ((org-checkbox-hierarchical-statistics nil))
  865. (org-update-checkbox-count))
  866. (buffer-string)))))
  867. ;;; Miscellaneous
  868. (ert-deftest test-org-list/toggle-item ()
  869. "Test `org-toggle-item' specifications."
  870. ;; Convert normal lines to items.
  871. (should
  872. (equal "- line"
  873. (org-test-with-temp-text "line"
  874. (org-toggle-item nil)
  875. (buffer-string))))
  876. ;; Convert items to normal lines.
  877. (should
  878. (equal "line"
  879. (org-test-with-temp-text "- line"
  880. (org-toggle-item nil)
  881. (buffer-string))))
  882. ;; Convert headlines to items.
  883. (should
  884. (equal "- line"
  885. (org-test-with-temp-text "* line"
  886. (org-toggle-item nil)
  887. (buffer-string))))
  888. ;; When converting a headline to a list item, TODO keywords become
  889. ;; checkboxes.
  890. (should
  891. (equal "- [X] line"
  892. (org-test-with-temp-text "* DONE line"
  893. (org-toggle-item nil)
  894. (buffer-string))))
  895. (should
  896. (equal "- [ ] line"
  897. (org-test-with-temp-text "* TODO line"
  898. (org-toggle-item nil)
  899. (buffer-string))))
  900. ;; When a region is marked and first line is a headline, all
  901. ;; headlines are turned into items.
  902. (should
  903. (equal "- H1\n - H2"
  904. (org-test-with-temp-text "* H1\n** H2"
  905. (transient-mark-mode 1)
  906. (push-mark (point) t t)
  907. (goto-char (point-max))
  908. (org-toggle-item nil)
  909. (buffer-string))))
  910. (should
  911. (equal "- [ ] H1\n - [ ] H2"
  912. (org-test-with-temp-text "* TODO H1\n** TODO H2"
  913. (transient-mark-mode 1)
  914. (push-mark (point) t t)
  915. (goto-char (point-max))
  916. (org-toggle-item nil)
  917. (buffer-string))))
  918. ;; When turning headlines into items, make sure headings contents
  919. ;; are kept within items.
  920. (should
  921. (equal "- H1\n Text"
  922. (org-test-with-temp-text "* H1\nText"
  923. (transient-mark-mode 1)
  924. (push-mark (point) t t)
  925. (goto-char (point-max))
  926. (org-toggle-item nil)
  927. (buffer-string))))
  928. ;; When a region is marked and first line is an item, all items are
  929. ;; turned into normal lines.
  930. (should
  931. (equal "1\n 2"
  932. (org-test-with-temp-text "- 1\n - 2"
  933. (transient-mark-mode 1)
  934. (push-mark (point) t t)
  935. (goto-char (point-max))
  936. (org-toggle-item nil)
  937. (buffer-string))))
  938. (should
  939. (equal "1\n2"
  940. (org-test-with-temp-text "- 1\n2"
  941. (transient-mark-mode 1)
  942. (push-mark (point) t t)
  943. (goto-char (point-max))
  944. (org-toggle-item nil)
  945. (buffer-string))))
  946. ;; When a region is marked and first line is an item, all normal
  947. ;; lines are turned into items.
  948. (should
  949. (equal "- line 1\n- line 2"
  950. (org-test-with-temp-text "line 1\nline 2"
  951. (transient-mark-mode 1)
  952. (push-mark (point) t t)
  953. (goto-char (point-max))
  954. (org-toggle-item nil)
  955. (buffer-string))))
  956. (should
  957. (equal "- line 1\n- line 2"
  958. (org-test-with-temp-text "line 1\n- line 2"
  959. (transient-mark-mode 1)
  960. (push-mark (point) t t)
  961. (goto-char (point-max))
  962. (org-toggle-item nil)
  963. (buffer-string))))
  964. ;; When argument ARG is non-nil, change the whole region into
  965. ;; a single item.
  966. (should
  967. (equal "- line 1\n line 2"
  968. (org-test-with-temp-text "line 1\nline 2"
  969. (transient-mark-mode 1)
  970. (push-mark (point) t t)
  971. (goto-char (point-max))
  972. (org-toggle-item t)
  973. (buffer-string)))))
  974. (ert-deftest test-org-list/sort ()
  975. "Test `org-sort-list'."
  976. ;; Sort alphabetically.
  977. (should
  978. (equal "- abc\n- def\n- xyz\n"
  979. (org-test-with-temp-text "- def\n- xyz\n- abc\n"
  980. (org-sort-list nil ?a)
  981. (buffer-string))))
  982. (should
  983. (equal "- xyz\n- def\n- abc\n"
  984. (org-test-with-temp-text "- def\n- xyz\n- abc\n"
  985. (org-sort-list nil ?A)
  986. (buffer-string))))
  987. ;; Sort numerically.
  988. (should
  989. (equal "- 1\n- 2\n- 10\n"
  990. (org-test-with-temp-text "- 10\n- 1\n- 2\n"
  991. (org-sort-list nil ?n)
  992. (buffer-string))))
  993. (should
  994. (equal "- 10\n- 2\n- 1\n"
  995. (org-test-with-temp-text "- 10\n- 1\n- 2\n"
  996. (org-sort-list nil ?N)
  997. (buffer-string))))
  998. ;; Sort by checked status.
  999. (should
  1000. (equal "- [ ] xyz\n- [ ] def\n- [X] abc\n"
  1001. (org-test-with-temp-text "- [X] abc\n- [ ] xyz\n- [ ] def\n"
  1002. (org-sort-list nil ?x)
  1003. (buffer-string))))
  1004. (should
  1005. (equal "- [X] abc\n- [ ] xyz\n- [ ] def\n"
  1006. (org-test-with-temp-text "- [X] abc\n- [ ] xyz\n- [ ] def\n"
  1007. (org-sort-list nil ?X)
  1008. (buffer-string))))
  1009. ;; Sort by time stamp.
  1010. (should
  1011. (equal "- <2017-05-08 Mon>\n- <2017-05-09 Tue>\n- <2018-05-09 Wed>\n"
  1012. (org-test-with-temp-text
  1013. "- <2018-05-09 Wed>\n- <2017-05-09 Tue>\n- <2017-05-08 Mon>\n"
  1014. (org-sort-list nil ?t)
  1015. (buffer-string))))
  1016. (should
  1017. (equal "- <2018-05-09 Wed>\n- <2017-05-09 Tue>\n- <2017-05-08 Mon>\n"
  1018. (org-test-with-temp-text
  1019. "- <2018-05-09 Wed>\n- <2017-05-09 Tue>\n- <2017-05-08 Mon>\n"
  1020. (org-sort-list nil ?T)
  1021. (buffer-string))))
  1022. ;; Sort by custom function.
  1023. (should
  1024. (equal "- b\n- aa\n- ccc\n"
  1025. (org-test-with-temp-text "- ccc\n- b\n- aa\n"
  1026. (org-sort-list nil ?f
  1027. (lambda ()
  1028. (length (buffer-substring (point-at-bol)
  1029. (point-at-eol))))
  1030. #'<)
  1031. (buffer-string))))
  1032. (should
  1033. (equal "- ccc\n- aa\n- b\n"
  1034. (org-test-with-temp-text "- ccc\n- b\n- aa\n"
  1035. (org-sort-list nil ?F
  1036. (lambda ()
  1037. (length (buffer-substring (point-at-bol)
  1038. (point-at-eol))))
  1039. #'<)
  1040. (buffer-string)))))
  1041. ;;; Radio Lists
  1042. (ert-deftest test-org-list/send-list ()
  1043. "Test various checks for `org-list-send-list'."
  1044. ;; Error when not at a list item.
  1045. (should-error
  1046. (org-test-with-temp-text "Not a list item"
  1047. (org-list-send-list)))
  1048. ;; Error when ORGLST line is not provided.
  1049. (should-error
  1050. (org-test-with-temp-text "- item"
  1051. (org-list-send-list)))
  1052. ;; Error when transformation function is unknown.
  1053. (should-error
  1054. (org-test-with-temp-text "@ignore
  1055. #+ORGLST: SEND list unknown-function
  1056. - item
  1057. @end ignore"
  1058. (forward-line 2)
  1059. (org-list-send-list)))
  1060. ;; Error when receiving location is not defined.
  1061. (should-error
  1062. (org-test-with-temp-text "@ignore
  1063. #+ORGLST: SEND list org-list-to-texinfo
  1064. - item
  1065. @end ignore"
  1066. (forward-line 2)
  1067. (org-list-send-list)))
  1068. ;; Error when insertion region is ill-formed.
  1069. (should-error
  1070. (org-test-with-temp-text "@c BEGIN RECEIVE ORGLST list
  1071. @ignore
  1072. #+ORGLST: SEND list org-list-to-texinfo
  1073. - item
  1074. @end ignore"
  1075. (forward-line 3)
  1076. (org-list-send-list)))
  1077. ;; Allow multiple receiver locations.
  1078. (should
  1079. (org-test-with-temp-text "
  1080. @c BEGIN RECEIVE ORGLST list
  1081. @c END RECEIVE ORGLST list
  1082. @ignore
  1083. #+ORGLST: SEND list org-list-to-texinfo
  1084. <point>- item contents
  1085. @end ignore
  1086. @c BEGIN RECEIVE ORGLST list
  1087. @c END RECEIVE ORGLST list"
  1088. (org-list-send-list)
  1089. (goto-char (point-min))
  1090. (search-forward "item contents" nil t 3))))
  1091. (ert-deftest test-org-list/to-generic ()
  1092. "Test `org-list-to-generic' specifications."
  1093. ;; Test `:ustart' and `:uend' parameters.
  1094. (should
  1095. (equal
  1096. "begin\na"
  1097. (org-test-with-temp-text "- a"
  1098. (org-list-to-generic (org-list-to-lisp) '(:ustart "begin")))))
  1099. (should-not
  1100. (equal
  1101. "begin\na"
  1102. (org-test-with-temp-text "1. a"
  1103. (org-list-to-generic (org-list-to-lisp) '(:ustart "begin")))))
  1104. (should
  1105. (equal
  1106. "a\nend"
  1107. (org-test-with-temp-text "- a"
  1108. (org-list-to-generic (org-list-to-lisp) '(:uend "end")))))
  1109. (should-not
  1110. (equal
  1111. "a\nend"
  1112. (org-test-with-temp-text "1. a"
  1113. (org-list-to-generic (org-list-to-lisp) '(:uend "end")))))
  1114. (should
  1115. (equal
  1116. "begin l1\na\nbegin l2\nb\nend l2\nend l1"
  1117. (org-test-with-temp-text "- a\n - b"
  1118. (org-list-to-generic
  1119. (org-list-to-lisp)
  1120. (list :ustart (lambda (l) (format "begin l%d" l))
  1121. :uend (lambda (l) (format "end l%d" l)))))))
  1122. ;; Test `:ostart' and `:oend' parameters.
  1123. (should
  1124. (equal
  1125. "begin\na"
  1126. (org-test-with-temp-text "1. a"
  1127. (org-list-to-generic (org-list-to-lisp) '(:ostart "begin")))))
  1128. (should-not
  1129. (equal
  1130. "begin\na"
  1131. (org-test-with-temp-text "- a"
  1132. (org-list-to-generic (org-list-to-lisp) '(:ostart "begin")))))
  1133. (should
  1134. (equal
  1135. "a\nend"
  1136. (org-test-with-temp-text "1. a"
  1137. (org-list-to-generic (org-list-to-lisp) '(:oend "end")))))
  1138. (should-not
  1139. (equal
  1140. "a\nend"
  1141. (org-test-with-temp-text "- a"
  1142. (org-list-to-generic (org-list-to-lisp) '(:oend "end")))))
  1143. (should
  1144. (equal
  1145. "begin l1\na\nbegin l2\nb\nend l2\nend l1"
  1146. (org-test-with-temp-text "1. a\n 1. b"
  1147. (org-list-to-generic
  1148. (org-list-to-lisp)
  1149. (list :ostart (lambda (l) (format "begin l%d" l))
  1150. :oend (lambda (l) (format "end l%d" l)))))))
  1151. ;; Test `:dstart' and `:dend' parameters.
  1152. (should
  1153. (equal
  1154. "begin\ntaga"
  1155. (org-test-with-temp-text "- tag :: a"
  1156. (org-list-to-generic (org-list-to-lisp) '(:dstart "begin")))))
  1157. (should-not
  1158. (equal
  1159. "begin\na"
  1160. (org-test-with-temp-text "- a"
  1161. (org-list-to-generic (org-list-to-lisp) '(:dstart "begin")))))
  1162. (should
  1163. (equal
  1164. "taga\nend"
  1165. (org-test-with-temp-text "- tag :: a"
  1166. (org-list-to-generic (org-list-to-lisp) '(:dend "end")))))
  1167. (should-not
  1168. (equal
  1169. "a\nend"
  1170. (org-test-with-temp-text "- a"
  1171. (org-list-to-generic (org-list-to-lisp) '(:dend "end")))))
  1172. (should
  1173. (equal
  1174. "begin l1\ntag1a\nbegin l2\ntag2b\nend l2\nend l1"
  1175. (org-test-with-temp-text "- tag1 :: a\n - tag2 :: b"
  1176. (org-list-to-generic
  1177. (org-list-to-lisp)
  1178. (list :dstart (lambda (l) (format "begin l%d" l))
  1179. :dend (lambda (l) (format "end l%d" l)))))))
  1180. ;; Test `:dtstart', `:dtend', `:ddstart' and `:ddend' parameters.
  1181. (should
  1182. (equal
  1183. ">tag<a"
  1184. (org-test-with-temp-text "- tag :: a"
  1185. (org-list-to-generic (org-list-to-lisp) '(:dtstart ">" :dtend "<")))))
  1186. (should
  1187. (equal
  1188. "tag>a<"
  1189. (org-test-with-temp-text "- tag :: a"
  1190. (org-list-to-generic (org-list-to-lisp) '(:ddstart ">" :ddend "<")))))
  1191. ;; Test `:istart' and `:iend' parameters.
  1192. (should
  1193. (equal
  1194. "starta"
  1195. (org-test-with-temp-text "- a"
  1196. (org-list-to-generic (org-list-to-lisp) '(:istart "start")))))
  1197. (should
  1198. (equal
  1199. "level1 a\nlevel2 b"
  1200. (org-test-with-temp-text "- a\n - b"
  1201. (org-list-to-generic (org-list-to-lisp)
  1202. '(:istart (lambda (l) (format "level%d "l)))))))
  1203. (should
  1204. (equal
  1205. "a\nblevel2level1"
  1206. (org-test-with-temp-text "- a\n - b"
  1207. (org-list-to-generic (org-list-to-lisp)
  1208. '(:iend (lambda (l) (format "level%d" l)))))))
  1209. ;; Test `:icount' parameter.
  1210. (should
  1211. (equal
  1212. "counta"
  1213. (org-test-with-temp-text "1. [@3] a"
  1214. (org-list-to-generic (org-list-to-lisp) '(:icount "count")))))
  1215. (should-not
  1216. (equal
  1217. "counta"
  1218. (org-test-with-temp-text "1. a"
  1219. (org-list-to-generic (org-list-to-lisp) '(:icount "count")))))
  1220. (should
  1221. (equal
  1222. "counta"
  1223. (org-test-with-temp-text "1. [@3] a"
  1224. (org-list-to-generic (org-list-to-lisp)
  1225. '(:icount "count" :istart "start")))))
  1226. (should
  1227. (equal
  1228. "level:1, counter:3 a"
  1229. (org-test-with-temp-text "1. [@3] a"
  1230. (org-list-to-generic
  1231. (org-list-to-lisp)
  1232. '(:icount (lambda (l c) (format "level:%d, counter:%d " l c)))))))
  1233. ;; Test `:isep' parameter.
  1234. (should
  1235. (equal
  1236. "a\n--\nb"
  1237. (org-test-with-temp-text "- a\n- b"
  1238. (org-list-to-generic (org-list-to-lisp) '(:isep "--")))))
  1239. (should-not
  1240. (equal
  1241. "a\n--\nb"
  1242. (org-test-with-temp-text "- a\n - b"
  1243. (org-list-to-generic (org-list-to-lisp) '(:isep "--")))))
  1244. (should
  1245. (equal
  1246. "a\n- 1 -\nb"
  1247. (org-test-with-temp-text "- a\n- b"
  1248. (org-list-to-generic (org-list-to-lisp)
  1249. '(:isep (lambda (l) (format "- %d -" l)))))))
  1250. ;; Test `:cbon', `:cboff', `:cbtrans'
  1251. (should
  1252. (equal
  1253. "!a"
  1254. (org-test-with-temp-text "- [X] a"
  1255. (org-list-to-generic (org-list-to-lisp) '(:cbon "!")))))
  1256. (should-not
  1257. (equal
  1258. "!a"
  1259. (org-test-with-temp-text "- [X] a"
  1260. (org-list-to-generic (org-list-to-lisp) '(:cboff "!" :cbtrans "!")))))
  1261. (should
  1262. (equal
  1263. "!a"
  1264. (org-test-with-temp-text "- [ ] a"
  1265. (org-list-to-generic (org-list-to-lisp) '(:cboff "!")))))
  1266. (should-not
  1267. (equal
  1268. "!a"
  1269. (org-test-with-temp-text "- [ ] a"
  1270. (org-list-to-generic (org-list-to-lisp) '(:cbon "!" :cbtrans "!")))))
  1271. (should
  1272. (equal
  1273. "!a"
  1274. (org-test-with-temp-text "- [-] a"
  1275. (org-list-to-generic (org-list-to-lisp) '(:cbtrans "!")))))
  1276. (should-not
  1277. (equal
  1278. "!a"
  1279. (org-test-with-temp-text "- [-] a"
  1280. (org-list-to-generic (org-list-to-lisp) '(:cbon "!" :cboff "!")))))
  1281. ;; Test `:splice' parameter.
  1282. (should
  1283. (equal
  1284. "a"
  1285. (org-test-with-temp-text "- a"
  1286. (org-list-to-generic (org-list-to-lisp)
  1287. '(:ustart "begin" :uend "end" :splice t)))))
  1288. ;; No error on empty lists.
  1289. (should
  1290. (org-test-with-temp-text "-" (org-list-to-generic (org-list-to-lisp) nil))))
  1291. (ert-deftest test-org-list/to-html ()
  1292. "Test `org-list-to-html' specifications."
  1293. (should
  1294. (equal "<ul class=\"org-ul\">\n<li>a</li>\n</ul>"
  1295. (let (org-html-indent)
  1296. (with-temp-buffer
  1297. (insert "<!-- BEGIN RECEIVE ORGLST name -->
  1298. <!-- END RECEIVE ORGLST name -->
  1299. <!--
  1300. #+ORGLST: SEND name org-list-to-html
  1301. - a
  1302. -->")
  1303. (goto-char (point-min))
  1304. (re-search-forward "^- a" nil t)
  1305. (beginning-of-line)
  1306. (org-list-send-list)
  1307. (goto-line 2)
  1308. (buffer-substring-no-properties
  1309. (point)
  1310. (progn (re-search-forward "^<!-- END" nil t)
  1311. (beginning-of-line)
  1312. (skip-chars-backward " \r\t\n")
  1313. (point))))))))
  1314. (ert-deftest test-org-list/to-latex ()
  1315. "Test `org-list-to-latex' specifications."
  1316. (should
  1317. (equal "\\begin{itemize}\n\\item a\n\\end{itemize}"
  1318. (with-temp-buffer
  1319. (insert "% BEGIN RECEIVE ORGLST name
  1320. % END RECEIVE ORGLST name
  1321. \\begin{comment}
  1322. #+ORGLST: SEND name org-list-to-latex
  1323. - a
  1324. \\end{comment}")
  1325. (goto-char (point-min))
  1326. (re-search-forward "^- a" nil t)
  1327. (beginning-of-line)
  1328. (org-list-send-list)
  1329. (goto-line 2)
  1330. (buffer-substring-no-properties
  1331. (point)
  1332. (progn (re-search-forward "^% END" nil t)
  1333. (beginning-of-line)
  1334. (skip-chars-backward " \r\t\n")
  1335. (point)))))))
  1336. (ert-deftest test-org-list/to-texinfo ()
  1337. "Test `org-list-to-texinfo' specifications."
  1338. (should
  1339. (equal "@itemize\n@item\na\n@end itemize"
  1340. (with-temp-buffer
  1341. (insert "@c BEGIN RECEIVE ORGLST name
  1342. @c END RECEIVE ORGLST name
  1343. @ignore
  1344. #+ORGLST: SEND name org-list-to-texinfo
  1345. - a
  1346. @end ignore")
  1347. (goto-char (point-min))
  1348. (re-search-forward "^- a" nil t)
  1349. (beginning-of-line)
  1350. (org-list-send-list)
  1351. (goto-line 2)
  1352. (buffer-substring-no-properties
  1353. (point)
  1354. (progn (re-search-forward "^@c END" nil t)
  1355. (beginning-of-line)
  1356. (skip-chars-backward " \r\t\n")
  1357. (point)))))))
  1358. (provide 'test-org-list)
  1359. ;;; test-org-list.el ends here