blob: 63577fdd1676e7f3da1828dfaf8fbd0179de0e94 (
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
|
;;; saveplace-tests.el --- Tests for saveplace.el -*- lexical-binding:t -*-
;; Copyright (C) 2019-2021 Free Software Foundation, Inc.
;; Author: Stefan Kangas <stefankangas@gmail.com>
;; This file is part of GNU Emacs.
;; GNU Emacs 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.
;; GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'ert)
(require 'ert-x)
(require 'saveplace)
(ert-deftest saveplace-test-save-place-to-alist/dir ()
(save-place-mode)
(let* ((save-place-alist nil)
(save-place-loaded t)
(loc (ert-resource-directory)))
(save-window-excursion
(dired loc)
(save-place-to-alist)
(should (equal save-place-alist
`((,loc
(dired-filename . ,(concat loc "saveplace")))))))))
(ert-deftest saveplace-test-save-place-to-alist/file ()
(save-place-mode)
(let* ((tmpfile (make-temp-file "emacs-test-saveplace-"))
(tmpfile (file-truename tmpfile))
(save-place-alist nil)
(save-place-loaded t)
(loc tmpfile)
(pos 4))
(unwind-protect
(save-window-excursion
(find-file loc)
(insert "abc") ; must insert something
(save-place-to-alist)
(should (equal save-place-alist (list (cons tmpfile pos)))))
(delete-file tmpfile))))
(ert-deftest saveplace-test-forget-unreadable-files ()
(save-place-mode)
(let* ((save-place-loaded t)
(tmpfile (make-temp-file "emacs-test-saveplace-"))
(alist-orig (list (cons "/this/file/does/not/exist" 10)
(cons tmpfile 1917)))
(save-place-alist alist-orig))
(unwind-protect
(progn
(save-place-forget-unreadable-files)
(should (equal save-place-alist (cdr alist-orig))))
(delete-file tmpfile))))
(ert-deftest saveplace-test-place-alist-to-file ()
(save-place-mode)
(let* ((tmpfile (make-temp-file "emacs-test-saveplace-"))
(tmpfile2 (make-temp-file "emacs-test-saveplace-"))
(save-place-file tmpfile)
(save-place-alist (list (cons tmpfile2 99))))
(unwind-protect
(progn (save-place-alist-to-file)
(setq save-place-alist nil)
(save-window-excursion
(find-file save-place-file)
(unwind-protect
(should (string-match tmpfile2 (buffer-string)))
(kill-buffer))))
(delete-file tmpfile)
(delete-file tmpfile2))))
(ert-deftest saveplace-test-load-alist-from-file ()
(save-place-mode)
(let ((save-place-loaded nil)
(save-place-file
(ert-resource-file "saveplace"))
(save-place-alist nil))
(load-save-place-alist-from-file)
(should (equal save-place-alist
'(("/home/skangas/.emacs.d/cache/recentf" . 1306)
("/home/skangas/wip/emacs/"
(dired-filename . "/home/skangas/wip/emacs/COPYING")))))))
(provide 'saveplace-tests)
;;; saveplace-tests.el ends here
|