From fc32669722a9e359e752ff0ef668c5f4a248327d Mon Sep 17 00:00:00 2001 From: shylesh Date: Sat, 4 Feb 2012 15:53:53 +0530 Subject: BUG:765090-stopping volume while rebalance is in progress Change-Id: I47105ee018e208c236464078fdf8eb69eb0477a7 BUG: 765090 Signed-off-by: shylesh --- dvm/765090/testcase | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 dvm/765090/testcase (limited to 'dvm/765090/testcase') diff --git a/dvm/765090/testcase b/dvm/765090/testcase new file mode 100755 index 0000000..6faa645 --- /dev/null +++ b/dvm/765090/testcase @@ -0,0 +1,63 @@ +#!/bin/bash + +source $cwd/regression_helpers + +exit_if_err() +{ + if [ $1 -ne 0 ]; then + exit 1 + fi +} + +$GLUSTERFSDIR/gluster volume create $global_bug_id $(hostname):$EXPORT_DIR/$global_bug_id/brick1\ + 1>/dev/null 2>/dev/null + + +exit_if_err $? + + +$GLUSTERFSDIR/gluster volume start $global_bug_id 2>/dev/null 1>/dev/null +sleep 5 + +mount_glusterfs $global_bug_id + +for i in {1..100} +do + dd if=/dev/urandom of=$FUSE_MOUNT/$i count=1000 bs=1024 2>/dev/null 1>/dev/null +done + +cd $FUSE_MOUNT + +for i in {101..300} +do + mkdir $i + cd $i + touch $i +done + +cd $FUSE_MOUNT + +$GLUSTERFSDIR/gluster volume add-brick $global_bug_id $(hostname):$EXPORT_DIR/$global_bug_id/brick2\ + $(hostname):$EXPORT_DIR/$global_bug_id/brick3 1>/dev/null 2>/dev/null + +$GLUSTERFSDIR/gluster volume rebalance $global_bug_id start 1>/dev/null 2>/dev/null +sleep 3 + +# Now try to stop the volume +# This operation should fail +$GLUSTERFSDIR/gluster --mode=script volume stop $global_bug_id\ + | grep "rebalance session is in progress for the volume '$global_bug_id'"\ + 1>/dev/null 2>/dev/null +exit_if_err $? + + +# stop with force +# This should stop the volume +$GLUSTERFSDIR/gluster --mode=script volume stop $global_bug_id force \ + | grep "Stopping volume $global_bug_id has been successful" 1>/dev/null 2>/dev/null + +exit_if_err $? + +exit 0 + + -- cgit