summaryrefslogtreecommitdiffstats
path: root/tests/bugs/glusterd/bug-1303028-Rebalance-glusterd-rpc-connection-issue.t
blob: 75e2d3376877aa733ae888945a3a194d8def3ed3 (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
#!/bin/bash

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


# Creates a tiered volume with pure distribute hot and cold tiers
# Both hot and cold tiers will have an equal number of bricks.

function create_dist_tier_vol () {
        mkdir $B0/cold
        mkdir $B0/hot
        TEST $CLI volume create $V0 $H0:$B0/cold/${V0}{1..3}
        TEST $CLI volume set $V0 performance.quick-read off
        TEST $CLI volume set $V0 performance.io-cache off
        TEST $CLI volume start $V0
        TEST $CLI volume attach-tier $V0 $H0:$B0/hot/${V0}{1..2}
        TEST $CLI volume set $V0 cluster.tier-mode test
}

function non_zero_check () {
if [ "$1" -ne 0 ]
then
        echo "0"
else
        echo "1"
fi
}


cleanup;

#Basic checks
TEST glusterd
TEST pidof glusterd
TEST $CLI volume status


#Create and start a tiered volume
create_dist_tier_vol
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 0 tier_daemon_check
sleep 2   #wait for some time to run tier daemon
time_before_restarting=$(rebalance_run_time $V0);

#checking for elapsed time after sleeping for two seconds.
EXPECT "0" non_zero_check $time_before_restarting;

#Difference of elapsed time should be positive

kill -9 $(pidof glusterd);
TEST glusterd;
sleep 2;
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" tier_daemon_check;
time1=$(rebalance_run_time $V0);
EXPECT "0" non_zero_check $time1;
sleep 4;
time2=$(rebalance_run_time $V0);
EXPECT "0" non_zero_check $time2;
diff=`expr $time2 - $time1`
EXPECT "0" non_zero_check $diff;