* [Qemu-devel] [PATCH] tests: Add tests for fdsets
@ 2012-11-14 22:53 Corey Bryant
2012-12-03 15:09 ` Kevin Wolf
2012-12-04 15:31 ` Stefan Hajnoczi
0 siblings, 2 replies; 5+ messages in thread
From: Corey Bryant @ 2012-11-14 22:53 UTC (permalink / raw)
To: qemu-devel; +Cc: kwolf, Corey Bryant
Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
---
tests/qemu-iotests/044 | 129 ++++++++++++++++++++++++++++++++++++++++++
tests/qemu-iotests/044.out | 5 ++
tests/qemu-iotests/group | 1 +
tests/qemu-iotests/iotests.py | 12 ++++
4 files changed, 147 insertions(+)
create mode 100755 tests/qemu-iotests/044
create mode 100644 tests/qemu-iotests/044.out
diff --git a/tests/qemu-iotests/044 b/tests/qemu-iotests/044
new file mode 100755
index 0000000..2b6f1af
--- /dev/null
+++ b/tests/qemu-iotests/044
@@ -0,0 +1,129 @@
+#!/usr/bin/env python
+#
+# Tests for fdsets.
+#
+# Copyright (C) 2012 IBM Corp.
+#
+# 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/>.
+#
+
+import os
+import iotests
+from iotests import qemu_img
+
+image0 = os.path.join(iotests.test_dir, 'image0')
+image1 = os.path.join(iotests.test_dir, 'image1')
+image2 = os.path.join(iotests.test_dir, 'image2')
+image3 = os.path.join(iotests.test_dir, 'image3')
+image4 = os.path.join(iotests.test_dir, 'image4')
+
+class TestFdSets(iotests.QMPTestCase):
+
+ def setUp(self):
+ self.vm = iotests.VM()
+ qemu_img('create', '-f', iotests.imgfmt, image0, '128K')
+ qemu_img('create', '-f', iotests.imgfmt, image1, '128K')
+ qemu_img('create', '-f', iotests.imgfmt, image2, '128K')
+ qemu_img('create', '-f', iotests.imgfmt, image3, '128K')
+ qemu_img('create', '-f', iotests.imgfmt, image4, '128K')
+ self.file0 = open(image0, 'r')
+ self.file1 = open(image1, 'w+')
+ self.file2 = open(image2, 'r')
+ self.file3 = open(image3, 'r')
+ self.file4 = open(image4, 'r')
+ self.vm.add_fd(self.file0.fileno(), 1, 'image0:r')
+ self.vm.add_fd(self.file1.fileno(), 1, 'image1:w+')
+ self.vm.add_fd(self.file2.fileno(), 0, 'image2:r')
+ self.vm.add_fd(self.file3.fileno(), 2, 'image3:r')
+ self.vm.add_fd(self.file4.fileno(), 2, 'image4:r')
+ self.vm.add_drive("/dev/fdset/1")
+ self.vm.launch()
+
+ def tearDown(self):
+ self.vm.shutdown()
+ self.file0.close()
+ self.file1.close()
+ self.file2.close()
+ self.file3.close()
+ self.file4.close()
+ os.remove(image0)
+ os.remove(image1)
+ os.remove(image2)
+ os.remove(image3)
+ os.remove(image4)
+
+ def test_query_fdset(self):
+ result = self.vm.qmp('query-fdsets')
+ self.assert_qmp(result, 'return[0]/fdset-id', 2)
+ self.assert_qmp(result, 'return[1]/fdset-id', 1)
+ self.assert_qmp(result, 'return[2]/fdset-id', 0)
+ self.assert_qmp(result, 'return[0]/fds[0]/opaque', 'image3:r')
+ self.assert_qmp(result, 'return[0]/fds[1]/opaque', 'image4:r')
+ self.assert_qmp(result, 'return[1]/fds[0]/opaque', 'image0:r')
+ self.assert_qmp(result, 'return[1]/fds[1]/opaque', 'image1:w+')
+ self.assert_qmp(result, 'return[2]/fds[0]/opaque', 'image2:r')
+ self.vm.shutdown()
+
+ def test_remove_fdset(self):
+ result = self.vm.qmp('remove-fd', fdset_id=2)
+ self.assert_qmp(result, 'return', {})
+ result = self.vm.qmp('query-fdsets')
+ self.assert_qmp(result, 'return[0]/fdset-id', 1)
+ self.assert_qmp(result, 'return[1]/fdset-id', 0)
+ self.assert_qmp(result, 'return[0]/fds[0]/opaque', 'image0:r')
+ self.assert_qmp(result, 'return[0]/fds[1]/opaque', 'image1:w+')
+ self.assert_qmp(result, 'return[1]/fds[0]/opaque', 'image2:r')
+ self.vm.shutdown()
+
+ def test_remove_fd(self):
+ result = self.vm.qmp('query-fdsets')
+ fd_image3 = result['return'][0]['fds'][0]['fd']
+ result = self.vm.qmp('remove-fd', fdset_id=2, fd=fd_image3)
+ self.assert_qmp(result, 'return', {})
+ result = self.vm.qmp('query-fdsets')
+ self.assert_qmp(result, 'return[0]/fdset-id', 2)
+ self.assert_qmp(result, 'return[1]/fdset-id', 1)
+ self.assert_qmp(result, 'return[2]/fdset-id', 0)
+ self.assert_qmp(result, 'return[0]/fds[0]/opaque', 'image4:r')
+ self.assert_qmp(result, 'return[1]/fds[0]/opaque', 'image0:r')
+ self.assert_qmp(result, 'return[1]/fds[1]/opaque', 'image1:w+')
+ self.assert_qmp(result, 'return[2]/fds[0]/opaque', 'image2:r')
+ self.vm.shutdown()
+
+ def test_remove_fd_invalid_fdset(self):
+ result = self.vm.qmp('query-fdsets')
+ fd_image3 = result['return'][0]['fds'][0]['fd']
+ result = self.vm.qmp('remove-fd', fdset_id=3, fd=fd_image3)
+ self.assert_qmp(result, 'error/class', 'GenericError')
+ self.assert_qmp(result, 'error/desc',
+ 'File descriptor named \'fdset-id:3, fd:%d\' not found' % fd_image3)
+ self.vm.shutdown()
+
+ def test_remove_fd_invalid_fd(self):
+ result = self.vm.qmp('query-fdsets')
+ result = self.vm.qmp('remove-fd', fdset_id=2, fd=999)
+ self.assert_qmp(result, 'error/class', 'GenericError')
+ self.assert_qmp(result, 'error/desc',
+ 'File descriptor named \'fdset-id:2, fd:999\' not found')
+ self.vm.shutdown()
+
+ def test_add_fd_invalid_fd(self):
+ result = self.vm.qmp('add-fd', fdset_id=2)
+ self.assert_qmp(result, 'error/class', 'GenericError')
+ self.assert_qmp(result, 'error/desc',
+ 'No file descriptor supplied via SCM_RIGHTS')
+ self.vm.shutdown()
+
+if __name__ == '__main__':
+ iotests.main(supported_fmts=['raw'])
diff --git a/tests/qemu-iotests/044.out b/tests/qemu-iotests/044.out
new file mode 100644
index 0000000..3f8a935
--- /dev/null
+++ b/tests/qemu-iotests/044.out
@@ -0,0 +1,5 @@
+......
+----------------------------------------------------------------------
+Ran 6 tests
+
+OK
diff --git a/tests/qemu-iotests/group b/tests/qemu-iotests/group
index ac86f54..a4a9044 100644
--- a/tests/qemu-iotests/group
+++ b/tests/qemu-iotests/group
@@ -50,3 +50,4 @@
041 rw auto backing
042 rw auto quick
043 rw auto backing
+044 rw auto
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 735c674..10a03c7 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -75,6 +75,18 @@ class VM(object):
self._num_drives += 1
return self
+ def add_fd(self, fd, fdset, opaque, opts=''):
+ '''Pass a file descriptor to the VM'''
+ options = ['fd=%d' % fd,
+ 'set=%d' % fdset,
+ 'opaque=%s' % opaque]
+ if opts:
+ options.append(opts)
+
+ self._args.append('-add-fd')
+ self._args.append(','.join(options))
+ return self
+
def launch(self):
'''Launch the VM and establish a QMP connection'''
devnull = open('/dev/null', 'rb')
--
1.7.11.7
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Add tests for fdsets
2012-11-14 22:53 [Qemu-devel] [PATCH] tests: Add tests for fdsets Corey Bryant
@ 2012-12-03 15:09 ` Kevin Wolf
2012-12-04 15:31 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Kevin Wolf @ 2012-12-03 15:09 UTC (permalink / raw)
To: Corey Bryant; +Cc: qemu-devel, Stefan Hajnoczi
Am 14.11.2012 23:53, schrieb Corey Bryant:
> Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
> ---
> tests/qemu-iotests/044 | 129 ++++++++++++++++++++++++++++++++++++++++++
> tests/qemu-iotests/044.out | 5 ++
> tests/qemu-iotests/group | 1 +
> tests/qemu-iotests/iotests.py | 12 ++++
> 4 files changed, 147 insertions(+)
> create mode 100755 tests/qemu-iotests/044
> create mode 100644 tests/qemu-iotests/044.out
Needs to be renamed to 045 now, but looks good otherwise.
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Add tests for fdsets
2012-11-14 22:53 [Qemu-devel] [PATCH] tests: Add tests for fdsets Corey Bryant
2012-12-03 15:09 ` Kevin Wolf
@ 2012-12-04 15:31 ` Stefan Hajnoczi
2012-12-06 13:17 ` Kevin Wolf
1 sibling, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-12-04 15:31 UTC (permalink / raw)
To: Corey Bryant; +Cc: kwolf, qemu-devel
On Wed, Nov 14, 2012 at 05:53:16PM -0500, Corey Bryant wrote:
>
> Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
> ---
> tests/qemu-iotests/044 | 129 ++++++++++++++++++++++++++++++++++++++++++
> tests/qemu-iotests/044.out | 5 ++
> tests/qemu-iotests/group | 1 +
> tests/qemu-iotests/iotests.py | 12 ++++
> 4 files changed, 147 insertions(+)
> create mode 100755 tests/qemu-iotests/044
> create mode 100644 tests/qemu-iotests/044.out
Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Add tests for fdsets
2012-12-04 15:31 ` Stefan Hajnoczi
@ 2012-12-06 13:17 ` Kevin Wolf
2012-12-08 8:29 ` Stefan Hajnoczi
0 siblings, 1 reply; 5+ messages in thread
From: Kevin Wolf @ 2012-12-06 13:17 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: Corey Bryant, qemu-devel
Am 04.12.2012 16:31, schrieb Stefan Hajnoczi:
> On Wed, Nov 14, 2012 at 05:53:16PM -0500, Corey Bryant wrote:
>>
>> Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
>> ---
>> tests/qemu-iotests/044 | 129 ++++++++++++++++++++++++++++++++++++++++++
>> tests/qemu-iotests/044.out | 5 ++
>> tests/qemu-iotests/group | 1 +
>> tests/qemu-iotests/iotests.py | 12 ++++
>> 4 files changed, 147 insertions(+)
>> create mode 100755 tests/qemu-iotests/044
>> create mode 100644 tests/qemu-iotests/044.out
>
> Thanks, applied to my block tree:
> https://github.com/stefanha/qemu/commits/block
Your conflict resolution put 045 before 044 in group. Can you fix that
before sending a pull request?
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Add tests for fdsets
2012-12-06 13:17 ` Kevin Wolf
@ 2012-12-08 8:29 ` Stefan Hajnoczi
0 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-12-08 8:29 UTC (permalink / raw)
To: Kevin Wolf; +Cc: Corey Bryant, qemu-devel
On Thu, Dec 6, 2012 at 2:17 PM, Kevin Wolf <kwolf@redhat.com> wrote:
> Am 04.12.2012 16:31, schrieb Stefan Hajnoczi:
>> On Wed, Nov 14, 2012 at 05:53:16PM -0500, Corey Bryant wrote:
>>>
>>> Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
>>> ---
>>> tests/qemu-iotests/044 | 129 ++++++++++++++++++++++++++++++++++++++++++
>>> tests/qemu-iotests/044.out | 5 ++
>>> tests/qemu-iotests/group | 1 +
>>> tests/qemu-iotests/iotests.py | 12 ++++
>>> 4 files changed, 147 insertions(+)
>>> create mode 100755 tests/qemu-iotests/044
>>> create mode 100644 tests/qemu-iotests/044.out
>>
>> Thanks, applied to my block tree:
>> https://github.com/stefanha/qemu/commits/block
>
> Your conflict resolution put 045 before 044 in group. Can you fix that
> before sending a pull request?
Fixed.
Thanks,
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-12-08 8:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-14 22:53 [Qemu-devel] [PATCH] tests: Add tests for fdsets Corey Bryant
2012-12-03 15:09 ` Kevin Wolf
2012-12-04 15:31 ` Stefan Hajnoczi
2012-12-06 13:17 ` Kevin Wolf
2012-12-08 8:29 ` Stefan Hajnoczi
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).