Blame SOURCES/libvirt-qemublocktest-Extract-schema-root-for-blockdev-add-validation.patch

fbe740
From fbeabd58626de924d59891338dade4f56044a3cc Mon Sep 17 00:00:00 2001
fbe740
Message-Id: <fbeabd58626de924d59891338dade4f56044a3cc@dist-git>
fbe740
From: Peter Krempa <pkrempa@redhat.com>
fbe740
Date: Mon, 16 Mar 2020 22:12:10 +0100
fbe740
Subject: [PATCH] qemublocktest: Extract schema root for blockdev-add
fbe740
 validation
fbe740
MIME-Version: 1.0
fbe740
Content-Type: text/plain; charset=UTF-8
fbe740
Content-Transfer-Encoding: 8bit
fbe740
fbe740
Move lookup of the schema root earlier so that multiple functions
fbe740
can use it for validation.
fbe740
fbe740
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
fbe740
Reviewed-by: Ján Tomko <jtomko@redhat.com>
fbe740
(cherry picked from commit 218ce53069b730daa508a4a67d8640b415d69b4e)
fbe740
https://bugzilla.redhat.com/show_bug.cgi?id=1804750
fbe740
Message-Id: <9f33cec13b55e431b1144042ddcbeb7afefcf969.1584391727.git.pkrempa@redhat.com>
fbe740
Reviewed-by: Ján Tomko <jtomko@redhat.com>
fbe740
---
fbe740
 tests/qemublocktest.c | 20 +++++++++++---------
fbe740
 1 file changed, 11 insertions(+), 9 deletions(-)
fbe740
fbe740
diff --git a/tests/qemublocktest.c b/tests/qemublocktest.c
fbe740
index f805265c93..94f20eeb47 100644
fbe740
--- a/tests/qemublocktest.c
fbe740
+++ b/tests/qemublocktest.c
fbe740
@@ -864,6 +864,7 @@ mymain(void)
fbe740
     char *capslatest_x86_64 = NULL;
fbe740
     virQEMUCapsPtr caps_x86_64 = NULL;
fbe740
     g_autoptr(virHashTable) qmp_schema_x86_64 = NULL;
fbe740
+    virJSONValuePtr qmp_schemaroot_x86_64_blockdev_add = NULL;
fbe740
     g_autoptr(virStorageSource) bitmapSourceChain = NULL;
fbe740
 
fbe740
     if (qemuTestDriverInit(&driver) < 0)
fbe740
@@ -891,6 +892,15 @@ mymain(void)
fbe740
         goto cleanup;
fbe740
     }
fbe740
 
fbe740
+    if (virQEMUQAPISchemaPathGet("blockdev-add/arg-type",
fbe740
+                                 qmp_schema_x86_64,
fbe740
+                                 &qmp_schemaroot_x86_64_blockdev_add) < 0 ||
fbe740
+        !qmp_schemaroot_x86_64_blockdev_add) {
fbe740
+        VIR_TEST_VERBOSE("failed to find schema entry for blockdev-add");
fbe740
+        ret = -1;
fbe740
+        goto cleanup;
fbe740
+    }
fbe740
+
fbe740
     virTestCounterReset("qemu storage source xml->json->xml ");
fbe740
 
fbe740
 #define TEST_JSON_FORMAT(tpe, xmlstr) \
fbe740
@@ -990,15 +1000,7 @@ mymain(void)
fbe740
 #define TEST_DISK_TO_JSON(nme) TEST_DISK_TO_JSON_FULL(nme, false)
fbe740
 
fbe740
     diskxmljsondata.schema = qmp_schema_x86_64;
fbe740
-
fbe740
-    if (virQEMUQAPISchemaPathGet("blockdev-add/arg-type",
fbe740
-                                 diskxmljsondata.schema,
fbe740
-                                 &diskxmljsondata.schemaroot) < 0 ||
fbe740
-        !diskxmljsondata.schemaroot) {
fbe740
-        VIR_TEST_VERBOSE("failed to find schema entry for blockdev-add");
fbe740
-        ret = -1;
fbe740
-        goto cleanup;
fbe740
-    }
fbe740
+    diskxmljsondata.schemaroot = qmp_schemaroot_x86_64_blockdev_add;
fbe740
 
fbe740
     TEST_DISK_TO_JSON_FULL("nodename-long-format", true);
fbe740
     TEST_DISK_TO_JSON_FULL("nodename-long-protocol", true);
fbe740
-- 
fbe740
2.25.1
fbe740