unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob 987106aa5af2f9ea278e780bb247eaaa365ab367 10845 bytes (raw)
name: test/lisp/dabbrev-tests.el 	 # note: path name is non-authoritative(*)

  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
 
;;; dabbrev-tests.el --- Test suite for dabbrev.  -*- lexical-binding:t -*-

;; Copyright (C) 2016-2024 Free Software Foundation, Inc.

;; Author: Alan Third <alan@idiocy.org>
;; Keywords: dabbrev

;; 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 'dabbrev)

(ert-deftest dabbrev-expand-test ()
  "Test for bug#1948.
When `dabbrev-eliminate-newlines' is non-nil (the default),
repeated calls to `dabbrev-expand' can result in the source of
first expansion being replaced rather than the destination."
  (with-temp-buffer
   (insert "ab  x\na\nab  y")
   (goto-char 8)
   (save-window-excursion
     (set-window-buffer nil (current-buffer))
     (execute-kbd-macro (kbd "M-/ SPC M-/ M-/")))
   (should (string= (buffer-string) "ab  x\nab y\nab  y"))))

(ert-deftest dabbrev-completion-test ()
  "Test for bug#17899.
dabbrev-completion should not look for expansions in other
buffers unless a prefix argument is used."
  (with-temp-buffer
    (insert "axy")
    (with-temp-buffer
      (insert "abc\na")
      (goto-char 6)
      (save-window-excursion
        (set-window-buffer nil (current-buffer))
        (execute-kbd-macro (kbd "C-M-/")))
      (should (string= (buffer-string) "abc\nabc")))))

(ert-deftest dabbrev-completion-test-with-argument ()
  "Test for bug#17899.
dabbrev-completion should not complete because it has found
multiple expansions."
  (with-temp-buffer
    (insert "axy")
    (with-temp-buffer
      (insert "abc\na")
      (goto-char 6)
      (save-window-excursion
        (set-window-buffer nil (current-buffer))
        (execute-kbd-macro (kbd "C-u C-u C-M-/")))
      (should (string= (buffer-string) "abc\na")))))

