1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
|
# -*- tcl -*-
# Support code for the tests of the find command (and incremental find).
#
# Copyright (c) 2007-2015 by Andreas Kupries <andreas_kupries@users.sourceforge.net>
# All rights reserved.
#
# RCS: @(#) $Id: find.setup,v 1.3 2012/08/29 20:42:19 andreas_kupries Exp $
# -------------------------------------------------------------------------
# Build a sample tree to search
# Structure
#
# dir
# +--{find 1}
# +--{find 2}
# | +--{file* 2} (This file is unix only)
# +--{file 1}
#
# dir2
# +-- dotfiles
# +-- .foo
# +-- foo
proc f_setup {} {
makeDirectory {find 1}
makeDirectory [file join {find 1} {find 2}]
makeFile "" [file join {find 1} {file [1]}]
if {[string equal $::tcl_platform(platform) windows]} return
makeFile "test" [file join {find 1} {find 2} {file* 2}]
return
}
proc f_cleanup {} {
# Remove sym link first. Not doing this causes the file delete for
# the directory to fail (on Windows, Unix would have been fine).
catch {removeFile [file join {find 1} {find 2} {file 3}]}
removeDirectory {find 1}
return
}
# Extend the previous sample tree with circular symbolic
# links. Unix-only.
#
# dir
# +--{find 1}
# +--{find 2} <----------+
# | +--{file* 2} |
# | +--{file 3} --> ../{find 2} -+
# +--{file [1]}
proc f_setupcircle {} {
f_setup
set fthree [file join {find 1} {find 2} {file 3}]
set path [makeFile "" $fthree]
removeFile $fthree
# Added use of 'file link' for Tcl 8.4+, on windows, to have a
# modicum of x-platform testing regarding the handling of symbolic
# links.
set target [file join .. {find 2}]
if {
[string equal $::tcl_platform(platform) windows] &&
[package vsatisfies [package require Tcl] 8.4]
} {
if {[string equal $::tcl_platform(platform) windows]} {
# Windows doesn't like the .. in the target, it needs an
# absolute path.
# NOTE/BUG Even so the 'fullnormalize' in the traverser
# returns bogus results for the link, whereas use of file
# normalize and fullnormalize in a simple tclsh,
# i.e. outside of the testing is ok.
# It seems if the 'file join' in fullnormalize is replaced
# by a plain / then the results are ok again => The
# handling of paths on Windows by the Tcl core is bogus in
# some way which breaks the core 'normalize'.
set here [pwd]
cd [file dirname [tempPath $fthree]]
file link [file tail $fthree] [file normalize $target]
cd $here
} else {
file link [tempPath $fthree] $target
}
return
}
exec ln -s $target [tempPath $fthree]
return
}
# Change previous sample tree so that its circular symbolic
# link points to the base directory. Unix-only.
#
# dir
# +--{find 1} <----------+
# +--{find 2} |
# | +--{file* 2} |
# | +--{file 3} --> ../../find 1 +
# +--{file [1]}
proc f_setupcircle2 {} {
f_setup
set fthree [file join {find 1} {find 2} {file 3}]
set path [makeFile "" $fthree]
removeFile $fthree
# Added use of 'file link' for Tcl 8.4+, on windows, to have a
# modicum of x-platform testing regarding the handling of symbolic
# links.
set target [file join .. .. {find 1}]
if {
[string equal $::tcl_platform(platform) windows] &&
[package vsatisfies [package require Tcl] 8.4]
} {
if {[string equal $::tcl_platform(platform) windows]} {
# Windows doesn't like the .. in the target, it needs an
# absolute path.
# NOTE/BUG Even so the 'fullnormalize' in the traverser
# returns bogus results for the link, whereas use of file
# normalize and fullnormalize in a simple tclsh,
# i.e. outside of the testing is ok.
# It seems if the 'file join' in fullnormalize is replaced
# by a plain / then the results are ok again => The
# handling of paths on Windows by the Tcl core is bogus in
# some way which breaks the core 'normalize'.
set here [pwd]
cd [file dirname [tempPath $fthree]]
file link [file tail $fthree] [file normalize $target]
cd $here
} else {
file link [tempPath $fthree] $target
}
return
}
exec ln -s $target [tempPath $fthree]
return
}
# Extend the regular sample tree with a broken symbolic link. Unix-only.
#
# dir
# +--{find 1}
# +--{find 2}
# | +--{file* 2}
# | +--{file 3} --> BROKEN
# +--{file [1]}
proc f_setupbroken {} {
f_setup
set fthree [file join {find 1} {find 2} {file 3}]
set path [makeFile "" $fthree]
removeFile $fthree
# Added use of 'file link' for Tcl 8.4+, on windows, to have a
# modicum of x-platform testing regarding the handling of symbolic
# links.
set target BROKEN
if {
[string equal $::tcl_platform(platform) windows] &&
[package vsatisfies [package require Tcl] 8.4]
} {
makeFile {} [file dirname $fthree]/BROKEN
if {[string equal $::tcl_platform(platform) windows]} {
# Windows doesn't like the .. in the target, it needs an
# absolute path.
# NOTE/BUG Even so the 'fullnormalize' in the traverser
# returns bogus results for the link, whereas use of file
# normalize and fullnormalize in a simple tclsh,
# i.e. outside of the testing is ok.
# It seems if the 'file join' in fullnormalize is replaced
# by a plain / then the results are ok again => The
# handling of paths on Windows by the Tcl core is bogus in
# some way which breaks the core 'normalize'.
set here [pwd]
cd [file dirname [tempPath $fthree]]
file link [file tail $fthree] [file normalize $target]
cd $here
} else {
file link [tempPath $fthree] $target
}
removeFile [file dirname $fthree]/BROKEN
return
}
exec ln -s $target [tempPath $fthree]
return
}
proc f_setupdot {} {
makeDirectory dotfiles
makeFile "" [file join dotfiles foo]
makeFile "" [file join dotfiles .foo]
return
}
# Complex directory tree with DAG-links and circular links. We want to
# break the latter, but not the former. I.e. DAG-links allow us to
# find a file by multiple paths, and we wish to see these all.
#
# Paths Links Seen Broken Why
# dir/a | a
# dir/b | a/c
# dir/a/c | a/c/g == a
# dir/a/d | a/c/h
# dir/a/c/g --> .. | a/c/h/e == c
# dir/a/c/h --> ../../b | a/c/h/f
# dir/a/c/i | a/c/i
# dir/b/e --> ../a/c | a/d
# dir/b/f | b
# | b/e
# | b/e/g
# | b/e/g/c
# | b/e/g/c/g == b/e/g
# | b/e/g/c/h == b
# | b/e/g/d
# | b/e/h == b
# | b/e/i
# | b/f
proc pathmap {args} {
set res {}
foreach p $args {
lappend res [tempPath $p]
}
return $res
}
proc f_setupcircle3 {} {
makeDirectory z/a
makeDirectory z/a/c
makeDirectory z/b
makeFile "" z/a/d
makeFile "" z/a/c/i
makeFile "" z/b/f
f_link z/a/c/g ../../a
f_link z/a/c/h ../../b
f_link z/b/e ../a/c
return
}
proc f_cleanup3 {} {
# Remove sym links first. Not doing this causes the file delete for
# the directory to fail (on Windows, Unix would have been fine).
catch { removeFile z/a/c/g }
catch { removeFile z/a/c/h }
catch { removeFile z/b/e }
removeDirectory z
return
}
proc f_link {src target} {
# Added use of 'file link' for Tcl 8.4+, on windows, to have a
# modicum of x-platform testing regarding the handling of symbolic
# links.
if {
[string equal $::tcl_platform(platform) windows] &&
[package vsatisfies [package require Tcl] 8.4]
} {
if {[string equal $::tcl_platform(platform) windows]} {
# Windows doesn't like the .. in the target, it needs an
# absolute path.
# NOTE/BUG Even so the 'fullnormalize' in the traverser
# returns bogus results for the link, whereas use of file
# normalize and fullnormalize in a simple tclsh,
# i.e. outside of the testing is ok.
# It seems if the 'file join' in fullnormalize is replaced
# by a plain / then the results are ok again => The
# handling of paths on Windows by the Tcl core is bogus in
# some way which breaks the core 'normalize'.
set here [pwd]
cd [file dirname [tempPath $src]]
file link [file tail $src] [file normalize $target]
cd $here
} else {
file link [tempPath $src] $target
}
return
}
exec ln -s $target [tempPath $src]
return
}
proc f_cleanupdot {} {
removeDirectory dotfiles
return
}
proc f_setupnostat {} {
# Finding inaccessible directories. Unix only, as I do not know
# how to make the directory inaccessible on Windows, and then
# reaccessible again.
makeDirectory find3
makeDirectory find3/find4
makeFile {} find3/find4/file5
if {[string equal $::tcl_platform(platform) windows]} return
exec chmod -x [tempPath find3/find4]
return
}
proc f_cleanupnostat {} {
if {![string equal $::tcl_platform(platform) windows]} {
exec chmod +x [tempPath find3/find4]
}
removeDirectory find3
return
}
proc f_setupnoread {} {
# Finding unreadable directories.
makeDirectory find3
makeDirectory find3/find4
makeFile {} find3/find4/file5
if {[string equal $::tcl_platform(platform) windows]} {
file attributes -readonly 1 [tempPath find3/find4]
} else {
exec chmod -r [tempPath find3/find4]
}
return
}
proc f_cleanupnoread {} {
if {[string equal $::tcl_platform(platform) windows]} {
file attributes -readonly 0 [tempPath find3/find4]
} else {
exec chmod +r [tempPath find3/find4]
}
removeDirectory find3
return
}
proc f_setup_crossindex {} {
makeDirectory s
makeDirectory s/c
makeDirectory s/c/t
makeDirectory s/d
makeDirectory s/d/t0
makeDirectory s/d/t1
makeDirectory s/d/t2
makeFile "" s/d/t0/b
makeFile "" s/d/t1/b
makeFile "" s/d/t2/b
f_link s/c/t/t0 ../../d/t0
f_link s/c/t/t1 ../../d/t1
f_link s/c/t/t2 ../../d/t2
f_link s/d/t0/s ../../c/t
f_link s/d/t1/s ../../c/t
f_link s/d/t2/s ../../c/t
return
}
proc f_cleanup_crossindex {} {
removeFile s/d/t0/b
removeFile s/d/t1/b
removeFile s/d/t2/b
removeDirectory s
return
}
proc f_cleanall {} {
rename f_link {}
rename f_setup {}
rename f_cleanup {}
rename f_cleanup3 {}
rename f_setupcircle {}
rename f_setupcircle2 {}
rename f_setupcircle3 {}
rename f_setupdot {}
rename f_cleanupdot {}
rename f_setupnostat {}
rename f_cleanupnostat {}
rename f_setupnoread {}
rename f_cleanupnoread {}
rename f_setup_crossindex {}
rename f_cleanup_crossindex {}
rename f_cleanall {}
rename fileIsBiggerThan {}
catch {unset ::res}
return
}
# -------------------------------------------------------------------------
proc fileIsBiggerThan {s f} {
expr {
![file isdirectory $f] &&
([file size $f] > $s)
}
}
# -------------------------------------------------------------------------
|