1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
;; Tests for operations on toc
(add-to-list 'load-path ".")
(load "init" nil t)
(init-rst-ert t)
(ert-deftest toc-asserts ()
"Check some assertions."
(should (equal ert-Buf-point-char "\^@"))
(should (equal ert-Buf-mark-char "\^?"))
)
(ert-deftest rst-toc-insert ()
"Tests `rst-toc-insert'."
(let ((title "=====
Title
=====
")
(headers "Header A
========
Header B
========
Subheader B.a
-------------
SubSubheader B.a.1
~~~~~~~~~~~~~~~~~~
Subheader B.b
-------------
Header C
========"))
;; Set customizable variables to defaults
(let ((rst-toc-indent 2)
(rst-toc-insert-style 'fixed)
(rst-toc-insert-number-separator " ")
(rst-toc-insert-max-level nil))
;; Can't identify a title so do nothing - that's actually a (MIS-)FEATURE
(should (ert-equal-buffer
(rst-toc-insert)
(concat "\^@" headers)
t))
;; Won't work on a section title
(should (ert-equal-buffer
(rst-toc-insert)
(concat title "\^@" headers)
t))
;; No indentation
(should (ert-equal-buffer
(rst-toc-insert)
(concat title "\^@\n\n" headers)
(concat title "1 Header A
2 Header B
2.1 Subheader B.a
2.1.1 SubSubheader B.a.1
2.2 Subheader B.b
3 Header C\^@
" headers)))
;; Indentation
(should (ert-equal-buffer
(rst-toc-insert)
(concat title " \^@\n\n" headers)
(concat title " 1 Header A
2 Header B
2.1 Subheader B.a
2.1.1 SubSubheader B.a.1
2.2 Subheader B.b
3 Header C\^@
" headers)))
;; Only first level
(should (ert-equal-buffer
(rst-toc-insert 1)
(concat title " \^@\n\n" headers)
(concat title " 1 Header A
2 Header B
3 Header C\^@
" headers)))
;; Prefix and indentation
(should (ert-equal-buffer
(rst-toc-insert)
(concat title ".. \^@\n\n" headers)
(concat title ".. 1 Header A
2 Header B
2.1 Subheader B.a
2.1.1 SubSubheader B.a.1
2.2 Subheader B.b
3 Header C\^@
" headers)))
)
))
(ert-deftest rst-toc-update ()
"Tests `rst-toc-update'."
(let ((title "=====
Title
=====
")
(headers "Header A
========
Header B
========
Subheader B.a
-------------
SubSubheader B.a.1
~~~~~~~~~~~~~~~~~~
Subheader B.b
-------------
Header C
========")
(contents ".. contents:: Inhalt\n")
(fields " :bla: blub\n :local:\n")
(old ".. 1 Header A
2 Header B
3 Header C")
(new "..
1 Header A
2 Header B
2.1 Subheader B.a
2.1.1 SubSubheader B.a.1
2.2 Subheader B.b
3 Header C")
)
;; Set customizable variables to defaults
(let ((rst-toc-indent 2)
(rst-toc-insert-style 'fixed)
(rst-toc-insert-number-separator " ")
(rst-toc-insert-max-level nil))
(should (ert-equal-buffer
(rst-toc-update)
(concat title contents fields old "\n\n" headers "\^@")
(concat title contents fields new "\n\n" headers "\^@")))
(should (ert-equal-buffer
(rst-toc-update)
(concat title contents old "\n\n" headers "\^@")
(concat title contents new "\n\n" headers "\^@")))
)
))
;; FIXME: More functions to test:
;; * rst-toc
;; * rst-toc-mode-goto-section
|