summaryrefslogtreecommitdiffstats
path: root/tests/basic
diff options
context:
space:
mode:
authorPranith Kumar K <pkarampu@redhat.com>2012-11-23 22:19:32 +0530
committerVijay Bellur <vbellur@redhat.com>2012-11-23 23:27:33 -0800
commit016480eb8221a403e5224653e57c401fcb61acc0 (patch)
treefa66b54238279702d94dbd81e5e4e90eccf8965d /tests/basic
parent7c23a94516c5dd21536c259f323a3cc113fdfa0d (diff)
tests: Add volume utils in a new file
Change-Id: Ie78d24ca466d4bddc5c0727ed8ed51707e1f2a34 BUG: 839595 Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Reviewed-on: http://review.gluster.org/4228 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/basic')
-rwxr-xr-xtests/basic/volume.t18
1 files changed, 1 insertions, 17 deletions
diff --git a/tests/basic/volume.t b/tests/basic/volume.t
index de3f001e0..8491164ce 100755
--- a/tests/basic/volume.t
+++ b/tests/basic/volume.t
@@ -1,6 +1,7 @@
#!/bin/bash
. $(dirname $0)/../include.rc
+. $(dirname $0)/../volume.rc
cleanup;
@@ -11,23 +12,6 @@ TEST $CLI volume info;
TEST $CLI volume create $V0 replica 2 stripe 2 $H0:$B0/${V0}{1,2,3,4,5,6,7,8};
-function volinfo_field()
-{
- local vol=$1;
- local field=$2;
-
- $CLI volume info $vol | grep "^$field: " | sed 's/.*: //';
-}
-
-
-function brick_count()
-{
- local vol=$1;
-
- $CLI volume info $vol | egrep "^Brick[0-9]+: " | wc -l;
-}
-
-
EXPECT "$V0" volinfo_field $V0 'Volume Name';
EXPECT 'Created' volinfo_field $V0 'Status';
EXPECT '8' brick_count $V0