qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: Laszlo Ersek <lersek@redhat.com>,
	qemu-devel@nongnu.org,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 03/19] qapi: add test case for deallocating traversal of incomplete structure
Date: Mon, 23 Jul 2012 12:50:28 +0100	[thread overview]
Message-ID: <1343044244-28728-4-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1343044244-28728-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Laszlo Ersek <lersek@redhat.com>

v3:
- new patch

Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 tests/test-qmp-commands.c |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/tests/test-qmp-commands.c b/tests/test-qmp-commands.c
index 60cbf01..dc3c507 100644
--- a/tests/test-qmp-commands.c
+++ b/tests/test-qmp-commands.c
@@ -3,6 +3,9 @@
 #include "test-qmp-commands.h"
 #include "qapi/qmp-core.h"
 #include "module.h"
+#include "qapi/qmp-input-visitor.h"
+#include "tests/test-qapi-types.h"
+#include "tests/test-qapi-visit.h"
 
 void qmp_user_def_cmd(Error **errp)
 {
@@ -123,6 +126,44 @@ static void test_dealloc_types(void)
     qapi_free_UserDefOneList(ud1list);
 }
 
+/* test generated deallocation on an object whose construction was prematurely
+ * terminated due to an error */
+static void test_dealloc_partial(void)
+{
+    static const char text[] = "don't leak me";
+
+    UserDefTwo *ud2 = NULL;
+    Error *err = NULL;
+
+    /* create partial object */
+    {
+        QDict *ud2_dict;
+        QmpInputVisitor *qiv;
+
+        ud2_dict = qdict_new();
+        qdict_put_obj(ud2_dict, "string", QOBJECT(qstring_from_str(text)));
+
+        qiv = qmp_input_visitor_new(QOBJECT(ud2_dict));
+        visit_type_UserDefTwo(qmp_input_get_visitor(qiv), &ud2, NULL, &err);
+        qmp_input_visitor_cleanup(qiv);
+        QDECREF(ud2_dict);
+    }
+
+    /* verify partial success */
+    assert(ud2 != NULL);
+    assert(ud2->string != NULL);
+    assert(strcmp(ud2->string, text) == 0);
+    assert(ud2->dict.dict.userdef == NULL);
+
+    /* confirm & release construction error */
+    assert(err != NULL);
+    error_free(err);
+
+    /* tear down partial object */
+    qapi_free_UserDefTwo(ud2);
+}
+
+
 int main(int argc, char **argv)
 {
     g_test_init(&argc, &argv, NULL);
@@ -131,6 +172,7 @@ int main(int argc, char **argv)
     g_test_add_func("/0.15/dispatch_cmd_error", test_dispatch_cmd_error);
     g_test_add_func("/0.15/dispatch_cmd_io", test_dispatch_cmd_io);
     g_test_add_func("/0.15/dealloc_types", test_dealloc_types);
+    g_test_add_func("/0.15/dealloc_partial", test_dealloc_partial);
 
     module_call_init(MODULE_INIT_QAPI);
     g_test_run();
-- 
1.7.10.4

  parent reply	other threads:[~2012-07-23 11:51 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-23 11:50 [Qemu-devel] [PULL 00/19] Net patches Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 01/19] MAINTAINERS: Replace net maintainer Mark McLoughlin with Stefan Hajnoczi Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 02/19] qapi: fix error propagation Stefan Hajnoczi
2012-07-23 11:50 ` Stefan Hajnoczi [this message]
2012-07-23 11:50 ` [Qemu-devel] [PATCH 04/19] qapi: generate C types for fixed-width integers Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 05/19] qapi: introduce "size" type Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 06/19] expose QemuOpt and QemuOpts struct definitions to interested parties Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 07/19] qapi: introduce OptsVisitor Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 08/19] qapi schema: remove trailing whitespace Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 09/19] qapi schema: add Netdev types Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 10/19] hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated) Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 11/19] convert net_client_init() to OptsVisitor Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 12/19] convert net_init_nic() to NetClientOptions Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 13/19] convert net_init_dump() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 14/19] convert net_init_slirp() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 15/19] convert net_init_socket() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 16/19] convert net_init_vde() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 17/19] convert net_init_tap() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 18/19] convert net_init_bridge() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 19/19] remove unused QemuOpts parameter from net init functions Stefan Hajnoczi

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=1343044244-28728-4-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=lersek@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).