Functional test for volume snapshot
Refactor functional tests in volume snapshot. Change-Id: I2fcc468096b3a26c83b8af1e379a62c80eb9c63e
This commit is contained in:
parent
1d9935aaa1
commit
dc3b83590a
@ -10,6 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
import json
|
||||||
import time
|
import time
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
@ -20,9 +21,6 @@ class VolumeSnapshotTests(common.BaseVolumeTests):
|
|||||||
"""Functional tests for volume snapshot. """
|
"""Functional tests for volume snapshot. """
|
||||||
|
|
||||||
VOLLY = uuid.uuid4().hex
|
VOLLY = uuid.uuid4().hex
|
||||||
NAME = uuid.uuid4().hex
|
|
||||||
OTHER_NAME = uuid.uuid4().hex
|
|
||||||
HEADERS = ['"Name"']
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def wait_for_status(cls, command, status, tries):
|
def wait_for_status(cls, command, status, tries):
|
||||||
@ -37,52 +35,211 @@ class VolumeSnapshotTests(common.BaseVolumeTests):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
super(VolumeSnapshotTests, cls).setUpClass()
|
super(VolumeSnapshotTests, cls).setUpClass()
|
||||||
cls.openstack('volume create --size 1 ' + cls.VOLLY)
|
# create a volume for all tests to create snapshot
|
||||||
cls.wait_for_status('volume show ' + cls.VOLLY, 'available\n', 3)
|
cmd_output = json.loads(cls.openstack(
|
||||||
opts = cls.get_opts(['status'])
|
'volume create -f json ' +
|
||||||
raw_output = cls.openstack('volume snapshot create --volume ' +
|
'--size 1 ' +
|
||||||
cls.VOLLY + ' ' + cls.NAME + opts)
|
cls.VOLLY
|
||||||
cls.assertOutput('creating\n', raw_output)
|
))
|
||||||
cls.wait_for_status(
|
cls.wait_for_status('volume show ' + cls.VOLLY, 'available\n', 6)
|
||||||
'volume snapshot show ' + cls.NAME, 'available\n', 3)
|
cls.VOLUME_ID = cmd_output['id']
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def tearDownClass(cls):
|
def tearDownClass(cls):
|
||||||
# Rename test
|
|
||||||
raw_output = cls.openstack(
|
|
||||||
'volume snapshot set --name ' + cls.OTHER_NAME + ' ' + cls.NAME)
|
|
||||||
cls.assertOutput('', raw_output)
|
|
||||||
# Delete test
|
|
||||||
raw_output_snapshot = cls.openstack(
|
|
||||||
'volume snapshot delete ' + cls.OTHER_NAME)
|
|
||||||
cls.wait_for_status('volume show ' + cls.VOLLY, 'available\n', 6)
|
cls.wait_for_status('volume show ' + cls.VOLLY, 'available\n', 6)
|
||||||
raw_output_volume = cls.openstack('volume delete --force ' + cls.VOLLY)
|
raw_output = cls.openstack('volume delete --force ' + cls.VOLLY)
|
||||||
cls.assertOutput('', raw_output_snapshot)
|
cls.assertOutput('', raw_output)
|
||||||
cls.assertOutput('', raw_output_volume)
|
|
||||||
|
|
||||||
def test_snapshot_list(self):
|
def test_volume_snapshot__delete(self):
|
||||||
opts = self.get_opts(self.HEADERS)
|
"""Test create, delete multiple"""
|
||||||
raw_output = self.openstack('volume snapshot list' + opts)
|
name1 = uuid.uuid4().hex
|
||||||
self.assertIn(self.NAME, raw_output)
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot create -f json ' +
|
||||||
|
name1 +
|
||||||
|
' --volume ' + self.VOLLY
|
||||||
|
))
|
||||||
|
self.assertEqual(
|
||||||
|
name1,
|
||||||
|
cmd_output["name"],
|
||||||
|
)
|
||||||
|
|
||||||
def test_snapshot_properties(self):
|
name2 = uuid.uuid4().hex
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot create -f json ' +
|
||||||
|
name2 +
|
||||||
|
' --volume ' + self.VOLLY
|
||||||
|
))
|
||||||
|
self.assertEqual(
|
||||||
|
name2,
|
||||||
|
cmd_output["name"],
|
||||||
|
)
|
||||||
|
|
||||||
|
self.wait_for_status(
|
||||||
|
'volume snapshot show ' + name1, 'available\n', 6)
|
||||||
|
self.wait_for_status(
|
||||||
|
'volume snapshot show ' + name2, 'available\n', 6)
|
||||||
|
|
||||||
|
del_output = self.openstack(
|
||||||
|
'volume snapshot delete ' + name1 + ' ' + name2)
|
||||||
|
self.assertOutput('', del_output)
|
||||||
|
|
||||||
|
def test_volume_snapshot_list(self):
|
||||||
|
"""Test create, list filter"""
|
||||||
|
name1 = uuid.uuid4().hex
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot create -f json ' +
|
||||||
|
name1 +
|
||||||
|
' --volume ' + self.VOLLY
|
||||||
|
))
|
||||||
|
self.addCleanup(self.openstack, 'volume snapshot delete ' + name1)
|
||||||
|
self.assertEqual(
|
||||||
|
name1,
|
||||||
|
cmd_output["name"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
self.VOLUME_ID,
|
||||||
|
cmd_output["volume_id"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
1,
|
||||||
|
cmd_output["size"],
|
||||||
|
)
|
||||||
|
self.wait_for_status(
|
||||||
|
'volume snapshot show ' + name1, 'available\n', 6)
|
||||||
|
|
||||||
|
name2 = uuid.uuid4().hex
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot create -f json ' +
|
||||||
|
name2 +
|
||||||
|
' --volume ' + self.VOLLY
|
||||||
|
))
|
||||||
|
self.addCleanup(self.openstack, 'volume snapshot delete ' + name2)
|
||||||
|
self.assertEqual(
|
||||||
|
name2,
|
||||||
|
cmd_output["name"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
self.VOLUME_ID,
|
||||||
|
cmd_output["volume_id"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
1,
|
||||||
|
cmd_output["size"],
|
||||||
|
)
|
||||||
|
self.wait_for_status(
|
||||||
|
'volume snapshot show ' + name2, 'available\n', 6)
|
||||||
raw_output = self.openstack(
|
raw_output = self.openstack(
|
||||||
'volume snapshot set --property a=b --property c=d ' + self.NAME)
|
'volume snapshot set ' +
|
||||||
self.assertEqual("", raw_output)
|
'--state error ' +
|
||||||
opts = self.get_opts(["properties"])
|
name2
|
||||||
raw_output = self.openstack('volume snapshot show ' + self.NAME + opts)
|
)
|
||||||
self.assertEqual("a='b', c='d'\n", raw_output)
|
self.assertOutput('', raw_output)
|
||||||
|
|
||||||
raw_output = self.openstack(
|
# Test list --long, --status
|
||||||
'volume snapshot unset --property a ' + self.NAME)
|
cmd_output = json.loads(self.openstack(
|
||||||
self.assertEqual("", raw_output)
|
'volume snapshot list -f json ' +
|
||||||
raw_output = self.openstack('volume snapshot show ' + self.NAME + opts)
|
'--long ' +
|
||||||
self.assertEqual("c='d'\n", raw_output)
|
'--status error'
|
||||||
|
))
|
||||||
|
names = [x["Name"] for x in cmd_output]
|
||||||
|
self.assertNotIn(name1, names)
|
||||||
|
self.assertIn(name2, names)
|
||||||
|
|
||||||
|
# Test list --volume
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot list -f json ' +
|
||||||
|
'--volume ' + self.VOLLY
|
||||||
|
))
|
||||||
|
names = [x["Name"] for x in cmd_output]
|
||||||
|
self.assertIn(name1, names)
|
||||||
|
self.assertIn(name2, names)
|
||||||
|
|
||||||
|
# Test list --name
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot list -f json ' +
|
||||||
|
'--name ' + name1
|
||||||
|
))
|
||||||
|
names = [x["Name"] for x in cmd_output]
|
||||||
|
self.assertIn(name1, names)
|
||||||
|
self.assertNotIn(name2, names)
|
||||||
|
|
||||||
def test_snapshot_set(self):
|
def test_snapshot_set(self):
|
||||||
|
"""Test create, set, unset, show, delete volume snapshot"""
|
||||||
|
name = uuid.uuid4().hex
|
||||||
|
new_name = name + "_"
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot create -f json ' +
|
||||||
|
'--volume ' + self.VOLLY +
|
||||||
|
' --description aaaa ' +
|
||||||
|
'--property Alpha=a ' +
|
||||||
|
name
|
||||||
|
))
|
||||||
|
self.addCleanup(self.openstack, 'volume snapshot delete ' + new_name)
|
||||||
|
self.assertEqual(
|
||||||
|
name,
|
||||||
|
cmd_output["name"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
1,
|
||||||
|
cmd_output["size"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
'aaaa',
|
||||||
|
cmd_output["description"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
"Alpha='a'",
|
||||||
|
cmd_output["properties"],
|
||||||
|
)
|
||||||
|
self.wait_for_status(
|
||||||
|
'volume snapshot show ' + name, 'available\n', 6)
|
||||||
|
|
||||||
|
# Test volume snapshot set
|
||||||
raw_output = self.openstack(
|
raw_output = self.openstack(
|
||||||
'volume snapshot set --description backup ' + self.NAME)
|
'volume snapshot set ' +
|
||||||
self.assertEqual("", raw_output)
|
'--name ' + new_name +
|
||||||
opts = self.get_opts(["description", "name"])
|
' --description bbbb ' +
|
||||||
raw_output = self.openstack('volume snapshot show ' + self.NAME + opts)
|
'--property Alpha=c ' +
|
||||||
self.assertEqual("backup\n" + self.NAME + "\n", raw_output)
|
'--property Beta=b ' +
|
||||||
|
name,
|
||||||
|
)
|
||||||
|
self.assertOutput('', raw_output)
|
||||||
|
|
||||||
|
# Show snapshot set result
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot show -f json ' +
|
||||||
|
new_name
|
||||||
|
))
|
||||||
|
self.assertEqual(
|
||||||
|
new_name,
|
||||||
|
cmd_output["name"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
1,
|
||||||
|
cmd_output["size"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
'bbbb',
|
||||||
|
cmd_output["description"],
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
"Alpha='c', Beta='b'",
|
||||||
|
cmd_output["properties"],
|
||||||
|
)
|
||||||
|
|
||||||
|
# Test volume unset
|
||||||
|
raw_output = self.openstack(
|
||||||
|
'volume snapshot unset ' +
|
||||||
|
'--property Alpha ' +
|
||||||
|
new_name,
|
||||||
|
)
|
||||||
|
self.assertOutput('', raw_output)
|
||||||
|
|
||||||
|
cmd_output = json.loads(self.openstack(
|
||||||
|
'volume snapshot show -f json ' +
|
||||||
|
new_name
|
||||||
|
))
|
||||||
|
self.assertEqual(
|
||||||
|
"Beta='b'",
|
||||||
|
cmd_output["properties"],
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user