blob: f7f92582e04115a00154ec0817163d66f0315df1 (
plain)
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
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
is_sticky_set () {
echo $1
if [ -k $1 ];
then
echo "yes"
else
echo "no"
fi
}
cleanup;
#Basic checks
TEST glusterd
TEST pidof glusterd
TEST $CLI volume info
#Create a distributed volume
TEST $CLI volume create $V0 $H0:$B0/${V0}{1..3};
TEST $CLI volume start $V0
# Mount FUSE
TEST glusterfs --acl -s $H0 --volfile-id $V0 $M0
TEST mkdir $M0/dir1
echo "Testing pacls on rebalance" > $M0/dir1/FILE1
FPATH1=`find $B0/ -name FILE1`
# Rename the file to create a linkto, for rebalance to
# act on the file
TEST mv $M0/dir1/FILE1 $M0/dir1/FILE2
FPATH2=`find $B0/ -perm 1000 -name FILE2`
setfacl -m user:root:rwx $M0/dir1/FILE2
# Run rebalance without the force option to skip
# the file migration
TEST $CLI volume rebalance $V0 start
EXPECT_WITHIN $REBALANCE_TIMEOUT "completed" rebalance_status_field $V0
#Check that the file has been skipped,i.e., the linkto still exists
EXPECT "yes" is_sticky_set $FPATH2
#The linkto file should not have any posix acls set
COUNT=`getfacl $FPATH2 |grep -c "user:root:rwx"`
EXPECT "0" echo $COUNT
cleanup;
|