eff4f9b87f
As per the official python support timeline set forth by the OpenStack TC [1][2], OpenStack Train is the last release that will support python2.7. manila-tempest-plugin is a 'branchless' tempest plugin. However, after this change, users may no longer expect to install this package with python2.7. Depends-On: https://review.opendev.org/#/c/688997/ [1] https://governance.openstack.org/tc/resolutions/20180529-python2-deprecation-timeline.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: I8c10d169302c6f1c41e238ae9f787455a2b15a4d
178 lines
6.7 KiB
Python
178 lines
6.7 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import six
|
|
import time
|
|
|
|
from oslo_log import log as logging
|
|
from tempest import config
|
|
from tempest.lib import exceptions
|
|
import testtools
|
|
from testtools import testcase as tc
|
|
|
|
from manila_tempest_tests.common import constants
|
|
from manila_tempest_tests.tests.api import base
|
|
from manila_tempest_tests.tests.scenario import manager_share as manager
|
|
|
|
CONF = config.CONF
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class ShareShrinkBase(manager.ShareScenarioTest):
|
|
|
|
"""This test case uses the following flow:
|
|
|
|
* Launch an instance
|
|
* Create share (Configured size + 1)
|
|
* Configure RW access to the share
|
|
* Perform ssh to instance
|
|
* Mount share
|
|
* Write data in share (in excess of 1GB)
|
|
* Shrink share to 1GB (fail expected)
|
|
* Delete data from share
|
|
* Shrink share to 1GB
|
|
* Write more than 1GB of data (fail expected)
|
|
* Unmount share
|
|
* Delete share
|
|
* Terminate the instance
|
|
"""
|
|
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_BACKEND)
|
|
@testtools.skipUnless(
|
|
CONF.share.run_shrink_tests, 'Shrink share tests are disabled.')
|
|
def test_create_shrink_and_write(self):
|
|
default_share_size = CONF.share.share_size
|
|
share_size = CONF.share.share_size + 1
|
|
|
|
LOG.debug('Step 1 - create instance')
|
|
instance = self.boot_instance(wait_until="BUILD")
|
|
|
|
LOG.debug('Step 2 - create share of size {} Gb'.format(share_size))
|
|
share = self.create_share(size=share_size)
|
|
|
|
LOG.debug('Step 3 - wait for active instance')
|
|
instance = self.wait_for_active_instance(instance["id"])
|
|
remote_client = self.init_remote_client(instance)
|
|
|
|
LOG.debug('Step 4 - grant access')
|
|
self.provide_access_to_auxiliary_instance(instance)
|
|
|
|
locations = self.get_share_export_locations(share)
|
|
|
|
LOG.debug('Step 5 - mount')
|
|
self.mount_share(locations[0], remote_client)
|
|
|
|
total_blocks = (1024 * default_share_size) / 64
|
|
blocks = total_blocks + 4
|
|
LOG.debug('Step 6 - writing {} * 64MB blocks'.format(blocks))
|
|
self.write_data_to_mounted_share_using_dd(remote_client,
|
|
'/mnt/t1', '64M',
|
|
blocks, '/dev/urandom')
|
|
ls_result = remote_client.exec_command("sudo ls -lAh /mnt/")
|
|
LOG.debug(ls_result)
|
|
|
|
LOG.debug('Step 8 - try update size, shrink and wait')
|
|
self.shares_v2_client.shrink_share(share['id'],
|
|
new_size=default_share_size)
|
|
self.shares_v2_client.wait_for_share_status(
|
|
share['id'], 'shrinking_possible_data_loss_error')
|
|
|
|
LOG.debug('Step 9 - delete data')
|
|
remote_client.exec_command("sudo rm /mnt/t1")
|
|
|
|
ls_result = remote_client.exec_command("sudo ls -lAh /mnt/")
|
|
LOG.debug(ls_result)
|
|
|
|
LOG.debug('Step 10 - reset and shrink')
|
|
self.share_shrink_retry_until_success(share["id"],
|
|
share_size=default_share_size)
|
|
|
|
share = self.shares_v2_client.get_share(share["id"])
|
|
self.assertEqual(default_share_size, int(share["size"]))
|
|
|
|
LOG.debug('Step 11 - write more data than allocated, should fail')
|
|
self.assertRaises(
|
|
exceptions.SSHExecCommandFailed,
|
|
self.write_data_to_mounted_share_using_dd,
|
|
remote_client, '/mnt/t1', '64M', blocks, '/dev/urandom')
|
|
|
|
LOG.debug('Step 12 - unmount')
|
|
self.unmount_share(remote_client)
|
|
|
|
def share_shrink_retry_until_success(self, share_id, share_size,
|
|
status_attr='status'):
|
|
"""Try share reset, followed by shrink, until timeout"""
|
|
|
|
check_interval = CONF.share.build_interval * 2
|
|
body = self.shares_v2_client.get_share(share_id)
|
|
share_status = body[status_attr]
|
|
start = int(time.time())
|
|
|
|
while share_status != constants.STATUS_AVAILABLE:
|
|
if share_status != constants.STATUS_SHRINKING:
|
|
self.shares_admin_v2_client.reset_state(
|
|
share_id, status=constants.STATUS_AVAILABLE)
|
|
try:
|
|
self.shares_v2_client.shrink_share(share_id,
|
|
new_size=share_size)
|
|
except exceptions.BadRequest as e:
|
|
if ('New size for shrink must be less '
|
|
'than current size') in six.text_type(e):
|
|
break
|
|
time.sleep(check_interval)
|
|
body = self.shares_v2_client.get_share(share_id)
|
|
share_status = body[status_attr]
|
|
if share_status == constants.STATUS_AVAILABLE:
|
|
return
|
|
|
|
if int(time.time()) - start >= CONF.share.build_timeout:
|
|
message = ("Share's %(status_attr)s failed to transition to "
|
|
"%(status)s within the required time %(seconds)s." %
|
|
{"status_attr": status_attr,
|
|
"status": constants.STATUS_AVAILABLE,
|
|
"seconds": CONF.share.build_timeout})
|
|
raise exceptions.TimeoutException(message)
|
|
|
|
|
|
class TestShareShrinkNFS(ShareShrinkBase):
|
|
protocol = "nfs"
|
|
|
|
def mount_share(self, location, ssh_client, target_dir=None):
|
|
target_dir = target_dir or "/mnt"
|
|
ssh_client.exec_command(
|
|
"sudo mount -vt nfs \"%s\" %s" % (location, target_dir)
|
|
)
|
|
|
|
|
|
class TestShareShrinkCIFS(ShareShrinkBase):
|
|
protocol = "cifs"
|
|
|
|
def mount_share(self, location, ssh_client, target_dir=None):
|
|
location = location.replace("\\", "/")
|
|
target_dir = target_dir or "/mnt"
|
|
ssh_client.exec_command(
|
|
"sudo mount.cifs \"%s\" %s -o guest" % (location, target_dir)
|
|
)
|
|
|
|
|
|
# NOTE(u_glide): this function is required to exclude ShareShrinkBase from
|
|
# executed test cases.
|
|
# See: https://docs.python.org/3/library/unittest.html#load-tests-protocol
|
|
# for details.
|
|
def load_tests(loader, tests, _):
|
|
result = []
|
|
for test_case in tests:
|
|
if type(test_case._tests[0]) is ShareShrinkBase:
|
|
continue
|
|
result.append(test_case)
|
|
return loader.suiteClass(result)
|