Merge "Create a snapshot from a in-use volume with force=False"

This commit is contained in:
Jenkins 2017-04-26 19:05:23 +00:00 committed by Gerrit Code Review
commit 3f0163a931

View File

@ -16,6 +16,7 @@ from tempest.api.volume import base
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test
CONF = config.CONF
@ -42,6 +43,10 @@ class VolumesSnapshotTestJSON(base.BaseVolumeTest):
server = self.create_server(wait_until='ACTIVE')
self.attach_volume(server['id'], self.volume_origin['id'])
# Snapshot a volume which attached to an instance with force=False
self.assertRaises(lib_exc.BadRequest, self.create_snapshot,
self.volume_origin['id'], force=False)
# Snapshot a volume even if it's attached to an instance
snapshot = self.create_snapshot(self.volume_origin['id'],
force=True)