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
|
# This file tests the tclUnixFCmd.c file.
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors. No output means no errors were found.
#
# Copyright (c) 1996 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) unixFCmd.test 1.15 97/11/03 15:58:22
if {[string compare test [info procs test]] == 1} then {source defs}
if {$tcl_platform(platform) != "unix"} {
return
}
if {$user == "root"} {
puts "Skipping unixFCmd tests. They depend on not being able to write to"
puts "certain directories. It would be too dangerous to run them as root."
return
}
proc openup {path} {
testchmod 777 $path
if {[file isdirectory $path]} {
catch {
foreach p [glob [file join $path *]] {
openup $p
}
}
}
}
proc cleanup {args} {
foreach p ". $args" {
set x ""
catch {
set x [glob [file join $p tf*] [file join $p td*]]
}
foreach file $x {
if {[catch {file delete -force -- $file}]} {
openup $file
file delete -force -- $file
}
}
}
}
test unixFCmd-1.1 {TclpRenameFile: EACCES} {
cleanup
file mkdir td1/td2/td3
exec chmod 000 td1/td2
set msg [list [catch {file rename td1/td2/td3 td2} msg] $msg]
exec chmod 755 td1/td2
set msg
} {1 {error renaming "td1/td2/td3": permission denied}}
test unixFCmd-1.2 {TclpRenameFile: EEXIST} {
cleanup
file mkdir td1/td2
file mkdir td2
list [catch {file rename td2 td1} msg] $msg
} {1 {error renaming "td2" to "td1/td2": file already exists}}
test unixFCmd-1.3 {TclpRenameFile: EINVAL} {
cleanup
file mkdir td1
list [catch {file rename td1 td1} msg] $msg
} {1 {error renaming "td1" to "td1/td1": trying to rename a volume or move a directory into itself}}
test unixFCmd-1.4 {TclpRenameFile: EISDIR} {
# can't make it happen
} {}
test unixFCmd-1.5 {TclpRenameFile: ENOENT} {
cleanup
file mkdir td1
list [catch {file rename td2 td1} msg] $msg
} {1 {error renaming "td2": no such file or directory}}
test unixFCmd-1.6 {TclpRenameFile: ENOTDIR} {
# can't make it happen
} {}
test unixFCmd-1.7 {TclpRenameFile: EXDEV} {
cleanup
file mkdir foo/bar
file attr foo -perm 040555
set msg [list [catch {file rename foo/bar /tmp} msg] $msg]
set a1 {1 {can't unlink "foo/bar": permission denied}}
set result [expr {$msg == $a1}]
catch {file delete /tmp/bar}
catch {file attr foo -perm 040777}
catch {file delete -force foo}
set result
} {1}
test unixFCmd-1.8 {Checking EINTR Bug} nonPortable {
testalarm
after 2000
list [testgotsig] [testgotsig]
} {1 0}
test unixFCmd-1.9 {Checking EINTR Bug} nonPortable {
cleanup
set f [open tfalarm w]
puts $f {
after 2000
puts "hello world"
exit 0
}
close $f
testalarm
set pipe [open "|[info nameofexecutable] tfalarm" r+]
set line [read $pipe 1]
catch {close $pipe}
list $line [testgotsig]
} {h 1}
test unixFCmd-2.1 {TclpCopyFile: target exists: lstat(dst) == 0} {
cleanup
exec touch tf1
exec touch tf2
file copy -force tf1 tf2
} {}
test unixFCmd-2.2 {TclpCopyFile: src is symlink} {
cleanup
exec ln -s tf1 tf2
file copy tf2 tf3
file type tf3
} {link}
test unixFCmd-2.3 {TclpCopyFile: src is block} {
cleanup
set null "/dev/null"
while {[file type $null] != "characterSpecial"} {
set null [file join [file dirname $null] [file readlink $null]]
}
# file copy $null tf1
} {}
test unixFCmd-2.4 {TclpCopyFile: src is fifo} {
cleanup
if [catch {exec mknod tf1 p}] {
list 1
} else {
file copy tf1 tf2
expr {"[file type tf1]" == "[file type tf2]"}
}
} {1}
test unixFCmd-2.5 {TclpCopyFile: copy attributes} {
cleanup
exec touch tf1
exec chmod 472 tf1
file copy tf1 tf2
string range [exec ls -l tf2] 0 9
} {-r--rwx-w-}
test unixFCmd-3.1 {CopyFile not done} {
} {}
test unixFCmd-4.1 {TclpDeleteFile not done} {
} {}
test unixFCmd-5.1 {TclpCreateDirectory not done} {
} {}
test unixFCmd-6.1 {TclpCopyDirectory not done} {
} {}
test unixFCmd-7.1 {TclpRemoveDirectory not done} {
} {}
test unixFCmd-8.1 {TraverseUnixTree not done} {
} {}
test unixFCmd-9.1 {TraversalCopy not done} {
} {}
test unixFCmd-10.1 {TraversalDelete not done} {
} {}
test unixFCmd-11.1 {CopyFileAttrs not done} {
} {}
set testConfig(tclGroup) 0
if {[catch {exec {groups}} groupList] == 0} {
if {[lsearch $groupList tcl] != -1} {
set testConfig(tclGroup) 1
}
}
test unixFCmd-12.1 {GetGroupAttribute - file not found} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -group} msg] $msg
} {1 {could not stat file "foo.test": no such file or directory}}
test unixFCmd-12.2 {GetGroupAttribute - file found} {
catch {file delete -force -- foo.test}
close [open foo.test w]
list [catch {file attributes foo.test -group}] [file delete -force -- foo.test]
} {0 {}}
test unixFCmd-13.1 {GetOwnerAttribute - file not found} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -group} msg] $msg
} {1 {could not stat file "foo.test": no such file or directory}}
test unixFCmd-13.2 {GetOwnerAttribute} {
catch {file delete -force -- foo.test}
close [open foo.test w]
list [catch {file attributes foo.test -owner} msg] [string compare $msg $user] [file delete -force -- foo.test]
} {0 0 {}}
test unixFCmd-14.1 {GetPermissionsAttribute - file not found} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -permissions} msg] $msg
} {1 {could not stat file "foo.test": no such file or directory}}
test unixFCmd-14.2 {GetPermissionsAttribute} {
catch {file delete -force -- foo.test}
close [open foo.test w]
list [catch {file attribute foo.test -permissions}] [file delete -force -- foo.test]
} {0 {}}
#groups hard to test
test unixFCmd-15.1 {SetGroupAttribute - invalid group} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -group foozzz} msg] $msg [file delete -force -- foo.test]
} {1 {could not set group for file "foo.test": group "foozzz" does not exist} {}}
test unixFCmd-15.2 {SetGroupAttribute - invalid file} {tclGroup} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -group tcl} msg] $msg
} {1 {could not set group for file "foo.test": no such file or directory}}
#changing owners hard to do
test unixFCmd-16.1 {SetOwnerAttribute - current owner} {
catch {file delete -force -- foo.test}
close [open foo.test w]
list [catch {file attributes foo.test -owner $user} msg] $msg [string compare [file attributes foo.test -owner] $user] [file delete -force -- foo.test]
} {0 {} 0 {}}
test unixFCmd-16.2 {SetOwnerAttribute - invalid file} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -owner $user} msg] $msg
} {1 {could not set owner for file "foo.test": no such file or directory}}
test unixFCmd-16.3 {SetOwnerAttribute - invalid owner} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -owner foozzz} msg] $msg
} {1 {could not set owner for file "foo.test": user "foozzz" does not exist}}
test unixFCmd-17.1 {SetPermissionsAttribute} {
catch {file delete -force -- foo.test}
close [open foo.test w]
list [catch {file attributes foo.test -permissions 0000} msg] $msg [file attributes foo.test -permissions] [file delete -force -- foo.test]
} {0 {} 00000 {}}
test unixFCmd-17.2 {SetPermissionsAttribute} {
catch {file delete -force -- foo.test}
list [catch {file attributes foo.test -permissions 0000} msg] $msg
} {1 {could not set permissions for file "foo.test": no such file or directory}}
test unixFCmd-17.3 {SetPermissionsAttribute} {
catch {file delete -force -- foo.test}
close [open foo.test w]
list [catch {file attributes foo.test -permissions foo} msg] $msg [file delete -force -- foo.test]
} {1 {expected integer but got "foo"} {}}
test unixFCmd-18.1 {Unix pwd} {nonPortable} {
# This test is nonportable because SunOS generates a weird error
# message when the current directory isn't readable.
set cd [pwd]
set nd $cd/tstdir
file mkdir $nd
cd $nd
exec chmod 000 $nd
set r [list [catch {pwd} res] [string range $res 0 36]];
cd $cd;
exec chmod 755 $nd
file delete $nd
set r
} {1 {error getting working directory name:}}
cleanup
|