summaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
authorMiroslav Asenov <masenov@redhat.com>2018-04-10 16:01:02 +0300
committerNigel Babu <nigelb@redhat.com>2018-04-16 09:57:45 +0000
commit3d6db7cef0665f4baa9aefe04919bbe88d8e725f (patch)
tree05b0b49bdbe03dab566c112335ac655ab90c64e4 /tests/functional
parent8d915c9b2a1dcc4ff6f96d112f3c534c8a219b36 (diff)
Added test case - dht rename directory
Change-Id: I243a8ecf57483c20e5060351a9f24e7687ccdcf4
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/dht/test_rename_directory.py273
1 files changed, 273 insertions, 0 deletions
diff --git a/tests/functional/dht/test_rename_directory.py b/tests/functional/dht/test_rename_directory.py
new file mode 100644
index 000000000..c7e360a72
--- /dev/null
+++ b/tests/functional/dht/test_rename_directory.py
@@ -0,0 +1,273 @@
+from glusto.core import Glusto as g
+from glustolibs.gluster.gluster_base_class import (GlusterBaseClass,
+ runs_on)
+from glustolibs.gluster.exceptions import ExecutionError
+from glustolibs.gluster.glusterdir import mkdir
+from glustolibs.gluster.brick_libs import get_all_bricks
+from glustolibs.gluster.glusterfile import file_exists, move_file
+from glustolibs.gluster.dht_test_utils import validate_files_in_dir
+import glustolibs.gluster.constants as k
+
+
+_TEST_FILE_ON_HASHED_BRICKS = k.TEST_FILE_EXISTS_ON_HASHED_BRICKS
+
+
+@runs_on([['distributed-replicated', 'replicated', 'distributed',
+ 'dispersed', 'distributed-dispersed'],
+ ['glusterfs', 'nfs']])
+class TestDHTRenameDirectory(GlusterBaseClass):
+ """DHT Tests - rename directory
+ Scenarios:
+ 1 - Rename directory when destination is not presented
+ 2 - Rename directory when destination is presented
+ """
+
+ def setUp(self):
+ """
+ Setup and mount volume or raise ExecutionError
+ """
+ GlusterBaseClass.setUp.im_func(self)
+
+ # Setup Volume
+ ret = self.setup_volume_and_mount_volume(self.mounts)
+ if not ret:
+ g.log.error("Failed to Setup and Mount Volume")
+ raise ExecutionError("Failed to Setup and Mount Volume")
+
+ self.files = (
+ 'a.txt',
+ 'b.txt',
+ 'sub_folder/c.txt',
+ 'sub_folder/d.txt'
+ )
+
+ @classmethod
+ def create_files(cls, host, root, files, content):
+ """This method is responsible to create file structure by given
+ sequence with the same content for all of the files
+ :param host: Remote host
+ :param root: root file directory
+ :param files: Sequence of files
+ :param content: Content for all of the files
+ :type host: str
+ :type root: str
+ :type files: list or tuple or set
+ :type content: str
+ :rtype host: str
+ :return: True on success / False on error
+ :rtype: boolean
+ """
+ for item in files:
+ dir_name = root
+ file_name = item
+ if item.find('/') != -1:
+ folders_tree = "/".join(item.split('/')[:-1])
+ file_name = item[-1]
+ dir_name = '{root}/{folders_tree}'.format(
+ root=root, folders_tree=folders_tree)
+ mkdir(host, dir_name, parents=True)
+ cmd = 'echo "{content}" > {root}/{file}'.format(root=dir_name,
+ file=file_name,
+ content=content)
+ ret, _, _ = g.run(host, cmd)
+ if ret != 0:
+ g.log.error('Error on file creation %s', cmd)
+ return False
+ return True
+
+ def test_rename_directory_no_destination_folder(self):
+ """Test rename directory with no destination folder
+ """
+ dirs = {
+ 'initial': '{root}/folder_{client_index}',
+ 'new_folder': '{root}/folder_renamed{client_index}'
+ }
+
+ for mount_index, mount_obj in enumerate(self.mounts):
+ client_host = mount_obj.client_system
+ mountpoint = mount_obj.mountpoint
+
+ initial_folder = dirs['initial'].format(
+ root=mount_obj.mountpoint,
+ client_index=mount_index
+ )
+
+ ret = validate_files_in_dir(client_host, mountpoint,
+ test_type=k.TEST_LAYOUT_IS_COMPLETE,
+ file_type=k.FILETYPE_DIRS)
+ self.assertTrue(ret, "Expected - Layout is complete")
+ g.log.info('Layout is complete')
+
+ # Create source folder on mount point
+ self.assertTrue(mkdir(client_host, initial_folder),
+ 'Failed creating source directory')
+ self.assertTrue(file_exists(client_host, initial_folder))
+ g.log.info('Created source directory %s on mount point %s',
+ initial_folder, mountpoint)
+ # Create files and directories
+ ret = self.create_files(client_host, initial_folder, self.files,
+ content='Textual content')
+
+ self.assertTrue(ret, 'Unable to create files on mount point')
+ g.log.info('Files and directories are created')
+
+ ret = validate_files_in_dir(client_host, mountpoint,
+ test_type=_TEST_FILE_ON_HASHED_BRICKS)
+ self.assertTrue(ret, "Expected - Files and dirs are stored "
+ "on hashed bricks")
+ g.log.info('Files and dirs are stored on hashed bricks')
+
+ new_folder_name = dirs['new_folder'].format(
+ root=mountpoint,
+ client_index=mount_index
+ )
+ # Check if destination dir does not exist
+ self.assertFalse(file_exists(client_host, new_folder_name),
+ 'Expected New folder name should not exists')
+ # Rename source folder
+ ret = move_file(client_host, initial_folder,
+ new_folder_name)
+ self.assertTrue(ret, "Rename direcoty failed")
+ g.log.info('Renamed directory %s to %s', initial_folder,
+ new_folder_name)
+
+ # Old dir does not exist and destination is presented
+ self.assertFalse(file_exists(client_host, initial_folder),
+ '%s should be not listed' % initial_folder)
+ g.log.info('The old directory %s does not exists on mount point',
+ initial_folder)
+ self.assertTrue(file_exists(client_host, new_folder_name),
+ 'Destination dir does not exists %s' %
+ new_folder_name)
+ g.log.info('The new folder is presented %s', new_folder_name)
+
+ # Check bricks for source and destination directories
+ for brick_item in get_all_bricks(self.mnode, self.volname):
+ brick_host, brick_dir = brick_item.split(':')
+
+ initial_folder = dirs['initial'].format(
+ root=brick_dir,
+ client_index=mount_index
+ )
+ new_folder_name = dirs['new_folder'].format(
+ root=brick_dir,
+ client_index=mount_index
+ )
+
+ self.assertFalse(file_exists(brick_host, initial_folder),
+ "Expected folder %s to be not presented" %
+ initial_folder)
+ self.assertTrue(file_exists(brick_host, new_folder_name),
+ 'Expected folder %s to be presented' %
+ new_folder_name)
+
+ g.log.info('The old directory %s does not exists and directory'
+ ' %s is presented' %
+ (initial_folder, new_folder_name))
+ g.log.info('Rename directory when destination directory '
+ 'does not exist is successful')
+
+ def test_rename_directory_with_dest_folder(self):
+ """Test rename directory with presented destination folder
+ """
+ dirs = {
+ 'initial_folder': '{root}/folder_{client_index}/',
+ 'new_folder': '{root}/new_folder_{client_index}/'
+ }
+
+ for mount_index, mount_obj in enumerate(self.mounts):
+ client_host = mount_obj.client_system
+ mountpoint = mount_obj.mountpoint
+
+ initial_folder = dirs['initial_folder'].format(
+ root=mount_obj.mountpoint,
+ client_index=mount_index
+ )
+
+ ret = validate_files_in_dir(client_host, mountpoint,
+ test_type=k.TEST_LAYOUT_IS_COMPLETE,
+ file_type=k.FILETYPE_DIRS)
+ self.assertTrue(ret, "Expected - Layout is complete")
+ g.log.info('Layout is complete')
+
+ # Create a folder on mount point
+ self.assertTrue(mkdir(client_host, initial_folder, parents=True),
+ 'Failed creating source directory')
+ self.assertTrue(file_exists(client_host, initial_folder))
+ g.log.info('Created source directory %s on mount point %s',
+ initial_folder, mountpoint)
+
+ new_folder_name = dirs['new_folder'].format(
+ root=mountpoint,
+ client_index=mount_index
+ )
+ # Create destination directory
+ self.assertTrue(mkdir(client_host, new_folder_name, parents=True),
+ 'Failed creating destination directory')
+ self.assertTrue(file_exists(client_host, new_folder_name))
+ g.log.info('Created destination directory %s on mount point %s',
+ new_folder_name, mountpoint)
+
+ # Create files and directories
+ ret = self.create_files(client_host, initial_folder, self.files,
+ content='Textual content')
+ self.assertTrue(ret, 'Unable to create files on mount point')
+ g.log.info('Files and directories are created')
+
+ ret = validate_files_in_dir(client_host, mountpoint,
+ test_type=_TEST_FILE_ON_HASHED_BRICKS)
+ self.assertTrue(ret, "Expected - Files and dirs are stored "
+ "on hashed bricks")
+ g.log.info('Files and dirs are stored on hashed bricks')
+ # Rename source folder to destination
+ ret = move_file(client_host, initial_folder,
+ new_folder_name)
+ self.assertTrue(ret, "Rename folder failed")
+ g.log.info('Renamed folder %s to %s', initial_folder,
+ new_folder_name)
+
+ # Old dir does not exist and destination is presented
+ self.assertFalse(file_exists(client_host, initial_folder),
+ '%s should be not listed' % initial_folder)
+ g.log.info('The old directory %s does not exists on mount point',
+ initial_folder)
+ self.assertTrue(file_exists(client_host, new_folder_name),
+ 'Renamed directory does not exists %s' %
+ new_folder_name)
+ g.log.info('The new folder exists %s', new_folder_name)
+
+ # Check bricks for source and destination directories
+ for brick_item in get_all_bricks(self.mnode, self.volname):
+ brick_host, brick_dir = brick_item.split(':')
+
+ initial_folder = dirs['initial_folder'].format(
+ root=brick_dir,
+ client_index=mount_index
+ )
+ new_folder_name = dirs['new_folder'].format(
+ root=brick_dir,
+ client_index=mount_index
+ )
+
+ self.assertFalse(file_exists(brick_host, initial_folder),
+ "Expected folder %s not to be presented" %
+ initial_folder)
+ self.assertTrue(file_exists(brick_host, new_folder_name),
+ 'Expected folder %s to be presented' %
+ new_folder_name)
+
+ g.log.info('The old directory %s does not exists and directory'
+ ' %s is presented' %
+ (initial_folder, new_folder_name))
+ g.log.info('Rename directory when destination directory '
+ 'exist is successful')
+
+ def tearDown(cls):
+ # Unmount Volume and Cleanup Volume
+ g.log.info("Starting to Unmount Volume and Cleanup Volume")
+ ret = cls.unmount_volume_and_cleanup_volume(mounts=cls.mounts)
+ if not ret:
+ raise ExecutionError("Failed to Unmount Volume and Cleanup Volume")
+ g.log.info("Successful in Unmount Volume and Cleanup Volume")
+ # Calling GlusterBaseClass tearDown
+ GlusterBaseClass.tearDownClass.im_func(cls)