From b5d7faa96b5ca44be6899c6976691e0fde7d70d1 Mon Sep 17 00:00:00 2001 From: Vijaykumar Koppad Date: Fri, 13 Jun 2014 17:52:30 +0530 Subject: Geo-rep: Adding regression tests for geo-rep This patch introduces upstream regression suit for geo-replication * Modifies cleanup (tests/include.rc) to remove everything but hook-scripts. Prerequisites: * Passwordless SSH from root to root of current host. * Export /build/install/sbin and /build/install/bin to PATH variable for root user. Change-Id: I433dd8bbb17edba9baaf516fe0dce3133ba39184 BUG: 1101111 Signed-off-by: Vijaykumar Koppad Signed-off-by: Ajeet Jha Signed-off-by: Kotresh HR Reviewed-on: http://review.gluster.org/7392 Tested-by: Gluster Build System Reviewed-by: Aravinda VK Reviewed-by: Vijay Bellur --- tests/geo-rep/georep-rsync-changelog.t | 73 ++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 tests/geo-rep/georep-rsync-changelog.t (limited to 'tests/geo-rep/georep-rsync-changelog.t') diff --git a/tests/geo-rep/georep-rsync-changelog.t b/tests/geo-rep/georep-rsync-changelog.t new file mode 100644 index 00000000000..eda06a36df6 --- /dev/null +++ b/tests/geo-rep/georep-rsync-changelog.t @@ -0,0 +1,73 @@ +#!/bin/bash + +# Following tests involves geo-rep regresseion tests with changelog +# as change detector, and rsync as sync mode on both fuse and nfs mount + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc +. $(dirname $0)/geo-rep-helper.rc +. $(dirname $0)/geo-rep-config.rc + +cleanup; +AREQUAL_PATH=$(dirname $0)/../utils +CFLAGS="" +test "`uname -s`" != "Linux" && { + CFLAGS="$CFLAGS -I$(dirname $0)/../../../contrib/argp-standalone "; + CFLAGS="$CFLAGS -L$(dirname $0)/../../../contrib/argp-standalone -largp "; + CFLAGS="$CFLAGS -lintl"; +} +build_tester $AREQUAL_PATH/arequal-checksum.c $CFLAGS + +TEST glusterd +TEST pidof glusterd + +setup_georep ; + +# start of tests on fuse mount + +TEST glusterfs -s $H0 --volfile-id $GMV0 $M0 + +TEST changelog_mode_test "create" $M0 + +TEST changelog_mode_test "chmod" $M0 + +TEST changelog_mode_test "chown" $M0 + +TEST changelog_mode_test "chgrp" $M0 + +# Bug 1083963 +#TEST changelog_mode_test "rename" $M0 + +TEST changelog_mode_test "truncate" $M0 + +TEST changelog_mode_test "symlink" $M0 + +# Bug 1003020 +#TEST changelog_mode_test "hardlink" $M0 + +#TEST changelog_mode_remove_test $M0 + +# start of tests on nfs mount + +TEST mount -t nfs -o vers=3,nolock $H0:$GMV0 $N0 + +TEST changelog_mode_test "create" $N0 + +TEST changelog_mode_test "chmod" $N0 + +TEST changelog_mode_test "chown" $N0 + +TEST changelog_mode_test "chgrp" $N0 + +#TEST changelog_mode_test "rename" $N0 + +TEST changelog_mode_test "truncate" $N0 + +TEST changelog_mode_test "symlink" $N0 + +#TEST changelog_mode_test "hardlink" $N0 + +#TEST changelog_mode_remove_test $N0 + +TEST rm -rf $AREQUAL_PATH/arequal-checksum +cleanup_georep; -- cgit