summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorkshithijiyer <kshithij.ki@gmail.com>2019-01-25 13:01:28 +0530
committerVijay Avuthu <vavuthu@redhat.com>2019-01-28 12:13:33 +0000
commitcd530720668149ae048fbfc0bbda1ec86693e090 (patch)
tree42e88d1f1324733d694a408ff2b544da100457bc /tests
parent182610940d242457b8718438924b586a54e40159 (diff)
Fixed jira issue RHGSQE-33
Altered code to check for daemons only on servers where the bricks for a given volume are present. Change-Id: I79312f3b09fd5e1b0fdf6db40e29481662e56303 Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/glusterd/test_volume_reset.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/tests/functional/glusterd/test_volume_reset.py b/tests/functional/glusterd/test_volume_reset.py
index 9720c3e92..ca97ce588 100644
--- a/tests/functional/glusterd/test_volume_reset.py
+++ b/tests/functional/glusterd/test_volume_reset.py
@@ -23,6 +23,7 @@ from glustolibs.gluster.volume_libs import cleanup_volume
from glustolibs.gluster.bitrot_ops import (enable_bitrot, is_bitd_running,
is_scrub_process_running)
from glustolibs.gluster.uss_ops import enable_uss, is_snapd_running
+from glustolibs.gluster.brick_libs import get_all_bricks
@runs_on([['distributed', 'replicated', 'distributed-replicated',
@@ -78,6 +79,7 @@ class GlusterdVolumeReset(GlusterBaseClass):
raise ExecutionError("Failed Cleanup the Volume %s" % cls.volname)
def test_bitd_scrubd_snapd_after_volume_reset(self):
+ # pylint: disable=too-many-statements
'''
-> Create volume
-> Enable BitD, Scrub and Uss on volume
@@ -107,7 +109,12 @@ class GlusterdVolumeReset(GlusterBaseClass):
# Checks bitd, snapd, scrub daemons running or not
g.log.info("checking snapshot, scrub and bitrot\
daemons running or not")
- for mnode in self.servers:
+ node_list = []
+ list_of_bricks = get_all_bricks(self.mnode, self.volname)
+ for brick in list_of_bricks:
+ node, _ = brick.split(r':')
+ node_list.append(node)
+ for mnode in node_list:
ret = is_bitd_running(mnode, self.volname)
self.assertTrue(ret, "Bitrot Daemon not running on %s server:"
% mnode)
@@ -130,7 +137,7 @@ class GlusterdVolumeReset(GlusterBaseClass):
# bitd and scrub daemons will be in running state.
g.log.info("checking snapshot, scrub and bitrot daemons\
running or not after volume reset")
- for mnode in self.servers:
+ for mnode in node_list:
ret = is_bitd_running(mnode, self.volname)
self.assertTrue(ret, "Bitrot Daemon\
not running on %s server:" % mnode)
@@ -164,7 +171,7 @@ class GlusterdVolumeReset(GlusterBaseClass):
# all three daemons will get die
g.log.info("checking snapshot, scrub and bitrot daemons\
running or not after volume reset with force")
- for mnode in self.servers:
+ for mnode in node_list:
ret = is_bitd_running(mnode, self.volname)
self.assertFalse(ret, "Bitrot Daemon should not be\
running on %s server after volume reset with force:" % mnode)