blob: a4a6447a3c5b68e71d0b274f81eea2dafee40a5c (
plain)
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
|
;; Copyright (C) 2015 Free Software Foundation, Inc
;; Author: Rocky Bernstein <rocky@gnu.org>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(require 'cl)
(require 'test-simple)
(load-file "../loc-changes.el")
(test-simple-start)
(setq sample-buffer (find-file-noselect "./sample.txt"))
(note "loc-changes-goto-line error conditions")
(assert-raises error (loc-changes-goto-line "foo"))
(message "buffer %s" (current-buffer))
(assert-raises error (loc-changes-goto-line "0"))
(assert-raises error (loc-changes-goto-line 0))
(assert-raises error (loc-changes-goto-line 10000))
(note "loc-changes-goto-line")
(with-current-buffer sample-buffer
(loc-changes-goto-line 5)
(assert-equal 5 (line-number-at-pos (point))))
(note "loc-changes-goto-line-with-column")
(with-current-buffer sample-buffer
(set-buffer sample-buffer)
(loc-changes-goto-line 1 3)
(assert-equal 1 (line-number-at-pos (point)))
;; FIXME:
;; (assert-equal 2 (current-column))
)
(note "loc-changes-goto-line-invalid-column")
(with-current-buffer sample-buffer
(loc-changes-goto-line 1 300)
(assert-equal 1 (line-number-at-pos (point)))
;; FIXME
;; (assert-equal 0 (current-column))
(assert-t (or
(not (current-message))
(string-match "^Column ignored." (current-message))))
;; FIXME:
;; (loc-changes-goto-line 2 -5)
;; (assert-equal 2 (line-number-at-pos (point)))
;; (assert-equal 0 (current-column))
;; (assert-t (or
;; (not (current-message))
;; (string-match "^Column ignored." (current-message))))
)
(note "loc-changes-clear-buffer null")
(loc-changes-clear-buffer)
(assert-equal '() loc-changes-alist)
(note "loc-changes-add-and-goto - update")
(with-current-buffer sample-buffer
(loc-changes-add-and-goto 10)
(assert-equal 10 (line-number-at-pos)
"point should be at line 10")
;; FIXME:
;; (assert-t (assq 10 loc-changes-alist)
;; "Should find 10 in loc-changes-alist")
;; (assert-t (markerp (cdr (assq 10 loc-changes-alist)))
;; "10 in loc-changes-alist should be a marker")
)
(note "loc-changes-goto - update")
(with-current-buffer sample-buffer
(loc-changes-goto 11)
(assert-equal 11 (line-number-at-pos)
"point should be at line 11")
;; FIXME:
;; (assert-t (assq 11 loc-changes-alist)
;; "Should find 11 in loc-changes-alist")
;; (assert-t (markerp (cdr (assq 11 loc-changes-alist)))
;; "11 in loc-changes-alist should be a marker")
)
(note "loc-changes-goto - no update")
(with-current-buffer sample-buffer
(loc-changes-goto 12 nil 't)
(assert-equal 12 (line-number-at-pos)
"point should be at line 12")
(assert-nil (assq 12 loc-changes-alist)
"Should not find 12 in loc-changes-alist")
)
(end-tests)
|