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
|
# -*- tcl -*-
# Support code for the tests of the find command (and incremental find).
#
# Copyright (c) 2007 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
}
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_cleanall {} {
rename f_setup {}
rename f_cleanup {}
rename f_setupcircle {}
rename f_setupdot {}
rename f_cleanupdot {}
rename f_setupnostat {}
rename f_cleanupnostat {}
rename f_setupnoread {}
rename f_cleanupnoread {}
rename f_cleanall {}
rename fileIsBiggerThan {}
catch {unset ::res}
return
}
# -------------------------------------------------------------------------
proc fileIsBiggerThan {s f} {
expr {
![file isdirectory $f] &&
([file size $f] > $s)
}
}
# -------------------------------------------------------------------------
|