From: John Snow <jsnow@redhat.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
"qemu-block@nongnu.org" <qemu-block@nongnu.org>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: Kevin Wolf <kwolf@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
Max Reitz <mreitz@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 7/7] iotests: add iotest 236 for testing bitmap merge
Date: Thu, 13 Dec 2018 13:38:32 -0500 [thread overview]
Message-ID: <a04fe821-e0c7-a99c-ded4-fc4354437883@redhat.com> (raw)
In-Reply-To: <2818268a-ed9e-a106-720c-d65c816d2f2c@virtuozzo.com>
On 12/13/18 8:50 AM, Vladimir Sementsov-Ogievskiy wrote:
> 13.12.2018 4:50, John Snow wrote:
>> New interface, new smoke test.
>>
>> Signed-off-by: John Snow <jsnow@redhat.com>
>> ---
>> tests/qemu-iotests/236 | 123 +++++++++++++++++
>> tests/qemu-iotests/236.out | 265 +++++++++++++++++++++++++++++++++++++
>> tests/qemu-iotests/group | 1 +
>> 3 files changed, 389 insertions(+)
>> create mode 100755 tests/qemu-iotests/236
>> create mode 100644 tests/qemu-iotests/236.out
>>
>> diff --git a/tests/qemu-iotests/236 b/tests/qemu-iotests/236
>> new file mode 100755
>> index 0000000000..3d162e967b
>> --- /dev/null
>> +++ b/tests/qemu-iotests/236
>> @@ -0,0 +1,123 @@
>> +#!/usr/bin/env python
>> +#
>> +# Test bitmap merges.
>> +#
>> +# Copyright (c) 2018 John Snow for Red Hat, Inc.
>> +#
>> +# This program is free software; you can redistribute it and/or modify
>> +# it under the terms of the GNU General Public License as published by
>> +# the Free Software Foundation; either version 2 of the License, or
>> +# (at your option) any later version.
>> +#
>> +# This program is distributed in the hope that it will be useful,
>> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
>> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
>> +# GNU General Public License for more details.
>> +#
>> +# You should have received a copy of the GNU General Public License
>> +# along with this program. If not, see <http://www.gnu.org/licenses/>.
>> +#
>> +# owner=jsnow@redhat.com
>> +
>> +import sys
>> +import os
>> +import iotests
>> +from iotests import log
>> +sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts'))
>> +from qemu import QEMUMachine
>
> unused, with previous line and, therefore, os and sys modules)
>
Forgive the copy and paste. I'll trim it down.
>> +
>> +iotests.verify_image_format(supported_fmts=['qcow2'])
>> +
>> +patterns = [("0x5d", "0", "64k"),
>> + ("0xd5", "1M", "64k"),
>> + ("0xdc", "32M", "64k"),
>> + ("0xcd", "0x3ff0000", "64k")] # 64M - 64K
>> +
>> +overwrite = [("0xab", "0", "64k"), # Full overwrite
>> + ("0xad", "0x00f8000", "64k"), # Partial-left (1M-32K)
>> + ("0x1d", "0x2008000", "64k"), # Partial-right (32M+32K)
>> + ("0xea", "0x3fe0000", "64k")] # Adjacent-left (64M - 128K)
>> +
>> +with iotests.FilePath('img') as img_path, \
>> + iotests.VM() as vm:
>> +
>> + log('--- Preparing image & VM ---\n')
>> + iotests.qemu_img_pipe('create', '-f', iotests.imgfmt, img_path, '64M')
>
> hm, actually null device is enough here.
>
Sure.
>> + vm.add_drive(img_path)
>> + vm.launch()
>> +
>> + log('--- Adding preliminary bitmaps A & B ---\n')
>> + vm.qmp_log("block-dirty-bitmap-add", node="drive0", name="bitmapA")
>> + vm.qmp_log("block-dirty-bitmap-add", node="drive0", name="bitmapB")
>> +
>> + # Dirties 4 clusters. count=262144 > + log('')
>> + log('--- Emulating writes ---\n')
>> + for p in patterns:
>> + cmd = "write -P%s %s %s" % p
>> + log(cmd)
>> + log(vm.hmp_qemu_io("drive0", cmd))
>> +
>> + vm.qmp_log("query-block", indent=2,
>> + filters=[iotests.filter_generated_node_ids,
>> + iotests.filter_testfiles])
>
> I'm against. query-block prints a lot of unrelated things, which may change from
> version to version (for example, Andrey is now adding bitmap information to qcow2
> format-specific info), then, backported test may fail for previous versions (or just
> different config) because of something absolutely unrelated to bitmaps.
>
You have a point. I'm only interested in the bitmap info structures, here.
> I think, it should be shortened to result[0]['device'], result[0]['dirty-bitmaps']
>
OK, let me look at printing something like
{
"device0": bitmapInfo0,
"device1": bitmapInfo1,
...
}
to the log.
> And, I think, any way it would be good to create a separate helper for printing
> current state of bitmaps (which may output their sha256 too)
>
Yeah, I was working on a command to do just this but I ran into troubles
with caching the bitmap info for computing it and wound up shelving the
series and I got sidetracked on other issues...
>> +
>> + log('')
>> + log('--- Disabling B & Adding C ---\n')
>
> why not just
> log('\n--- Disabling B & Adding C ---\n')
>
Just preference, there's no reason.
I have a habit of avoiding pre-pending control characters to string
lines, but don't have an aversion to appending them.
I can change it if it sticks out as too unusual.
> [...]
>
> Otherwise, the test looks fine for me
>
>
Thanks for looking!
next prev parent reply other threads:[~2018-12-13 18:38 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-13 1:50 [Qemu-devel] [PATCH v2 0/7] bitmaps: remove x- prefix from QMP api John Snow
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 1/7] blockdev: abort transactions in reverse order John Snow
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 2/7] blockdev: n-ary bitmap merge John Snow
2018-12-13 12:25 ` Vladimir Sementsov-Ogievskiy
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 3/7] block: remove 'x' prefix from experimental bitmap APIs John Snow
2018-12-13 12:39 ` Vladimir Sementsov-Ogievskiy
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 4/7] iotests.py: don't abort if IMGKEYSECRET is undefined John Snow
2018-12-13 2:16 ` Eric Blake
2018-12-13 12:42 ` Vladimir Sementsov-Ogievskiy
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 5/7] iotests: add filter_generated_node_ids John Snow
2018-12-13 2:16 ` Eric Blake
2018-12-13 12:45 ` Vladimir Sementsov-Ogievskiy
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 6/7] iotests: allow pretty-print for qmp_log John Snow
2018-12-13 2:20 ` Eric Blake
2018-12-13 18:26 ` John Snow
2018-12-13 13:09 ` Vladimir Sementsov-Ogievskiy
2018-12-14 20:51 ` John Snow
2018-12-17 9:15 ` Vladimir Sementsov-Ogievskiy
2018-12-13 1:50 ` [Qemu-devel] [PATCH v2 7/7] iotests: add iotest 236 for testing bitmap merge John Snow
2018-12-13 2:27 ` Eric Blake
2018-12-13 18:28 ` John Snow
2018-12-13 13:50 ` Vladimir Sementsov-Ogievskiy
2018-12-13 18:38 ` John Snow [this message]
2018-12-13 6:19 ` [Qemu-devel] [PATCH v2 0/7] bitmaps: remove x- prefix from QMP api no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a04fe821-e0c7-a99c-ded4-fc4354437883@redhat.com \
--to=jsnow@redhat.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vsementsov@virtuozzo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).