diff options
author | Alberto Garcia <berto@igalia.com> | 2016-10-28 10:08:20 +0300 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-10-31 16:52:39 +0100 |
commit | 7eb13c9daac7e02bcd4dc18ad4297a93ae34d235 (patch) | |
tree | 9f5e22fa2760287c4d84f477f9440f5485cfd053 | |
parent | 312fe09cc8af86c25a0c17162539589121e7d9a9 (diff) | |
download | qemu-7eb13c9daac7e02bcd4dc18ad4297a93ae34d235.tar.gz qemu-7eb13c9daac7e02bcd4dc18ad4297a93ae34d235.tar.bz2 qemu-7eb13c9daac7e02bcd4dc18ad4297a93ae34d235.zip |
qemu-iotests: Test the 'base-node' parameter of 'block-stream'
The block-stream command has traditionally used the 'base' parameter
to indicate the image to copy the data from. This test checks that the
'base-node' parameter can also be used for the same purpose.
Signed-off-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rwxr-xr-x | tests/qemu-iotests/030 | 37 | ||||
-rw-r--r-- | tests/qemu-iotests/030.out | 4 |
2 files changed, 39 insertions, 2 deletions
diff --git a/tests/qemu-iotests/030 b/tests/qemu-iotests/030 index 783a1b80c2..54db54a1ea 100755 --- a/tests/qemu-iotests/030 +++ b/tests/qemu-iotests/030 @@ -347,6 +347,43 @@ class TestParallelOps(iotests.QMPTestCase): self.assert_no_active_block_jobs() + # Test the base_node parameter + def test_stream_base_node_name(self): + self.assert_no_active_block_jobs() + + self.assertNotEqual(qemu_io('-f', iotests.imgfmt, '-c', 'map', self.imgs[4]), + qemu_io('-f', iotests.imgfmt, '-c', 'map', self.imgs[3]), + 'image file map matches backing file before streaming') + + # Error: the base node does not exist + result = self.vm.qmp('block-stream', device='node4', base_node='none', job_id='stream') + self.assert_qmp(result, 'error/class', 'GenericError') + + # Error: the base node is not a backing file of the top node + result = self.vm.qmp('block-stream', device='node4', base_node='node6', job_id='stream') + self.assert_qmp(result, 'error/class', 'GenericError') + + # Error: the base node is the same as the top node + result = self.vm.qmp('block-stream', device='node4', base_node='node4', job_id='stream') + self.assert_qmp(result, 'error/class', 'GenericError') + + # Error: cannot specify 'base' and 'base-node' at the same time + result = self.vm.qmp('block-stream', device='node4', base=self.imgs[2], base_node='node2', job_id='stream') + self.assert_qmp(result, 'error/class', 'GenericError') + + # Success: the base node is a backing file of the top node + result = self.vm.qmp('block-stream', device='node4', base_node='node2', job_id='stream') + self.assert_qmp(result, 'return', {}) + + self.wait_until_completed(drive='stream') + + self.assert_no_active_block_jobs() + self.vm.shutdown() + + self.assertEqual(qemu_io('-f', iotests.imgfmt, '-c', 'map', self.imgs[4]), + qemu_io('-f', iotests.imgfmt, '-c', 'map', self.imgs[3]), + 'image file map matches backing file after streaming') + class TestQuorum(iotests.QMPTestCase): num_children = 3 children = [] diff --git a/tests/qemu-iotests/030.out b/tests/qemu-iotests/030.out index c6a10f870d..84bfd63fba 100644 --- a/tests/qemu-iotests/030.out +++ b/tests/qemu-iotests/030.out @@ -1,5 +1,5 @@ -..................... +...................... ---------------------------------------------------------------------- -Ran 21 tests +Ran 22 tests OK |