From: Kevin Wolf Date: Tue, 28 Oct 2025 09:43:28 +0000 (+0100) Subject: iotests: Test resizing file node under raw with size/offset X-Git-Tag: v10.2.0-rc1~10^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23798d3f885497c1f0a0c062fc889e7a5eff0648;p=thirdparty%2Fqemu.git iotests: Test resizing file node under raw with size/offset This adds some more tests for using the 'size' and 'offset' options of raw to the recently added resize-below-raw test. Signed-off-by: Kevin Wolf Message-ID: <20251028094328.17919-1-kwolf@redhat.com> Signed-off-by: Kevin Wolf --- diff --git a/tests/qemu-iotests/tests/resize-below-raw b/tests/qemu-iotests/tests/resize-below-raw index 3c9241c918..ddf3f44742 100755 --- a/tests/qemu-iotests/tests/resize-below-raw +++ b/tests/qemu-iotests/tests/resize-below-raw @@ -8,16 +8,27 @@ # SPDX-License-Identifier: GPL-2.0-or-later import os +from typing import Dict, Optional + import iotests from iotests import imgfmt, qemu_img_create, QMPTestCase image_size = 1 * 1024 * 1024 image = os.path.join(iotests.test_dir, 'test.img') -class TestResizeBelowRaw(QMPTestCase): +class BaseResizeBelowRaw(QMPTestCase): + raw_size: Optional[int] = None + raw_offset: Optional[int] = None + def setUp(self) -> None: qemu_img_create('-f', imgfmt, image, str(image_size)) + extra_options: Dict[str, str] = {} + if self.raw_size is not None: + extra_options['size'] = str(self.raw_size) + if self.raw_offset is not None: + extra_options['offset'] = str(self.raw_offset) + self.vm = iotests.VM() self.vm.add_blockdev(self.vm.qmp_to_opts({ 'driver': imgfmt, @@ -26,7 +37,8 @@ class TestResizeBelowRaw(QMPTestCase): 'driver': 'file', 'filename': image, 'node-name': 'file0', - } + }, + **extra_options })) self.vm.launch() @@ -34,14 +46,16 @@ class TestResizeBelowRaw(QMPTestCase): self.vm.shutdown() os.remove(image) - def assert_size(self, size: int) -> None: + def assert_size(self, size: int, file_size: Optional[int] = None) -> None: nodes = self.vm.qmp('query-named-block-nodes', flat=True)['return'] self.assertEqual(len(nodes), 2) for node in nodes: - if node['drv'] == 'file': + if node['drv'] == 'file' and file_size is not None: + self.assertEqual(node['image']['virtual-size'], file_size) continue self.assertEqual(node['image']['virtual-size'], size) +class TestResizeBelowUnlimitedRaw(BaseResizeBelowRaw): def test_resize_below_raw(self) -> None: self.assert_size(image_size) self.vm.qmp('block_resize', node_name='file0', size=2*image_size) @@ -49,5 +63,36 @@ class TestResizeBelowRaw(QMPTestCase): self.vm.qmp('block_resize', node_name='node0', size=3*image_size) self.assert_size(3*image_size) +# offset = 0 behaves the same as absent offset +class TestResizeBelowRawWithZeroOffset(TestResizeBelowUnlimitedRaw): + raw_offset = 0 + +class TestResizeBelowRawWithSize(BaseResizeBelowRaw): + raw_size = image_size // 2 + + def test_resize_below_raw_with_size(self) -> None: + self.assert_size(image_size // 2, image_size) + + # This QMP command fails because node0 unshares RESIZE + self.vm.qmp('block_resize', node_name='file0', size=2*image_size) + self.assert_size(image_size // 2, image_size) + + # This QMP command fails because node0 is a fixed-size disk + self.vm.qmp('block_resize', node_name='node0', size=3*image_size) + self.assert_size(image_size // 2, image_size) + +class TestResizeBelowRawWithOffset(BaseResizeBelowRaw): + raw_offset = image_size // 4 + + def test_resize_below_raw_with_offset(self) -> None: + self.assert_size(image_size * 3 // 4, image_size) + + # This QMP command fails because node0 unshares RESIZE + self.vm.qmp('block_resize', node_name='file0', size=2*image_size) + self.assert_size(image_size * 3 // 4, image_size) + + self.vm.qmp('block_resize', node_name='node0', size=3*image_size) + self.assert_size(3 * image_size, image_size * 13 // 4) + if __name__ == '__main__': iotests.main(supported_fmts=['raw'], supported_protocols=['file']) diff --git a/tests/qemu-iotests/tests/resize-below-raw.out b/tests/qemu-iotests/tests/resize-below-raw.out index ae1213e6f8..89968f35d7 100644 --- a/tests/qemu-iotests/tests/resize-below-raw.out +++ b/tests/qemu-iotests/tests/resize-below-raw.out @@ -1,5 +1,5 @@ -. +.... ---------------------------------------------------------------------- -Ran 1 tests +Ran 4 tests OK