blob: e7fa97d40c7f717613d32795be1d50f821897933 [file] [log] [blame]
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# 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.
from tempest.tests.volume import base
class VolumesSnapshotTest(base.BaseVolumeTest):
_interface = "json"
def test_volume_from_snapshot(self):
volume_origin = self.create_volume(size=1)
snapshot = self.create_snapshot(volume_origin['id'])
volume_snap = self.create_volume(size=1,
snapshot_id=
snapshot['id'])
self.snapshots_client.delete_snapshot(snapshot['id'])
self.volumes_client.delete_volume(volume_snap['id'])
self.snapshots_client.wait_for_resource_deletion(snapshot['id'])
self.snapshots.remove(snapshot)
self.volumes_client.delete_volume(volume_origin['id'])
self.volumes_client.wait_for_resource_deletion(volume_snap['id'])
self.volumes.remove(volume_snap)
self.volumes_client.wait_for_resource_deletion(volume_origin['id'])
self.volumes.remove(volume_origin)
class VolumesSnapshotTestXML(VolumesSnapshotTest):
_interface = "xml"