|
1 # |
|
2 # Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. |
|
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 # |
|
5 # This code is free software; you can redistribute it and/or modify it |
|
6 # under the terms of the GNU General Public License version 2 only, as |
|
7 # published by the Free Software Foundation. |
|
8 # |
|
9 # This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 # version 2 for more details (a copy is included in the LICENSE file that |
|
13 # accompanied this code). |
|
14 # |
|
15 # You should have received a copy of the GNU General Public License version |
|
16 # 2 along with this work; if not, write to the Free Software Foundation, |
|
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 # |
|
19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 # CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 # have any questions. |
|
22 # |
|
23 |
|
24 # |
|
25 |
|
26 # set platform-dependent variable |
|
27 OS=`uname -s` |
|
28 case "$OS" in |
|
29 SunOS | Linux ) TMP=/tmp ;; |
|
30 Windows_98 ) return ;; |
|
31 Windows* ) SID=`sid`; TMP="c:/temp" ;; |
|
32 * ) |
|
33 echo "Unrecognized system!" |
|
34 exit 1 |
|
35 ;; |
|
36 esac |
|
37 |
|
38 TMP1=${TMP}/tmp1_$$ |
|
39 FAIL=0; |
|
40 |
|
41 deny() { |
|
42 case "$OS" in |
|
43 Windows* ) chacl -d ${SID}:f $* ;; |
|
44 * ) chmod 000 $* ;; |
|
45 esac |
|
46 } |
|
47 |
|
48 allow() { |
|
49 case "$OS" in |
|
50 Windows* ) chacl -g ${SID}:f $* ;; |
|
51 * ) chmod 777 $* ;; |
|
52 esac |
|
53 } |
|
54 |
|
55 runTest() { |
|
56 ${TESTJAVA}/bin/java -cp ${TESTCLASSES} GetXSpace $* |
|
57 if [ $? -eq 0 ] |
|
58 then echo "Passed" |
|
59 else |
|
60 echo "FAILED" |
|
61 FAIL=`expr ${FAIL} + 1` |
|
62 fi |
|
63 } |
|
64 |
|
65 # df output |
|
66 runTest |
|
67 |
|
68 # readable file in an unreadable directory |
|
69 mkdir ${TMP1} |
|
70 touch ${TMP1}/foo |
|
71 deny ${TMP1} |
|
72 runTest ${TMP1}/foo |
|
73 allow ${TMP1} |
|
74 rm -rf ${TMP1} |
|
75 |
|
76 if [ ${FAIL} -ne 0 ] |
|
77 then |
|
78 echo "" |
|
79 echo "${FAIL} test(s) failed" |
|
80 exit 1 |
|
81 fi |