diff options
author | Susant Palai <spalai@redhat.com> | 2014-05-12 01:55:15 -0400 |
---|---|---|
committer | Kaushal M <kaushal@redhat.com> | 2014-05-26 23:08:59 -0700 |
commit | c9d53e53af5e6fe81d524360fa901c4c8d865520 (patch) | |
tree | 36c45cf9b6a8886a9660f88b8ea1619e1399c407 /tests | |
parent | c2d74c4649e9022dca90e283e31fbee2cc0de8f5 (diff) |
Glusterd/Rebalance: Update rebalance status properly in
node_state.info
credit: kaushal@redhat.com
spalai@redhat.com
Change-Id: I08d0771e2168a4a6ebd473e8a937b8b2eda1341a
BUG: 1075087
Signed-off-by: Susant Palai <spalai@redhat.com>
Reviewed-on: http://review.gluster.org/7214
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaushal M <kaushal@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs/bug-1075087.t | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/bugs/bug-1075087.t b/tests/bugs/bug-1075087.t new file mode 100644 index 00000000000..89aab028de6 --- /dev/null +++ b/tests/bugs/bug-1075087.t @@ -0,0 +1,33 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd + +TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}0 $H0:$B0/${V0}1 \ + $H0:$B0/${V0}2 $H0:$B0/${V0}3 +TEST $CLI volume start $V0 + +## Mount FUSE +TEST glusterfs -s $H0 --volfile-id=$V0 $M0; + +TEST mkdir $M0/dir{1..10}; +TEST touch $M0/dir{1..10}/files{1..10}; + +TEST $CLI volume add-brick $V0 $H0:$B0/${V0}4 $H0:/$B0/${V0}5 + +TEST $CLI volume rebalance $V0 start force +EXPECT_WITHIN 60 "completed" rebalance_status_field $V0 + +TEST pkill gluster +TEST glusterd +TEST pidof glusterd + +# status should be "completed" immediate after glusterd has respawned. +EXPECT_WITHIN 5 "completed" rebalance_status_field $V0 + +cleanup; |