Merge branch 'master' of git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev
[xfstests-dev.git] / 123
1 #! /bin/bash
2 # FSQA Test No. 123
3 #
4 # Make sure user cannot overwrite, append, delete or move a file created by 
5 # root. Modified CXFSQA test 940960 and 940558.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25 # creator
26 owner=ajones@sgi.com
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=0        # success is the default!
34
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd $testdir
40     rm -rf $my_test_subdir
41     cd /
42     _cleanup_testdir
43 }
44
45 # get standard environment, filters and checks
46 . ./common.rc
47 . ./common.filter
48
49 # real QA test starts here
50 _supported_fs generic
51 _supported_os Linux IRIX
52
53 _require_user
54
55 _setup_testdir
56 my_test_subdir=$testdir/123subdir
57
58 # create subdir with required permissions
59 mkdir -m 755 $my_test_subdir
60
61 echo foo > $my_test_subdir/data_coherency.txt
62 # check basic appending to a file
63 echo bar >> $my_test_subdir/data_coherency.txt
64
65 # try append
66 _user_do "echo goo >> $my_test_subdir/data_coherency.txt" 
67
68 # try overwrite 
69 _user_do "echo goo > $my_test_subdir/data_coherency.txt" 
70
71 # try delete
72 _user_do "rm $my_test_subdir/data_coherency.txt" 
73
74 # try move
75 _user_do "mv $my_test_subdir/data_coherency.txt $my_test_subdir/data_coherency2.txt" 
76
77 cat $my_test_subdir/data_coherency.txt
78
79
80 exit