summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorvmallika <vmallika@redhat.com>2014-11-17 07:14:28 +0530
committerRaghavendra Bhat <raghavendra@redhat.com>2014-12-24 03:37:31 -0800
commit5a3f91bc2140a53e1e6a7d98aed939a01f18f034 (patch)
treeb478c00e0b1564d637f835dffccd4a649e60fa53 /tests
parente1c977a9f9eb98c104d2e28fccaf7813be15eaf9 (diff)
gluster/uss: Don't send failure when accessing snap with name same as entry-point name.
In a scenario, if the snap name is same as the snap-directory than cd to snaps/snaps fails. Send a lookup to snap-view server instead of failing Change-Id: Ie7b811815ff30961500592bbc8cdb514a9d76ef5 BUG: 1175733 Signed-off-by: vmallika <vmallika@redhat.com> Reviewed-on: http://review.gluster.org/9135 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Rajesh Joseph <rjoseph@redhat.com> Reviewed-by: Avra Sengupta <asengupt@redhat.com> Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com> Tested-by: Krishnan Parthasarathi <kparthas@redhat.com> Signed-off-by: Sachin Pandit <spandit@redhat.com> Reviewed-on: http://review.gluster.org/9306 Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs/bug-1164613.t34
-rw-r--r--tests/include.rc6
2 files changed, 40 insertions, 0 deletions
diff --git a/tests/bugs/bug-1164613.t b/tests/bugs/bug-1164613.t
new file mode 100644
index 00000000000..b7b27f1d649
--- /dev/null
+++ b/tests/bugs/bug-1164613.t
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+. $(dirname $0)/../include.rc
+. $(dirname $0)/../snapshot.rc
+
+cleanup;
+TEST verify_lvm_version;
+TEST glusterd;
+TEST pidof glusterd;
+
+TEST setup_lvm 1
+
+TEST $CLI volume create $V0 $H0:$L1
+TEST $CLI volume start $V0
+TEST glusterfs -s $H0 --volfile-id=$V0 $M0
+
+TEST touch $M0/testfile
+
+TEST $CLI snapshot create snaps $V0
+TEST $CLI snapshot activate snaps
+TEST $CLI volume set $V0 features.uss enable
+TEST $CLI volume set $V0 snapshot-directory snaps
+
+EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/snaps/snaps/testfile
+
+umount -f $M0
+
+#Clean up
+TEST $CLI snapshot delete snaps
+TEST $CLI volume stop $V0 force
+TEST $CLI volume delete $V0
+
+cleanup;
+
diff --git a/tests/include.rc b/tests/include.rc
index 5640ab08fbe..599ad1bd4c2 100644
--- a/tests/include.rc
+++ b/tests/include.rc
@@ -325,6 +325,12 @@ function process_leak_count ()
return $(ls -lh /proc/$pid/fd | grep "(deleted)"| wc -l)
}
+function STAT()
+{
+ stat $1
+ echo $?
+}
+
alias EXPECT='_EXPECT $LINENO'
alias EXPECT_NOT='_EXPECT_NOT $LINENO'
alias TEST='_TEST $LINENO'