summaryrefslogtreecommitdiffstats
path: root/tests/bugs/snapshot/bug-1090042.t
diff options
context:
space:
mode:
authorAtin Mukherjee <amukherj@redhat.com>2015-01-13 11:40:03 +0530
committerNiels de Vos <ndevos@redhat.com>2015-01-13 06:17:53 -0800
commite9c90da38e1b6fb7fc4e0d5d1e987c510d1c17d6 (patch)
tree598a6e731313b28b1cf2b4ced45276b0673ecb22 /tests/bugs/snapshot/bug-1090042.t
parent015282013a22dda84d1849e18659d42bb5bb48f4 (diff)
tests: move all snapshot test cases from glusterd to snapshot component
Change-Id: Id04037a38e80fe9b400678cfe6bc731cdefae834 BUG: 1178685 Signed-off-by: Atin Mukherjee <amukherj@redhat.com> Reviewed-on: http://review.gluster.org/9437 Reviewed-by: Niels de Vos <ndevos@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'tests/bugs/snapshot/bug-1090042.t')
-rwxr-xr-xtests/bugs/snapshot/bug-1090042.t30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/bugs/snapshot/bug-1090042.t b/tests/bugs/snapshot/bug-1090042.t
new file mode 100755
index 00000000000..b4df8e6cebe
--- /dev/null
+++ b/tests/bugs/snapshot/bug-1090042.t
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+. $(dirname $0)/../../include.rc
+. $(dirname $0)/../../volume.rc
+. $(dirname $0)/../../snapshot.rc
+
+cleanup;
+
+TEST init_n_bricks 3;
+TEST setup_lvm 3;
+TEST glusterd;
+
+TEST $CLI volume create $V0 replica 3 $H0:$L1 $H0:$L2 $H0:$L3;
+TEST $CLI volume start $V0;
+
+TEST kill_brick $V0 $H0 $L1;
+
+#Normal snap create should fail
+TEST ! $CLI snapshot create ${V0}_snap1 $V0;
+TEST ! snapshot_exists 0 ${V0}_snap1;
+
+#Force snap create should succeed
+TEST $CLI snapshot create ${V0}_snap1 $V0 force;
+TEST snapshot_exists 0 ${V0}_snap1;
+
+#Delete the created snap
+TEST $CLI snapshot delete ${V0}_snap1;
+TEST ! snapshot_exists 0 ${V0}_snap1;
+
+cleanup;