summaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
authorAtin Mukherjee <amukherj@redhat.com>2016-01-21 14:48:34 +0530
committerJeff Darcy <jdarcy@redhat.com>2016-03-08 05:58:22 -0800
commit05d3d95afa62ef3271f0fe3c7272e1e19638c448 (patch)
treebf0407081d3eaba177e1eaee1d1129a565819955 /tests/bugs
parent4318354aac650c18b4047142e43f3d4cff4310a7 (diff)
glusterd: volume get should pick options from priv->opts too
As of now volume get was not looking for all the global options maintained in option dictionary in glusterd_conf_t. This patch includes the same. Change-Id: Ib05259a2dcacc4a712cae4217fe4a6553b61da56 BUG: 1300596 Signed-off-by: Atin Mukherjee <amukherj@redhat.com> Reviewed-on: http://review.gluster.org/13272 Smoke: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Gaurav Kumar Garg <ggarg@redhat.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/cli/bug-983317-volume-get.t (renamed from tests/bugs/cli/bug-983317.t)11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/bugs/cli/bug-983317.t b/tests/bugs/cli/bug-983317-volume-get.t
index 11590ac280f..8f09d588565 100644
--- a/tests/bugs/cli/bug-983317.t
+++ b/tests/bugs/cli/bug-983317-volume-get.t
@@ -13,13 +13,22 @@ TEST $CLI volume create $V0 $H0:$B0/$V0
TEST $CLI volume set $V0 open-behind on
TEST $CLI volume start $V0
+TEST $CLI volume set all server-quorum-ratio 80
+
+TEST $CLI volume set $V0 user.metadata 'dummy'
+
# Execute volume get without having an explicit option, this should fail
TEST ! $CLI volume get $V0
# Execute volume get with an explicit option
TEST $CLI volume get $V0 open-behind
+EXPECT 'on' volume_get_field $V0 'open-behind'
# Execute volume get with 'all"
TEST $CLI volume get $V0 all
-cleanup;
+# Check if volume get can display correct global options values as well
+EXPECT '80' volume_get_field $V0 'server-quorum-ratio'
+
+# Check user.* options can also be retrived using volume get
+EXPECT 'dummy' volume_get_field $V0 'user.metadata'