xref: /qemu/tests/qemu-iotests/303 (revision d709bbf3)
1#!/usr/bin/env python3
2# group: rw quick
3#
4# Test for dumping of qcow2 image metadata
5#
6# Copyright (c) 2020 Virtuozzo International GmbH
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program.  If not, see <http://www.gnu.org/licenses/>.
20#
21
22import iotests
23import subprocess
24from iotests import qemu_img_create, qemu_io, file_path, log, filter_qemu_io
25
26iotests.script_initialize(supported_fmts=['qcow2'],
27                          unsupported_imgopts=['refcount_bits', 'compat'])
28
29disk = file_path('disk')
30chunk = 1024 * 1024
31
32
33def create_bitmap(bitmap_number, disabled):
34    granularity = 1 << (14 + bitmap_number)
35    bitmap_name = 'bitmap-' + str(bitmap_number)
36    args = ['bitmap', '--add', '-g', f'{granularity}', '-f', iotests.imgfmt,
37            disk, bitmap_name]
38    if disabled:
39        args.append('--disable')
40
41    iotests.qemu_img(*args)
42
43
44def write_to_disk(offset, size):
45    write = f'write {offset} {size}'
46    log(qemu_io('-c', write, disk), filters=[filter_qemu_io])
47
48
49def add_bitmap(num, begin, end, disabled):
50    log(f'Add bitmap {num}')
51    create_bitmap(num, disabled)
52    for i in range(begin, end):
53        write_to_disk((i) * chunk, chunk)
54    log('')
55
56
57def test(compression_type: str, json_output: bool) -> None:
58    qemu_img_create('-f', iotests.imgfmt,
59                    '-o', f'compression_type={compression_type}',
60                    disk, '10M')
61    add_bitmap(1, 0, 6, False)
62    add_bitmap(2, 6, 8, True)
63
64    cmd = ['./qcow2.py', disk, 'dump-header']
65    if json_output:
66        cmd.append('-j')
67
68    subprocess.run(cmd)
69
70
71test('zlib', False)
72test('zstd', True)
73