forked from joodland/bm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bm-tests.el
287 lines (205 loc) · 5.63 KB
/
bm-tests.el
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
(require 'ert)
(require 'bm (expand-file-name "./bm.el"))
;; to run tests from command line
;; > emacs -batch -l ert -l bm-tests.el -f ert-run-tests-batch-and-exit
;;
;; to run from inside of Emacs
;; M-x ert-run-tests-interactively
(defvar text "This is a multi line text.
This is the second line.
This is the thrid line.
The next line is blank.
The previous line is blank.
This is the last line.")
(ert-deftest bm-bookmark--bm-bookmark-remove ()
"Simple test of `bm-bookmark-remove'"
(with-temp-buffer
(insert text)
(bm-bookmark-line 1)
(bm-bookmark-line 5)
(should (= (bm-count) 2))
(goto-char (point-min))
(bm-next)
(bm-bookmark-remove)
(should (= (bm-count) 1))
(bm-next)
(bm-bookmark-remove)
(should (= (bm-count) 0))
))
(ert-deftest bm-bookmark--narrow-to-region--1 ()
"Test behaviour in narrowed buffers."
(with-temp-buffer
(insert text)
(bm-bookmark-line 1)
(bm-bookmark-line 6)
(should (= (bm-count) 2))
(narrow-to-region (progn (goto-line 3) (point-at-bol))
(progn (goto-line 5) (point-at-bol)))
;; don't count bookmarks outside narrowing
(should (= (bm-count) 0))
;; do not jump forward
(goto-char (point-min))
(bm-next)
(should (= (point) (point-min)))
;; do not jump backward
(goto-char (point-max))
(bm-previous)
(should (= (point) (point-max)))
))
(ert-deftest bm-bookmark--narrow-to-region--2 ()
"Test behaviour in narrowed buffers."
(with-temp-buffer
(insert text)
(bm-bookmark-line 1)
(bm-bookmark-line 4)
(bm-bookmark-line 6)
(should (= (bm-count) 3))
(narrow-to-region (progn (goto-line 3) (point-at-bol))
(progn (goto-line 5) (point-at-bol)))
(should (= (bm-count) 1))
(bm-remove-all-current-buffer)
(widen)
(should (= (bm-count) 2))
))
(ert-deftest bm-bookmark--save-and-restore ()
"Test saving and restoring persistent bookmarks."
(make-variable-buffer-local 'bm-repository-file)
(setq bm-repository-file (make-temp-file "bm-repo"))
(with-temp-buffer
(insert text)
(bm-toggle-buffer-persistence)
(bm-bookmark-line 2)
(bm-bookmark-line 4)
(bm-bookmark-line 6)
(bm-save)
(should (= (bm-count) 3))
(bm-remove-all-current-buffer)
(should (= (bm-count) 0))
(bm-load-and-restore)
(should (= (bm-count) 3))
(goto-char (point-min))
(bm-next)
(should (= (line-number-at-pos) 2))
(bm-next)
(should (= (line-number-at-pos) 4))
(bm-next)
(should (= (line-number-at-pos) 6))
))
(ert-deftest bm-bookmark--bm-first ()
"Test that `bm-goto-position' is preserved when wrapping to bookmark on the first line."
(with-temp-buffer
(insert text)
(goto-char (point-min))
(forward-char 3)
(bm-bookmark-add)
(let ((bookmark-pos (point)))
(forward-line 2)
(bm-next)
(should (= bookmark-pos (point))))
))
(ert-deftest bm-bookmark--github-bug-10 ()
"Reproducing bug from GitHub, https://github.com/joodland/bm/issues/10"
(with-temp-buffer
(insert "line1
line2
line3
line4
")
(goto-line 1)
(bm-bookmark-add)
(goto-line 3)
(bm-bookmark-add)
(should (= (bm-count) 2))
;; insert a newline
(goto-char (point-at-bol))
(insert "\n")
(goto-char (point-min))
(bm-previous)
(bm-previous)
(should (= (line-number-at-pos) 1))
(goto-char (point-min))
(bm-next)
(bm-next)
(should (= (line-number-at-pos) 1))
))
(ert-deftest bm-bookmark--add-test ()
(with-temp-buffer
(insert text)
(goto-line 2)
(bm-bookmark-add)
(should (= (bm-count) 1))
(goto-char (point-min))
(bm-next)
(let ((bookmark (bm-bookmark-at (point))))
(should (= (overlay-start bookmark) 28 )))
))
(ert-deftest bm-bookmark--add-remove-test ()
(with-temp-buffer
(insert text)
(goto-line 2)
(bm-bookmark-add)
(should (= (bm-count) 1))
(goto-char (point-min))
(bm-next)
(bm-bookmark-remove)
(should (= (bm-count) 0))
))
(ert-deftest bm-bookmark--multiple-bookmarks-forward-wrapping ()
(with-temp-buffer
(insert text)
(goto-line 2)
(bm-bookmark-add)
(goto-line 5)
(bm-bookmark-add)
(should (= (bm-count) 2))
(goto-char (point-min))
(bm-next)
(let ((bookmark (bm-bookmark-at (point))))
(bm-next)
(bm-next)
(should (bm-equal (bm-bookmark-at (point)) bookmark)))
))
(ert-deftest bm-bookmark--bm-temporary-bookmark ()
(with-temp-buffer
(insert text)
(goto-line 2)
(bm-bookmark-add nil nil t)
(goto-line 5)
(bm-bookmark-add nil nil t)
(should (= (bm-count) 2))
(goto-char (point-min))
(bm-next)
(should (= (bm-count) 1))
(goto-char (point-min))
(bm-previous)
(should (= (bm-count) 0))
))
(ert-deftest bm-bookmark--option-bm-temporary-bookmark ()
(let ((temporary-bookmark-p t))
(with-temp-buffer
(insert text)
(goto-line 2)
(bm-bookmark-add)
(goto-line 5)
(bm-bookmark-add)
(should (= (bm-count) 2))
(goto-char (point-min))
(bm-next)
(should (= (bm-count) 1))
(goto-char (point-min))
(bm-previous)
(should (= (bm-count) 0)))
))
(ert-deftest bm-bookmarkp-test ()
(with-temp-buffer
(insert text)
(goto-line 2)
(bm-bookmark-add)
(let ((bm (bm-bookmark-at (point))))
(should (bm-bookmarkp bm))
(bm-bookmark-remove bm)
;; after removed. bm-bookmarkp should return nil
(should (not (bm-bookmarkp bm)))
(should (not (bm-bookmarkp nil)))
(should (not (bm-bookmarkp (bm-bookmark-at (point)))))
)))