From d1bb60ad794dcf0fc8bf0cf8dc4ac13349d749d4 Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Tue, 4 Dec 2012 18:22:33 +0530 Subject: tests: Util commands for rebalance and afr child-up, shd up Change-Id: I175171524b750dff5b2ec0c11dc006d77123ecd5 BUG: 858212 Signed-off-by: Pranith Kumar K Reviewed-on: http://review.gluster.org/4237 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- tests/volume.rc | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/tests/volume.rc b/tests/volume.rc index 55c96b3adc0..268887416e1 100644 --- a/tests/volume.rc +++ b/tests/volume.rc @@ -20,3 +20,43 @@ function volume_option() local key=$2 $CLI volume info $vol | egrep "^$key: " | cut -f2 -d' '; } + +function rebalance_status_completed_field { + $CLI volume rebalance $V0 status | awk '{print $6}' | sed -n 3p +} + +function remove_brick_status_completed_field { + $CLI volume remove-brick $V0 $H0:$B0/r2d2_{4,5} status | awk '{print $6}' | sed -n 3p +} + +function get_mount_process_pid { + local vol=$1 + ps aux | grep glusterfs | grep -E "volfile-id[ =]/?$vol " | awk '{print $2}' | head -1 +} + +function generate_mount_statedump { + local vol=$1 + local fpath="" + mount_pid=$(get_mount_process_pid $vol) + #remove old stale statedumps + rm -f /tmp/glusterdump.$mount_pid.dump.* 2>/dev/null + kill -USR1 $mount_pid + #Wait till the statedump is generated + sleep 1 + fname=$(ls /tmp | grep -E "glusterdump.$mount_pid.dump.*") + echo /tmp/$fname +} + +function afr_child_up_status { + local vol=$1 + #brick_id is (brick-num in volume info - 1) + local brick_id=$2 + local fpath=$(generate_mount_statedump $vol) + up=$(grep -B1 trusted.afr.$vol-client-$brick_id $fpath | head -1 | cut -f2 -d'=') + rm -f $fpath + echo "$up" +} + +function glustershd_up_status { + gluster volume status | grep "Self-heal Daemon" | awk '{print $6}' +} -- cgit