]> code.delx.au - gnu-emacs/blob - test/automated/tramp-tests.el
Suppress Chinese file name test for OSX in tramp-tests.el
[gnu-emacs] / test / automated / tramp-tests.el
1 ;;; tramp-tests.el --- Tests of remote file access
2
3 ;; Copyright (C) 2013-2016 Free Software Foundation, Inc.
4
5 ;; Author: Michael Albinus <michael.albinus@gmx.de>
6
7 ;; This program is free software: you can redistribute it and/or
8 ;; modify it under the terms of the GNU General Public License as
9 ;; published by the Free Software Foundation, either version 3 of the
10 ;; License, or (at your option) any later version.
11 ;;
12 ;; This program is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with this program. If not, see `http://www.gnu.org/licenses/'.
19
20 ;;; Commentary:
21
22 ;; The tests require a recent ert.el from Emacs 24.4.
23
24 ;; Some of the tests require access to a remote host files. Since
25 ;; this could be problematic, a mock-up connection method "mock" is
26 ;; used. Emulating a remote connection, it simply calls "sh -i".
27 ;; Tramp's file name handlers still run, so this test is sufficient
28 ;; except for connection establishing.
29
30 ;; If you want to test a real Tramp connection, set
31 ;; $REMOTE_TEMPORARY_FILE_DIRECTORY to a suitable value in order to
32 ;; overwrite the default value. If you want to skip tests accessing a
33 ;; remote host, set this environment variable to "/dev/null" or
34 ;; whatever is appropriate on your system.
35
36 ;; A whole test run can be performed calling the command `tramp-test-all'.
37
38 ;;; Code:
39
40 (require 'ert)
41 (require 'tramp)
42 (require 'vc)
43 (require 'vc-bzr)
44 (require 'vc-git)
45 (require 'vc-hg)
46
47 (declare-function tramp-find-executable "tramp-sh")
48 (declare-function tramp-get-remote-path "tramp-sh")
49 (declare-function tramp-get-remote-stat "tramp-sh")
50 (declare-function tramp-get-remote-perl "tramp-sh")
51 (defvar tramp-copy-size-limit)
52 (defvar tramp-persistency-file-name)
53 (defvar tramp-remote-process-environment)
54
55 ;; There is no default value on w32 systems, which could work out of the box.
56 (defconst tramp-test-temporary-file-directory
57 (cond
58 ((getenv "REMOTE_TEMPORARY_FILE_DIRECTORY"))
59 ((eq system-type 'windows-nt) null-device)
60 (t (add-to-list
61 'tramp-methods
62 '("mock"
63 (tramp-login-program "sh")
64 (tramp-login-args (("-i")))
65 (tramp-remote-shell "/bin/sh")
66 (tramp-remote-shell-args ("-c"))
67 (tramp-connection-timeout 10)))
68 (format "/mock::%s" temporary-file-directory)))
69 "Temporary directory for Tramp tests.")
70
71 (setq password-cache-expiry nil
72 tramp-verbose 0
73 tramp-copy-size-limit nil
74 tramp-message-show-message nil
75 tramp-persistency-file-name nil)
76
77 ;; This shall happen on hydra only.
78 (when (getenv "NIX_STORE")
79 (add-to-list 'tramp-remote-path 'tramp-own-remote-path))
80
81 (defvar tramp--test-enabled-checked nil
82 "Cached result of `tramp--test-enabled'.
83 If the function did run, the value is a cons cell, the `cdr'
84 being the result.")
85
86 (defun tramp--test-enabled ()
87 "Whether remote file access is enabled."
88 (unless (consp tramp--test-enabled-checked)
89 (setq
90 tramp--test-enabled-checked
91 (cons
92 t (ignore-errors
93 (and
94 (file-remote-p tramp-test-temporary-file-directory)
95 (file-directory-p tramp-test-temporary-file-directory)
96 (file-writable-p tramp-test-temporary-file-directory))))))
97
98 (when (cdr tramp--test-enabled-checked)
99 ;; Cleanup connection.
100 (ignore-errors
101 (tramp-cleanup-connection
102 (tramp-dissect-file-name tramp-test-temporary-file-directory)
103 nil 'keep-password)))
104
105 ;; Return result.
106 (cdr tramp--test-enabled-checked))
107
108 (defun tramp--test-make-temp-name (&optional local)
109 "Create a temporary file name for test."
110 (expand-file-name
111 (make-temp-name "tramp-test")
112 (if local temporary-file-directory tramp-test-temporary-file-directory)))
113
114 (defmacro tramp--instrument-test-case (verbose &rest body)
115 "Run BODY with `tramp-verbose' equal VERBOSE.
116 Print the the content of the Tramp debug buffer, if BODY does not
117 eval properly in `should', `should-not' or `should-error'. BODY
118 shall not contain a timeout."
119 (declare (indent 1) (debug (natnump body)))
120 `(let ((tramp-verbose ,verbose)
121 (tramp-message-show-message t)
122 (tramp-debug-on-error t)
123 (debug-ignored-errors
124 (cons "^make-symbolic-link not supported$" debug-ignored-errors)))
125 (unwind-protect
126 (progn ,@body)
127 (when (> tramp-verbose 3)
128 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
129 (with-current-buffer (tramp-get-connection-buffer v)
130 (message "%s" (buffer-string)))
131 (with-current-buffer (tramp-get-debug-buffer v)
132 (message "%s" (buffer-string))))))))
133
134 (ert-deftest tramp-test00-availability ()
135 "Test availability of Tramp functions."
136 :expected-result (if (tramp--test-enabled) :passed :failed)
137 (message "Remote directory: `%s'" tramp-test-temporary-file-directory)
138 (should (ignore-errors
139 (and
140 (file-remote-p tramp-test-temporary-file-directory)
141 (file-directory-p tramp-test-temporary-file-directory)
142 (file-writable-p tramp-test-temporary-file-directory)))))
143
144 (ert-deftest tramp-test01-file-name-syntax ()
145 "Check remote file name syntax."
146 ;; Simple cases.
147 (should (tramp-tramp-file-p "/method::"))
148 (should (tramp-tramp-file-p "/host:"))
149 (should (tramp-tramp-file-p "/user@:"))
150 (should (tramp-tramp-file-p "/user@host:"))
151 (should (tramp-tramp-file-p "/method:host:"))
152 (should (tramp-tramp-file-p "/method:user@:"))
153 (should (tramp-tramp-file-p "/method:user@host:"))
154 (should (tramp-tramp-file-p "/method:user@email@host:"))
155
156 ;; Using a port.
157 (should (tramp-tramp-file-p "/host#1234:"))
158 (should (tramp-tramp-file-p "/user@host#1234:"))
159 (should (tramp-tramp-file-p "/method:host#1234:"))
160 (should (tramp-tramp-file-p "/method:user@host#1234:"))
161
162 ;; Using an IPv4 address.
163 (should (tramp-tramp-file-p "/1.2.3.4:"))
164 (should (tramp-tramp-file-p "/user@1.2.3.4:"))
165 (should (tramp-tramp-file-p "/method:1.2.3.4:"))
166 (should (tramp-tramp-file-p "/method:user@1.2.3.4:"))
167
168 ;; Using an IPv6 address.
169 (should (tramp-tramp-file-p "/[]:"))
170 (should (tramp-tramp-file-p "/[::1]:"))
171 (should (tramp-tramp-file-p "/user@[::1]:"))
172 (should (tramp-tramp-file-p "/method:[::1]:"))
173 (should (tramp-tramp-file-p "/method:user@[::1]:"))
174
175 ;; Local file name part.
176 (should (tramp-tramp-file-p "/host:/:"))
177 (should (tramp-tramp-file-p "/method:::"))
178 (should (tramp-tramp-file-p "/method::/path/to/file"))
179 (should (tramp-tramp-file-p "/method::file"))
180
181 ;; Multihop.
182 (should (tramp-tramp-file-p "/method1:|method2::"))
183 (should (tramp-tramp-file-p "/method1:host1|host2:"))
184 (should (tramp-tramp-file-p "/method1:host1|method2:host2:"))
185 (should (tramp-tramp-file-p "/method1:user1@host1|method2:user2@host2:"))
186 (should (tramp-tramp-file-p
187 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:"))
188
189 ;; No strings.
190 (should-not (tramp-tramp-file-p nil))
191 (should-not (tramp-tramp-file-p 'symbol))
192 ;; "/:" suppresses file name handlers.
193 (should-not (tramp-tramp-file-p "/::"))
194 (should-not (tramp-tramp-file-p "/:@:"))
195 (should-not (tramp-tramp-file-p "/:[]:"))
196 ;; Multihops require a method.
197 (should-not (tramp-tramp-file-p "/host1|host2:"))
198 ;; Methods or hostnames shall be at least two characters on MS Windows.
199 (when (memq system-type '(cygwin windows-nt))
200 (should-not (tramp-tramp-file-p "/c:/path/to/file"))
201 (should-not (tramp-tramp-file-p "/c::/path/to/file"))))
202
203 (ert-deftest tramp-test02-file-name-dissect ()
204 "Check remote file name components."
205 (let ((tramp-default-method "default-method")
206 (tramp-default-user "default-user")
207 (tramp-default-host "default-host"))
208 ;; Expand `tramp-default-user' and `tramp-default-host'.
209 (should (string-equal
210 (file-remote-p "/method::")
211 (format "/%s:%s@%s:" "method" "default-user" "default-host")))
212 (should (string-equal (file-remote-p "/method::" 'method) "method"))
213 (should (string-equal (file-remote-p "/method::" 'user) "default-user"))
214 (should (string-equal (file-remote-p "/method::" 'host) "default-host"))
215 (should (string-equal (file-remote-p "/method::" 'localname) ""))
216 (should (string-equal (file-remote-p "/method::" 'hop) nil))
217
218 ;; Expand `tramp-default-method' and `tramp-default-user'.
219 (should (string-equal
220 (file-remote-p "/host:")
221 (format "/%s:%s@%s:" "default-method" "default-user" "host")))
222 (should (string-equal (file-remote-p "/host:" 'method) "default-method"))
223 (should (string-equal (file-remote-p "/host:" 'user) "default-user"))
224 (should (string-equal (file-remote-p "/host:" 'host) "host"))
225 (should (string-equal (file-remote-p "/host:" 'localname) ""))
226 (should (string-equal (file-remote-p "/host:" 'hop) nil))
227
228 ;; Expand `tramp-default-method' and `tramp-default-host'.
229 (should (string-equal
230 (file-remote-p "/user@:")
231 (format "/%s:%s@%s:" "default-method""user" "default-host")))
232 (should (string-equal (file-remote-p "/user@:" 'method) "default-method"))
233 (should (string-equal (file-remote-p "/user@:" 'user) "user"))
234 (should (string-equal (file-remote-p "/user@:" 'host) "default-host"))
235 (should (string-equal (file-remote-p "/user@:" 'localname) ""))
236 (should (string-equal (file-remote-p "/user@:" 'hop) nil))
237
238 ;; Expand `tramp-default-method'.
239 (should (string-equal
240 (file-remote-p "/user@host:")
241 (format "/%s:%s@%s:" "default-method" "user" "host")))
242 (should (string-equal
243 (file-remote-p "/user@host:" 'method) "default-method"))
244 (should (string-equal (file-remote-p "/user@host:" 'user) "user"))
245 (should (string-equal (file-remote-p "/user@host:" 'host) "host"))
246 (should (string-equal (file-remote-p "/user@host:" 'localname) ""))
247 (should (string-equal (file-remote-p "/user@host:" 'hop) nil))
248
249 ;; Expand `tramp-default-user'.
250 (should (string-equal
251 (file-remote-p "/method:host:")
252 (format "/%s:%s@%s:" "method" "default-user" "host")))
253 (should (string-equal (file-remote-p "/method:host:" 'method) "method"))
254 (should (string-equal (file-remote-p "/method:host:" 'user) "default-user"))
255 (should (string-equal (file-remote-p "/method:host:" 'host) "host"))
256 (should (string-equal (file-remote-p "/method:host:" 'localname) ""))
257 (should (string-equal (file-remote-p "/method:host:" 'hop) nil))
258
259 ;; Expand `tramp-default-host'.
260 (should (string-equal
261 (file-remote-p "/method:user@:")
262 (format "/%s:%s@%s:" "method" "user" "default-host")))
263 (should (string-equal (file-remote-p "/method:user@:" 'method) "method"))
264 (should (string-equal (file-remote-p "/method:user@:" 'user) "user"))
265 (should (string-equal (file-remote-p "/method:user@:" 'host)
266 "default-host"))
267 (should (string-equal (file-remote-p "/method:user@:" 'localname) ""))
268 (should (string-equal (file-remote-p "/method:user@:" 'hop) nil))
269
270 ;; No expansion.
271 (should (string-equal
272 (file-remote-p "/method:user@host:")
273 (format "/%s:%s@%s:" "method" "user" "host")))
274 (should (string-equal
275 (file-remote-p "/method:user@host:" 'method) "method"))
276 (should (string-equal (file-remote-p "/method:user@host:" 'user) "user"))
277 (should (string-equal (file-remote-p "/method:user@host:" 'host) "host"))
278 (should (string-equal (file-remote-p "/method:user@host:" 'localname) ""))
279 (should (string-equal (file-remote-p "/method:user@host:" 'hop) nil))
280
281 ;; No expansion.
282 (should (string-equal
283 (file-remote-p "/method:user@email@host:")
284 (format "/%s:%s@%s:" "method" "user@email" "host")))
285 (should (string-equal
286 (file-remote-p "/method:user@email@host:" 'method) "method"))
287 (should (string-equal
288 (file-remote-p "/method:user@email@host:" 'user) "user@email"))
289 (should (string-equal
290 (file-remote-p "/method:user@email@host:" 'host) "host"))
291 (should (string-equal
292 (file-remote-p "/method:user@email@host:" 'localname) ""))
293 (should (string-equal
294 (file-remote-p "/method:user@email@host:" 'hop) nil))
295
296 ;; Expand `tramp-default-method' and `tramp-default-user'.
297 (should (string-equal
298 (file-remote-p "/host#1234:")
299 (format "/%s:%s@%s:" "default-method" "default-user" "host#1234")))
300 (should (string-equal
301 (file-remote-p "/host#1234:" 'method) "default-method"))
302 (should (string-equal (file-remote-p "/host#1234:" 'user) "default-user"))
303 (should (string-equal (file-remote-p "/host#1234:" 'host) "host#1234"))
304 (should (string-equal (file-remote-p "/host#1234:" 'localname) ""))
305 (should (string-equal (file-remote-p "/host#1234:" 'hop) nil))
306
307 ;; Expand `tramp-default-method'.
308 (should (string-equal
309 (file-remote-p "/user@host#1234:")
310 (format "/%s:%s@%s:" "default-method" "user" "host#1234")))
311 (should (string-equal
312 (file-remote-p "/user@host#1234:" 'method) "default-method"))
313 (should (string-equal (file-remote-p "/user@host#1234:" 'user) "user"))
314 (should (string-equal (file-remote-p "/user@host#1234:" 'host) "host#1234"))
315 (should (string-equal (file-remote-p "/user@host#1234:" 'localname) ""))
316 (should (string-equal (file-remote-p "/user@host#1234:" 'hop) nil))
317
318 ;; Expand `tramp-default-user'.
319 (should (string-equal
320 (file-remote-p "/method:host#1234:")
321 (format "/%s:%s@%s:" "method" "default-user" "host#1234")))
322 (should (string-equal
323 (file-remote-p "/method:host#1234:" 'method) "method"))
324 (should (string-equal
325 (file-remote-p "/method:host#1234:" 'user) "default-user"))
326 (should (string-equal
327 (file-remote-p "/method:host#1234:" 'host) "host#1234"))
328 (should (string-equal (file-remote-p "/method:host#1234:" 'localname) ""))
329 (should (string-equal (file-remote-p "/method:host#1234:" 'hop) nil))
330
331 ;; No expansion.
332 (should (string-equal
333 (file-remote-p "/method:user@host#1234:")
334 (format "/%s:%s@%s:" "method" "user" "host#1234")))
335 (should (string-equal
336 (file-remote-p "/method:user@host#1234:" 'method) "method"))
337 (should (string-equal
338 (file-remote-p "/method:user@host#1234:" 'user) "user"))
339 (should (string-equal
340 (file-remote-p "/method:user@host#1234:" 'host) "host#1234"))
341 (should (string-equal
342 (file-remote-p "/method:user@host#1234:" 'localname) ""))
343 (should (string-equal
344 (file-remote-p "/method:user@host#1234:" 'hop) nil))
345
346 ;; Expand `tramp-default-method' and `tramp-default-user'.
347 (should (string-equal
348 (file-remote-p "/1.2.3.4:")
349 (format "/%s:%s@%s:" "default-method" "default-user" "1.2.3.4")))
350 (should (string-equal (file-remote-p "/1.2.3.4:" 'method) "default-method"))
351 (should (string-equal (file-remote-p "/1.2.3.4:" 'user) "default-user"))
352 (should (string-equal (file-remote-p "/1.2.3.4:" 'host) "1.2.3.4"))
353 (should (string-equal (file-remote-p "/1.2.3.4:" 'localname) ""))
354 (should (string-equal (file-remote-p "/1.2.3.4:" 'hop) nil))
355
356 ;; Expand `tramp-default-method'.
357 (should (string-equal
358 (file-remote-p "/user@1.2.3.4:")
359 (format "/%s:%s@%s:" "default-method" "user" "1.2.3.4")))
360 (should (string-equal
361 (file-remote-p "/user@1.2.3.4:" 'method) "default-method"))
362 (should (string-equal (file-remote-p "/user@1.2.3.4:" 'user) "user"))
363 (should (string-equal (file-remote-p "/user@1.2.3.4:" 'host) "1.2.3.4"))
364 (should (string-equal (file-remote-p "/user@1.2.3.4:" 'localname) ""))
365 (should (string-equal (file-remote-p "/user@1.2.3.4:" 'hop) nil))
366
367 ;; Expand `tramp-default-user'.
368 (should (string-equal
369 (file-remote-p "/method:1.2.3.4:")
370 (format "/%s:%s@%s:" "method" "default-user" "1.2.3.4")))
371 (should (string-equal (file-remote-p "/method:1.2.3.4:" 'method) "method"))
372 (should (string-equal
373 (file-remote-p "/method:1.2.3.4:" 'user) "default-user"))
374 (should (string-equal (file-remote-p "/method:1.2.3.4:" 'host) "1.2.3.4"))
375 (should (string-equal (file-remote-p "/method:1.2.3.4:" 'localname) ""))
376 (should (string-equal (file-remote-p "/method:1.2.3.4:" 'hop) nil))
377
378 ;; No expansion.
379 (should (string-equal
380 (file-remote-p "/method:user@1.2.3.4:")
381 (format "/%s:%s@%s:" "method" "user" "1.2.3.4")))
382 (should (string-equal
383 (file-remote-p "/method:user@1.2.3.4:" 'method) "method"))
384 (should (string-equal (file-remote-p "/method:user@1.2.3.4:" 'user) "user"))
385 (should (string-equal
386 (file-remote-p "/method:user@1.2.3.4:" 'host) "1.2.3.4"))
387 (should (string-equal
388 (file-remote-p "/method:user@1.2.3.4:" 'localname) ""))
389 (should (string-equal
390 (file-remote-p "/method:user@1.2.3.4:" 'hop) nil))
391
392 ;; Expand `tramp-default-method', `tramp-default-user' and
393 ;; `tramp-default-host'.
394 (should (string-equal
395 (file-remote-p "/[]:")
396 (format
397 "/%s:%s@%s:" "default-method" "default-user" "default-host")))
398 (should (string-equal (file-remote-p "/[]:" 'method) "default-method"))
399 (should (string-equal (file-remote-p "/[]:" 'user) "default-user"))
400 (should (string-equal (file-remote-p "/[]:" 'host) "default-host"))
401 (should (string-equal (file-remote-p "/[]:" 'localname) ""))
402 (should (string-equal (file-remote-p "/[]:" 'hop) nil))
403
404 ;; Expand `tramp-default-method' and `tramp-default-user'.
405 (let ((tramp-default-host "::1"))
406 (should (string-equal
407 (file-remote-p "/[]:")
408 (format "/%s:%s@%s:" "default-method" "default-user" "[::1]")))
409 (should (string-equal (file-remote-p "/[]:" 'method) "default-method"))
410 (should (string-equal (file-remote-p "/[]:" 'user) "default-user"))
411 (should (string-equal (file-remote-p "/[]:" 'host) "::1"))
412 (should (string-equal (file-remote-p "/[]:" 'localname) ""))
413 (should (string-equal (file-remote-p "/[]:" 'hop) nil)))
414
415 ;; Expand `tramp-default-method' and `tramp-default-user'.
416 (should (string-equal
417 (file-remote-p "/[::1]:")
418 (format "/%s:%s@%s:" "default-method" "default-user" "[::1]")))
419 (should (string-equal (file-remote-p "/[::1]:" 'method) "default-method"))
420 (should (string-equal (file-remote-p "/[::1]:" 'user) "default-user"))
421 (should (string-equal (file-remote-p "/[::1]:" 'host) "::1"))
422 (should (string-equal (file-remote-p "/[::1]:" 'localname) ""))
423 (should (string-equal (file-remote-p "/[::1]:" 'hop) nil))
424
425 ;; Expand `tramp-default-method'.
426 (should (string-equal
427 (file-remote-p "/user@[::1]:")
428 (format "/%s:%s@%s:" "default-method" "user" "[::1]")))
429 (should (string-equal
430 (file-remote-p "/user@[::1]:" 'method) "default-method"))
431 (should (string-equal (file-remote-p "/user@[::1]:" 'user) "user"))
432 (should (string-equal (file-remote-p "/user@[::1]:" 'host) "::1"))
433 (should (string-equal (file-remote-p "/user@[::1]:" 'localname) ""))
434 (should (string-equal (file-remote-p "/user@[::1]:" 'hop) nil))
435
436 ;; Expand `tramp-default-user'.
437 (should (string-equal
438 (file-remote-p "/method:[::1]:")
439 (format "/%s:%s@%s:" "method" "default-user" "[::1]")))
440 (should (string-equal (file-remote-p "/method:[::1]:" 'method) "method"))
441 (should (string-equal
442 (file-remote-p "/method:[::1]:" 'user) "default-user"))
443 (should (string-equal (file-remote-p "/method:[::1]:" 'host) "::1"))
444 (should (string-equal (file-remote-p "/method:[::1]:" 'localname) ""))
445 (should (string-equal (file-remote-p "/method:[::1]:" 'hop) nil))
446
447 ;; No expansion.
448 (should (string-equal
449 (file-remote-p "/method:user@[::1]:")
450 (format "/%s:%s@%s:" "method" "user" "[::1]")))
451 (should (string-equal
452 (file-remote-p "/method:user@[::1]:" 'method) "method"))
453 (should (string-equal (file-remote-p "/method:user@[::1]:" 'user) "user"))
454 (should (string-equal (file-remote-p "/method:user@[::1]:" 'host) "::1"))
455 (should (string-equal
456 (file-remote-p "/method:user@[::1]:" 'localname) ""))
457 (should (string-equal (file-remote-p "/method:user@[::1]:" 'hop) nil))
458
459 ;; Local file name part.
460 (should (string-equal (file-remote-p "/host:/:" 'localname) "/:"))
461 (should (string-equal (file-remote-p "/method:::" 'localname) ":"))
462 (should (string-equal (file-remote-p "/method:: " 'localname) " "))
463 (should (string-equal (file-remote-p "/method::file" 'localname) "file"))
464 (should (string-equal
465 (file-remote-p "/method::/path/to/file" 'localname)
466 "/path/to/file"))
467
468 ;; Multihop.
469 (should
470 (string-equal
471 (file-remote-p "/method1:user1@host1|method2:user2@host2:/path/to/file")
472 (format "/%s:%s@%s|%s:%s@%s:"
473 "method1" "user1" "host1" "method2" "user2" "host2")))
474 (should
475 (string-equal
476 (file-remote-p
477 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'method)
478 "method2"))
479 (should
480 (string-equal
481 (file-remote-p
482 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'user)
483 "user2"))
484 (should
485 (string-equal
486 (file-remote-p
487 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'host)
488 "host2"))
489 (should
490 (string-equal
491 (file-remote-p
492 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'localname)
493 "/path/to/file"))
494 (should
495 (string-equal
496 (file-remote-p
497 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'hop)
498 (format "%s:%s@%s|"
499 "method1" "user1" "host1")))
500
501 (should
502 (string-equal
503 (file-remote-p
504 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file")
505 (format "/%s:%s@%s|%s:%s@%s|%s:%s@%s:"
506 "method1" "user1" "host1"
507 "method2" "user2" "host2"
508 "method3" "user3" "host3")))
509 (should
510 (string-equal
511 (file-remote-p
512 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
513 'method)
514 "method3"))
515 (should
516 (string-equal
517 (file-remote-p
518 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
519 'user)
520 "user3"))
521 (should
522 (string-equal
523 (file-remote-p
524 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
525 'host)
526 "host3"))
527 (should
528 (string-equal
529 (file-remote-p
530 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
531 'localname)
532 "/path/to/file"))
533 (should
534 (string-equal
535 (file-remote-p
536 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
537 'hop)
538 (format "%s:%s@%s|%s:%s@%s|"
539 "method1" "user1" "host1" "method2" "user2" "host2")))))
540
541 (ert-deftest tramp-test03-file-name-defaults ()
542 "Check default values for some methods."
543 ;; Default values in tramp-adb.el.
544 (should (string-equal (file-remote-p "/adb::" 'host) ""))
545 ;; Default values in tramp-ftp.el.
546 (should (string-equal (file-remote-p "/ftp.host:" 'method) "ftp"))
547 (dolist (u '("ftp" "anonymous"))
548 (should (string-equal (file-remote-p (format "/%s@:" u) 'method) "ftp")))
549 ;; Default values in tramp-gvfs.el.
550 (when (and (load "tramp-gvfs" 'noerror 'nomessage)
551 (symbol-value 'tramp-gvfs-enabled))
552 (should (string-equal (file-remote-p "/synce::" 'user) nil)))
553 ;; Default values in tramp-gw.el.
554 (dolist (m '("tunnel" "socks"))
555 (should
556 (string-equal (file-remote-p (format "/%s::" m) 'user) (user-login-name))))
557 ;; Default values in tramp-sh.el.
558 (dolist (h `("127.0.0.1" "[::1]" "localhost" "localhost6" ,(system-name)))
559 (should (string-equal (file-remote-p (format "/root@%s:" h) 'method) "su")))
560 (dolist (m '("su" "sudo" "ksu"))
561 (should (string-equal (file-remote-p (format "/%s::" m) 'user) "root")))
562 (dolist (m '("rcp" "remcp" "rsh" "telnet" "krlogin" "fcp"))
563 (should
564 (string-equal (file-remote-p (format "/%s::" m) 'user) (user-login-name))))
565 ;; Default values in tramp-smb.el.
566 (should (string-equal (file-remote-p "/user%domain@host:" 'method) "smb"))
567 (should (string-equal (file-remote-p "/smb::" 'user) nil)))
568
569 (ert-deftest tramp-test04-substitute-in-file-name ()
570 "Check `substitute-in-file-name'."
571 (should (string-equal (substitute-in-file-name "/method:host://foo") "/foo"))
572 (should
573 (string-equal
574 (substitute-in-file-name "/method:host:/path//foo") "/method:host:/foo"))
575 (should
576 (string-equal (substitute-in-file-name "/method:host:/path///foo") "/foo"))
577 (should
578 (string-equal
579 (substitute-in-file-name "/method:host:/path/~/foo") "/method:host:~/foo"))
580 (should
581 (string-equal (substitute-in-file-name "/method:host:/path//~/foo") "~/foo"))
582 (let (process-environment)
583 (should
584 (string-equal
585 (substitute-in-file-name "/method:host:/path/$FOO")
586 "/method:host:/path/$FOO"))
587 (setenv "FOO" "bla")
588 (should
589 (string-equal
590 (substitute-in-file-name "/method:host:/path/$FOO")
591 "/method:host:/path/bla"))
592 (should
593 (string-equal
594 (substitute-in-file-name "/method:host:/path/$$FOO")
595 "/method:host:/path/$FOO"))))
596
597 (ert-deftest tramp-test05-expand-file-name ()
598 "Check `expand-file-name'."
599 (should
600 (string-equal
601 (expand-file-name "/method:host:/path/./file") "/method:host:/path/file"))
602 (should
603 (string-equal
604 (expand-file-name "/method:host:/path/../file") "/method:host:/file")))
605
606 (ert-deftest tramp-test06-directory-file-name ()
607 "Check `directory-file-name'.
608 This checks also `file-name-as-directory', `file-name-directory',
609 `file-name-nondirectory' and `unhandled-file-name-directory'."
610 (should
611 (string-equal
612 (directory-file-name "/method:host:/path/to/file")
613 "/method:host:/path/to/file"))
614 (should
615 (string-equal
616 (directory-file-name "/method:host:/path/to/file/")
617 "/method:host:/path/to/file"))
618 (should
619 (string-equal
620 (file-name-as-directory "/method:host:/path/to/file")
621 "/method:host:/path/to/file/"))
622 (should
623 (string-equal
624 (file-name-as-directory "/method:host:/path/to/file/")
625 "/method:host:/path/to/file/"))
626 (should
627 (string-equal
628 (file-name-directory "/method:host:/path/to/file")
629 "/method:host:/path/to/"))
630 (should
631 (string-equal
632 (file-name-directory "/method:host:/path/to/file/")
633 "/method:host:/path/to/file/"))
634 (should
635 (string-equal (file-name-nondirectory "/method:host:/path/to/file") "file"))
636 (should
637 (string-equal (file-name-nondirectory "/method:host:/path/to/file/") ""))
638 (should-not
639 (unhandled-file-name-directory "/method:host:/path/to/file")))
640
641 (ert-deftest tramp-test07-file-exists-p ()
642 "Check `file-exist-p', `write-region' and `delete-file'."
643 (skip-unless (tramp--test-enabled))
644
645 (let ((tmp-name (tramp--test-make-temp-name)))
646 (should-not (file-exists-p tmp-name))
647 (write-region "foo" nil tmp-name)
648 (should (file-exists-p tmp-name))
649 (delete-file tmp-name)
650 (should-not (file-exists-p tmp-name))))
651
652 (ert-deftest tramp-test08-file-local-copy ()
653 "Check `file-local-copy'."
654 (skip-unless (tramp--test-enabled))
655
656 (let ((tmp-name1 (tramp--test-make-temp-name))
657 tmp-name2)
658 (unwind-protect
659 (progn
660 (write-region "foo" nil tmp-name1)
661 (should (setq tmp-name2 (file-local-copy tmp-name1)))
662 (with-temp-buffer
663 (insert-file-contents tmp-name2)
664 (should (string-equal (buffer-string) "foo")))
665 ;; Check also that a file transfer with compression works.
666 (let ((default-directory tramp-test-temporary-file-directory)
667 (tramp-copy-size-limit 4)
668 (tramp-inline-compress-start-size 2))
669 (delete-file tmp-name2)
670 (should (setq tmp-name2 (file-local-copy tmp-name1)))))
671
672 ;; Cleanup.
673 (ignore-errors
674 (delete-file tmp-name1)
675 (delete-file tmp-name2)))))
676
677 (ert-deftest tramp-test09-insert-file-contents ()
678 "Check `insert-file-contents'."
679 (skip-unless (tramp--test-enabled))
680
681 (let ((tmp-name (tramp--test-make-temp-name)))
682 (unwind-protect
683 (progn
684 (write-region "foo" nil tmp-name)
685 (with-temp-buffer
686 (insert-file-contents tmp-name)
687 (should (string-equal (buffer-string) "foo"))
688 (insert-file-contents tmp-name)
689 (should (string-equal (buffer-string) "foofoo"))
690 ;; Insert partly.
691 (insert-file-contents tmp-name nil 1 3)
692 (should (string-equal (buffer-string) "oofoofoo"))
693 ;; Replace.
694 (insert-file-contents tmp-name nil nil nil 'replace)
695 (should (string-equal (buffer-string) "foo"))))
696
697 ;; Cleanup.
698 (ignore-errors (delete-file tmp-name)))))
699
700 (ert-deftest tramp-test10-write-region ()
701 "Check `write-region'."
702 (skip-unless (tramp--test-enabled))
703
704 (let ((tmp-name (tramp--test-make-temp-name)))
705 (unwind-protect
706 (progn
707 (with-temp-buffer
708 (insert "foo")
709 (write-region nil nil tmp-name))
710 (with-temp-buffer
711 (insert-file-contents tmp-name)
712 (should (string-equal (buffer-string) "foo")))
713 ;; Append.
714 (with-temp-buffer
715 (insert "bla")
716 (write-region nil nil tmp-name 'append))
717 (with-temp-buffer
718 (insert-file-contents tmp-name)
719 (should (string-equal (buffer-string) "foobla")))
720 ;; Write string.
721 (write-region "foo" nil tmp-name)
722 (with-temp-buffer
723 (insert-file-contents tmp-name)
724 (should (string-equal (buffer-string) "foo")))
725 ;; Write partly.
726 (with-temp-buffer
727 (insert "123456789")
728 (write-region 3 5 tmp-name))
729 (with-temp-buffer
730 (insert-file-contents tmp-name)
731 (should (string-equal (buffer-string) "34"))))
732
733 ;; Cleanup.
734 (ignore-errors (delete-file tmp-name)))))
735
736 (ert-deftest tramp-test11-copy-file ()
737 "Check `copy-file'."
738 (skip-unless (tramp--test-enabled))
739
740 (let ((tmp-name1 (tramp--test-make-temp-name))
741 (tmp-name2 (tramp--test-make-temp-name))
742 (tmp-name3 (tramp--test-make-temp-name))
743 (tmp-name4 (tramp--test-make-temp-name 'local))
744 (tmp-name5 (tramp--test-make-temp-name 'local)))
745
746 ;; Copy on remote side.
747 (unwind-protect
748 (progn
749 (write-region "foo" nil tmp-name1)
750 (copy-file tmp-name1 tmp-name2)
751 (should (file-exists-p tmp-name2))
752 (with-temp-buffer
753 (insert-file-contents tmp-name2)
754 (should (string-equal (buffer-string) "foo")))
755 (should-error (copy-file tmp-name1 tmp-name2))
756 (copy-file tmp-name1 tmp-name2 'ok)
757 (make-directory tmp-name3)
758 (copy-file tmp-name1 tmp-name3)
759 (should
760 (file-exists-p
761 (expand-file-name (file-name-nondirectory tmp-name1) tmp-name3))))
762
763 ;; Cleanup.
764 (ignore-errors (delete-file tmp-name1))
765 (ignore-errors (delete-file tmp-name2))
766 (ignore-errors (delete-directory tmp-name3 'recursive)))
767
768 ;; Copy from remote side to local side.
769 (unwind-protect
770 (progn
771 (write-region "foo" nil tmp-name1)
772 (copy-file tmp-name1 tmp-name4)
773 (should (file-exists-p tmp-name4))
774 (with-temp-buffer
775 (insert-file-contents tmp-name4)
776 (should (string-equal (buffer-string) "foo")))
777 (should-error (copy-file tmp-name1 tmp-name4))
778 (copy-file tmp-name1 tmp-name4 'ok)
779 (make-directory tmp-name5)
780 (copy-file tmp-name1 tmp-name5)
781 (should
782 (file-exists-p
783 (expand-file-name (file-name-nondirectory tmp-name1) tmp-name5))))
784
785 ;; Cleanup.
786 (ignore-errors (delete-file tmp-name1))
787 (ignore-errors (delete-file tmp-name4))
788 (ignore-errors (delete-directory tmp-name5 'recursive)))
789
790 ;; Copy from local side to remote side.
791 (unwind-protect
792 (progn
793 (write-region "foo" nil tmp-name4 nil 'nomessage)
794 (copy-file tmp-name4 tmp-name1)
795 (should (file-exists-p tmp-name1))
796 (with-temp-buffer
797 (insert-file-contents tmp-name1)
798 (should (string-equal (buffer-string) "foo")))
799 (should-error (copy-file tmp-name4 tmp-name1))
800 (copy-file tmp-name4 tmp-name1 'ok)
801 (make-directory tmp-name3)
802 (copy-file tmp-name4 tmp-name3)
803 (should
804 (file-exists-p
805 (expand-file-name (file-name-nondirectory tmp-name4) tmp-name3))))
806
807 ;; Cleanup.
808 (ignore-errors (delete-file tmp-name1))
809 (ignore-errors (delete-file tmp-name4))
810 (ignore-errors (delete-directory tmp-name3 'recursive)))))
811
812 (ert-deftest tramp-test12-rename-file ()
813 "Check `rename-file'."
814 (skip-unless (tramp--test-enabled))
815
816 (let ((tmp-name1 (tramp--test-make-temp-name))
817 (tmp-name2 (tramp--test-make-temp-name))
818 (tmp-name3 (tramp--test-make-temp-name))
819 (tmp-name4 (tramp--test-make-temp-name 'local))
820 (tmp-name5 (tramp--test-make-temp-name 'local)))
821
822 ;; Rename on remote side.
823 (unwind-protect
824 (progn
825 (write-region "foo" nil tmp-name1)
826 (rename-file tmp-name1 tmp-name2)
827 (should-not (file-exists-p tmp-name1))
828 (should (file-exists-p tmp-name2))
829 (with-temp-buffer
830 (insert-file-contents tmp-name2)
831 (should (string-equal (buffer-string) "foo")))
832 (write-region "foo" nil tmp-name1)
833 (should-error (rename-file tmp-name1 tmp-name2))
834 (rename-file tmp-name1 tmp-name2 'ok)
835 (should-not (file-exists-p tmp-name1))
836 (write-region "foo" nil tmp-name1)
837 (make-directory tmp-name3)
838 (rename-file tmp-name1 tmp-name3)
839 (should-not (file-exists-p tmp-name1))
840 (should
841 (file-exists-p
842 (expand-file-name (file-name-nondirectory tmp-name1) tmp-name3))))
843
844 ;; Cleanup.
845 (ignore-errors (delete-file tmp-name1))
846 (ignore-errors (delete-file tmp-name2))
847 (ignore-errors (delete-directory tmp-name3 'recursive)))
848
849 ;; Rename from remote side to local side.
850 (unwind-protect
851 (progn
852 (write-region "foo" nil tmp-name1)
853 (rename-file tmp-name1 tmp-name4)
854 (should-not (file-exists-p tmp-name1))
855 (should (file-exists-p tmp-name4))
856 (with-temp-buffer
857 (insert-file-contents tmp-name4)
858 (should (string-equal (buffer-string) "foo")))
859 (write-region "foo" nil tmp-name1)
860 (should-error (rename-file tmp-name1 tmp-name4))
861 (rename-file tmp-name1 tmp-name4 'ok)
862 (should-not (file-exists-p tmp-name1))
863 (write-region "foo" nil tmp-name1)
864 (make-directory tmp-name5)
865 (rename-file tmp-name1 tmp-name5)
866 (should-not (file-exists-p tmp-name1))
867 (should
868 (file-exists-p
869 (expand-file-name (file-name-nondirectory tmp-name1) tmp-name5))))
870
871 ;; Cleanup.
872 (ignore-errors (delete-file tmp-name1))
873 (ignore-errors (delete-file tmp-name4))
874 (ignore-errors (delete-directory tmp-name5 'recursive)))
875
876 ;; Rename from local side to remote side.
877 (unwind-protect
878 (progn
879 (write-region "foo" nil tmp-name4 nil 'nomessage)
880 (rename-file tmp-name4 tmp-name1)
881 (should-not (file-exists-p tmp-name4))
882 (should (file-exists-p tmp-name1))
883 (with-temp-buffer
884 (insert-file-contents tmp-name1)
885 (should (string-equal (buffer-string) "foo")))
886 (write-region "foo" nil tmp-name4 nil 'nomessage)
887 (should-error (rename-file tmp-name4 tmp-name1))
888 (rename-file tmp-name4 tmp-name1 'ok)
889 (should-not (file-exists-p tmp-name4))
890 (write-region "foo" nil tmp-name4 nil 'nomessage)
891 (make-directory tmp-name3)
892 (rename-file tmp-name4 tmp-name3)
893 (should-not (file-exists-p tmp-name4))
894 (should
895 (file-exists-p
896 (expand-file-name (file-name-nondirectory tmp-name4) tmp-name3))))
897
898 ;; Cleanup.
899 (ignore-errors (delete-file tmp-name1))
900 (ignore-errors (delete-file tmp-name4))
901 (ignore-errors (delete-directory tmp-name3 'recursive)))))
902
903 (ert-deftest tramp-test13-make-directory ()
904 "Check `make-directory'.
905 This tests also `file-directory-p' and `file-accessible-directory-p'."
906 (skip-unless (tramp--test-enabled))
907
908 (let* ((tmp-name1 (tramp--test-make-temp-name))
909 (tmp-name2 (expand-file-name "foo/bar" tmp-name1)))
910 (unwind-protect
911 (progn
912 (make-directory tmp-name1)
913 (should (file-directory-p tmp-name1))
914 (should (file-accessible-directory-p tmp-name1))
915 (should-error (make-directory tmp-name2) :type 'file-error)
916 (make-directory tmp-name2 'parents)
917 (should (file-directory-p tmp-name2))
918 (should (file-accessible-directory-p tmp-name2)))
919
920 ;; Cleanup.
921 (ignore-errors (delete-directory tmp-name1 'recursive)))))
922
923 (ert-deftest tramp-test14-delete-directory ()
924 "Check `delete-directory'."
925 (skip-unless (tramp--test-enabled))
926
927 (let ((tmp-name (tramp--test-make-temp-name)))
928 ;; Delete empty directory.
929 (make-directory tmp-name)
930 (should (file-directory-p tmp-name))
931 (delete-directory tmp-name)
932 (should-not (file-directory-p tmp-name))
933 ;; Delete non-empty directory.
934 (make-directory tmp-name)
935 (write-region "foo" nil (expand-file-name "bla" tmp-name))
936 (should-error (delete-directory tmp-name) :type 'file-error)
937 (delete-directory tmp-name 'recursive)
938 (should-not (file-directory-p tmp-name))))
939
940 (ert-deftest tramp-test15-copy-directory ()
941 "Check `copy-directory'."
942 (skip-unless (tramp--test-enabled))
943 (skip-unless
944 (not
945 (eq
946 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
947 'tramp-smb-file-name-handler)))
948
949 (let* ((tmp-name1 (tramp--test-make-temp-name))
950 (tmp-name2 (tramp--test-make-temp-name))
951 (tmp-name3 (expand-file-name
952 (file-name-nondirectory tmp-name1) tmp-name2))
953 (tmp-name4 (expand-file-name "foo" tmp-name1))
954 (tmp-name5 (expand-file-name "foo" tmp-name2))
955 (tmp-name6 (expand-file-name "foo" tmp-name3)))
956 (unwind-protect
957 (progn
958 ;; Copy empty directory.
959 (make-directory tmp-name1)
960 (write-region "foo" nil tmp-name4)
961 (should (file-directory-p tmp-name1))
962 (should (file-exists-p tmp-name4))
963 (copy-directory tmp-name1 tmp-name2)
964 (should (file-directory-p tmp-name2))
965 (should (file-exists-p tmp-name5))
966 ;; Target directory does exist already.
967 (copy-directory tmp-name1 tmp-name2)
968 (should (file-directory-p tmp-name3))
969 (should (file-exists-p tmp-name6)))
970
971 ;; Cleanup.
972 (ignore-errors
973 (delete-directory tmp-name1 'recursive)
974 (delete-directory tmp-name2 'recursive)))))
975
976 (ert-deftest tramp-test16-directory-files ()
977 "Check `directory-files'."
978 (skip-unless (tramp--test-enabled))
979
980 (let* ((tmp-name1 (tramp--test-make-temp-name))
981 (tmp-name2 (expand-file-name "bla" tmp-name1))
982 (tmp-name3 (expand-file-name "foo" tmp-name1)))
983 (unwind-protect
984 (progn
985 (make-directory tmp-name1)
986 (write-region "foo" nil tmp-name2)
987 (write-region "bla" nil tmp-name3)
988 (should (file-directory-p tmp-name1))
989 (should (file-exists-p tmp-name2))
990 (should (file-exists-p tmp-name3))
991 (should (equal (directory-files tmp-name1) '("." ".." "bla" "foo")))
992 (should (equal (directory-files tmp-name1 'full)
993 `(,(concat tmp-name1 "/.")
994 ,(concat tmp-name1 "/..")
995 ,tmp-name2 ,tmp-name3)))
996 (should (equal (directory-files
997 tmp-name1 nil directory-files-no-dot-files-regexp)
998 '("bla" "foo")))
999 (should (equal (directory-files
1000 tmp-name1 'full directory-files-no-dot-files-regexp)
1001 `(,tmp-name2 ,tmp-name3))))
1002
1003 ;; Cleanup.
1004 (ignore-errors (delete-directory tmp-name1 'recursive)))))
1005
1006 (ert-deftest tramp-test17-insert-directory ()
1007 "Check `insert-directory'."
1008 (skip-unless (tramp--test-enabled))
1009
1010 (let* ((tmp-name1 (tramp--test-make-temp-name))
1011 (tmp-name2 (expand-file-name "foo" tmp-name1))
1012 ;; We test for the summary line. Keyword "total" could be localized.
1013 (process-environment
1014 (append '("LANG=C" "LANGUAGE=C" "LC_ALL=C") process-environment)))
1015 (unwind-protect
1016 (progn
1017 (make-directory tmp-name1)
1018 (write-region "foo" nil tmp-name2)
1019 (should (file-directory-p tmp-name1))
1020 (should (file-exists-p tmp-name2))
1021 (with-temp-buffer
1022 (insert-directory tmp-name1 nil)
1023 (goto-char (point-min))
1024 (should (looking-at-p (regexp-quote tmp-name1))))
1025 (with-temp-buffer
1026 (insert-directory tmp-name1 "-al")
1027 (goto-char (point-min))
1028 (should (looking-at-p (format "^.+ %s$" (regexp-quote tmp-name1)))))
1029 (with-temp-buffer
1030 (insert-directory (file-name-as-directory tmp-name1) "-al")
1031 (goto-char (point-min))
1032 (should
1033 (looking-at-p (format "^.+ %s/$" (regexp-quote tmp-name1)))))
1034 (with-temp-buffer
1035 (insert-directory
1036 (file-name-as-directory tmp-name1) "-al" nil 'full-directory-p)
1037 (goto-char (point-min))
1038 (should
1039 (looking-at-p
1040 (concat
1041 ;; There might be a summary line.
1042 "\\(total.+[[:digit:]]+\n\\)?"
1043 ;; We don't know in which order ".", ".." and "foo" appear.
1044 "\\(.+ \\(\\.?\\.\\|foo\\)\n\\)\\{3\\}")))))
1045
1046 ;; Cleanup.
1047 (ignore-errors (delete-directory tmp-name1 'recursive)))))
1048
1049 (ert-deftest tramp-test18-file-attributes ()
1050 "Check `file-attributes'.
1051 This tests also `file-readable-p' and `file-regular-p'."
1052 (skip-unless (tramp--test-enabled))
1053
1054 ;; We must use `file-truename' for the temporary directory, because
1055 ;; it could be located on a symlinked directory. This would let the
1056 ;; test fail.
1057 (let* ((tramp-test-temporary-file-directory
1058 (file-truename tramp-test-temporary-file-directory))
1059 (tmp-name1 (tramp--test-make-temp-name))
1060 (tmp-name2 (tramp--test-make-temp-name))
1061 ;; File name with "//".
1062 (tmp-name3
1063 (format
1064 "%s%s"
1065 (file-remote-p tmp-name1)
1066 (replace-regexp-in-string
1067 "/" "//" (file-remote-p tmp-name1 'localname))))
1068 attr)
1069 (unwind-protect
1070 (progn
1071 (write-region "foo" nil tmp-name1)
1072 (should (file-exists-p tmp-name1))
1073 (setq attr (file-attributes tmp-name1))
1074 (should (consp attr))
1075 (should (file-exists-p tmp-name1))
1076 (should (file-readable-p tmp-name1))
1077 (should (file-regular-p tmp-name1))
1078 ;; We do not test inodes and device numbers.
1079 (should (null (car attr)))
1080 (should (numberp (nth 1 attr))) ;; Link.
1081 (should (numberp (nth 2 attr))) ;; Uid.
1082 (should (numberp (nth 3 attr))) ;; Gid.
1083 ;; Last access time.
1084 (should (stringp (current-time-string (nth 4 attr))))
1085 ;; Last modification time.
1086 (should (stringp (current-time-string (nth 5 attr))))
1087 ;; Last status change time.
1088 (should (stringp (current-time-string (nth 6 attr))))
1089 (should (numberp (nth 7 attr))) ;; Size.
1090 (should (stringp (nth 8 attr))) ;; Modes.
1091
1092 (setq attr (file-attributes tmp-name1 'string))
1093 (should (stringp (nth 2 attr))) ;; Uid.
1094 (should (stringp (nth 3 attr))) ;; Gid.
1095
1096 (condition-case err
1097 (progn
1098 (make-symbolic-link tmp-name1 tmp-name2)
1099 (should (file-exists-p tmp-name2))
1100 (should (file-symlink-p tmp-name2))
1101 (setq attr (file-attributes tmp-name2))
1102 (should (string-equal
1103 (car attr)
1104 (file-remote-p (file-truename tmp-name1) 'localname)))
1105 (delete-file tmp-name2))
1106 (file-error
1107 (should (string-equal (error-message-string err)
1108 "make-symbolic-link not supported"))))
1109
1110 ;; Check, that "//" in symlinks are handled properly.
1111 (with-temp-buffer
1112 (let ((default-directory tramp-test-temporary-file-directory))
1113 (shell-command
1114 (format
1115 "ln -s %s %s"
1116 (tramp-file-name-localname (tramp-dissect-file-name tmp-name3))
1117 (tramp-file-name-localname (tramp-dissect-file-name tmp-name2)))
1118 t)))
1119 (when (file-symlink-p tmp-name2)
1120 (setq attr (file-attributes tmp-name2))
1121 (should
1122 (string-equal
1123 (car attr)
1124 (tramp-file-name-localname (tramp-dissect-file-name tmp-name3))))
1125 (delete-file tmp-name2))
1126
1127 (delete-file tmp-name1)
1128 (make-directory tmp-name1)
1129 (should (file-exists-p tmp-name1))
1130 (should (file-readable-p tmp-name1))
1131 (should-not (file-regular-p tmp-name1))
1132 (setq attr (file-attributes tmp-name1))
1133 (should (eq (car attr) t)))
1134
1135 ;; Cleanup.
1136 (ignore-errors (delete-directory tmp-name1))
1137 (ignore-errors (delete-file tmp-name1))
1138 (ignore-errors (delete-file tmp-name2)))))
1139
1140 (ert-deftest tramp-test19-directory-files-and-attributes ()
1141 "Check `directory-files-and-attributes'."
1142 (skip-unless (tramp--test-enabled))
1143
1144 ;; `directory-files-and-attributes' contains also values for "../".
1145 ;; Ensure that this doesn't change during tests, for
1146 ;; example due to handling temporary files.
1147 (let* ((tmp-name1 (tramp--test-make-temp-name))
1148 (tmp-name2 (expand-file-name "bla" tmp-name1))
1149 attr)
1150 (unwind-protect
1151 (progn
1152 (make-directory tmp-name1)
1153 (should (file-directory-p tmp-name1))
1154 (make-directory tmp-name2)
1155 (should (file-directory-p tmp-name2))
1156 (write-region "foo" nil (expand-file-name "foo" tmp-name2))
1157 (write-region "bar" nil (expand-file-name "bar" tmp-name2))
1158 (write-region "boz" nil (expand-file-name "boz" tmp-name2))
1159 (setq attr (directory-files-and-attributes tmp-name2))
1160 (should (consp attr))
1161 ;; Dumb remote shells without perl(1) or stat(1) are not
1162 ;; able to return the date correctly. They say "don't know".
1163 (dolist (elt attr)
1164 (unless
1165 (equal
1166 (nth 5
1167 (file-attributes (expand-file-name (car elt) tmp-name2)))
1168 '(0 0))
1169 (should
1170 (equal (file-attributes (expand-file-name (car elt) tmp-name2))
1171 (cdr elt)))))
1172 (setq attr (directory-files-and-attributes tmp-name2 'full))
1173 (dolist (elt attr)
1174 (unless (equal (nth 5 (file-attributes (car elt))) '(0 0))
1175 (should
1176 (equal (file-attributes (car elt)) (cdr elt)))))
1177 (setq attr (directory-files-and-attributes tmp-name2 nil "^b"))
1178 (should (equal (mapcar 'car attr) '("bar" "boz"))))
1179
1180 ;; Cleanup.
1181 (ignore-errors (delete-directory tmp-name1 'recursive)))))
1182
1183 (ert-deftest tramp-test20-file-modes ()
1184 "Check `file-modes'.
1185 This tests also `file-executable-p', `file-writable-p' and `set-file-modes'."
1186 (skip-unless (tramp--test-enabled))
1187 (skip-unless
1188 (not
1189 (memq
1190 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1191 '(tramp-adb-file-name-handler
1192 tramp-gvfs-file-name-handler
1193 tramp-smb-file-name-handler))))
1194
1195 (let ((tmp-name (tramp--test-make-temp-name)))
1196 (unwind-protect
1197 (progn
1198 (write-region "foo" nil tmp-name)
1199 (should (file-exists-p tmp-name))
1200 (set-file-modes tmp-name #o777)
1201 (should (= (file-modes tmp-name) #o777))
1202 (should (file-executable-p tmp-name))
1203 (should (file-writable-p tmp-name))
1204 (set-file-modes tmp-name #o444)
1205 (should (= (file-modes tmp-name) #o444))
1206 (should-not (file-executable-p tmp-name))
1207 ;; A file is always writable for user "root".
1208 (unless (zerop (nth 2 (file-attributes tmp-name)))
1209 (should-not (file-writable-p tmp-name))))
1210
1211 ;; Cleanup.
1212 (ignore-errors (delete-file tmp-name)))))
1213
1214 (ert-deftest tramp-test21-file-links ()
1215 "Check `file-symlink-p'.
1216 This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
1217 (skip-unless (tramp--test-enabled))
1218
1219 ;; We must use `file-truename' for the temporary directory, because
1220 ;; it could be located on a symlinked directory. This would let the
1221 ;; test fail.
1222 (let* ((tramp-test-temporary-file-directory
1223 (file-truename tramp-test-temporary-file-directory))
1224 (tmp-name1 (tramp--test-make-temp-name))
1225 (tmp-name2 (tramp--test-make-temp-name))
1226 (tmp-name3 (tramp--test-make-temp-name 'local)))
1227
1228 ;; Check `make-symbolic-link'.
1229 (unwind-protect
1230 (progn
1231 (write-region "foo" nil tmp-name1)
1232 (should (file-exists-p tmp-name1))
1233 ;; Method "smb" supports `make-symbolic-link' only if the
1234 ;; remote host has CIFS capabilities. tramp-adb.el and
1235 ;; tramp-gvfs.el do not support symbolic links at all.
1236 (condition-case err
1237 (make-symbolic-link tmp-name1 tmp-name2)
1238 (file-error
1239 (skip-unless
1240 (not (string-equal (error-message-string err)
1241 "make-symbolic-link not supported")))))
1242 (should (file-symlink-p tmp-name2))
1243 (should-error (make-symbolic-link tmp-name1 tmp-name2))
1244 (make-symbolic-link tmp-name1 tmp-name2 'ok-if-already-exists)
1245 (should (file-symlink-p tmp-name2))
1246 ;; `tmp-name3' is a local file name.
1247 (should-error (make-symbolic-link tmp-name1 tmp-name3)))
1248
1249 ;; Cleanup.
1250 (ignore-errors
1251 (delete-file tmp-name1)
1252 (delete-file tmp-name2)))
1253
1254 ;; Check `add-name-to-file'.
1255 (unwind-protect
1256 (progn
1257 (write-region "foo" nil tmp-name1)
1258 (should (file-exists-p tmp-name1))
1259 (add-name-to-file tmp-name1 tmp-name2)
1260 (should-not (file-symlink-p tmp-name2))
1261 (should-error (add-name-to-file tmp-name1 tmp-name2))
1262 (add-name-to-file tmp-name1 tmp-name2 'ok-if-already-exists)
1263 (should-not (file-symlink-p tmp-name2))
1264 ;; `tmp-name3' is a local file name.
1265 (should-error (add-name-to-file tmp-name1 tmp-name3)))
1266
1267 ;; Cleanup.
1268 (ignore-errors
1269 (delete-file tmp-name1)
1270 (delete-file tmp-name2)))
1271
1272 ;; Check `file-truename'.
1273 (unwind-protect
1274 (progn
1275 (write-region "foo" nil tmp-name1)
1276 (should (file-exists-p tmp-name1))
1277 (make-symbolic-link tmp-name1 tmp-name2)
1278 (should (file-symlink-p tmp-name2))
1279 (should-not (string-equal tmp-name2 (file-truename tmp-name2)))
1280 (should
1281 (string-equal (file-truename tmp-name1) (file-truename tmp-name2)))
1282 (should (file-equal-p tmp-name1 tmp-name2)))
1283 (ignore-errors
1284 (delete-file tmp-name1)
1285 (delete-file tmp-name2)))
1286
1287 ;; `file-truename' shall preserve trailing link of directories.
1288 (unless (file-symlink-p tramp-test-temporary-file-directory)
1289 (let* ((dir1 (directory-file-name tramp-test-temporary-file-directory))
1290 (dir2 (file-name-as-directory dir1)))
1291 (should (string-equal (file-truename dir1) (expand-file-name dir1)))
1292 (should (string-equal (file-truename dir2) (expand-file-name dir2)))))))
1293
1294 (ert-deftest tramp-test22-file-times ()
1295 "Check `set-file-times' and `file-newer-than-file-p'."
1296 (skip-unless (tramp--test-enabled))
1297 (skip-unless
1298 (not
1299 (memq
1300 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1301 '(tramp-gvfs-file-name-handler tramp-smb-file-name-handler))))
1302
1303 (let ((tmp-name1 (tramp--test-make-temp-name))
1304 (tmp-name2 (tramp--test-make-temp-name))
1305 (tmp-name3 (tramp--test-make-temp-name)))
1306 (unwind-protect
1307 (progn
1308 (write-region "foo" nil tmp-name1)
1309 (should (file-exists-p tmp-name1))
1310 (should (consp (nth 5 (file-attributes tmp-name1))))
1311 ;; '(0 0) means don't know, and will be replaced by
1312 ;; `current-time'. Therefore, we use '(0 1).
1313 ;; We skip the test, if the remote handler is not able to
1314 ;; set the correct time.
1315 (skip-unless (set-file-times tmp-name1 '(0 1)))
1316 ;; Dumb remote shells without perl(1) or stat(1) are not
1317 ;; able to return the date correctly. They say "don't know".
1318 (unless (equal (nth 5 (file-attributes tmp-name1)) '(0 0))
1319 (should (equal (nth 5 (file-attributes tmp-name1)) '(0 1)))
1320 (write-region "bla" nil tmp-name2)
1321 (should (file-exists-p tmp-name2))
1322 (should (file-newer-than-file-p tmp-name2 tmp-name1))
1323 ;; `tmp-name3' does not exist.
1324 (should (file-newer-than-file-p tmp-name2 tmp-name3))
1325 (should-not (file-newer-than-file-p tmp-name3 tmp-name1))))
1326
1327 ;; Cleanup.
1328 (ignore-errors
1329 (delete-file tmp-name1)
1330 (delete-file tmp-name2)))))
1331
1332 (ert-deftest tramp-test23-visited-file-modtime ()
1333 "Check `set-visited-file-modtime' and `verify-visited-file-modtime'."
1334 (skip-unless (tramp--test-enabled))
1335
1336 (let ((tmp-name (tramp--test-make-temp-name)))
1337 (unwind-protect
1338 (progn
1339 (write-region "foo" nil tmp-name)
1340 (should (file-exists-p tmp-name))
1341 (with-temp-buffer
1342 (insert-file-contents tmp-name)
1343 (should (verify-visited-file-modtime))
1344 (set-visited-file-modtime '(0 1))
1345 (should (verify-visited-file-modtime))
1346 (should (equal (visited-file-modtime) '(0 1 0 0)))))
1347
1348 ;; Cleanup.
1349 (ignore-errors (delete-file tmp-name)))))
1350
1351 (ert-deftest tramp-test24-file-name-completion ()
1352 "Check `file-name-completion' and `file-name-all-completions'."
1353 (skip-unless (tramp--test-enabled))
1354
1355 (let ((tmp-name (tramp--test-make-temp-name)))
1356 (unwind-protect
1357 (progn
1358 (make-directory tmp-name)
1359 (should (file-directory-p tmp-name))
1360 (write-region "foo" nil (expand-file-name "foo" tmp-name))
1361 (write-region "bar" nil (expand-file-name "bold" tmp-name))
1362 (make-directory (expand-file-name "boz" tmp-name))
1363 (should (equal (file-name-completion "fo" tmp-name) "foo"))
1364 (should (equal (file-name-completion "b" tmp-name) "bo"))
1365 (should
1366 (equal (file-name-completion "b" tmp-name 'file-directory-p) "boz/"))
1367 (should (equal (file-name-all-completions "fo" tmp-name) '("foo")))
1368 (should
1369 (equal (sort (file-name-all-completions "b" tmp-name) 'string-lessp)
1370 '("bold" "boz/"))))
1371
1372 ;; Cleanup.
1373 (ignore-errors (delete-directory tmp-name 'recursive)))))
1374
1375 (ert-deftest tramp-test25-load ()
1376 "Check `load'."
1377 (skip-unless (tramp--test-enabled))
1378
1379 (let ((tmp-name (tramp--test-make-temp-name)))
1380 (unwind-protect
1381 (progn
1382 (load tmp-name 'noerror 'nomessage)
1383 (should-not (featurep 'tramp-test-load))
1384 (write-region "(provide 'tramp-test-load)" nil tmp-name)
1385 ;; `load' in lread.c does not pass `must-suffix'. Why?
1386 ;(should-error (load tmp-name nil 'nomessage 'nosuffix 'must-suffix))
1387 (load tmp-name nil 'nomessage 'nosuffix)
1388 (should (featurep 'tramp-test-load)))
1389
1390 ;; Cleanup.
1391 (ignore-errors
1392 (and (featurep 'tramp-test-load) (unload-feature 'tramp-test-load))
1393 (delete-file tmp-name)))))
1394
1395 (ert-deftest tramp-test26-process-file ()
1396 "Check `process-file'."
1397 :tags '(:expensive-test)
1398 (skip-unless (tramp--test-enabled))
1399 (skip-unless
1400 (not
1401 (memq
1402 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1403 '(tramp-gvfs-file-name-handler tramp-smb-file-name-handler))))
1404
1405 (let* ((tmp-name (tramp--test-make-temp-name))
1406 (fnnd (file-name-nondirectory tmp-name))
1407 (default-directory tramp-test-temporary-file-directory)
1408 kill-buffer-query-functions)
1409 (unwind-protect
1410 (progn
1411 ;; We cannot use "/bin/true" and "/bin/false"; those paths
1412 ;; do not exist on hydra.
1413 (should (zerop (process-file "true")))
1414 (should-not (zerop (process-file "false")))
1415 (should-not (zerop (process-file "binary-does-not-exist")))
1416 (with-temp-buffer
1417 (write-region "foo" nil tmp-name)
1418 (should (file-exists-p tmp-name))
1419 (should (zerop (process-file "ls" nil t nil fnnd)))
1420 ;; `ls' could produce colorized output.
1421 (goto-char (point-min))
1422 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
1423 (replace-match "" nil nil))
1424 (should (string-equal (format "%s\n" fnnd) (buffer-string)))
1425 (should-not (get-buffer-window (current-buffer) t))
1426
1427 ;; Second run. The output must be appended.
1428 (goto-char (point-max))
1429 (should (zerop (process-file "ls" nil t t fnnd)))
1430 ;; `ls' could produce colorized output.
1431 (goto-char (point-min))
1432 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
1433 (replace-match "" nil nil))
1434 (should
1435 (string-equal (format "%s\n%s\n" fnnd fnnd) (buffer-string)))
1436 ;; A non-nil DISPLAY must not raise the buffer.
1437 (should-not (get-buffer-window (current-buffer) t))))
1438
1439 ;; Cleanup.
1440 (ignore-errors (delete-file tmp-name)))))
1441
1442 (ert-deftest tramp-test27-start-file-process ()
1443 "Check `start-file-process'."
1444 :tags '(:expensive-test)
1445 (skip-unless (tramp--test-enabled))
1446 (skip-unless
1447 (not
1448 (memq
1449 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1450 '(tramp-adb-file-name-handler
1451 tramp-gvfs-file-name-handler
1452 tramp-smb-file-name-handler))))
1453
1454 (let ((default-directory tramp-test-temporary-file-directory)
1455 (tmp-name (tramp--test-make-temp-name))
1456 kill-buffer-query-functions proc)
1457 (unwind-protect
1458 (with-temp-buffer
1459 (setq proc (start-file-process "test1" (current-buffer) "cat"))
1460 (should (processp proc))
1461 (should (equal (process-status proc) 'run))
1462 (process-send-string proc "foo")
1463 (process-send-eof proc)
1464 ;; Read output.
1465 (with-timeout (10 (ert-fail "`start-file-process' timed out"))
1466 (while (< (- (point-max) (point-min)) (length "foo"))
1467 (accept-process-output proc 1)))
1468 (should (string-equal (buffer-string) "foo")))
1469
1470 ;; Cleanup.
1471 (ignore-errors (delete-process proc)))
1472
1473 (unwind-protect
1474 (with-temp-buffer
1475 (write-region "foo" nil tmp-name)
1476 (should (file-exists-p tmp-name))
1477 (setq proc
1478 (start-file-process
1479 "test2" (current-buffer)
1480 "cat" (file-name-nondirectory tmp-name)))
1481 (should (processp proc))
1482 ;; Read output.
1483 (with-timeout (10 (ert-fail "`start-file-process' timed out"))
1484 (while (< (- (point-max) (point-min)) (length "foo"))
1485 (accept-process-output proc 1)))
1486 (should (string-equal (buffer-string) "foo")))
1487
1488 ;; Cleanup.
1489 (ignore-errors
1490 (delete-process proc)
1491 (delete-file tmp-name)))
1492
1493 (unwind-protect
1494 (with-temp-buffer
1495 (setq proc (start-file-process "test3" (current-buffer) "cat"))
1496 (should (processp proc))
1497 (should (equal (process-status proc) 'run))
1498 (set-process-filter
1499 proc
1500 (lambda (p s) (with-current-buffer (process-buffer p) (insert s))))
1501 (process-send-string proc "foo")
1502 (process-send-eof proc)
1503 ;; Read output.
1504 (with-timeout (10 (ert-fail "`start-file-process' timed out"))
1505 (while (< (- (point-max) (point-min)) (length "foo"))
1506 (accept-process-output proc 1)))
1507 (should (string-equal (buffer-string) "foo")))
1508
1509 ;; Cleanup.
1510 (ignore-errors (delete-process proc)))))
1511
1512 (ert-deftest tramp-test28-shell-command ()
1513 "Check `shell-command'."
1514 :tags '(:expensive-test)
1515 (skip-unless (tramp--test-enabled))
1516 (skip-unless
1517 (not
1518 (memq
1519 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1520 '(tramp-adb-file-name-handler
1521 tramp-gvfs-file-name-handler
1522 tramp-smb-file-name-handler))))
1523
1524 (let ((tmp-name (tramp--test-make-temp-name))
1525 (default-directory tramp-test-temporary-file-directory)
1526 kill-buffer-query-functions)
1527 (unwind-protect
1528 (with-temp-buffer
1529 (write-region "foo" nil tmp-name)
1530 (should (file-exists-p tmp-name))
1531 (shell-command
1532 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer))
1533 ;; `ls' could produce colorized output.
1534 (goto-char (point-min))
1535 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
1536 (replace-match "" nil nil))
1537 (should
1538 (string-equal
1539 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string))))
1540
1541 ;; Cleanup.
1542 (ignore-errors (delete-file tmp-name)))
1543
1544 (unwind-protect
1545 (with-temp-buffer
1546 (write-region "foo" nil tmp-name)
1547 (should (file-exists-p tmp-name))
1548 (async-shell-command
1549 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer))
1550 (set-process-sentinel (get-buffer-process (current-buffer)) nil)
1551 ;; Read output.
1552 (with-timeout (10 (ert-fail "`async-shell-command' timed out"))
1553 (while (< (- (point-max) (point-min))
1554 (1+ (length (file-name-nondirectory tmp-name))))
1555 (accept-process-output (get-buffer-process (current-buffer)) 1)))
1556 ;; `ls' could produce colorized output.
1557 (goto-char (point-min))
1558 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
1559 (replace-match "" nil nil))
1560 ;; There might be a nasty "Process *Async Shell* finished" message.
1561 (goto-char (point-min))
1562 (forward-line)
1563 (narrow-to-region (point-min) (point))
1564 (should
1565 (string-equal
1566 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string))))
1567
1568 ;; Cleanup.
1569 (ignore-errors (delete-file tmp-name)))
1570
1571 (unwind-protect
1572 (with-temp-buffer
1573 (write-region "foo" nil tmp-name)
1574 (should (file-exists-p tmp-name))
1575 (async-shell-command "read line; ls $line" (current-buffer))
1576 (set-process-sentinel (get-buffer-process (current-buffer)) nil)
1577 (process-send-string
1578 (get-buffer-process (current-buffer))
1579 (format "%s\n" (file-name-nondirectory tmp-name)))
1580 ;; Read output.
1581 (with-timeout (10 (ert-fail "`async-shell-command' timed out"))
1582 (while (< (- (point-max) (point-min))
1583 (1+ (length (file-name-nondirectory tmp-name))))
1584 (accept-process-output (get-buffer-process (current-buffer)) 1)))
1585 ;; `ls' could produce colorized output.
1586 (goto-char (point-min))
1587 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
1588 (replace-match "" nil nil))
1589 ;; There might be a nasty "Process *Async Shell* finished" message.
1590 (goto-char (point-min))
1591 (forward-line)
1592 (narrow-to-region (point-min) (point))
1593 (should
1594 (string-equal
1595 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string))))
1596
1597 ;; Cleanup.
1598 (ignore-errors (delete-file tmp-name)))))
1599
1600 (ert-deftest tramp-test29-vc-registered ()
1601 "Check `vc-registered'."
1602 :tags '(:expensive-test)
1603 (skip-unless (tramp--test-enabled))
1604 (skip-unless
1605 (eq
1606 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1607 'tramp-sh-file-name-handler))
1608
1609 (let* ((default-directory tramp-test-temporary-file-directory)
1610 (tmp-name1 (tramp--test-make-temp-name))
1611 (tmp-name2 (expand-file-name "foo" tmp-name1))
1612 (tramp-remote-process-environment tramp-remote-process-environment)
1613 (vc-handled-backends
1614 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
1615 (cond
1616 ((tramp-find-executable v vc-git-program (tramp-get-remote-path v))
1617 '(Git))
1618 ((tramp-find-executable v vc-hg-program (tramp-get-remote-path v))
1619 '(Hg))
1620 ((tramp-find-executable v vc-bzr-program (tramp-get-remote-path v))
1621 (setq tramp-remote-process-environment
1622 (cons (format "BZR_HOME=%s"
1623 (file-remote-p tmp-name1 'localname))
1624 tramp-remote-process-environment))
1625 ;; We must force a reconnect, in order to activate $BZR_HOME.
1626 (tramp-cleanup-connection
1627 (tramp-dissect-file-name tramp-test-temporary-file-directory)
1628 nil 'keep-password)
1629 '(Bzr))
1630 (t nil)))))
1631 (skip-unless vc-handled-backends)
1632 (message "%s" vc-handled-backends)
1633
1634 (unwind-protect
1635 (progn
1636 (make-directory tmp-name1)
1637 (write-region "foo" nil tmp-name2)
1638 (should (file-directory-p tmp-name1))
1639 (should (file-exists-p tmp-name2))
1640 (should-not (vc-registered tmp-name1))
1641 (should-not (vc-registered tmp-name2))
1642
1643 (let ((default-directory tmp-name1))
1644 ;; Create empty repository, and register the file.
1645 ;; Sometimes, creation of repository fails (bzr!); we skip
1646 ;; the test then.
1647 (condition-case nil
1648 (vc-create-repo (car vc-handled-backends))
1649 (error (skip-unless nil)))
1650 ;; The structure of VC-FILESET is not documented. Let's
1651 ;; hope it won't change.
1652 (condition-case nil
1653 (vc-register
1654 (list (car vc-handled-backends)
1655 (list (file-name-nondirectory tmp-name2))))
1656 ;; `vc-register' has changed its arguments in Emacs 25.1.
1657 (error
1658 (vc-register
1659 nil (list (car vc-handled-backends)
1660 (list (file-name-nondirectory tmp-name2))))))
1661 (should (vc-registered (file-name-nondirectory tmp-name2)))))
1662
1663 ;; Cleanup.
1664 (ignore-errors (delete-directory tmp-name1 'recursive)))))
1665
1666 (ert-deftest tramp-test30-make-auto-save-file-name ()
1667 "Check `make-auto-save-file-name'."
1668 (skip-unless (tramp--test-enabled))
1669
1670 (let ((tmp-name1 (tramp--test-make-temp-name))
1671 (tmp-name2 (tramp--test-make-temp-name)))
1672
1673 (unwind-protect
1674 (progn
1675 ;; Use default `auto-save-file-name-transforms' mechanism.
1676 (let (tramp-auto-save-directory)
1677 (with-temp-buffer
1678 (setq buffer-file-name tmp-name1)
1679 (should
1680 (string-equal
1681 (make-auto-save-file-name)
1682 ;; This is taken from original `make-auto-save-file-name'.
1683 (expand-file-name
1684 (format
1685 "#%s#"
1686 (subst-char-in-string
1687 ?/ ?! (replace-regexp-in-string "!" "!!" tmp-name1)))
1688 temporary-file-directory)))))
1689
1690 ;; No mapping.
1691 (let (tramp-auto-save-directory auto-save-file-name-transforms)
1692 (with-temp-buffer
1693 (setq buffer-file-name tmp-name1)
1694 (should
1695 (string-equal
1696 (make-auto-save-file-name)
1697 (expand-file-name
1698 (format "#%s#" (file-name-nondirectory tmp-name1))
1699 tramp-test-temporary-file-directory)))))
1700
1701 ;; Use default `tramp-auto-save-directory' mechanism.
1702 (let ((tramp-auto-save-directory tmp-name2))
1703 (with-temp-buffer
1704 (setq buffer-file-name tmp-name1)
1705 (should
1706 (string-equal
1707 (make-auto-save-file-name)
1708 ;; This is taken from Tramp.
1709 (expand-file-name
1710 (format
1711 "#%s#"
1712 (tramp-subst-strs-in-string
1713 '(("_" . "|")
1714 ("/" . "_a")
1715 (":" . "_b")
1716 ("|" . "__")
1717 ("[" . "_l")
1718 ("]" . "_r"))
1719 tmp-name1))
1720 tmp-name2)))
1721 (should (file-directory-p tmp-name2))))
1722
1723 ;; Relative file names shall work, too.
1724 (let ((tramp-auto-save-directory "."))
1725 (with-temp-buffer
1726 (setq buffer-file-name tmp-name1
1727 default-directory tmp-name2)
1728 (should
1729 (string-equal
1730 (make-auto-save-file-name)
1731 ;; This is taken from Tramp.
1732 (expand-file-name
1733 (format
1734 "#%s#"
1735 (tramp-subst-strs-in-string
1736 '(("_" . "|")
1737 ("/" . "_a")
1738 (":" . "_b")
1739 ("|" . "__")
1740 ("[" . "_l")
1741 ("]" . "_r"))
1742 tmp-name1))
1743 tmp-name2)))
1744 (should (file-directory-p tmp-name2)))))
1745
1746 ;; Cleanup.
1747 (ignore-errors (delete-file tmp-name1))
1748 (ignore-errors (delete-directory tmp-name2 'recursive)))))
1749
1750 (defun tramp--test-adb-p ()
1751 "Check, whether the remote host runs Android.
1752 This requires restrictions of file name syntax."
1753 (tramp-adb-file-name-p tramp-test-temporary-file-directory))
1754
1755 (defun tramp--test-ftp-p ()
1756 "Check, whether an FTP-like method is used.
1757 This does not support globbing characters in file names (yet)."
1758 ;; Globbing characters are ??, ?* and ?\[.
1759 (and (eq (tramp-find-foreign-file-name-handler
1760 tramp-test-temporary-file-directory)
1761 'tramp-sh-file-name-handler)
1762 (string-match
1763 "ftp$" (file-remote-p tramp-test-temporary-file-directory 'method))))
1764
1765 (defun tramp--test-gvfs-p ()
1766 "Check, whether the remote host runs a GVFS based method.
1767 This requires restrictions of file name syntax."
1768 (tramp-gvfs-file-name-p tramp-test-temporary-file-directory))
1769
1770 (defun tramp--test-smb-or-windows-nt-p ()
1771 "Check, whether the locale or remote host runs MS Windows.
1772 This requires restrictions of file name syntax."
1773 (or (eq system-type 'windows-nt)
1774 (tramp-smb-file-name-p tramp-test-temporary-file-directory)))
1775
1776 (defun tramp--test-hpux-p ()
1777 "Check, whether the remote host runs HP-UX.
1778 Several special characters do not work properly there."
1779 ;; We must refill the cache. `file-truename' does it.
1780 (with-parsed-tramp-file-name
1781 (file-truename tramp-test-temporary-file-directory) nil
1782 (string-match "^HP-UX" (tramp-get-connection-property v "uname" ""))))
1783
1784 (defun tramp--test-darwin-p ()
1785 "Check, whether the remote host runs Mac OS X.
1786 Several special characters do not work properly there."
1787 ;; We must refill the cache. `file-truename' does it.
1788 (with-parsed-tramp-file-name
1789 (file-truename tramp-test-temporary-file-directory) nil
1790 (string-match "^Darwin" (tramp-get-connection-property v "uname" ""))))
1791
1792 (defun tramp--test-check-files (&rest files)
1793 "Run a simple but comprehensive test over every file in FILES."
1794 ;; We must use `file-truename' for the temporary directory, because
1795 ;; it could be located on a symlinked directory. This would let the
1796 ;; test fail.
1797 (let* ((tramp-test-temporary-file-directory
1798 (file-truename tramp-test-temporary-file-directory))
1799 (tmp-name1 (tramp--test-make-temp-name))
1800 (tmp-name2 (tramp--test-make-temp-name 'local))
1801 (files (delq nil files)))
1802 (unwind-protect
1803 (progn
1804 (make-directory tmp-name1)
1805 (make-directory tmp-name2)
1806 (dolist (elt files)
1807 (let* ((file1 (expand-file-name elt tmp-name1))
1808 (file2 (expand-file-name elt tmp-name2))
1809 (file3 (expand-file-name (concat elt "foo") tmp-name1)))
1810 (write-region elt nil file1)
1811 (should (file-exists-p file1))
1812
1813 ;; Check file contents.
1814 (with-temp-buffer
1815 (insert-file-contents file1)
1816 (should (string-equal (buffer-string) elt)))
1817
1818 ;; Copy file both directions.
1819 (copy-file file1 tmp-name2)
1820 (should (file-exists-p file2))
1821 (delete-file file1)
1822 (should-not (file-exists-p file1))
1823 (copy-file file2 tmp-name1)
1824 (should (file-exists-p file1))
1825
1826 ;; Method "smb" supports `make-symbolic-link' only if the
1827 ;; remote host has CIFS capabilities. tramp-adb.el and
1828 ;; tramp-gvfs.el do not support symbolic links at all.
1829 (condition-case err
1830 (progn
1831 (make-symbolic-link file1 file3)
1832 (should (file-symlink-p file3))
1833 (should
1834 (string-equal
1835 (expand-file-name file1) (file-truename file3)))
1836 (should
1837 (string-equal
1838 (car (file-attributes file3))
1839 (file-remote-p (file-truename file1) 'localname)))
1840 ;; Check file contents.
1841 (with-temp-buffer
1842 (insert-file-contents file3)
1843 (should (string-equal (buffer-string) elt)))
1844 (delete-file file3))
1845 (file-error
1846 (should (string-equal (error-message-string err)
1847 "make-symbolic-link not supported"))))))
1848
1849 ;; Check file names.
1850 (should (equal (directory-files
1851 tmp-name1 nil directory-files-no-dot-files-regexp)
1852 (sort (copy-sequence files) 'string-lessp)))
1853 (should (equal (directory-files
1854 tmp-name2 nil directory-files-no-dot-files-regexp)
1855 (sort (copy-sequence files) 'string-lessp)))
1856
1857 ;; `substitute-in-file-name' could return different values.
1858 ;; For `adb', there could be strange file permissions
1859 ;; preventing overwriting a file. We don't care in this
1860 ;; testcase.
1861 (dolist (elt files)
1862 (let ((file1
1863 (substitute-in-file-name (expand-file-name elt tmp-name1)))
1864 (file2
1865 (substitute-in-file-name (expand-file-name elt tmp-name2))))
1866 (ignore-errors (write-region elt nil file1))
1867 (should (file-exists-p file1))
1868 (ignore-errors (write-region elt nil file2 nil 'nomessage))
1869 (should (file-exists-p file2))))
1870
1871 (should (equal (directory-files
1872 tmp-name1 nil directory-files-no-dot-files-regexp)
1873 (directory-files
1874 tmp-name2 nil directory-files-no-dot-files-regexp)))
1875
1876 ;; Check directory creation. We use a subdirectory "foo"
1877 ;; in order to avoid conflicts with previous file name tests.
1878 (dolist (elt files)
1879 (let* ((elt1 (concat elt "foo"))
1880 (file1 (expand-file-name (concat "foo/" elt) tmp-name1))
1881 (file2 (expand-file-name elt file1))
1882 (file3 (expand-file-name elt1 file1)))
1883 (make-directory file1 'parents)
1884 (should (file-directory-p file1))
1885 (write-region elt nil file2)
1886 (should (file-exists-p file2))
1887 (should
1888 (equal
1889 (directory-files file1 nil directory-files-no-dot-files-regexp)
1890 `(,elt)))
1891 (should
1892 (equal
1893 (caar (directory-files-and-attributes
1894 file1 nil directory-files-no-dot-files-regexp))
1895 elt))
1896
1897 ;; Check symlink in `directory-files-and-attributes'.
1898 (condition-case err
1899 (progn
1900 (make-symbolic-link file2 file3)
1901 (should (file-symlink-p file3))
1902 (should
1903 (string-equal
1904 (caar (directory-files-and-attributes
1905 file1 nil (regexp-quote elt1)))
1906 elt1))
1907 (should
1908 (string-equal
1909 (cadr (car (directory-files-and-attributes
1910 file1 nil (regexp-quote elt1))))
1911 (file-remote-p (file-truename file2) 'localname)))
1912 (delete-file file3)
1913 (should-not (file-exists-p file3)))
1914 (file-error
1915 (should (string-equal (error-message-string err)
1916 "make-symbolic-link not supported"))))
1917
1918 (delete-file file2)
1919 (should-not (file-exists-p file2))
1920 (delete-directory file1)
1921 (should-not (file-exists-p file1)))))
1922
1923 ;; Cleanup.
1924 (ignore-errors (delete-directory tmp-name1 'recursive))
1925 (ignore-errors (delete-directory tmp-name2 'recursive)))))
1926
1927 (defun tramp--test-special-characters ()
1928 "Perform the test in `tramp-test31-special-characters*'."
1929 ;; Newlines, slashes and backslashes in file names are not
1930 ;; supported. So we don't test. And we don't test the tab
1931 ;; character on Windows or Cygwin, because the backslash is
1932 ;; interpreted as a path separator, preventing "\t" from being
1933 ;; expanded to <TAB>.
1934 (tramp--test-check-files
1935 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1936 "foo bar baz"
1937 (if (or (tramp--test-adb-p) (eq system-type 'cygwin))
1938 " foo bar baz "
1939 " foo\tbar baz\t"))
1940 "$foo$bar$$baz$"
1941 "-foo-bar-baz-"
1942 "%foo%bar%baz%"
1943 "&foo&bar&baz&"
1944 (unless (or (tramp--test-ftp-p)
1945 (tramp--test-gvfs-p)
1946 (tramp--test-smb-or-windows-nt-p))
1947 "?foo?bar?baz?")
1948 (unless (or (tramp--test-ftp-p)
1949 (tramp--test-gvfs-p)
1950 (tramp--test-smb-or-windows-nt-p))
1951 "*foo*bar*baz*")
1952 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1953 "'foo'bar'baz'"
1954 "'foo\"bar'baz\"")
1955 "#foo~bar#baz~"
1956 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1957 "!foo!bar!baz!"
1958 "!foo|bar!baz|")
1959 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1960 ";foo;bar;baz;"
1961 ":foo;bar:baz;")
1962 (unless (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1963 "<foo>bar<baz>")
1964 "(foo)bar(baz)"
1965 (unless (or (tramp--test-ftp-p) (tramp--test-gvfs-p)) "[foo]bar[baz]")
1966 "{foo}bar{baz}"))
1967
1968 ;; These tests are inspired by Bug#17238.
1969 (ert-deftest tramp-test31-special-characters ()
1970 "Check special characters in file names."
1971 (skip-unless (tramp--test-enabled))
1972
1973 (tramp--test-special-characters))
1974
1975 (ert-deftest tramp-test31-special-characters-with-stat ()
1976 "Check special characters in file names.
1977 Use the `stat' command."
1978 :tags '(:expensive-test)
1979 (skip-unless (tramp--test-enabled))
1980 (skip-unless
1981 (eq
1982 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
1983 'tramp-sh-file-name-handler))
1984 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
1985 (skip-unless (tramp-get-remote-stat v)))
1986
1987 (let ((tramp-connection-properties
1988 (append
1989 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
1990 "perl" nil))
1991 tramp-connection-properties)))
1992 (tramp--test-special-characters)))
1993
1994 (ert-deftest tramp-test31-special-characters-with-perl ()
1995 "Check special characters in file names.
1996 Use the `perl' command."
1997 :tags '(:expensive-test)
1998 (skip-unless (tramp--test-enabled))
1999 (skip-unless
2000 (eq
2001 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
2002 'tramp-sh-file-name-handler))
2003 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
2004 (skip-unless (tramp-get-remote-perl v)))
2005
2006 (let ((tramp-connection-properties
2007 (append
2008 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2009 "stat" nil)
2010 ;; See `tramp-sh-handle-file-truename'.
2011 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2012 "readlink" nil))
2013 tramp-connection-properties)))
2014 (tramp--test-special-characters)))
2015
2016 (ert-deftest tramp-test31-special-characters-with-ls ()
2017 "Check special characters in file names.
2018 Use the `ls' command."
2019 :tags '(:expensive-test)
2020 (skip-unless (tramp--test-enabled))
2021 (skip-unless
2022 (eq
2023 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
2024 'tramp-sh-file-name-handler))
2025
2026 (let ((tramp-connection-properties
2027 (append
2028 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2029 "perl" nil)
2030 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2031 "stat" nil)
2032 ;; See `tramp-sh-handle-file-truename'.
2033 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2034 "readlink" nil))
2035 tramp-connection-properties)))
2036 (tramp--test-special-characters)))
2037
2038 (defun tramp--test-utf8 ()
2039 "Perform the test in `tramp-test32-utf8*'."
2040 (let ((coding-system-for-read 'utf-8)
2041 (coding-system-for-write 'utf-8)
2042 (file-name-coding-system 'utf-8))
2043 (tramp--test-check-files
2044 (unless (tramp--test-hpux-p) "Γυρίστε το Γαλαξία με Ώτο Στοπ")
2045 (unless (or (tramp--test-hpux-p) (tramp--test-darwin-p))
2046 "أصبح بوسعك الآن تنزيل نسخة كاملة من موسوعة ويكيبيديا العربية لتصفحها بلا اتصال بالإنترنت")
2047 (unless (tramp--test-darwin-p)
2048 "银河系漫游指南系列")
2049 "Автостопом по гала́ктике")))
2050
2051 (ert-deftest tramp-test32-utf8 ()
2052 "Check UTF8 encoding in file names and file contents."
2053 (skip-unless (tramp--test-enabled))
2054
2055 (tramp--test-utf8))
2056
2057 (ert-deftest tramp-test32-utf8-with-stat ()
2058 "Check UTF8 encoding in file names and file contents.
2059 Use the `stat' command."
2060 :tags '(:expensive-test)
2061 (skip-unless (tramp--test-enabled))
2062 (skip-unless
2063 (eq
2064 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
2065 'tramp-sh-file-name-handler))
2066 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
2067 (skip-unless (tramp-get-remote-stat v)))
2068
2069 (let ((tramp-connection-properties
2070 (append
2071 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2072 "perl" nil))
2073 tramp-connection-properties)))
2074 (tramp--test-utf8)))
2075
2076 (ert-deftest tramp-test32-utf8-with-perl ()
2077 "Check UTF8 encoding in file names and file contents.
2078 Use the `perl' command."
2079 :tags '(:expensive-test)
2080 (skip-unless (tramp--test-enabled))
2081 (skip-unless
2082 (eq
2083 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
2084 'tramp-sh-file-name-handler))
2085 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
2086 (skip-unless (tramp-get-remote-perl v)))
2087
2088 (let ((tramp-connection-properties
2089 (append
2090 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2091 "stat" nil)
2092 ;; See `tramp-sh-handle-file-truename'.
2093 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2094 "readlink" nil))
2095 tramp-connection-properties)))
2096 (tramp--test-utf8)))
2097
2098 (ert-deftest tramp-test32-utf8-with-ls ()
2099 "Check UTF8 encoding in file names and file contents.
2100 Use the `ls' command."
2101 :tags '(:expensive-test)
2102 (skip-unless (tramp--test-enabled))
2103 (skip-unless
2104 (eq
2105 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
2106 'tramp-sh-file-name-handler))
2107
2108 (let ((tramp-connection-properties
2109 (append
2110 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2111 "perl" nil)
2112 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2113 "stat" nil)
2114 ;; See `tramp-sh-handle-file-truename'.
2115 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory))
2116 "readlink" nil))
2117 tramp-connection-properties)))
2118 (tramp--test-utf8)))
2119
2120 ;; This test is inspired by Bug#16928.
2121 (ert-deftest tramp-test33-asynchronous-requests ()
2122 "Check parallel asynchronous requests.
2123 Such requests could arrive from timers, process filters and
2124 process sentinels. They shall not disturb each other."
2125 ;; Mark as failed until bug has been fixed.
2126 :expected-result :failed
2127 :tags '(:expensive-test)
2128 (skip-unless (tramp--test-enabled))
2129 (skip-unless
2130 (eq
2131 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory)
2132 'tramp-sh-file-name-handler))
2133
2134 ;; Keep instrumentation verbosity 0 until Tramp bug is fixed. This
2135 ;; has the side effect, that this test fails instead to abort. Good
2136 ;; for hydra.
2137 (tramp--instrument-test-case 0
2138 (let* ((tmp-name (tramp--test-make-temp-name))
2139 (default-directory tmp-name)
2140 (remote-file-name-inhibit-cache t)
2141 timer buffers kill-buffer-query-functions)
2142
2143 (unwind-protect
2144 (progn
2145 (make-directory tmp-name)
2146
2147 ;; Setup a timer in order to raise an ordinary command again
2148 ;; and again. `vc-registered' is well suited, because there
2149 ;; are many checks.
2150 (setq
2151 timer
2152 (run-at-time
2153 0 1
2154 (lambda ()
2155 (when buffers
2156 (vc-registered
2157 (buffer-name (nth (random (length buffers)) buffers)))))))
2158
2159 ;; Create temporary buffers. The number of buffers
2160 ;; corresponds to the number of processes; it could be
2161 ;; increased in order to make pressure on Tramp.
2162 (dotimes (i 5)
2163 (add-to-list 'buffers (generate-new-buffer "*temp*")))
2164
2165 ;; Open asynchronous processes. Set process sentinel.
2166 (dolist (buf buffers)
2167 (async-shell-command "read line; touch $line; echo $line" buf)
2168 (set-process-sentinel
2169 (get-buffer-process buf)
2170 (lambda (proc _state)
2171 (delete-file (buffer-name (process-buffer proc))))))
2172
2173 ;; Send a string. Use a random order of the buffers. Mix
2174 ;; with regular operation.
2175 (let ((buffers (copy-sequence buffers))
2176 buf)
2177 (while buffers
2178 (setq buf (nth (random (length buffers)) buffers))
2179 (process-send-string
2180 (get-buffer-process buf) (format "'%s'\n" buf))
2181 (file-attributes (buffer-name buf))
2182 (setq buffers (delq buf buffers))))
2183
2184 ;; Wait until the whole output has been read.
2185 (with-timeout ((* 10 (length buffers))
2186 (ert-fail "`async-shell-command' timed out"))
2187 (let ((buffers (copy-sequence buffers))
2188 buf)
2189 (while buffers
2190 (setq buf (nth (random (length buffers)) buffers))
2191 (if (ignore-errors
2192 (memq (process-status (get-buffer-process buf))
2193 '(run open)))
2194 (accept-process-output (get-buffer-process buf) 0.1)
2195 (setq buffers (delq buf buffers))))))
2196
2197 ;; Check.
2198 (dolist (buf buffers)
2199 (with-current-buffer buf
2200 (should
2201 (string-equal (format "'%s'\n" buf) (buffer-string)))))
2202 (should-not
2203 (directory-files tmp-name nil directory-files-no-dot-files-regexp)))
2204
2205 ;; Cleanup.
2206 (ignore-errors (cancel-timer timer))
2207 (ignore-errors (delete-directory tmp-name 'recursive))
2208 (dolist (buf buffers)
2209 (ignore-errors (kill-buffer buf)))))))
2210
2211 (ert-deftest tramp-test34-recursive-load ()
2212 "Check that Tramp does not fail due to recursive load."
2213 (skip-unless (tramp--test-enabled))
2214
2215 (dolist (code
2216 (list
2217 (format
2218 "(expand-file-name %S)"
2219 tramp-test-temporary-file-directory)
2220 (format
2221 "(let ((default-directory %S)) (expand-file-name %S))"
2222 tramp-test-temporary-file-directory
2223 temporary-file-directory)))
2224 (should-not
2225 (string-match
2226 "Recursive load"
2227 (shell-command-to-string
2228 (format
2229 "%s -batch -Q -L %s --eval %s"
2230 (expand-file-name invocation-name invocation-directory)
2231 (mapconcat 'shell-quote-argument load-path " -L ")
2232 (shell-quote-argument code)))))))
2233
2234 (ert-deftest tramp-test35-unload ()
2235 "Check that Tramp and its subpackages unload completely.
2236 Since it unloads Tramp, it shall be the last test to run."
2237 ;; Mark as failed until all symbols are unbound.
2238 :expected-result (if (featurep 'tramp) :failed :passed)
2239 :tags '(:expensive-test)
2240 (when (featurep 'tramp)
2241 (unload-feature 'tramp 'force)
2242 ;; No Tramp feature must be left.
2243 (should-not (featurep 'tramp))
2244 (should-not (all-completions "tramp" (delq 'tramp-tests features)))
2245 ;; `file-name-handler-alist' must be clean.
2246 (should-not (all-completions "tramp" (mapcar 'cdr file-name-handler-alist)))
2247 ;; There shouldn't be left a bound symbol. We do not regard our
2248 ;; test symbols, and the Tramp unload hooks.
2249 (mapatoms
2250 (lambda (x)
2251 (and (or (boundp x) (functionp x))
2252 (string-match "^tramp" (symbol-name x))
2253 (not (string-match "^tramp--?test" (symbol-name x)))
2254 (not (string-match "unload-hook$" (symbol-name x)))
2255 (ert-fail (format "`%s' still bound" x)))))
2256 ;; There shouldn't be left a hook function containing a Tramp
2257 ;; function. We do not regard the Tramp unload hooks.
2258 (mapatoms
2259 (lambda (x)
2260 (and (boundp x)
2261 (string-match "-hooks?$" (symbol-name x))
2262 (not (string-match "unload-hook$" (symbol-name x)))
2263 (consp (symbol-value x))
2264 (ignore-errors (all-completions "tramp" (symbol-value x)))
2265 (ert-fail (format "Hook `%s' still contains Tramp function" x)))))))
2266
2267 ;; TODO:
2268
2269 ;; * dired-compress-file
2270 ;; * dired-uncache
2271 ;; * file-acl
2272 ;; * file-ownership-preserved-p
2273 ;; * file-selinux-context
2274 ;; * find-backup-file-name
2275 ;; * set-file-acl
2276 ;; * set-file-selinux-context
2277
2278 ;; * Work on skipped tests. Make a comment, when it is impossible.
2279 ;; * Fix `tramp-test15-copy-directory' for `smb'. Using tar in a pipe
2280 ;; doesn't work well when an interactive password must be provided.
2281 ;; * Fix `tramp-test27-start-file-process' on MS Windows (`process-send-eof'?).
2282 ;; * Fix Bug#16928. Set expected error of `tramp-test33-asynchronous-requests'.
2283 ;; * Fix `tramp-test35-unload' (Not all symbols are unbound). Set
2284 ;; expected error.
2285
2286 (defun tramp-test-all (&optional interactive)
2287 "Run all tests for \\[tramp]."
2288 (interactive "p")
2289 (funcall
2290 (if interactive 'ert-run-tests-interactively 'ert-run-tests-batch) "^tramp"))
2291
2292 (provide 'tramp-tests)
2293 ;;; tramp-tests.el ends here