diff options
author | kasturiNarra <knarra@redhat.com> | 2019-09-05 12:27:18 +0530 |
---|---|---|
committer | kasturiNarra <knarra@redhat.com> | 2019-09-09 19:16:50 +0530 |
commit | f12115a57964cb8fc13df788538e7b66852d358c (patch) | |
tree | eef36ac36f8141d88322c4d3ec0d650d31be5169 /tests/functional | |
parent | 93497a3dc587d49925a1223f56d9c8f10d792067 (diff) |
Move func get_block_hosting_volume_by_pvc_name to baseclass
Move get_block_hosting_volume_by_pvc_name from
test_restart_gluster_services to baseclass to
be able to reuse it in other test modules.
Change-Id: I65847792601b422293d4baed2ccade664ad7e54b
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/gluster_stability/test_restart_gluster_services.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/functional/gluster_stability/test_restart_gluster_services.py b/tests/functional/gluster_stability/test_restart_gluster_services.py index 85069688..84bf0e37 100644 --- a/tests/functional/gluster_stability/test_restart_gluster_services.py +++ b/tests/functional/gluster_stability/test_restart_gluster_services.py @@ -8,7 +8,6 @@ from glusto.core import Glusto as g from openshiftstoragelibs.baseclass import GlusterBlockBaseClass from openshiftstoragelibs.gluster_ops import ( - get_block_hosting_volume_name, get_gluster_vol_hosting_nodes, match_heketi_and_gluster_block_volumes_by_prefix, restart_file_volume, @@ -21,12 +20,10 @@ from openshiftstoragelibs.heketi_ops import ( heketi_server_operations_list, ) from openshiftstoragelibs.openshift_ops import ( - get_pv_name_from_pvc, match_pv_and_heketi_block_volumes, match_pvc_and_pv, oc_create_pvc, oc_delete, - oc_get_custom_resource, oc_rsh, restart_service_on_gluster_pod_or_node, verify_pvc_status_is_bound, @@ -90,27 +87,6 @@ class GlusterStabilityTestSetup(GlusterBlockBaseClass): for pvc_name in self.pvc_list: self.addCleanup(oc_delete, self.oc_node, "pvc", pvc_name) - def get_block_hosting_volume_by_pvc_name(self, pvc_name): - """Get block hosting volume of pvc name given - - Args: - pvc_name (str): pvc name of which host name is need - to be returned - """ - pv_name = get_pv_name_from_pvc(self.oc_node, pvc_name) - - block_volume = oc_get_custom_resource( - self.oc_node, 'pv', - r':.metadata.annotations."gluster\.org\/volume\-id"', - name=pv_name - )[0] - - # get block hosting volume from pvc name - block_hosting_vol = get_block_hosting_volume_name( - self.heketi_client_node, self.heketi_server_url, block_volume) - - return block_hosting_vol - def get_heketi_block_volumes(self): """lists heketi block volumes |