summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2018-11-20 17:01:34 +0000
committerGerrit Code Review <gerrit2@gerrit.host.prod.eng.bos.redhat.com>2018-11-20 17:01:34 +0000
commit954400fc20bd06d54931922fdf6d3530bc56541a (patch)
tree544380e444b4cd968e8e8d392822922ac41d1dba /tests
parent81da4143dd7d8d0d46e2c97d2f51a9f0b95c7264 (diff)
parent19143758fe6dbd77dab2bc81d77abfdb63627fe0 (diff)
Merge "Refactor test cases CNS-797 and CNS-798"
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/common/heketi/heketi_tests/test_create_heketi_volume_size_60.py193
-rw-r--r--tests/functional/common/heketi/test_create_distributed_replica_heketi_volume.py193
2 files changed, 193 insertions, 193 deletions
diff --git a/tests/functional/common/heketi/heketi_tests/test_create_heketi_volume_size_60.py b/tests/functional/common/heketi/heketi_tests/test_create_heketi_volume_size_60.py
deleted file mode 100644
index 29b39513..00000000
--- a/tests/functional/common/heketi/heketi_tests/test_create_heketi_volume_size_60.py
+++ /dev/null
@@ -1,193 +0,0 @@
-from __future__ import division
-import math
-
-from glusto.core import Glusto as g
-from glustolibs.gluster.volume_ops import get_volume_list, get_volume_info
-
-from cnslibs.common.exceptions import ExecutionError
-from cnslibs.common.heketi_libs import HeketiClientSetupBaseClass
-from cnslibs.common.heketi_ops import (heketi_node_list,
- heketi_node_info,
- heketi_volume_create,
- heketi_volume_list,
- heketi_volume_info,
- heketi_volume_delete)
-from cnslibs.common.openshift_ops import get_ocp_gluster_pod_names
-from cnslibs.common import podcmd
-
-
-class TestHeketiVolume(HeketiClientSetupBaseClass):
-
- def get_free_space(self):
- """
- Get free space in each devices
- """
- free_spaces = []
- heketi_node_id_list = heketi_node_list(
- self.heketi_client_node, self.heketi_server_url)
- for node_id in heketi_node_id_list:
- node_info_dict = heketi_node_info(self.heketi_client_node,
- self.heketi_server_url,
- node_id, json=True)
- total_free_space = 0
- for device in node_info_dict["devices"]:
- total_free_space += device["storage"]["free"]
- free_spaces.append(total_free_space)
- total_free_space = sum(free_spaces)/(1024**2)
- total_free_space = int(math.floor(total_free_space))
-
- return total_free_space, free_spaces
-
- @podcmd.GlustoPod()
- def test_to_create_distribute_replicated_vol(self):
- """
- Create distribute replicate heketi
- volume and run heketi-cli volume info
- """
-
- hosts = []
- size = 610
- g.log.info("Creating a heketi volume")
- out = heketi_volume_create(self.heketi_client_node,
- self.heketi_server_url,
- size, json=True)
- self.assertTrue(out, ("Failed to create "
- "heketi volume of size %s" % str(size)))
- g.log.info("Successfully created heketi volume"
- " of size %s" % str(size))
- volume_id = out["bricks"][0]["volume"]
- self.addCleanup(self.delete_volumes, volume_id)
-
- # Correct the backupvol file servers are updated
- gluster_servers = []
- g.log.info("Checking backupvol file servers are updated")
- mount_node = (out["mount"]["glusterfs"]
- ["device"].strip().split(":")[0])
- hosts.append(mount_node)
- backup_volfile_server_list = (
- out["mount"]["glusterfs"]["options"][
- "backup-volfile-servers"].strip().split(","))
- for backup_volfile_server in backup_volfile_server_list:
- hosts.append(backup_volfile_server)
- for gluster_server in g.config["gluster_servers"].keys():
- gluster_servers.append(g.config["gluster_servers"]
- [gluster_server]["storage"])
- self.assertEqual(set(hosts), set(gluster_servers))
- g.log.info("Correctly updated backupvol file servers")
-
- # Retrieve heketi volume info
- g.log.info("Retrieving heketi volume info")
- out = heketi_volume_info(
- self.heketi_client_node, self.heketi_server_url, volume_id,
- json=True)
- self.assertTrue(out, ("Failed to get heketi volume info"))
- g.log.info("Successfully got the heketi volume info")
- name = out["name"]
-
- # Get gluster volume info
- g.log.info("Get gluster volume info")
- if self.deployment_type == "cns":
- gluster_pod = get_ocp_gluster_pod_names(
- self.heketi_client_node)[1]
- p = podcmd.Pod(self.heketi_client_node, gluster_pod)
- out = get_volume_info(p, volname=name)
- else:
- out = get_volume_info(self.heketi_client_node,
- volname=name)
- self.assertTrue(out, ("Failed to get volume info"))
- g.log.info("Successfully got the volume info")
- self.assertEqual(out[name]["typeStr"], "Distributed-Replicate",
- "Not a Distributed-Replicate volume")
-
- @podcmd.GlustoPod()
- def test_to_create_and_delete_dist_rep_vol(self):
- """
- Create distribute replicate heketi
- volume and delete it and check the available
- space
- """
-
- size = 610
- g.log.info("Creating a heketi volume")
- out = heketi_volume_create(self.heketi_client_node,
- self.heketi_server_url,
- size, json=True)
- self.assertTrue(out, ("Failed to create "
- "heketi volume of size %s" % str(size)))
- g.log.info("Successfully created heketi volume"
- " of size %s" % str(size))
- volume_id = out["bricks"][0]["volume"]
- name = out["name"]
-
- # Get gluster volume info
- g.log.info("Get gluster volume info")
- if self.deployment_type == "cns":
- gluster_pod = get_ocp_gluster_pod_names(
- self.heketi_client_node)[1]
- p = podcmd.Pod(self.heketi_client_node, gluster_pod)
- out = get_volume_info(p, volname=name)
- else:
- out = get_volume_info(self.heketi_client_node,
- volname=name)
- self.assertTrue(out, ("Failed to get volume info"))
- g.log.info("Successfully got the volume info")
- self.assertEqual(out[name]["typeStr"], "Distributed-Replicate",
- "Not a Distributed-Replicate volume")
-
- # Get the free space
- # After creating heketi volume
- free_space_after_creating_vol, _ = self.get_free_space()
-
- # Delete heketi volumes of size 60gb which was created
- g.log.info("Deleting heketi volumes")
- out = heketi_volume_delete(self.heketi_client_node,
- self.heketi_server_url,
- volume_id)
- if not out:
- raise ExecutionError("Failed to delete "
- "heketi volume %s" % volume_id)
- g.log.info("Heketi volume successfully deleted %s" % out)
-
- # Check the heketi volume list
- g.log.info("List heketi volumes")
- volumes = heketi_volume_list(self.heketi_client_node,
- self.heketi_server_url,
- json=True)
- self.assertTrue(volumes, ("Failed to list heketi volumes"))
- g.log.info("Heketi volumes successfully listed")
-
- # Check the gluster volume list
- g.log.info("Get the gluster volume list")
- if self.deployment_type == "cns":
- gluster_pod = get_ocp_gluster_pod_names(
- self.heketi_client_node)[1]
- p = podcmd.Pod(self.heketi_client_node, gluster_pod)
- out = get_volume_list(p)
- else:
- out = get_volume_list(self.heketi_client_node)
- self.assertTrue(out, ("Unable to get volume list"))
- g.log.info("Successfully got the volume list" % out)
-
- # Check the volume count are equal
- if (len(volumes["volumes"]) != len(out)):
- raise ExecutionError("Heketi volume list %s is"
- " not equal to gluster"
- " volume list %s" % ((volumes), (out)))
- g.log.info("Heketi volumes list %s and"
- " gluster volumes list %s" % ((volumes), (out)))
-
- # Get the used space
- # After deleting heketi volume
- free_space_after_deleting_vol, _ = self.get_free_space()
-
- # Compare the free size before and after deleting volume
- g.log.info("Comparing the free space before and after"
- " deleting volume")
- self.assertTrue(
- free_space_after_creating_vol < free_space_after_deleting_vol)
- g.log.info("Volume successfully deleted and space is"
- " reallocated. Free space after creating"
- " volume %s, Free space after deleting"
- " volume %s" % (
- free_space_after_creating_vol,
- free_space_after_deleting_vol))
diff --git a/tests/functional/common/heketi/test_create_distributed_replica_heketi_volume.py b/tests/functional/common/heketi/test_create_distributed_replica_heketi_volume.py
new file mode 100644
index 00000000..cbee7550
--- /dev/null
+++ b/tests/functional/common/heketi/test_create_distributed_replica_heketi_volume.py
@@ -0,0 +1,193 @@
+from __future__ import division
+import math
+
+from glusto.core import Glusto as g
+from glustolibs.gluster.volume_ops import get_volume_list, get_volume_info
+
+from cnslibs.common.heketi_libs import HeketiClientSetupBaseClass
+from cnslibs.common.heketi_ops import (heketi_node_list,
+ heketi_node_enable,
+ heketi_node_disable,
+ heketi_node_info,
+ heketi_device_enable,
+ heketi_device_disable,
+ heketi_volume_create,
+ heketi_volume_list,
+ heketi_volume_delete)
+from cnslibs.common.openshift_ops import get_ocp_gluster_pod_names
+from cnslibs.common import podcmd
+
+
+class TestHeketiVolume(HeketiClientSetupBaseClass):
+
+ def setUp(self):
+ super(TestHeketiVolume, self).setUp()
+ self.master_node = g.config['ocp_servers']['master'].keys()[0]
+ self.gluster_node = g.config["gluster_servers"].keys()[0]
+
+ def _get_free_space(self):
+ """Get free space in each heketi device"""
+ free_spaces = []
+ heketi_node_id_list = heketi_node_list(
+ self.heketi_client_node, self.heketi_server_url)
+ for node_id in heketi_node_id_list:
+ node_info_dict = heketi_node_info(self.heketi_client_node,
+ self.heketi_server_url,
+ node_id, json=True)
+ total_free_space = 0
+ for device in node_info_dict["devices"]:
+ total_free_space += device["storage"]["free"]
+ free_spaces.append(total_free_space)
+ total_free_space = int(math.floor(sum(free_spaces) / (1024**2)))
+ return total_free_space
+
+ def _get_vol_size(self):
+ # Get available free space disabling redundant nodes
+ min_free_space_gb = 5
+ heketi_url = self.heketi_server_url
+ node_ids = heketi_node_list(self.heketi_client_node, heketi_url)
+ self.assertTrue(node_ids)
+ nodes = {}
+ min_free_space = min_free_space_gb * 1024**2
+ for node_id in node_ids:
+ node_info = heketi_node_info(
+ self.heketi_client_node, heketi_url, node_id, json=True)
+ if (node_info['state'].lower() != 'online' or
+ not node_info['devices']):
+ continue
+ if len(nodes) > 2:
+ out = heketi_node_disable(
+ self.heketi_client_node, heketi_url, node_id)
+ self.assertTrue(out)
+ self.addCleanup(
+ heketi_node_enable,
+ self.heketi_client_node, heketi_url, node_id)
+ for device in node_info['devices']:
+ if device['state'].lower() != 'online':
+ continue
+ free_space = device['storage']['free']
+ if free_space < min_free_space:
+ out = heketi_device_disable(
+ self.heketi_client_node, heketi_url, device['id'])
+ self.assertTrue(out)
+ self.addCleanup(
+ heketi_device_enable,
+ self.heketi_client_node, heketi_url, device['id'])
+ continue
+ if node_id not in nodes:
+ nodes[node_id] = []
+ nodes[node_id].append(device['storage']['free'])
+
+ # Skip test if nodes requirements are not met
+ if (len(nodes) < 3 or
+ not all(map((lambda _list: len(_list) > 1), nodes.values()))):
+ raise self.skipTest(
+ "Could not find 3 online nodes with, "
+ "at least, 2 online devices having free space "
+ "bigger than %dGb." % min_free_space_gb)
+
+ # Calculate size of a potential distributed vol
+ vol_size_gb = int(min(map(max, nodes.values())) / (1024 ** 2)) + 1
+ return vol_size_gb
+
+ def _create_distributed_replica_vol(self, validate_cleanup):
+
+ # Create distributed vol
+ vol_size_gb = self._get_vol_size()
+ heketi_url = self.heketi_server_url
+ heketi_vol = heketi_volume_create(
+ self.heketi_client_node, heketi_url, vol_size_gb, json=True)
+ self.assertTrue(
+ heketi_vol, "Failed to create vol of %d size." % vol_size_gb)
+ vol_name = heketi_vol['name']
+ vol_id = heketi_vol["bricks"][0]["volume"]
+ self.addCleanup(
+ heketi_volume_delete, self.heketi_client_node, heketi_url,
+ vol_id, raise_on_error=(not validate_cleanup))
+
+ # Get gluster volume info
+ g.log.info("Get gluster volume '%s' info" % vol_name)
+ if self.deployment_type == "cns":
+ gluster_pod = get_ocp_gluster_pod_names(self.master_node)[0]
+ p = podcmd.Pod(self.master_node, gluster_pod)
+ gluster_vol = get_volume_info(p, volname=vol_name)
+ else:
+ gluster_vol = get_volume_info(self.gluster_node, volname=vol_name)
+ self.assertTrue(
+ gluster_vol, "Failed to get volume '%s' info" % vol_name)
+ g.log.info("Successfully got volume '%s' info" % vol_name)
+ gluster_vol = gluster_vol[vol_name]
+ self.assertEqual(
+ gluster_vol["typeStr"], "Distributed-Replicate",
+ "'%s' gluster vol isn't a Distributed-Replicate volume" % vol_name)
+
+ # Check amount of bricks
+ brick_amount = len(gluster_vol['bricks']['brick'])
+ self.assertEqual(brick_amount % 3, 0,
+ "Brick amount is expected to be divisible by 3. "
+ "Actual amount is '%s'" % brick_amount)
+ self.assertGreater(brick_amount, 3,
+ "Brick amount is expected to be bigger than 3. "
+ "Actual amount is '%s'." % brick_amount)
+
+ # Run unique actions for CNS-798 test case else return
+ if not validate_cleanup:
+ return
+
+ # Get the free space after creating heketi volume
+ free_space_after_creating_vol = self._get_free_space()
+
+ # Delete heketi volume
+ g.log.info("Deleting heketi volume '%s'" % vol_id)
+ volume_deleted = heketi_volume_delete(
+ self.heketi_client_node, heketi_url, vol_id)
+ self.assertTrue(
+ volume_deleted, "Failed to delete heketi volume '%s'" % vol_id)
+ g.log.info("Heketi volume '%s' has successfully been deleted" % vol_id)
+
+ # Check the heketi volume list
+ g.log.info("List heketi volumes")
+ heketi_volumes = heketi_volume_list(
+ self.heketi_client_node, self.heketi_server_url, json=True)
+ self.assertTrue(heketi_volumes, "Failed to list heketi volumes")
+ g.log.info("Heketi volumes have successfully been listed")
+ heketi_volumes = heketi_volumes.get('volumes', heketi_volumes)
+ self.assertNotIn(vol_id, heketi_volumes)
+ self.assertNotIn(vol_name, heketi_volumes)
+
+ # Check the gluster volume list
+ g.log.info("Get the gluster volume list")
+ if self.deployment_type == "cns":
+ gluster_pod = get_ocp_gluster_pod_names(self.master_node)[0]
+ p = podcmd.Pod(self.master_node, gluster_pod)
+ gluster_volumes = get_volume_list(p)
+ else:
+ gluster_volumes = get_volume_list(self.gluster_node)
+ self.assertTrue(gluster_volumes, "Unable to get Gluster volume list")
+ g.log.info("Successfully got Gluster volume list" % gluster_volumes)
+ self.assertNotIn(vol_id, gluster_volumes)
+ self.assertNotIn(vol_name, gluster_volumes)
+
+ # Get the used space after deleting heketi volume
+ free_space_after_deleting_vol = self._get_free_space()
+
+ # Compare the free space before and after deleting the volume
+ g.log.info("Comparing the free space before and after deleting volume")
+ self.assertLessEqual(
+ free_space_after_creating_vol + (3 * vol_size_gb),
+ free_space_after_deleting_vol)
+ g.log.info("Volume successfully deleted and space is reallocated. "
+ "Free space after creating volume %s. "
+ "Free space after deleting volume %s." % (
+ free_space_after_creating_vol,
+ free_space_after_deleting_vol))
+
+ @podcmd.GlustoPod()
+ def test_to_create_distribute_replicated_vol(self):
+ """Test case CNS-797"""
+ self._create_distributed_replica_vol(validate_cleanup=False)
+
+ @podcmd.GlustoPod()
+ def test_to_create_and_delete_dist_rep_vol(self):
+ """Test case CNS-798"""
+ self._create_distributed_replica_vol(validate_cleanup=True)