]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
tests: Adjust libxlxml2domconfigtest to work with Xen < 4.10
authorJim Fehlig <jfehlig@suse.com>
Thu, 24 Sep 2020 03:29:42 +0000 (21:29 -0600)
committerJiri Denemark <jdenemar@redhat.com>
Thu, 24 Sep 2020 10:27:07 +0000 (12:27 +0200)
Commit f253dc90f5 introduced a test regression in environments with
Xen < 4.10. The logic in libxl_conf.c correctly maps ACPI and APIC
from virDomainObj to libxl_domain_conf based on
LIBXL_HAVE_BUILDINFO_APIC, but the tests did not account for the
different libxl_domain_conf JSON representations.

One approach to fixing the test regression is to duplicate JSON test
data files, having one set for Xen <= 4.9 and another for Xen 4.10
and greater. To avoid duplicate data files, this patch takes the
approach of modifying the libxl_domain_conf object based on
LIBXL_HAVE_BUILDINFO_APIC, before retrieving the JSON representation.
It allows using the same test data files for all supported versions
of Xen by adjusting the intermediate form of libxl_domain_conf object
as needed.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
tests/libxlxml2domconfigtest.c

index c4d5db9a7b31c9b923be9be3f887a61c9a3e5038..d58be1211b20b41bc2de94a5cef80425fa0d034e 100644 (file)
@@ -97,6 +97,20 @@ testCompareXMLToDomConfig(const char *xmlfile,
                        "Failed to create libxl_domain_config from JSON doc");
         goto cleanup;
     }
+
+    /*
+     * In order to have common test files between Xen 4.9 and newer Xen versions,
+     * tweak the expected libxl_domain_config object before getting a json
+     * representation.
+     */
+# ifndef LIBXL_HAVE_BUILDINFO_APIC
+    if (expectconfig.c_info.type == LIBXL_DOMAIN_TYPE_HVM) {
+        libxl_defbool_unset(&expectconfig.b_info.acpi);
+        libxl_defbool_set(&expectconfig.b_info.u.hvm.apic, true);
+        libxl_defbool_set(&expectconfig.b_info.u.hvm.acpi, true);
+    }
+# endif
+
     if (!(expectjson = libxl_domain_config_to_json(cfg->ctx, &expectconfig))) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                        "Failed to retrieve JSON doc for libxl_domain_config");