(defmacro with-dabbrev-test (&rest body)
  "Set up an isolated `dabbrev' test environment."
  (declare (debug (body)))
  `(ert-with-temp-directory dabbrev-test-home
     (let* (;; Since we change HOME, clear this to avoid a conflict
            ;; e.g. if Emacs runs within the user's home directory.
            (abbreviated-home-dir nil)
            (process-environment (cons (format "HOME=%s" dabbrev-test-home)
                                       process-environment))
            (dabbrev-directory (ert-resource-directory)))
       (unwind-protect
           (progn ,@body)
         ;; Restore pre-test-run state of test files.
         (dolist (f (directory-files dabbrev-directory))
           (let ((buf (get-file-buffer f)))
             (when buf
               (with-current-buffer buf
                 (restore-buffer-modified-p nil)
                 (kill-buffer)))))
         (dabbrev--reset-global-variables)))))

(ert-deftest dabbrev-expand-test-same-buffer-1 ()
  "Test expanding a string twice within a single buffer.
The first expansion should expand the input (a prefix-string) to a
string in the buffer containing no whitespace character, the second
expansion, after adding a space to the first expansion, should extend
the string with the following string in the buffer up to the next
whitespace character."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (goto-char (point-max))
   (terpri)
   (execute-kbd-macro (kbd "Ind M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic"))
   (execute-kbd-macro (kbd "SPC M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic and"))))

(ert-deftest dabbrev-expand-test-same-buffer-2 ()
  "Test expanding a string plus space twice within a single buffer.
Each expansion should extend the string with the following string in the
buffer up to the next whitespace character."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (goto-char (point-max))
   (terpri)
   (execute-kbd-macro (kbd "Indic SPC M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic and"))
   (execute-kbd-macro (kbd "SPC M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic and Khmer"))))

(ert-deftest dabbrev-expand-test-same-buffer-3 ()
  "Test replacing an expansion within a single buffer."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (goto-char (point-max))
   (terpri)
   (insert-file-contents (ert-resource-file "dabbrev-expand.el"))
   (goto-char (point-max))
   (terpri)
   (execute-kbd-macro (kbd "Ind M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indicate"))
   (kill-whole-line)
   (execute-kbd-macro (kbd "Ind M-/ M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic"))
   (execute-kbd-macro (kbd "SPC M-/"))
   (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic and"))))

(ert-deftest dabbrev-expand-test-same-buffer-4 ()
  "Test expanding a string in a narrowed-region."
  (with-dabbrev-test
   (let (disabled-command-function) ; Enable narrow-to-region.
     (find-file (ert-resource-file "INSTALL_BEGIN"))
     (goto-char (point-min))
     (execute-kbd-macro (kbd "C-s Ind M-a C-SPC M-} C-x n n"))
     (goto-char (point-max))
     (terpri)
     (execute-kbd-macro (kbd "Ind M-/"))
     (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic"))
     (execute-kbd-macro (kbd "SPC M-/"))
     (should (string= (buffer-substring (pos-bol) (pos-eol)) "Indic and")))))

(ert-deftest dabbrev-expand-test-other-buffer-1 ()
  "Test expanding a prefix string to a string from another buffer."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (switch-to-buffer (get-buffer-create "a" t))
   (execute-kbd-macro (kbd "Ind M-/"))
   (should (string= (buffer-string) "Indic"))
   (execute-kbd-macro (kbd "SPC M-/"))
   (should (string= (buffer-string) "Indic and"))
   (kill-buffer "a")))

(ert-deftest dabbrev-expand-test-other-buffer-2 ()
  "Test expanding a string + space to a string from another buffer."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (switch-to-buffer (get-buffer-create "a" t))
   (execute-kbd-macro (kbd "Indic SPC M-/"))
   (should (string= (buffer-string) "Indic and"))
   (execute-kbd-macro (kbd "SPC M-/"))
   (should (string= (buffer-string) "Indic and Khmer"))
   (kill-buffer "a")))

(ert-deftest dabbrev-expand-test-other-buffer-3 ()
  "Test replacing an expansion with three different buffers.
A prefix string in a buffer should find the first expansion in a
different buffer and then find a replacement expansion is yet another
buffer."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (find-file (ert-resource-file "dabbrev-expand.el"))
   (switch-to-buffer (get-buffer-create "a" t))
   (emacs-lisp-mode)
   (execute-kbd-macro (kbd "Ind M-/"))
   (should (string= (buffer-string) "Indicate"))
   (erase-buffer)
   (execute-kbd-macro (kbd "Ind M-/ M-/"))
   (should (string= (buffer-string) "Indic"))
   (execute-kbd-macro (kbd "SPC M-/"))
   (should (string= (buffer-string) "Indic and"))
   (kill-buffer "a")))

(ert-deftest dabbrev-expand-test-other-buffer-4 ()
  "Test expanding a string using another narrowed buffer."
  (with-dabbrev-test
   (let (disabled-command-function) ; Enable narrow-to-region.
     (find-file (ert-resource-file "INSTALL_BEGIN"))
     (goto-char (point-min))
     (execute-kbd-macro (kbd "C-s Ind M-a C-SPC M-} C-x n n"))
     (switch-to-buffer (get-buffer-create "a" t))
     (execute-kbd-macro (kbd "Ind M-/"))
     (should (string= (buffer-string) "Indic"))
     (execute-kbd-macro (kbd "SPC M-/"))
     (should (string= (buffer-string) "Indic and"))
     (kill-buffer "a"))))

(ert-deftest dabbrev-expand-test-minibuffer-1 ()
  "Test expanding a prefix string twice in the minibuffer.
Both expansions should come from the buffer from which the minibuffer
was entered."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (with-selected-window (minibuffer-window)
     (insert "Ind")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic"))
     (insert " ")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic and"))
     (delete-minibuffer-contents))))

(ert-deftest dabbrev-expand-test-minibuffer-2 ()
  "Test expanding a string + space in the minibuffer.
The expansions should come from the buffer from which the minibuffer was
entered."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (with-selected-window (minibuffer-window)
     (insert "Indic ")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic and"))
     (insert " ")
     (dabbrev-expand nil)
     (should (string= (buffer-string) "Indic and Khmer"))
     (delete-minibuffer-contents))))

;; FIXME: Why is dabbrev--reset-global-variables needed here?
(ert-deftest dabbrev-expand-test-minibuffer-3 ()
  "Test replacing an expansion in the minibuffer using two buffers.
The first expansion should befound in the buffer from which the
minibuffer was entered, the replacement should found in another buffer."
  (with-dabbrev-test
   (find-file (ert-resource-file "INSTALL_BEGIN"))
   (find-file (ert-resource-file "dabbrev-expand.el"))
   (with-selected-window (minibuffer-window)
     (insert "Ind")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indicate"))
     (kill-whole-line)
     (dabbrev--reset-global-variables)
     (insert "Ind")
     (dabbrev-expand nil)
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic"))
     (dabbrev--reset-global-variables)
     (insert " ")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic and"))
     (delete-minibuffer-contents))))

(ert-deftest dabbrev-expand-test-minibuffer-4 ()
  "Test expansion in the minibuffer using another narrowed buffer."
  (with-dabbrev-test
   (let (disabled-command-function) ; Enable narrow-to-region.
     (find-file (ert-resource-file "INSTALL_BEGIN"))
     (goto-char (point-min))
     (execute-kbd-macro (kbd "C-s Ind M-a C-SPC M-} C-x n n")))
   (with-selected-window (minibuffer-window)
     (insert "Ind")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic"))
     (insert " ")
     (dabbrev-expand nil)
     (should (string= (minibuffer-contents) "Indic and"))
     (delete-minibuffer-contents))))

;;; dabbrev-tests.el ends here

debug log:

solving 987106aa5af ...
found 987106aa5af in https://yhetil.org/emacs-bugs/878qu6j0tx.fsf@gmx.net/
found c7574403949 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 c757440394977d06ffdaba868299ed2cffd2000a	test/lisp/dabbrev-tests.el

applying [1/1] https://yhetil.org/emacs-bugs/878qu6j0tx.fsf@gmx.net/
diff --git a/test/lisp/dabbrev-tests.el b/test/lisp/dabbrev-tests.el
index c7574403949..987106aa5af 100644

Checking patch test/lisp/dabbrev-tests.el...
Applied patch test/lisp/dabbrev-tests.el cleanly.

index at:
100644 987106aa5af2f9ea278e780bb247eaaa365ab367	test/lisp/dabbrev-tests.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).