1 ;;; tramp-tests.el --- Tests of remote file access
3 ;; Copyright (C) 2013-2015 Free Software Foundation, Inc.
5 ;; Author: Michael Albinus <michael.albinus@gmx.de>
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.
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.
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/'.
22 ;; The tests require a recent ert.el from Emacs 24.4.
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.
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.
36 ;; A whole test run can be performed calling the command `tramp-test-all'.
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
)
55 ;; There is no default value on w32 systems, which could work out of the box.
56 (defconst tramp-test-temporary-file-directory
58 ((getenv "REMOTE_TEMPORARY_FILE_DIRECTORY"))
59 ((eq system-type
'windows-nt
) null-device
)
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.")
71 (setq password-cache-expiry nil
73 tramp-copy-size-limit nil
74 tramp-message-show-message nil
75 tramp-persistency-file-name nil
)
77 ;; This shall happen on hydra only.
78 (when (getenv "NIX_STORE")
79 (add-to-list 'tramp-remote-path
'tramp-own-remote-path
))
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'
86 (defun tramp--test-enabled ()
87 "Whether remote file access is enabled."
88 (unless (consp tramp--test-enabled-checked
)
90 tramp--test-enabled-checked
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
))))))
98 (when (cdr tramp--test-enabled-checked
)
99 ;; Cleanup connection.
101 (tramp-cleanup-connection
102 (tramp-dissect-file-name tramp-test-temporary-file-directory
)
103 nil
'keep-password
)))
106 (cdr tramp--test-enabled-checked
))
108 (defun tramp--test-make-temp-name (&optional local
)
109 "Create a temporary file name for test."
111 (make-temp-name "tramp-test")
112 (if local temporary-file-directory tramp-test-temporary-file-directory
)))
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
)))
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))))))))
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
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
)))))
144 (ert-deftest tramp-test01-file-name-syntax
()
145 "Check remote file name syntax."
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:"))
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:"))
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:"))
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]:"))
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"))
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:"))
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"))))
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
))
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
))
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
))
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
))
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
))
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
)
267 (should (string-equal (file-remote-p "/method:user@:" 'localname
) ""))
268 (should (string-equal (file-remote-p "/method:user@:" 'hop
) nil
))
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
))
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
))
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
))
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
))
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
))
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
))
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
))
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
))
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
))
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
))
392 ;; Expand `tramp-default-method', `tramp-default-user' and
393 ;; `tramp-default-host'.
394 (should (string-equal
395 (file-remote-p "/[]:")
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
))
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
)))
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
))
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
))
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
))
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
))
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
)
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")))
477 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'method
)
482 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'user
)
487 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'host
)
492 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'localname
)
497 "/method1:user1@host1|method2:user2@host2:/path/to/file" 'hop
)
499 "method1" "user1" "host1")))
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")))
512 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
518 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
524 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
530 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
536 "/method1:user1@host1|method2:user2@host2|method3:user3@host3:/path/to/file"
538 (format "%s:%s@%s|%s:%s@%s|"
539 "method1" "user1" "host1" "method2" "user2" "host2")))))
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"))
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"))
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
)))
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"))
574 (substitute-in-file-name "/method:host:/path//foo") "/method:host:/foo"))
576 (string-equal (substitute-in-file-name "/method:host:/path///foo") "/foo"))
579 (substitute-in-file-name "/method:host:/path/~/foo") "/method:host:~/foo"))
581 (string-equal (substitute-in-file-name "/method:host:/path//~/foo") "~/foo"))
582 (let (process-environment)
585 (substitute-in-file-name "/method:host:/path/$FOO")
586 "/method:host:/path/$FOO"))
590 (substitute-in-file-name "/method:host:/path/$FOO")
591 "/method:host:/path/bla"))
594 (substitute-in-file-name "/method:host:/path/$$FOO")
595 "/method:host:/path/$FOO"))))
597 (ert-deftest tramp-test05-expand-file-name
()
598 "Check `expand-file-name'."
601 (expand-file-name "/method:host:/path/./file") "/method:host:/path/file"))
604 (expand-file-name "/method:host:/path/../file") "/method:host:/file")))
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'."
612 (directory-file-name "/method:host:/path/to/file")
613 "/method:host:/path/to/file"))
616 (directory-file-name "/method:host:/path/to/file/")
617 "/method:host:/path/to/file"))
620 (file-name-as-directory "/method:host:/path/to/file")
621 "/method:host:/path/to/file/"))
624 (file-name-as-directory "/method:host:/path/to/file/")
625 "/method:host:/path/to/file/"))
628 (file-name-directory "/method:host:/path/to/file")
629 "/method:host:/path/to/"))
632 (file-name-directory "/method:host:/path/to/file/")
633 "/method:host:/path/to/file/"))
635 (string-equal (file-name-nondirectory "/method:host:/path/to/file") "file"))
637 (string-equal (file-name-nondirectory "/method:host:/path/to/file/") ""))
639 (unhandled-file-name-directory "/method:host:/path/to/file")))
641 (ert-deftest tramp-test07-file-exists-p
()
642 "Check `file-exist-p', `write-region' and `delete-file'."
643 (skip-unless (tramp--test-enabled))
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
))))
652 (ert-deftest tramp-test08-file-local-copy
()
653 "Check `file-local-copy'."
654 (skip-unless (tramp--test-enabled))
656 (let ((tmp-name1 (tramp--test-make-temp-name))
660 (write-region "foo" nil tmp-name1
)
661 (should (setq tmp-name2
(file-local-copy tmp-name1
)))
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
)))))
674 (delete-file tmp-name1
)
675 (delete-file tmp-name2
)))))
677 (ert-deftest tramp-test09-insert-file-contents
()
678 "Check `insert-file-contents'."
679 (skip-unless (tramp--test-enabled))
681 (let ((tmp-name (tramp--test-make-temp-name)))
684 (write-region "foo" nil tmp-name
)
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"))
691 (insert-file-contents tmp-name nil
1 3)
692 (should (string-equal (buffer-string) "oofoofoo"))
694 (insert-file-contents tmp-name nil nil nil
'replace
)
695 (should (string-equal (buffer-string) "foo"))))
698 (ignore-errors (delete-file tmp-name
)))))
700 (ert-deftest tramp-test10-write-region
()
701 "Check `write-region'."
702 (skip-unless (tramp--test-enabled))
704 (let ((tmp-name (tramp--test-make-temp-name)))
709 (write-region nil nil tmp-name
))
711 (insert-file-contents tmp-name
)
712 (should (string-equal (buffer-string) "foo")))
716 (write-region nil nil tmp-name
'append
))
718 (insert-file-contents tmp-name
)
719 (should (string-equal (buffer-string) "foobla")))
721 (write-region "foo" nil tmp-name
)
723 (insert-file-contents tmp-name
)
724 (should (string-equal (buffer-string) "foo")))
728 (write-region 3 5 tmp-name
))
730 (insert-file-contents tmp-name
)
731 (should (string-equal (buffer-string) "34"))))
734 (ignore-errors (delete-file tmp-name
)))))
736 (ert-deftest tramp-test11-copy-file
()
738 (skip-unless (tramp--test-enabled))
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
)))
746 ;; Copy on remote side.
749 (write-region "foo" nil tmp-name1
)
750 (copy-file tmp-name1 tmp-name2
)
751 (should (file-exists-p tmp-name2
))
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
)
761 (expand-file-name (file-name-nondirectory tmp-name1
) tmp-name3
))))
764 (ignore-errors (delete-file tmp-name1
))
765 (ignore-errors (delete-file tmp-name2
))
766 (ignore-errors (delete-directory tmp-name3
'recursive
)))
768 ;; Copy from remote side to local side.
771 (write-region "foo" nil tmp-name1
)
772 (copy-file tmp-name1 tmp-name4
)
773 (should (file-exists-p tmp-name4
))
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
)
783 (expand-file-name (file-name-nondirectory tmp-name1
) tmp-name5
))))
786 (ignore-errors (delete-file tmp-name1
))
787 (ignore-errors (delete-file tmp-name4
))
788 (ignore-errors (delete-directory tmp-name5
'recursive
)))
790 ;; Copy from local side to remote side.
793 (write-region "foo" nil tmp-name4 nil
'nomessage
)
794 (copy-file tmp-name4 tmp-name1
)
795 (should (file-exists-p tmp-name1
))
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
)
805 (expand-file-name (file-name-nondirectory tmp-name4
) tmp-name3
))))
808 (ignore-errors (delete-file tmp-name1
))
809 (ignore-errors (delete-file tmp-name4
))
810 (ignore-errors (delete-directory tmp-name3
'recursive
)))))
812 (ert-deftest tramp-test12-rename-file
()
813 "Check `rename-file'."
814 (skip-unless (tramp--test-enabled))
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
)))
822 ;; Rename on remote side.
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
))
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
))
842 (expand-file-name (file-name-nondirectory tmp-name1
) tmp-name3
))))
845 (ignore-errors (delete-file tmp-name1
))
846 (ignore-errors (delete-file tmp-name2
))
847 (ignore-errors (delete-directory tmp-name3
'recursive
)))
849 ;; Rename from remote side to local side.
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
))
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
))
869 (expand-file-name (file-name-nondirectory tmp-name1
) tmp-name5
))))
872 (ignore-errors (delete-file tmp-name1
))
873 (ignore-errors (delete-file tmp-name4
))
874 (ignore-errors (delete-directory tmp-name5
'recursive
)))
876 ;; Rename from local side to remote side.
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
))
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
))
896 (expand-file-name (file-name-nondirectory tmp-name4
) tmp-name3
))))
899 (ignore-errors (delete-file tmp-name1
))
900 (ignore-errors (delete-file tmp-name4
))
901 (ignore-errors (delete-directory tmp-name3
'recursive
)))))
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))
908 (let* ((tmp-name1 (tramp--test-make-temp-name))
909 (tmp-name2 (expand-file-name "foo/bar" tmp-name1
)))
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
)))
921 (ignore-errors (delete-directory tmp-name1
'recursive
)))))
923 (ert-deftest tramp-test14-delete-directory
()
924 "Check `delete-directory'."
925 (skip-unless (tramp--test-enabled))
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
))))
940 (ert-deftest tramp-test15-copy-directory
()
941 "Check `copy-directory'."
942 (skip-unless (tramp--test-enabled))
946 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
947 'tramp-smb-file-name-handler
)))
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
)))
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
)))
973 (delete-directory tmp-name1
'recursive
)
974 (delete-directory tmp-name2
'recursive
)))))
976 (ert-deftest tramp-test16-directory-files
()
977 "Check `directory-files'."
978 (skip-unless (tramp--test-enabled))
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
)))
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
)
999 (should (equal (directory-files
1000 tmp-name1
'full directory-files-no-dot-files-regexp
)
1001 `(,tmp-name2
,tmp-name3
))))
1004 (ignore-errors (delete-directory tmp-name1
'recursive
)))))
1006 (ert-deftest tramp-test17-insert-directory
()
1007 "Check `insert-directory'."
1008 (skip-unless (tramp--test-enabled))
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
)))
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
))
1022 (insert-directory tmp-name1 nil
)
1023 (goto-char (point-min))
1024 (should (looking-at-p (regexp-quote tmp-name1
))))
1026 (insert-directory tmp-name1
"-al")
1027 (goto-char (point-min))
1028 (should (looking-at-p (format "^.+ %s$" (regexp-quote tmp-name1
)))))
1030 (insert-directory (file-name-as-directory tmp-name1
) "-al")
1031 (goto-char (point-min))
1033 (looking-at-p (format "^.+ %s/$" (regexp-quote tmp-name1
)))))
1036 (file-name-as-directory tmp-name1
) "-al" nil
'full-directory-p
)
1037 (goto-char (point-min))
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\\}")))))
1047 (ignore-errors (delete-directory tmp-name1
'recursive
)))))
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))
1054 ;; We must use `file-truename' for the temporary directory, because
1055 ;; it could be located on a symlinked directory. This would let the
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 "//".
1065 (file-remote-p tmp-name1
)
1066 (replace-regexp-in-string
1067 "/" "//" (file-remote-p tmp-name1
'localname
))))
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.
1092 (setq attr
(file-attributes tmp-name1
'string
))
1093 (should (stringp (nth 2 attr
))) ;; Uid.
1094 (should (stringp (nth 3 attr
))) ;; Gid.
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
1104 (file-remote-p (file-truename tmp-name1
) 'localname
)))
1105 (delete-file tmp-name2
))
1107 (should (string-equal (error-message-string err
)
1108 "make-symbolic-link not supported"))))
1110 ;; Check, that "//" in symlinks are handled properly.
1112 (let ((default-directory tramp-test-temporary-file-directory
))
1116 (tramp-file-name-localname (tramp-dissect-file-name tmp-name3
))
1117 (tramp-file-name-localname (tramp-dissect-file-name tmp-name2
)))
1119 (when (file-symlink-p tmp-name2
)
1120 (setq attr
(file-attributes tmp-name2
))
1124 (tramp-file-name-localname (tramp-dissect-file-name tmp-name3
))))
1125 (delete-file tmp-name2
))
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
)))
1136 (ignore-errors (delete-directory tmp-name1
))
1137 (ignore-errors (delete-file tmp-name1
))
1138 (ignore-errors (delete-file tmp-name2
)))))
1140 (ert-deftest tramp-test19-directory-files-and-attributes
()
1141 "Check `directory-files-and-attributes'."
1142 (skip-unless (tramp--test-enabled))
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
))
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".
1167 (file-attributes (expand-file-name (car elt
) tmp-name2
)))
1170 (equal (file-attributes (expand-file-name (car elt
) tmp-name2
))
1172 (setq attr
(directory-files-and-attributes tmp-name2
'full
))
1174 (unless (equal (nth 5 (file-attributes (car elt
))) '(0 0))
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"))))
1181 (ignore-errors (delete-directory tmp-name1
'recursive
)))))
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))
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
))))
1195 (let ((tmp-name (tramp--test-make-temp-name)))
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
))))
1212 (ignore-errors (delete-file tmp-name
)))))
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))
1219 ;; We must use `file-truename' for the temporary directory, because
1220 ;; it could be located on a symlinked directory. This would let the
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
)))
1228 ;; Check `make-symbolic-link'.
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.
1237 (make-symbolic-link tmp-name1 tmp-name2
)
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
)))
1251 (delete-file tmp-name1
)
1252 (delete-file tmp-name2
)))
1254 ;; Check `add-name-to-file'.
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
)))
1269 (delete-file tmp-name1
)
1270 (delete-file tmp-name2
)))
1272 ;; Check `file-truename'.
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
)))
1281 (string-equal (file-truename tmp-name1
) (file-truename tmp-name2
)))
1282 (should (file-equal-p tmp-name1 tmp-name2
)))
1284 (delete-file tmp-name1
)
1285 (delete-file tmp-name2
)))
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
)))))))
1294 (ert-deftest tramp-test22-file-times
()
1295 "Check `set-file-times' and `file-newer-than-file-p'."
1296 (skip-unless (tramp--test-enabled))
1300 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1301 '(tramp-gvfs-file-name-handler tramp-smb-file-name-handler
))))
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)))
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
))))
1329 (delete-file tmp-name1
)
1330 (delete-file tmp-name2
)))))
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))
1336 (let ((tmp-name (tramp--test-make-temp-name)))
1339 (write-region "foo" nil tmp-name
)
1340 (should (file-exists-p tmp-name
))
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)))))
1349 (ignore-errors (delete-file tmp-name
)))))
1351 (ert-deftest tramp-test24-file-name-completion
()
1352 "Check `file-name-completion' and `file-name-all-completions'."
1353 (skip-unless (tramp--test-enabled))
1355 (let ((tmp-name (tramp--test-make-temp-name)))
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"))
1366 (equal (file-name-completion "b" tmp-name
'file-directory-p
) "boz/"))
1367 (should (equal (file-name-all-completions "fo" tmp-name
) '("foo")))
1369 (equal (sort (file-name-all-completions "b" tmp-name
) 'string-lessp
)
1373 (ignore-errors (delete-directory tmp-name
'recursive
)))))
1375 (ert-deftest tramp-test25-load
()
1377 (skip-unless (tramp--test-enabled))
1379 (let ((tmp-name (tramp--test-make-temp-name)))
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
)))
1392 (and (featurep 'tramp-test-load
) (unload-feature 'tramp-test-load
))
1393 (delete-file tmp-name
)))))
1395 (ert-deftest tramp-test26-process-file
()
1396 "Check `process-file'."
1397 (skip-unless (tramp--test-enabled))
1401 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1402 '(tramp-gvfs-file-name-handler tramp-smb-file-name-handler
))))
1404 (let* ((tmp-name (tramp--test-make-temp-name))
1405 (fnnd (file-name-nondirectory tmp-name
))
1406 (default-directory tramp-test-temporary-file-directory
)
1407 kill-buffer-query-functions
)
1410 ;; We cannot use "/bin/true" and "/bin/false"; those paths
1411 ;; do not exist on hydra.
1412 (should (zerop (process-file "true")))
1413 (should-not (zerop (process-file "false")))
1414 (should-not (zerop (process-file "binary-does-not-exist")))
1416 (write-region "foo" nil tmp-name
)
1417 (should (file-exists-p tmp-name
))
1418 (should (zerop (process-file "ls" nil t nil fnnd
)))
1419 ;; `ls' could produce colorized output.
1420 (goto-char (point-min))
1421 (while (re-search-forward tramp-color-escape-sequence-regexp nil t
)
1422 (replace-match "" nil nil
))
1423 (should (string-equal (format "%s\n" fnnd
) (buffer-string)))
1424 (should-not (get-buffer-window (current-buffer) t
))
1426 ;; Second run. The output must be appended.
1427 (should (zerop (process-file "ls" nil t t fnnd
)))
1428 ;; `ls' could produce colorized output.
1429 (goto-char (point-min))
1430 (while (re-search-forward tramp-color-escape-sequence-regexp nil t
)
1431 (replace-match "" nil nil
))
1433 (string-equal (format "%s\n%s\n" fnnd fnnd
) (buffer-string)))
1434 ;; A non-nil DISPLAY must not raise the buffer.
1435 (should-not (get-buffer-window (current-buffer) t
))))
1438 (ignore-errors (delete-file tmp-name
)))))
1440 (ert-deftest tramp-test27-start-file-process
()
1441 "Check `start-file-process'."
1442 (skip-unless (tramp--test-enabled))
1446 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1447 '(tramp-adb-file-name-handler
1448 tramp-gvfs-file-name-handler
1449 tramp-smb-file-name-handler
))))
1451 (let ((default-directory tramp-test-temporary-file-directory
)
1452 (tmp-name (tramp--test-make-temp-name))
1453 kill-buffer-query-functions proc
)
1456 (setq proc
(start-file-process "test1" (current-buffer) "cat"))
1457 (should (processp proc
))
1458 (should (equal (process-status proc
) 'run
))
1459 (process-send-string proc
"foo")
1460 (process-send-eof proc
)
1462 (with-timeout (10 (ert-fail "`start-file-process' timed out"))
1463 (while (< (- (point-max) (point-min)) (length "foo"))
1464 (accept-process-output proc
1)))
1465 (should (string-equal (buffer-string) "foo")))
1468 (ignore-errors (delete-process proc
)))
1472 (write-region "foo" nil tmp-name
)
1473 (should (file-exists-p tmp-name
))
1476 "test2" (current-buffer)
1477 "cat" (file-name-nondirectory tmp-name
)))
1478 (should (processp proc
))
1480 (with-timeout (10 (ert-fail "`start-file-process' timed out"))
1481 (while (< (- (point-max) (point-min)) (length "foo"))
1482 (accept-process-output proc
1)))
1483 (should (string-equal (buffer-string) "foo")))
1487 (delete-process proc
)
1488 (delete-file tmp-name
)))
1492 (setq proc
(start-file-process "test3" (current-buffer) "cat"))
1493 (should (processp proc
))
1494 (should (equal (process-status proc
) 'run
))
1497 (lambda (p s
) (with-current-buffer (process-buffer p
) (insert s
))))
1498 (process-send-string proc
"foo")
1499 (process-send-eof proc
)
1501 (with-timeout (10 (ert-fail "`start-file-process' timed out"))
1502 (while (< (- (point-max) (point-min)) (length "foo"))
1503 (accept-process-output proc
1)))
1504 (should (string-equal (buffer-string) "foo")))
1507 (ignore-errors (delete-process proc
)))))
1509 (ert-deftest tramp-test28-shell-command
()
1510 "Check `shell-command'."
1511 (skip-unless (tramp--test-enabled))
1515 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1516 '(tramp-adb-file-name-handler
1517 tramp-gvfs-file-name-handler
1518 tramp-smb-file-name-handler
))))
1520 (let ((tmp-name (tramp--test-make-temp-name))
1521 (default-directory tramp-test-temporary-file-directory
)
1522 kill-buffer-query-functions
)
1525 (write-region "foo" nil tmp-name
)
1526 (should (file-exists-p tmp-name
))
1528 (format "ls %s" (file-name-nondirectory tmp-name
)) (current-buffer))
1529 ;; `ls' could produce colorized output.
1530 (goto-char (point-min))
1531 (while (re-search-forward tramp-color-escape-sequence-regexp nil t
)
1532 (replace-match "" nil nil
))
1535 (format "%s\n" (file-name-nondirectory tmp-name
)) (buffer-string))))
1538 (ignore-errors (delete-file tmp-name
)))
1542 (write-region "foo" nil tmp-name
)
1543 (should (file-exists-p tmp-name
))
1544 (async-shell-command
1545 (format "ls %s" (file-name-nondirectory tmp-name
)) (current-buffer))
1546 (set-process-sentinel (get-buffer-process (current-buffer)) nil
)
1548 (with-timeout (10 (ert-fail "`async-shell-command' timed out"))
1549 (while (< (- (point-max) (point-min))
1550 (1+ (length (file-name-nondirectory tmp-name
))))
1551 (accept-process-output (get-buffer-process (current-buffer)) 1)))
1552 ;; `ls' could produce colorized output.
1553 (goto-char (point-min))
1554 (while (re-search-forward tramp-color-escape-sequence-regexp nil t
)
1555 (replace-match "" nil nil
))
1556 ;; There might be a nasty "Process *Async Shell* finished" message.
1557 (goto-char (point-min))
1559 (narrow-to-region (point-min) (point))
1562 (format "%s\n" (file-name-nondirectory tmp-name
)) (buffer-string))))
1565 (ignore-errors (delete-file tmp-name
)))
1569 (write-region "foo" nil tmp-name
)
1570 (should (file-exists-p tmp-name
))
1571 (async-shell-command "read line; ls $line" (current-buffer))
1572 (set-process-sentinel (get-buffer-process (current-buffer)) nil
)
1573 (process-send-string
1574 (get-buffer-process (current-buffer))
1575 (format "%s\n" (file-name-nondirectory tmp-name
)))
1577 (with-timeout (10 (ert-fail "`async-shell-command' timed out"))
1578 (while (< (- (point-max) (point-min))
1579 (1+ (length (file-name-nondirectory tmp-name
))))
1580 (accept-process-output (get-buffer-process (current-buffer)) 1)))
1581 ;; `ls' could produce colorized output.
1582 (goto-char (point-min))
1583 (while (re-search-forward tramp-color-escape-sequence-regexp nil t
)
1584 (replace-match "" nil nil
))
1585 ;; There might be a nasty "Process *Async Shell* finished" message.
1586 (goto-char (point-min))
1588 (narrow-to-region (point-min) (point))
1591 (format "%s\n" (file-name-nondirectory tmp-name
)) (buffer-string))))
1594 (ignore-errors (delete-file tmp-name
)))))
1596 (ert-deftest tramp-test29-vc-registered
()
1597 "Check `vc-registered'."
1598 (skip-unless (tramp--test-enabled))
1601 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1602 'tramp-sh-file-name-handler
))
1604 (tramp--instrument-test-case 10
1605 (let* ((default-directory tramp-test-temporary-file-directory
)
1606 (tmp-name1 (tramp--test-make-temp-name))
1607 (tmp-name2 (expand-file-name "foo" tmp-name1
))
1608 (tramp-remote-process-environment tramp-remote-process-environment
)
1609 (vc-handled-backends
1610 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
1612 ((tramp-find-executable v vc-bzr-program
(tramp-get-remote-path v
))
1613 (setq tramp-remote-process-environment
1614 (cons (format "BZR_HOME=%s"
1615 (file-remote-p tmp-name1
'localname
))
1616 tramp-remote-process-environment
))
1617 ;; We must force a reconnect, in order to activate $BZR_HOME.
1618 (tramp-cleanup-connection
1619 (tramp-dissect-file-name tramp-test-temporary-file-directory
)
1622 ((tramp-find-executable v vc-git-program
(tramp-get-remote-path v
))
1624 ((tramp-find-executable v vc-hg-program
(tramp-get-remote-path v
))
1627 (skip-unless vc-handled-backends
)
1628 (message "%s" vc-handled-backends
)
1632 (make-directory tmp-name1
)
1633 (write-region "foo" nil tmp-name2
)
1634 (should (file-directory-p tmp-name1
))
1635 (should (file-exists-p tmp-name2
))
1636 (should-not (vc-registered tmp-name1
))
1637 (should-not (vc-registered tmp-name2
))
1639 (let ((default-directory tmp-name1
))
1640 ;; Create empty repository, and register the file.
1641 (vc-create-repo (car vc-handled-backends
))
1642 ;; The structure of VC-FILESET is not documented. Let's
1643 ;; hope it won't change.
1646 (list (car vc-handled-backends
)
1647 (list (file-name-nondirectory tmp-name2
))))
1648 ;; `vc-register' has changed its arguments in Emacs 25.1.
1651 nil
(list (car vc-handled-backends
)
1652 (list (file-name-nondirectory tmp-name2
)))))))
1653 (should (vc-registered tmp-name2
)))
1656 (ignore-errors (delete-directory tmp-name1
'recursive
))))))
1658 (ert-deftest tramp-test30-make-auto-save-file-name
()
1659 "Check `make-auto-save-file-name'."
1660 (skip-unless (tramp--test-enabled))
1662 (let ((tmp-name1 (tramp--test-make-temp-name))
1663 (tmp-name2 (tramp--test-make-temp-name)))
1667 ;; Use default `auto-save-file-name-transforms' mechanism.
1668 (let (tramp-auto-save-directory)
1670 (setq buffer-file-name tmp-name1
)
1673 (make-auto-save-file-name)
1674 ;; This is taken from original `make-auto-save-file-name'.
1678 (subst-char-in-string
1679 ?
/ ?
! (replace-regexp-in-string "!" "!!" tmp-name1
)))
1680 temporary-file-directory
)))))
1683 (let (tramp-auto-save-directory auto-save-file-name-transforms
)
1685 (setq buffer-file-name tmp-name1
)
1688 (make-auto-save-file-name)
1690 (format "#%s#" (file-name-nondirectory tmp-name1
))
1691 tramp-test-temporary-file-directory
)))))
1693 ;; Use default `tramp-auto-save-directory' mechanism.
1694 (let ((tramp-auto-save-directory tmp-name2
))
1696 (setq buffer-file-name tmp-name1
)
1699 (make-auto-save-file-name)
1700 ;; This is taken from Tramp.
1704 (tramp-subst-strs-in-string
1713 (should (file-directory-p tmp-name2
))))
1715 ;; Relative file names shall work, too.
1716 (let ((tramp-auto-save-directory "."))
1718 (setq buffer-file-name tmp-name1
1719 default-directory tmp-name2
)
1722 (make-auto-save-file-name)
1723 ;; This is taken from Tramp.
1727 (tramp-subst-strs-in-string
1736 (should (file-directory-p tmp-name2
)))))
1739 (ignore-errors (delete-file tmp-name1
))
1740 (ignore-errors (delete-directory tmp-name2
'recursive
)))))
1742 (defun tramp--test-adb-p ()
1743 "Check, whether the remote host runs Android.
1744 This requires restrictions of file name syntax."
1745 (tramp-adb-file-name-p tramp-test-temporary-file-directory
))
1747 (defun tramp--test-ftp-p ()
1748 "Check, whether an FTP-like method is used.
1749 This does not support globbing characters in file names (yet)."
1750 ;; Globbing characters are ??, ?* and ?\[.
1751 (and (eq (tramp-find-foreign-file-name-handler
1752 tramp-test-temporary-file-directory
)
1753 'tramp-sh-file-name-handler
)
1755 "ftp$" (file-remote-p tramp-test-temporary-file-directory
'method
))))
1757 (defun tramp--test-gvfs-p ()
1758 "Check, whether the remote host runs a GVFS based method.
1759 This requires restrictions of file name syntax."
1760 (tramp-gvfs-file-name-p tramp-test-temporary-file-directory
))
1762 (defun tramp--test-smb-or-windows-nt-p ()
1763 "Check, whether the locale or remote host runs MS Windows.
1764 This requires restrictions of file name syntax."
1765 (or (eq system-type
'windows-nt
)
1766 (tramp-smb-file-name-p tramp-test-temporary-file-directory
)))
1768 (defun tramp--test-hpux-p ()
1769 "Check, whether the remote host runs HP-UX.
1770 Several special characters do not work properly there."
1771 ;; We must refill the cache. `file-truename' does it.
1772 (with-parsed-tramp-file-name
1773 (file-truename tramp-test-temporary-file-directory
) nil
1774 (string-match "^HP-UX" (tramp-get-connection-property v
"uname" ""))))
1776 (defun tramp--test-darwin-p ()
1777 "Check, whether the remote host runs Mac OS X.
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 "^Darwin" (tramp-get-connection-property v
"uname" ""))))
1784 (defun tramp--test-check-files (&rest files
)
1785 "Run a simple but comprehensive test over every file in FILES."
1786 ;; We must use `file-truename' for the temporary directory, because
1787 ;; it could be located on a symlinked directory. This would let the
1789 (let* ((tramp-test-temporary-file-directory
1790 (file-truename tramp-test-temporary-file-directory
))
1791 (tmp-name1 (tramp--test-make-temp-name))
1792 (tmp-name2 (tramp--test-make-temp-name 'local
))
1793 (files (delq nil files
)))
1796 (make-directory tmp-name1
)
1797 (make-directory tmp-name2
)
1799 (let* ((file1 (expand-file-name elt tmp-name1
))
1800 (file2 (expand-file-name elt tmp-name2
))
1801 (file3 (expand-file-name (concat elt
"foo") tmp-name1
)))
1802 (write-region elt nil file1
)
1803 (should (file-exists-p file1
))
1805 ;; Check file contents.
1807 (insert-file-contents file1
)
1808 (should (string-equal (buffer-string) elt
)))
1810 ;; Copy file both directions.
1811 (copy-file file1 tmp-name2
)
1812 (should (file-exists-p file2
))
1814 (should-not (file-exists-p file1
))
1815 (copy-file file2 tmp-name1
)
1816 (should (file-exists-p file1
))
1818 ;; Method "smb" supports `make-symbolic-link' only if the
1819 ;; remote host has CIFS capabilities. tramp-adb.el and
1820 ;; tramp-gvfs.el do not support symbolic links at all.
1823 (make-symbolic-link file1 file3
)
1824 (should (file-symlink-p file3
))
1827 (expand-file-name file1
) (file-truename file3
)))
1830 (car (file-attributes file3
))
1831 (file-remote-p (file-truename file1
) 'localname
)))
1832 ;; Check file contents.
1834 (insert-file-contents file3
)
1835 (should (string-equal (buffer-string) elt
)))
1836 (delete-file file3
))
1838 (should (string-equal (error-message-string err
)
1839 "make-symbolic-link not supported"))))))
1841 ;; Check file names.
1842 (should (equal (directory-files
1843 tmp-name1 nil directory-files-no-dot-files-regexp
)
1844 (sort (copy-sequence files
) 'string-lessp
)))
1845 (should (equal (directory-files
1846 tmp-name2 nil directory-files-no-dot-files-regexp
)
1847 (sort (copy-sequence files
) 'string-lessp
)))
1849 ;; `substitute-in-file-name' could return different values.
1850 ;; For `adb', there could be strange file permissions
1851 ;; preventing overwriting a file. We don't care in this
1855 (substitute-in-file-name (expand-file-name elt tmp-name1
)))
1857 (substitute-in-file-name (expand-file-name elt tmp-name2
))))
1858 (ignore-errors (write-region elt nil file1
))
1859 (should (file-exists-p file1
))
1860 (ignore-errors (write-region elt nil file2 nil
'nomessage
))
1861 (should (file-exists-p file2
))))
1863 (should (equal (directory-files
1864 tmp-name1 nil directory-files-no-dot-files-regexp
)
1866 tmp-name2 nil directory-files-no-dot-files-regexp
)))
1868 ;; Check directory creation. We use a subdirectory "foo"
1869 ;; in order to avoid conflicts with previous file name tests.
1871 (let* ((elt1 (concat elt
"foo"))
1872 (file1 (expand-file-name (concat "foo/" elt
) tmp-name1
))
1873 (file2 (expand-file-name elt file1
))
1874 (file3 (expand-file-name elt1 file1
)))
1875 (make-directory file1
'parents
)
1876 (should (file-directory-p file1
))
1877 (write-region elt nil file2
)
1878 (should (file-exists-p file2
))
1881 (directory-files file1 nil directory-files-no-dot-files-regexp
)
1885 (caar (directory-files-and-attributes
1886 file1 nil directory-files-no-dot-files-regexp
))
1889 ;; Check symlink in `directory-files-and-attributes'.
1892 (make-symbolic-link file2 file3
)
1893 (should (file-symlink-p file3
))
1896 (caar (directory-files-and-attributes
1897 file1 nil
(regexp-quote elt1
)))
1901 (cadr (car (directory-files-and-attributes
1902 file1 nil
(regexp-quote elt1
))))
1903 (file-remote-p (file-truename file2
) 'localname
)))
1905 (should-not (file-exists-p file3
)))
1907 (should (string-equal (error-message-string err
)
1908 "make-symbolic-link not supported"))))
1911 (should-not (file-exists-p file2
))
1912 (delete-directory file1
)
1913 (should-not (file-exists-p file1
)))))
1916 (ignore-errors (delete-directory tmp-name1
'recursive
))
1917 (ignore-errors (delete-directory tmp-name2
'recursive
)))))
1919 (defun tramp--test-special-characters ()
1920 "Perform the test in `tramp-test31-special-characters*'."
1921 ;; Newlines, slashes and backslashes in file names are not
1922 ;; supported. So we don't test. And we don't test the tab
1923 ;; character on Windows or Cygwin, because the backslash is
1924 ;; interpreted as a path separator, preventing "\t" from being
1925 ;; expanded to <TAB>.
1926 (tramp--test-check-files
1927 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1929 (if (or (tramp--test-adb-p) (eq system-type
'cygwin
))
1936 (unless (or (tramp--test-ftp-p)
1937 (tramp--test-gvfs-p)
1938 (tramp--test-smb-or-windows-nt-p))
1940 (unless (or (tramp--test-ftp-p)
1941 (tramp--test-gvfs-p)
1942 (tramp--test-smb-or-windows-nt-p))
1944 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1948 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1951 (if (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1954 (unless (or (tramp--test-gvfs-p) (tramp--test-smb-or-windows-nt-p))
1957 (unless (or (tramp--test-ftp-p) (tramp--test-gvfs-p)) "[foo]bar[baz]")
1960 ;; These tests are inspired by Bug#17238.
1961 (ert-deftest tramp-test31-special-characters
()
1962 "Check special characters in file names."
1963 (skip-unless (tramp--test-enabled))
1965 (tramp--test-special-characters))
1967 (ert-deftest tramp-test31-special-characters-with-stat
()
1968 "Check special characters in file names.
1969 Use the `stat' command."
1970 (skip-unless (tramp--test-enabled))
1973 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1974 'tramp-sh-file-name-handler
))
1975 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
1976 (skip-unless (tramp-get-remote-stat v
)))
1978 (let ((tramp-connection-properties
1980 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
1982 tramp-connection-properties
)))
1983 (tramp--test-special-characters)))
1985 (ert-deftest tramp-test31-special-characters-with-perl
()
1986 "Check special characters in file names.
1987 Use the `perl' command."
1988 (skip-unless (tramp--test-enabled))
1991 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
1992 'tramp-sh-file-name-handler
))
1993 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
1994 (skip-unless (tramp-get-remote-perl v
)))
1996 (let ((tramp-connection-properties
1998 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2000 ;; See `tramp-sh-handle-file-truename'.
2001 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2003 tramp-connection-properties
)))
2004 (tramp--test-special-characters)))
2006 (ert-deftest tramp-test31-special-characters-with-ls
()
2007 "Check special characters in file names.
2008 Use the `ls' command."
2009 (skip-unless (tramp--test-enabled))
2012 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
2013 'tramp-sh-file-name-handler
))
2015 (let ((tramp-connection-properties
2017 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2019 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2021 ;; See `tramp-sh-handle-file-truename'.
2022 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2024 tramp-connection-properties
)))
2025 (tramp--test-special-characters)))
2027 (defun tramp--test-utf8 ()
2028 "Perform the test in `tramp-test32-utf8*'."
2029 (tramp--instrument-test-case 10
2030 (let ((coding-system-for-read 'utf-8
)
2031 (coding-system-for-write 'utf-8
)
2032 (file-name-coding-system 'utf-8
))
2033 (tramp--test-check-files
2034 (unless (tramp--test-hpux-p) "Γυρίστε το Γαλαξία με Ώτο Στοπ")
2035 (unless (or (tramp--test-hpux-p) (tramp--test-darwin-p))
2036 "أصبح بوسعك الآن تنزيل نسخة كاملة من موسوعة ويكيبيديا العربية لتصفحها بلا اتصال بالإنترنت")
2038 "Автостопом по гала́ктике"))))
2040 (ert-deftest tramp-test32-utf8
()
2041 "Check UTF8 encoding in file names and file contents."
2042 (skip-unless (tramp--test-enabled))
2046 (ert-deftest tramp-test32-utf8-with-stat
()
2047 "Check UTF8 encoding in file names and file contents.
2048 Use the `stat' command."
2049 (skip-unless (tramp--test-enabled))
2052 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
2053 'tramp-sh-file-name-handler
))
2054 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
2055 (skip-unless (tramp-get-remote-stat v
)))
2057 (let ((tramp-connection-properties
2059 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2061 tramp-connection-properties
)))
2062 (tramp--test-utf8)))
2064 (ert-deftest tramp-test32-utf8-with-perl
()
2065 "Check UTF8 encoding in file names and file contents.
2066 Use the `perl' command."
2067 (skip-unless (tramp--test-enabled))
2070 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
2071 'tramp-sh-file-name-handler
))
2072 (with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
2073 (skip-unless (tramp-get-remote-perl v
)))
2075 (let ((tramp-connection-properties
2077 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2079 ;; See `tramp-sh-handle-file-truename'.
2080 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2082 tramp-connection-properties
)))
2083 (tramp--test-utf8)))
2085 (ert-deftest tramp-test32-utf8-with-ls
()
2086 "Check UTF8 encoding in file names and file contents.
2087 Use the `ls' command."
2088 (skip-unless (tramp--test-enabled))
2091 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
2092 'tramp-sh-file-name-handler
))
2094 (let ((tramp-connection-properties
2096 `((,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2098 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2100 ;; See `tramp-sh-handle-file-truename'.
2101 (,(regexp-quote (file-remote-p tramp-test-temporary-file-directory
))
2103 tramp-connection-properties
)))
2104 (tramp--test-utf8)))
2106 ;; This test is inspired by Bug#16928.
2107 (ert-deftest tramp-test33-asynchronous-requests
()
2108 "Check parallel asynchronous requests.
2109 Such requests could arrive from timers, process filters and
2110 process sentinels. They shall not disturb each other."
2111 ;; Mark as failed until bug has been fixed.
2112 :expected-result
:failed
2113 (skip-unless (tramp--test-enabled))
2116 (tramp-find-foreign-file-name-handler tramp-test-temporary-file-directory
)
2117 'tramp-sh-file-name-handler
))
2119 ;; Keep instrumentation verbosity 0 until Tramp bug is fixed. This
2120 ;; has the side effect, that this test fails instead to abort. Good
2122 (tramp--instrument-test-case 0
2123 (let* ((tmp-name (tramp--test-make-temp-name))
2124 (default-directory tmp-name
)
2125 (remote-file-name-inhibit-cache t
)
2126 timer buffers kill-buffer-query-functions
)
2130 (make-directory tmp-name
)
2132 ;; Setup a timer in order to raise an ordinary command again
2133 ;; and again. `vc-registered' is well suited, because there
2142 (buffer-name (nth (random (length buffers
)) buffers
)))))))
2144 ;; Create temporary buffers. The number of buffers
2145 ;; corresponds to the number of processes; it could be
2146 ;; increased in order to make pressure on Tramp.
2148 (add-to-list 'buffers
(generate-new-buffer "*temp*")))
2150 ;; Open asynchronous processes. Set process sentinel.
2151 (dolist (buf buffers
)
2152 (async-shell-command "read line; touch $line; echo $line" buf
)
2153 (set-process-sentinel
2154 (get-buffer-process buf
)
2155 (lambda (proc _state
)
2156 (delete-file (buffer-name (process-buffer proc
))))))
2158 ;; Send a string. Use a random order of the buffers. Mix
2159 ;; with regular operation.
2160 (let ((buffers (copy-sequence buffers
))
2163 (setq buf
(nth (random (length buffers
)) buffers
))
2164 (process-send-string
2165 (get-buffer-process buf
) (format "'%s'\n" buf
))
2166 (file-attributes (buffer-name buf
))
2167 (setq buffers
(delq buf buffers
))))
2169 ;; Wait until the whole output has been read.
2170 (with-timeout ((* 10 (length buffers
))
2171 (ert-fail "`async-shell-command' timed out"))
2172 (let ((buffers (copy-sequence buffers
))
2175 (setq buf
(nth (random (length buffers
)) buffers
))
2177 (memq (process-status (get-buffer-process buf
))
2179 (accept-process-output (get-buffer-process buf
) 0.1)
2180 (setq buffers
(delq buf buffers
))))))
2183 (dolist (buf buffers
)
2184 (with-current-buffer buf
2186 (string-equal (format "'%s'\n" buf
) (buffer-string)))))
2188 (directory-files tmp-name nil directory-files-no-dot-files-regexp
)))
2191 (ignore-errors (cancel-timer timer
))
2192 (ignore-errors (delete-directory tmp-name
'recursive
))
2193 (dolist (buf buffers
)
2194 (ignore-errors (kill-buffer buf
)))))))
2196 (ert-deftest tramp-test34-recursive-load
()
2197 "Check that Tramp does not fail due to recursive load."
2198 (skip-unless (tramp--test-enabled))
2203 "(expand-file-name %S)"
2204 tramp-test-temporary-file-directory
)
2206 "(let ((default-directory %S)) (expand-file-name %S))"
2207 tramp-test-temporary-file-directory
2208 temporary-file-directory
)))
2212 (shell-command-to-string
2214 "%s -batch -Q -L %s --eval %s"
2215 (expand-file-name invocation-name invocation-directory
)
2216 (mapconcat 'shell-quote-argument load-path
" -L ")
2217 (shell-quote-argument code
)))))))
2219 (ert-deftest tramp-test35-unload
()
2220 "Check that Tramp and its subpackages unload completely.
2221 Since it unloads Tramp, it shall be the last test to run."
2222 ;; Mark as failed until all symbols are unbound.
2223 :expected-result
(if (featurep 'tramp
) :failed
:passed
)
2224 (when (featurep 'tramp
)
2225 (unload-feature 'tramp
'force
)
2226 ;; No Tramp feature must be left.
2227 (should-not (featurep 'tramp
))
2228 (should-not (all-completions "tramp" (delq 'tramp-tests features
)))
2229 ;; `file-name-handler-alist' must be clean.
2230 (should-not (all-completions "tramp" (mapcar 'cdr file-name-handler-alist
)))
2231 ;; There shouldn't be left a bound symbol. We do not regard our
2232 ;; test symbols, and the Tramp unload hooks.
2235 (and (or (boundp x
) (functionp x
))
2236 (string-match "^tramp" (symbol-name x
))
2237 (not (string-match "^tramp--?test" (symbol-name x
)))
2238 (not (string-match "unload-hook$" (symbol-name x
)))
2239 (ert-fail (format "`%s' still bound" x
)))))
2240 ;; There shouldn't be left a hook function containing a Tramp
2241 ;; function. We do not regard the Tramp unload hooks.
2245 (string-match "-hooks?$" (symbol-name x
))
2246 (not (string-match "unload-hook$" (symbol-name x
)))
2247 (consp (symbol-value x
))
2248 (ignore-errors (all-completions "tramp" (symbol-value x
)))
2249 (ert-fail (format "Hook `%s' still contains Tramp function" x
)))))))
2253 ;; * dired-compress-file
2256 ;; * file-ownership-preserved-p
2257 ;; * file-selinux-context
2258 ;; * find-backup-file-name
2260 ;; * set-file-selinux-context
2262 ;; * Work on skipped tests. Make a comment, when it is impossible.
2263 ;; * Fix `tramp-test15-copy-directory' for `smb'. Using tar in a pipe
2264 ;; doesn't work well when an interactive password must be provided.
2265 ;; * Fix `tramp-test27-start-file-process' on MS Windows (`process-send-eof'?).
2266 ;; * Fix Bug#16928. Set expected error of `tramp-test33-asynchronous-requests'.
2267 ;; * Fix `tramp-test35-unload' (Not all symbols are unbound). Set
2270 (defun tramp-test-all (&optional interactive
)
2271 "Run all tests for \\[tramp]."
2274 (if interactive
'ert-run-tests-interactively
'ert-run-tests-batch
) "^tramp"))
2276 (provide 'tramp-tests
)
2277 ;;; tramp-tests.el ends here