summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-1066798.t
blob: 635b143f05a2d3348c39386adcd22fd4a2bae4f3 (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
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
#!/bin/bash

. $(dirname $0)/../include.rc
. $(dirname $0)/../volume.rc

cleanup;

TESTS_EXPECTED_IN_LOOP=200

## Start glusterd
TEST glusterd;
TEST pidof glusterd;
TEST $CLI volume info;

## Lets create volume
TEST $CLI volume create $V0 $H0:$B0/${V0}{1,2};

## Verify volume is created
EXPECT "$V0" volinfo_field $V0 'Volume Name';
EXPECT 'Created' volinfo_field $V0 'Status';

## Start volume and verify
TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';
TEST glusterfs -s $H0 --volfile-id=$V0 $M0

############################################################
#TEST_PLAN#
#Create a file
#Store the hashed brick information
#Create hard links to it
#Remove the hashed brick
#Check now all the hardlinks are migrated in to "OTHERBRICK"
#Check also in mount point for all the files
#check there is no failures and skips for migration
############################################################

TEST touch $M0/file1;

file_perm=`ls -l $M0/file1 | grep file1 | awk '{print $1}'`;

if [ -f $B0/${V0}1/file1 ]
then
        HASHED=$B0/${V0}1
        OTHER=$B0/${V0}2
else
        HASHED=$B0/${V0}2
        OTHER=$B0/${V0}1
fi

#create hundred hard links
for i in {1..50};
do
TEST_IN_LOOP ln $M0/file1 $M0/link$i;
done


TEST $CLI volume remove-brick $V0 $H0:${HASHED} start
EXPECT_WITHIN 20 "completed" remove_brick_status_completed_field "$V0" "$H0:${HASHED}";

#check consistency in mount point
#And also check all the links are migrated to OTHER
for i in {1..50}
do
TEST_IN_LOOP [ -f ${OTHER}/link${i} ];
TEST_IN_LOOP [ -f ${M0}/link${i} ];
done;

#check in OTHER that all the files has proper permission (Means no
#linkto files)

for i in {1..50}
do
link_perm=`ls -l $OTHER | grep -w link${i} | awk '{print $1}'`;
TEST_IN_LOOP [ "${file_perm}" == "${link_perm}" ]

done

#check that remove-brick status should not have any failed or skipped files

var=`$CLI volume remove-brick $V0 $H0:${HASHED} status | grep completed`

TEST [ `echo $var | awk '{print $5}'` = "0"  ]
TEST [ `echo $var | awk '{print $6}'` = "0"  ]

cleanup