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
|
# This file tests the tclfCmd.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) 1997 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: @(#) macFCmd.test 1.3 97/06/23 18:24:10
#
if {$tcl_platform(platform) != "macintosh"} {
return
}
if {[string compare test [info procs test]] == 1} then {source defs}
catch {file delete -force foo.dir}
file mkdir foo.dir
if {[catch {file attributes foo.dir -readonly 1}]} {
set testConfig(fileSharing) 0
set testConfig(notFileSharing) 1
} else {
set testConfig(fileSharing) 1
set testConfig(notFileSharing) 0
}
file delete -force foo.dir
test macFCmd-1.1 {GetFileFinderAttributes - no file} {
catch {file delete -force foo.file}
list [catch {file attributes foo.file -creator} msg] $msg
} {1 {couldn't get attributes for file ":foo.file": no such file or directory}}
test macFCmd-1.2 {GetFileFinderAttributes - creator} {
catch {file delete -force foo.file}
catch {close [open foo.file w]}
list [catch {file attributes foo.file -creator} msg] $msg [file delete -force foo.file]
} {0 {MPW } {}}
test macFCmd-1.3 {GetFileFinderAttributes - type} {
catch {file delete -force foo.file}
catch {close [open foo.file w]}
list [catch {file attributes foo.file -type} msg] $msg [file delete -force foo.file]
} {0 TEXT {}}
test macFCmd-1.4 {GetFileFinderAttributes - not hidden} {
catch {file delete -force foo.file}
catch {close [open foo.file w]}
list [catch {file attributes foo.file -hidden} msg] $msg [file delete -force foo.file]
} {0 0 {}}
test macFCmd-1.5 {GetFileFinderAttributes - hidden} {
catch {file delete -force foo.file}
catch {close [open foo.file w]}
file attributes foo.file -hidden 1
list [catch {file attributes foo.file -hidden} msg] $msg [file delete -force foo.file]
} {0 1 {}}
test macFCmd-1.6 {GetFileFinderAttributes - folder creator} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -creator} msg] $msg [file delete -force foo.dir]
} {0 Fldr {}}
test macFCmd-1.7 {GetFileFinderAttributes - folder type} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -type} msg] $msg [file delete -force foo.dir]
} {0 Fldr {}}
test macFCmd-1.8 {GetFileFinderAttributes - folder hidden} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -hidden} msg] $msg [file delete -force foo.dir]
} {0 0 {}}
test macFCmd-2.1 {GetFileReadOnly - bad file} {
catch {file delete -force foo.file}
list [catch {file attributes foo.file -readonly} msg] $msg
} {1 {couldn't get attributes for file ":foo.file": no such file or directory}}
test macFCmd-2.2 {GetFileReadOnly - file not read only} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -readonly} msg] $msg [file delete -force foo.file]
} {0 0 {}}
test macFCmd-2.3 {GetFileReadOnly - file read only} {
catch {file delete -force foo.file}
close [open foo.file w]
file attributes foo.file -readonly 1
list [catch {file attributes foo.file -readonly} msg] $msg [file delete -force foo.file]
} {0 1 {}}
test macFCmd-2.4 {GetFileReadOnly - directory not read only} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -readonly} msg] $msg [file delete -force foo.dir]
} {0 0 {}}
test macFCmd-2.5 {GetFileReadOnly - directory read only} {fileSharing} {
catch {file delete -force foo.dir}
file mkdir foo.dir
file attributes foo.dir -readonly 1
list [catch {file attributes foo.dir -readonly} msg] $msg [file delete -force foo.dir]
} {0 1 {}}
test macFCmd-3.1 {SetFileFinderAttributes - bad file} {
catch {file delete -force foo.file}
list [catch {file attributes foo.file -creator FOOO} msg] $msg
} {1 {couldn't set attributes for file ":foo.file": no such file or directory}}
test macFCmd-3.2 {SetFileFinderAttributes - creator} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -creator FOOO} msg] $msg [file attributes foo.file -creator] [file delete -force foo.file]
} {0 {} FOOO {}}
test macFCmd-3.3 {SetFileFinderAttributes - bad creator} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -creator 0} msg] $msg [file delete -force foo.file]
} {1 {expected Macintosh OS type but got "0"} {}}
test macFCmd-3.4 {SetFileFinderAttributes - hidden} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -hidden 1} msg] $msg [file attributes foo.file -hidden] [file delete -force foo.file]
} {0 {} 1 {}}
test macFCmd-3.5 {SetFileFinderAttributes - type} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -type FOOO} msg] $msg [file attributes foo.file -type] [file delete -force foo.file]
} {0 {} FOOO {}}
test macFCmd-3.6 {SetFileFinderAttributes - bad type} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -type 0} msg] $msg [file delete -force foo.file]
} {1 {expected Macintosh OS type but got "0"} {}}
test macFCmd-3.7 {SetFileFinderAttributes - directory} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -creator FOOO} msg] $msg [file delete -force foo.dir]
} {1 {cannot set -creator: ":foo.dir" is a directory} {}}
test macFCmd-4.1 {SetFileReadOnly - bad file} {
catch {file delete -force foo.file}
list [catch {file attributes foo.file -readonly 1} msg] $msg
} {1 {couldn't set attributes for file ":foo.file": no such file or directory}}
test macFCmd-4.2 {SetFileReadOnly - file not readonly} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -readonly 0} msg] $msg [file attributes foo.file -readonly] [file delete -force foo.file]
} {0 {} 0 {}}
test macFCmd-4.3 {SetFileReadOnly - file readonly} {
catch {file delete -force foo.file}
close [open foo.file w]
list [catch {file attributes foo.file -readonly 1} msg] $msg [file attributes foo.file -readonly] [file delete -force foo.file]
} {0 {} 1 {}}
test macFCmd-4.4 {SetFileReadOnly - directory not readonly} {fileSharing} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -readonly 0} msg] $msg [file attributes foo.dir -readonly] [file delete -force foo.dir]
} {0 {} 0 {}}
test macFCmd-4.5 {SetFileReadOnly - directory not readonly} {notFileSharing} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -readonly 0} msg] $msg [file delete -force foo.dir]
} {1 {cannot set a directory to read-only when File Sharing is turned off} {}}
test macFCmd-4.6 {SetFileReadOnly - directory readonly} {fileSharing} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -readonly 1} msg] $msg [file attributes foo.dir -readonly] [file delete -force foo.dir]
} {0 {} 1 {}}
test macFCmd-4.7 {SetFileReadOnly - directory readonly} {notFileSharing} {
catch {file delete -force foo.dir}
file mkdir foo.dir
list [catch {file attributes foo.dir -readonly 1} msg] $msg [file delete -force foo.dir]
} {1 {cannot set a directory to read-only when File Sharing is turned off} {}}
|