From: John Snow <jsnow@redhat.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
qemu-devel@nongnu.org, qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
Max Reitz <mreitz@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v3 2/2] iotests: add 222 to test basic fleecing
Date: Mon, 2 Jul 2018 14:41:02 -0400 [thread overview]
Message-ID: <6a40e370-b0ac-470e-74a3-f7d2d1fac87c@redhat.com> (raw)
In-Reply-To: <a8aecf35-467d-6164-61a2-ae6d0187ac18@virtuozzo.com>
On 07/02/2018 08:53 AM, Vladimir Sementsov-Ogievskiy wrote:
> 29.06.2018 00:25, John Snow wrote:
>> Signed-off-by: John Snow <jsnow@redhat.com>
>> ---
>> tests/qemu-iotests/222 | 152
>> +++++++++++++++++++++++++++++++++++++++++++++
>> tests/qemu-iotests/222.out | 66 ++++++++++++++++++++
>> tests/qemu-iotests/group | 1 +
>> 3 files changed, 219 insertions(+)
>> create mode 100644 tests/qemu-iotests/222
>> create mode 100644 tests/qemu-iotests/222.out
>>
>> diff --git a/tests/qemu-iotests/222 b/tests/qemu-iotests/222
>> new file mode 100644
>> index 0000000000..bd84dfa379
>> --- /dev/null
>> +++ b/tests/qemu-iotests/222
>> @@ -0,0 +1,152 @@
>> +#!/usr/bin/env python
>> +#
>> +# This test covers the basic fleecing workflow, which provides a
>> +# point-in-time snapshot of a node that can be queried over NBD.
>> +#
>> +# Copyright (C) 2018 Red Hat, Inc.
>> +# John helped, too.
>> +#
>> +# 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/>.
>> +#
>> +# Creator/Owner: John Snow <jsnow@redhat.com>
>> +
>> +import iotests
>> +from iotests import log, qemu_img, qemu_io, qemu_io_silent
>> +
>> +iotests.verify_platform(['linux'])
>> +
>> +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)
>> +
>> +zeroes = [("0", "0x00f8000", "32k"), # Left-end of partial-left (1M-32K)
>> + ("0", "0x2010000", "32k"), # Right-end of partial-right
>> (32M+64K)
>> + ("0", "0x3fe0000", "64k")] # overwrite[3]
>> +
>> +remainder = [("0xd5", "0x108000", "32k"), # Right-end of
>> partial-left [1]
>> + ("0xdc", "32M", "32k"), # Left-end of
>> partial-right [2]
>> + ("0xcd", "0x3ff0000", "64k")] # patterns[3]
>> +
>> +with iotests.FilePath('base.img') as base_img_path, \
>> + iotests.FilePath('fleece.img') as fleece_img_path, \
>> + iotests.FilePath('nbd.sock') as nbd_sock_path, \
>> + iotests.VM() as vm:
>
> Didn't you try use file_path instead like in 209 iotest? It allows
> reduce test indentation to zero.
>
Matter of taste, I guess. It feels weird to see code at the zero indent.
>> +
>> + log('--- Setting up images ---')
>> + log('')
>> +
>> + assert qemu_img('create', '-f', iotests.imgfmt, base_img_path,
>> '64M') == 0
>> + assert qemu_img('create', '-f', "qcow2", fleece_img_path, '64M')
>> == 0
>> +
>> + for p in patterns:
>> + qemu_io('-c', 'write -P%s %s %s' % p, base_img_path)
>
> don't we need -f iotests.imgfmt here?
>
Empirically, apparently not. I'll amend it though.
>> +
>> + log('Done')
>> +
>> + log('')
>> + log('--- Launching VM ---')
>> + log('')
>> +
>> + vm.add_drive(base_img_path)
>> + vm.launch()
>> + log('Done')
>> +
>> + log('')
>> + log('--- Setting up Fleecing Graph ---')
>> + log('')
>> +
>> + srcNode = "drive0"
>> + tgtNode = "fleeceNode"
>
> a bit of nit-picking: underscore_style is insisted by PEP8 and even used
> for all other variables here
>
I'll change it :(
>> +
>> + # create tgtNode backed by srcNode
>> + log(vm.qmp("blockdev-add", **{
>> + "driver": "qcow2",
>> + "node-name": tgtNode,
>> + "file": {
>> + "driver": "file",
>> + "filename": fleece_img_path,
>> + },
>> + "backing": srcNode,
>> + }))
>> +
>> + # Establish COW from source to fleecing node
>> + log(vm.qmp("blockdev-backup",
>> + device=srcNode,
>> + target=tgtNode,
>> + sync="none"))
>> +
>> + log('')
>> + log('--- Setting up NBD Export ---')
>> + log('')
>> +
>> + nbd_uri = 'nbd+unix:///%s?socket=%s' % (tgtNode, nbd_sock_path)
>> + log(vm.qmp("nbd-server-start",
>> + **{"addr": { "type": "unix",
>> + "data": { "path": nbd_sock_path } } }))
>> +
>> + log(vm.qmp("nbd-server-add", device=tgtNode))
>> +
>> + log('')
>> + log('--- Sanity Check ---')
>> + log('')
>> +
>> + for p in (patterns + zeroes):
>> + cmd = "read -P%s %s %s" % p
>> + log(cmd)
>> + assert qemu_io_silent('-r', '-f', 'raw', '-c', cmd, nbd_uri)
>> == 0
>> +
>> + log('')
>> + log('--- Testing COW ---')
>> + log('')
>> +
>> + for p in overwrite:
>> + cmd = "write -P%s %s %s" % p
>> + log(cmd)
>> + log(vm.hmp_qemu_io(srcNode, cmd))
>> +
>> + log('')
>> + log('--- Verifying Data ---')
>> + log('')
>> +
>> + for p in (patterns + zeroes):
>> + cmd = "read -P%s %s %s" % p
>> + log(cmd)
>> + assert qemu_io_silent('-r', '-f', 'raw', '-c', cmd, nbd_uri)
>> == 0
>> +
>> + log('')
>> + log('--- Cleanup ---')
>> + log('')
>> +
>> + log(vm.qmp('block-job-cancel', device=srcNode))
>
> I think, we should wait for cancelled, like in original test
>
Yes.
>> + log(vm.qmp('nbd-server-stop'))
>> + log(vm.qmp('blockdev-del', node_name=tgtNode))
>> + vm.shutdown()
>> +
>> + log('')
>> + log('--- Confirming writes ---')
>> + log('')
>> +
>> + for p in (overwrite + remainder):
>> + cmd = "read -P%s %s %s" % p
>> + log(cmd)
>> + assert qemu_io_silent(base_img_path, '-c', cmd) == 0
>> +
>> + log('')
>> + log('Done')
>> diff --git a/tests/qemu-iotests/222.out b/tests/qemu-iotests/222.out
>> new file mode 100644
>> index 0000000000..be925601a8
>> --- /dev/null
>> +++ b/tests/qemu-iotests/222.out
>> @@ -0,0 +1,66 @@
>> +--- Setting up images ---
>> +
>> +Done
>> +
>> +--- Launching VM ---
>> +
>> +Done
>> +
>> +--- Setting up Fleecing Graph ---
>> +
>> +{u'return': {}}
>> +{u'return': {}}
>> +
>> +--- Setting up NBD Export ---
>> +
>> +{u'return': {}}
>> +{u'return': {}}
>> +
>> +--- Sanity Check ---
>> +
>> +read -P0x5d 0 64k
>> +read -P0xd5 1M 64k
>> +read -P0xdc 32M 64k
>> +read -P0xcd 0x3ff0000 64k
>> +read -P0 0x00f8000 32k
>> +read -P0 0x2010000 32k
>> +read -P0 0x3fe0000 64k
>> +
>> +--- Testing COW ---
>> +
>> +write -P0xab 0 64k
>> +{u'return': u''}
>> +write -P0xad 0x00f8000 64k
>> +{u'return': u''}
>> +write -P0x1d 0x2008000 64k
>> +{u'return': u''}
>> +write -P0xea 0x3fe0000 64k
>> +{u'return': u''}
>> +
>> +--- Verifying Data ---
>> +
>> +read -P0x5d 0 64k
>> +read -P0xd5 1M 64k
>> +read -P0xdc 32M 64k
>> +read -P0xcd 0x3ff0000 64k
>> +read -P0 0x00f8000 32k
>> +read -P0 0x2010000 32k
>> +read -P0 0x3fe0000 64k
>> +
>> +--- Cleanup ---
>> +
>> +{u'return': {}}
>> +{u'return': {}}
>> +{u'return': {}}
>> +
>> +--- Confirming writes ---
>> +
>> +read -P0xab 0 64k
>> +read -P0xad 0x00f8000 64k
>> +read -P0x1d 0x2008000 64k
>> +read -P0xea 0x3fe0000 64k
>> +read -P0xd5 0x108000 32k
>> +read -P0xdc 32M 32k
>> +read -P0xcd 0x3ff0000 64k
>> +
>> +Done
>> diff --git a/tests/qemu-iotests/group b/tests/qemu-iotests/group
>> index eea75819d2..8019a9f721 100644
>> --- a/tests/qemu-iotests/group
>> +++ b/tests/qemu-iotests/group
>> @@ -220,3 +220,4 @@
>> 218 rw auto quick
>> 219 rw auto
>> 221 rw auto quick
>> +222 rw auto quick
>
>
Thanks for the review ... I'll try to make sure some sort of fleecing
workflow patches go in for 3.0. I was hoping your patches wouldn't be
necessary but I think you're making a good argument that they are :(
--js
prev parent reply other threads:[~2018-07-02 18:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-28 21:25 [Qemu-devel] [PATCH v3 0/2] block: formalize and test fleecing John Snow
2018-06-28 21:25 ` [Qemu-devel] [PATCH v3 1/2] block: allow blockdev-backup from any source John Snow
2018-06-28 21:25 ` [Qemu-devel] [PATCH v3 2/2] iotests: add 222 to test basic fleecing John Snow
2018-06-28 21:35 ` Eric Blake
2018-07-02 12:53 ` Vladimir Sementsov-Ogievskiy
2018-07-02 18:41 ` John Snow [this message]
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=6a40e370-b0ac-470e-74a3-f7d2d1fac87c@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).