X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fpathnames.impure.lisp;h=4361c3dce0e0b91803251dc4882402bd1b110f88;hb=HEAD;hp=7f8f065b2045906b6332cc409bf046e6f7d21adb;hpb=a7e90050c1617168d162b7219c4aeede3e90205a;p=sbcl.git diff --git a/tests/pathnames.impure.lisp b/tests/pathnames.impure.lisp index 7f8f065..4361c3d 100644 --- a/tests/pathnames.impure.lisp +++ b/tests/pathnames.impure.lisp @@ -323,7 +323,7 @@ (assert (raises-error? (merge-pathnames (make-string-output-stream)) type-error))) -;;; ensure read/print consistency (or print-not-readable-error) on +;;; ensure print-read consistency (or print-not-readable-error) on ;;; pathnames: (with-test (:name :print/read-consistency) (let ((pathnames (list @@ -337,17 +337,17 @@ (dolist (p pathnames) (print p) (handler-case - (let* ((*print-readably* t) - (new (read-from-string (format nil "~S" p)))) - (unless (equal new p) - (let ((*print-readably* nil)) - (error "oops: host:~S device:~S dir:~S version:~S~% ->~%~ + (let* ((*print-readably* t) + (new (read-from-string (format nil "~S" p)))) + (unless (equal new p) + (let ((*print-readably* nil)) + (error "oops: host:~S device:~S dir:~S version:~S~% ->~%~ host:~S device:~S dir:~S version:~S" - (pathname-host p) (pathname-device p) - (pathname-directory p) (pathname-version p) - (pathname-host new) (pathname-device new) - (pathname-directory new) (pathname-version new))))) - (print-not-readable () + (pathname-host p) (pathname-device p) + (pathname-directory p) (pathname-version p) + (pathname-host new) (pathname-device new) + (pathname-directory new) (pathname-version new))))) + (print-not-readable () nil))))) ;;; BUG 330: "PARSE-NAMESTRING should accept namestrings as the @@ -400,7 +400,7 @@ ;;; still right. (with-test (:name :root-truename) (let ((pathname (truename "/"))) - (assert (equalp pathname #p"/")) + (assert (equalp pathname (merge-pathnames #p"/"))) (assert (equal (pathname-directory pathname) '(:absolute))))) ;;; we failed to unparse logical pathnames with :NAME :WILD :TYPE NIL. @@ -531,8 +531,7 @@ ;;; Reported by Willem Broekema: Reading #p"\\\\" caused an error due ;;; to insufficient sanity in input testing in EXTRACT-DEVICE (in ;;; src;code;win32-pathname). -#+win32 -(with-test (:name :bug-489698) +(with-test (:name :bug-489698 :skipped-on '(not :win32)) (assert (equal (make-pathname :directory '(:absolute)) (read-from-string "#p\"\\\\\\\\\"")))) @@ -568,4 +567,56 @@ (ignore-errors (delete-file bar)) (setf (logical-pathname-translations "SYS") translations)))) +(with-test (:name :tilde-expansion) + (assert (equal '(:absolute :home "foo") (pathname-directory "~/foo/bar.txt"))) + (assert (equal '(:absolute (:home "jdoe") "quux") (pathname-directory "~jdoe/quux/"))) + (assert (equal "~/foo/x" (namestring (make-pathname :directory '(:absolute :home "foo") + :name "x")))) + (assert (equal (native-namestring (merge-pathnames "a/b.c" (user-homedir-pathname))) + (native-namestring #p"~/a/b.c"))) + ;; Not a directory. + (assert (equal (native-namestring #p"~foo") "~foo")) + ;; Not at the start of the first directory + (assert (equal (native-namestring #p"foo/~/bar") + #-win32 "foo/~/bar" + #+win32 "foo\\~\\bar")) + (equal (native-namestring (merge-pathnames "~/")) + (native-namestring (user-homedir-pathname)))) + +;;; lp#673625 +(with-test (:name :pathname-escape-first-directory-component + :fails-on :win32) + ;; ~ / :HOME + (assert (equal (pathname-directory #p"\\~/foo/") '(:relative "~" "foo"))) + (assert (equal (native-namestring #p"\\~/foo/") "~/foo/")) + (assert (equal (namestring (make-pathname :directory '(:absolute "~zot"))) + "\\~zot/")) + ;; * / :WILD + (assert (equal (pathname-directory #p"\\*/") '(:relative "*")))) + +(with-test (:name :ensure-directories-exist-with-odd-d-p-d) + (let ((*default-pathname-defaults* #p"/tmp/foo")) + (ensure-directories-exist "/"))) + +(with-test (:name :long-file-name :skipped-on '(not :win32)) + (let* ((x '("hint--if-you-are-having-trouble-deleting-this-test-directory" + "use-the-7zip-file-manager")) + (base (truename + (directory-namestring (or *load-pathname* *compile-file-pathname*)))) + (shallow (make-pathname :directory `(:relative ,(car x)))) + (shallow (merge-pathnames shallow base)) + (deep (make-pathname + :directory `(:relative ,@(loop repeat 10 appending x)))) + (deep (merge-pathnames deep base)) + (native (sb-ext:native-namestring deep))) + (assert (> (length native) 260)) + (assert (eql 3 (mismatch "\\\\?" native))) + (assert (not (probe-file shallow))) + (unwind-protect + (progn + (ensure-directories-exist deep) + (assert (probe-file deep))) + (sb-ext:delete-directory shallow :recursive t)) + (assert (not (probe-file shallow))))) + ;;;; success