summaryrefslogtreecommitdiffstats
path: root/tests/functional/dht/test_rebalance_add_brick_command.py
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2019-12-16 18:26:45 +0530
committerBala Konda Reddy M <bmekala@redhat.com>2019-12-18 10:26:37 +0000
commit065f51e673b3ccc39b153423359bed2dd572935d (patch)
treef1c998d24aa463f567b4742f1c74f95893ffedef /tests/functional/dht/test_rebalance_add_brick_command.py
parentb1dfa315487c2da399988775e5de39354f686b0c (diff)
[py2to3] Add py3 support in 'tests/functional/dht'
Change-Id: I44fe85519c8fd381064670e54dac8736107b0928 Signed-off-by: Valerii Ponomarov <kiparis.kh@gmail.com>
Diffstat (limited to 'tests/functional/dht/test_rebalance_add_brick_command.py')
-rw-r--r--tests/functional/dht/test_rebalance_add_brick_command.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/functional/dht/test_rebalance_add_brick_command.py b/tests/functional/dht/test_rebalance_add_brick_command.py
index 17c57843d..0ccc8031d 100644
--- a/tests/functional/dht/test_rebalance_add_brick_command.py
+++ b/tests/functional/dht/test_rebalance_add_brick_command.py
@@ -16,6 +16,8 @@
"""Positive test - Exercise Add-brick command"""
+import sys
+
from glusto.core import Glusto as g
from glustolibs.gluster.brick_libs import get_all_bricks
@@ -37,7 +39,7 @@ class ExerciseAddbrickCommand(GlusterBaseClass):
def setUp(self):
"""Setup Volume"""
# Calling GlusterBaseClass setUp
- GlusterBaseClass.setUp.im_func(self)
+ self.get_super_method(self, 'setUp')()
# Setup Volume Volume
g.log.info("Starting to Setup Volume")
@@ -134,14 +136,14 @@ class ExerciseAddbrickCommand(GlusterBaseClass):
for index, mount_obj in enumerate(self.mounts, start=1):
g.log.info("Starting IO on %s:%s", mount_obj.client_system,
mount_obj.mountpoint)
- cmd = ("python %s create_deep_dirs_with_files "
+ cmd = ("/usr/bin/env python%d %s create_deep_dirs_with_files "
"--dirname-start-num %d "
"--dir-depth 2 "
"--dir-length 2 "
"--max-num-of-dirs 2 "
- "--num-of-files 10 %s" % (script_location,
- index + 10,
- mount_obj.mountpoint))
+ "--num-of-files 10 %s" % (
+ sys.version_info.major, script_location, index + 10,
+ mount_obj.mountpoint))
proc = g.run_async(mount_obj.client_system, cmd,
user=mount_obj.user)
# Expand volume
@@ -180,4 +182,4 @@ class ExerciseAddbrickCommand(GlusterBaseClass):
g.log.info("Volume deleted successfully : %s", volume)
# Calling GlusterBaseClass tearDown
- GlusterBaseClass.tearDown.im_func(self)
+ self.get_super_method(self, 'tearDown')()