3 # This software is part of the SBCL system. See the README file for
6 # While most of SBCL is derived from the CMU CL system, the test
7 # files (like this one) were written from scratch after the fork
10 # This software is in the public domain and is provided with
11 # absolutely no warranty. See the COPYING and CREDITS files for
17 testdir
="`pwd -P`" # resolve symbolic links in the directory.
19 set -f # disable filename expansion in the shell.
21 # Test DIRECTORY and TRUENAME.
22 echo this is a
test > test-1.tmp
23 echo this is a
test > test-2.tmp
24 echo this is a
test > wild?
test.tmp
26 ln -s "$testdir" dirlinktest
27 ln -s test-1.tmp link-1
28 ln -s "$testdir/test-2.tmp" link-2
29 ln -s i-do-not-exist link-3
32 ln -s "$testdir/link-6" link-5
33 expected_truenames
=`cat<<EOF
39 #p"$testdir/test-1.tmp"
40 #p"$testdir/test-2.tmp"
41 #p"$testdir/wild\\\\\?test.tmp")
44 # FIXME: the following tests probably can't succeed at all if the
45 # testdir name contains wildcard characters or quotes.
48 (let* ((directory (directory "./*.*"))
49 (truenames (sort directory #'string< :key #'pathname-name)))
50 ;(format t "~&TRUENAMES=~S~%" truenames)
52 (assert (equal truenames $expected_truenames)))
53 (assert (equal (truename "dirlinktest") #p"$testdir/"))
54 (assert (equal (truename "dirlinktest/") #p"$testdir/"))
55 (assert (equal (truename "test-1.tmp") #p"$testdir/test-1.tmp"))
56 (assert (equal (truename "link-1") #p"$testdir/test-1.tmp"))
57 (assert (equal (truename "link-2") #p"$testdir/test-2.tmp"))
58 (assert (equal (truename "link-3") #p"$testdir/link-3"))
59 (assert (equal (truename "link-3/") #p"$testdir/link-3"))
60 (assert (equal (truename "link-4") #p"$testdir/link-4"))
61 (assert (equal (truename "link-5") #p"$testdir/link-5"))
62 (assert (equal (truename "link-6") #p"$testdir/link-6"))
63 (sb-ext:exit :code $EXIT_LISP_WIN)
65 check_status_maybe_lose
"DIRECTORY/TRUENAME part 1" $?
70 (let* ((directory (directory "$testdir/*.*"))
71 (truenames (sort directory #'string< :key #'pathname-name)))
72 ;(format t "~&TRUENAMES=~S~%" truenames)
74 (assert (equal truenames $expected_truenames)))
75 (assert (equal (truename "$testdir/test-1.tmp") #p"$testdir/test-1.tmp"))
76 (assert (equal (truename "$testdir/link-1") #p"$testdir/test-1.tmp"))
77 (assert (equal (truename "$testdir/link-2") #p"$testdir/test-2.tmp"))
78 (assert (equal (truename "$testdir/link-3") #p"$testdir/link-3"))
79 (assert (equal (truename "$testdir/link-4") #p"$testdir/link-4"))
80 (assert (equal (truename "$testdir/link-5") #p"$testdir/link-5"))
81 (assert (equal (truename "$testdir/link-6") #p"$testdir/link-6"))
82 (sb-ext:exit :code $EXIT_LISP_WIN)
84 check_status_maybe_lose
"DIRECTORY/TRUENAME part 2" $?
85 cleanup_test_subdirectory
87 # Test DIRECTORY on a tree structure of directories.
92 mkdir animal
/vertebrate animal
/invertebrate
93 mkdir animal
/vertebrate
/mammal
94 mkdir animal
/vertebrate
/snake
95 mkdir animal
/vertebrate
/bird
96 mkdir animal
/vertebrate
/mammal
/bear
97 mkdir animal
/vertebrate
/mammal
/mythical
98 mkdir animal
/vertebrate
/mammal
/rodent
99 mkdir animal
/vertebrate
/mammal
/ruminant
100 touch animal
/vertebrate
/mammal
/platypus
101 touch animal
/vertebrate
/mammal
/walrus
102 touch animal
/vertebrate
/mammal
/bear
/grizzly
103 touch animal
/vertebrate
/mammal
/mythical
/mermaid
104 touch animal
/vertebrate
/mammal
/mythical
/unicorn
105 touch animal
/vertebrate
/mammal
/rodent
/beaver
106 touch animal
/vertebrate
/mammal
/rodent
/mouse
107 touch animal
/vertebrate
/mammal
/rodent
/rabbit
108 touch animal
/vertebrate
/mammal
/rodent
/rat
109 touch animal
/vertebrate
/mammal
/ruminant
/cow
110 touch animal
/vertebrate
/snake
/python
111 touch plant
/kingsfoil plant
/pipeweed
113 (in-package :cl-user)
114 (defun absolutify (pathname)
115 "Convert a possibly-relative pathname to absolute."
116 (merge-pathnames pathname
117 (make-pathname :directory
119 *default-pathname-defaults*))))
120 (defun sorted-truenamestrings (pathname-designators)
121 "Convert a collection of pathname designators into canonical form
122 using TRUENAME, NAMESTRING, and SORT."
123 (sort (mapcar #'namestring
125 pathname-designators))
127 (defun need-match-1 (directory-pathname result-sorted-truenamestrings)
129 (let ((directory-sorted-truenamestrings (sorted-truenamestrings
130 (directory directory-pathname))))
131 (unless (equal directory-sorted-truenamestrings
132 result-sorted-truenamestrings)
133 (format t "~&~@<DIRECTORY argument = ~_~2I~S~:>~%"
135 (format t "~&~@<DIRECTORY result = ~_~2I~S~:>~%"
136 directory-sorted-truenamestrings)
137 (format t "~&~@<expected result = ~_~2I~S.~:>~%"
138 result-sorted-truenamestrings)
139 (error "mismatch between DIRECTORY and expected result"))))
140 (defun need-match (directory-pathname result-pathnames)
141 "Require that (DIRECTORY DIRECTORY-PATHNAME) return RESULT-PATHNAMES
142 (modulo TRUENAME and NAMESTRING applied to each RESULT-PATHNAME for
143 convenience in e.g. converting Unix filename syntax idiosyncrasies to
144 Lisp filename syntax idiosyncrasies)."
145 (let ((sorted-result-truenamestrings (sorted-truenamestrings
147 ;; Relative and absolute pathnames should give the same result.
148 (need-match-1 directory-pathname
149 sorted-result-truenamestrings)
150 (need-match-1 (absolutify directory-pathname)
151 sorted-result-truenamestrings)))
152 (defun need-matches ()
153 "lotso calls to NEED-MATCH"
154 ;; FIXME: As discussed on sbcl-devel ca. 2001-01-01, DIRECTORY should
155 ;; report Unix directory files contained within its output as e.g.
156 ;; "/usr/bin" instead of the CMU-CL-style "/usr/bin/". In that case,
157 ;; s:/":": in most or all the NEED-MATCHes here.
158 (need-match "./*.*" '("animal/" "dirt" "plant/" "water"))
159 (need-match "*.*" '("animal/" "dirt" "plant/" "water"))
160 (need-match "animal" '("animal/"))
161 (need-match "./animal" '("animal/"))
162 (need-match "animal/*.*" '("animal/invertebrate/" "animal/vertebrate/"))
163 (need-match "animal/*/*.*"
164 '("animal/vertebrate/bird/"
165 "animal/vertebrate/mammal/"
166 "animal/vertebrate/snake/"))
167 (need-match "plant/*.*" '("plant/kingsfoil" "plant/pipeweed"))
168 (need-match "plant/**/*.*" '("plant/kingsfoil" "plant/pipeweed"))
169 (need-match "plant/**/**/*.*" '("plant/kingsfoil" "plant/pipeweed"))
170 (let ((vertebrates (mapcar (lambda (stem)
176 "mammal/bear/" "mammal/bear/grizzly"
177 "mammal/mythical/" "mammal/mythical/mermaid"
178 "mammal/mythical/unicorn"
180 "mammal/rodent/" "mammal/rodent/beaver"
181 "mammal/rodent/mouse" "mammal/rodent/rabbit"
183 "mammal/ruminant/" "mammal/ruminant/cow"
185 "snake/" "snake/python"))))
186 (need-match "animal/vertebrate/**/*.*" vertebrates)
187 (need-match "animal/vertebrate/mammal/../**/*.*" vertebrates)
188 (need-match "animal/vertebrate/mammal/../**/**/*.*" vertebrates)
190 (need-match "animal/vertebrate/mammal/mythical/../**/../**/*.*"
192 (need-match "animal/vertebrate/**/robot.*" nil)
193 (need-match "animal/vertebrate/mammal/../**/*.robot" nil)
194 (need-match "animal/vertebrate/mammal/../**/robot/*.*" nil)
196 (need-match "animal/vertebrate/mammal/robot/../**/../**/*.*" nil))
198 (sb-ext:exit :code $EXIT_LISP_WIN)
200 check_status_maybe_lose
"DIRECTORY/TRUENAME part 3" $?
201 cleanup_test_subdirectory
203 # DIRECTORY pattern matching
204 use_test_subdirectory
232 (setf (logical-pathname-translations "foo")
233 (list (list "**;*.txt.*" (merge-pathnames "foo/**/*.txt"))
234 (list "**;*.*.*" (merge-pathnames "**/*.*"))))
236 (defun test (pattern &rest expected)
237 (let ((wanted (sort (mapcar #'truename expected) #'string< :key #'namestring))
238 (got (sort (directory pattern) #'string< :key #'namestring)))
239 (unless (equal wanted got)
240 (error "wanted:~% ~S~%got:~% ~S" wanted got))))
241 (test "*/a*.txt" "foo/aa.txt" "far/ab.txt" "qar/ac.txt")
242 (test "fo*/a*.t*" "foo/aa.txt" "foo/aa.tmp")
243 (test "*/*b.*" "far/ab.txt" "far/ab.tmp")
244 (test "*a*/*.txt" "far/ab.txt" "qar/ac.txt")
245 (test "*ar/*.txt" "far/ab.txt" "qar/ac.txt")
246 (test "f*.*" "far/" "foo/" "foo.moose/" "foo.bar")
247 (test "f*" "far/" "foo/")
248 (test "*r" "far/" "qar/")
249 (test "*r.*" "far/" "qar/")
250 (test "f*.[mb]*" "foo.moose/" "foo.bar")
253 (test "*/x" "foo/x/" "far/x/")
254 (test "far/*/x" "far/y/x/" "far/x/x/")
255 (test "**/x/" "foo/x/" "far/x/" "far/x/x" "far/y/x/")
256 (test "foo:*.txt" "foo/aa.txt")
257 (test "foo:far;*.txt" "far/ab.txt")
258 (test "foo:foo;*.txt" "foo/aa.txt")
259 (test "foo:**;*.tmp" "foo/aa.tmp" "far/ab.tmp" "qar/ac.tmp")
260 (test "foo:foo;*.tmp" "foo/aa.tmp")
261 (test "c/*/*.bar" "a/z/foo.bar")
262 (exit :code $EXIT_LISP_WIN)
264 check_status_maybe_lose
"DIRECTORY/PATTERNS" $?
266 # Test whether ENSURE-DIRECTORIES-EXIST can create a directory whose
267 # name contains a wildcard character (it used to get itself confused
269 run_sbcl
--eval '(ensure-directories-exist "foo\\*bar/baz.txt")' --eval '(sb-ext:exit)'
271 check_status_maybe_lose
"ENSURE-DIRECTORIES-EXIST part 1" $? \
272 0 "(directory exists)"
274 run_sbcl
--eval '(ensure-directories-exist "foo\\?bar/baz.txt")' --eval '(sb-ext:exit)'
276 check_status_maybe_lose
"ENSURE-DIRECTORIES-EXIST part 2" $? \
277 0 "(directory exists)"
280 use_test_subdirectory
284 run_sbcl
--eval '(let ((*default-pathname-defaults* (truename "sub")))
285 (delete-file "deltest")
287 test -f deltest
&& test ! -f sub
/deltest
288 check_status_maybe_lose
"delete-file via d-p-d" $? \
292 use_test_subdirectory
298 run_sbcl
--eval '(let ((*default-pathname-defaults* (truename "sub")))
299 (rename-file "one" "two"))' \
300 --eval '(rename-file "one" "three")' \
301 --eval '(rename-file "link" "bar")'
303 check_status_maybe_lose
"rename-file" $? \
306 check_status_maybe_lose
"rename-file via d-p-d" $? \
308 test -f foo
&& test -L bar
309 check_status_maybe_lose
"rename-file + symlink" $? \
313 use_test_subdirectory
316 mkdir simple_test_subdir1
317 mkdir simple_test_subdir2
325 ln -s `pwd`/dont_delete_me deep
/linky
326 ln -s `pwd`/me_neither deep
/1/another_linky
330 ln -s dont_delete_me will_fail
332 run_sbcl
--eval '(sb-ext:delete-directory "simple_test_subdir1")' \
333 --eval '(sb-ext:delete-directory "simple_test_subdir2/")' \
334 --eval '(sb-ext:delete-directory "deep" :recursive t)' \
335 --eval '(let ((*default-pathname-defaults* (truename "one")))
336 (delete-directory "one" :recursive t))' \
337 --eval '(handler-case (delete-directory "will_fail")
339 (:no-error (x) (declare (ignore x)) (sb-ext:exit :code 1)))' \
340 --eval '(sb-ext:exit)'
341 check_status_maybe_lose
"delete-directory symlink" $? \
343 test -L will_fail
&& test -d dont_delete_me
344 check_status_maybe_lose
"delete-directory symlink 2" $? \
347 test -d simple_test_subdir1
348 check_status_maybe_lose
"delete-directory 1" $? \
351 test -d simple_test_subdir2
352 check_status_maybe_lose
"delete-directory 2" $? \
356 check_status_maybe_lose
"delete-directory 3" $? \
359 test -d dont_delete_me
360 check_status_maybe_lose
"delete-directory 4" $? \
361 0 "didn't follow link"
364 check_status_maybe_lose
"delete-directory 5" $? \
365 0 "didn't follow link"
367 test -f one
/two
&& test -d one
&& test ! -d one
/one
368 check_status_maybe_lose
"delete-directory via d-p-d" $? \
371 # success convention for script