result)
;; We haven't seen a glob yet, so instead append to the start
;; directory.
- (setq start-dir (file-name-concat start-dir (car globs))))
+ (setq start-dir (concat start-dir (car globs))))
(setq last-saw-recursion nil))
(setq globs (cdr globs)))
(list start-dir
regular expressions, and these cannot support the above constructs."
(let ((globs (eshell-glob-convert glob))
eshell-glob-matches message-shown)
- (unwind-protect
- (apply #'eshell-glob-entries globs)
- (if message-shown
- (message nil)))
- (or (and eshell-glob-matches (sort eshell-glob-matches #'string<))
- (if eshell-error-if-no-glob
- (error "No matches found: %s" glob)
- (if eshell-glob-splice-results
- (list glob)
- glob)))))
+ (if (null (cadr globs))
+ ;; If, after examining GLOB, there are no actual globs, just
+ ;; bail out. This can happen for remote file names using "~",
+ ;; like "/ssh:remote:~/file.txt". During parsing, we can't
+ ;; always be sure if the "~" is a home directory reference or
+ ;; part of a glob (e.g. if the argument was assembled from
+ ;; variables).
+ glob
+ (unwind-protect
+ (apply #'eshell-glob-entries globs)
+ (if message-shown
+ (message nil)))
+ (or (and eshell-glob-matches (sort eshell-glob-matches #'string<))
+ (if eshell-error-if-no-glob
+ (error "No matches found: %s" glob)
+ (if eshell-glob-splice-results
+ (list glob)
+ glob))))))
;; FIXME does this really need to abuse eshell-glob-matches, message-shown?
(defun eshell-glob-entries (path globs only-dirs)
;;; Code:
+(require 'tramp)
(require 'ert)
(require 'em-glob)
(ert-deftest em-glob-test/convert/remote-start-directory ()
"Test converting a glob starting in a remote directory."
- (should (equal (eshell-glob-convert "/ssh:nowhere.invalid:some/where/*.el")
- '("/ssh:nowhere.invalid:/some/where/"
- (("\\`.*\\.el\\'" . "\\`\\.")) nil))))
+ (skip-unless (eshell-tests-remote-accessible-p))
+ (let* ((default-directory ert-remote-temporary-file-directory)
+ (remote (file-remote-p default-directory)))
+ (should (equal (eshell-glob-convert (format "%s/some/where/*.el" remote))
+ `(,(format "%s/some/where/" remote)
+ (("\\`.*\\.el\\'" . "\\`\\.")) nil)))))
\f
;; Glob matching
(let ((eshell-error-if-no-glob t))
(should-error (eshell-extended-glob "*.txt")))))
+(ert-deftest em-glob-test/remote-user-directory ()
+ "Test that remote directories using \"~\" pass through unchanged."
+ (skip-unless (eshell-tests-remote-accessible-p))
+ (let* ((default-directory ert-remote-temporary-file-directory)
+ (remote (file-remote-p default-directory))
+ (eshell-error-if-no-glob t))
+ (should (equal (eshell-extended-glob (format "%s~/file.txt" remote))
+ (format "%s~/file.txt" remote)))))
+
;; em-glob-tests.el ends here