test: Introduce chxml2xmltest

Whilst reviewing a patch upstream (that ended up as
v9.0.0-200-g092176e5ec), I realized we don't have a single
xml2xml test for CH driver. Well, introduce the test with one
simple test case for now.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Michal Privoznik 2023-02-10 12:40:04 +01:00
parent c433c2434c
commit b61c66d1de
4 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<domain type='kvm'>
<name>cloudhypervisor</name>
<uuid>4dea22b3-1d52-d8f3-2516-782e98ab3fa0</uuid>
<memory unit='KiB'>2097152</memory>
<currentMemory unit='KiB'>2097152</currentMemory>
<vcpu placement='static'>2</vcpu>
<os>
<type arch='x86_64'>hvm</type>
<kernel>hypervisor-fw</kernel>
<boot dev='hd'/>
</os>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/local/bin/cloud-hypervisor</emulator>
<disk type='file' device='disk'>
<source file='disk.raw'/>
<target dev='vda' bus='virtio'/>
</disk>
<interface type='ethernet'>
<mac address='52:54:00:5c:e4:84'/>
<model type='virtio'/>
</interface>
<console type='pty'>
<target type='serial' port='0'/>
</console>
</devices>
</domain>

View File

@ -0,0 +1 @@
../chxml2xmlin/basic.xml

77
tests/chxml2xmltest.c Normal file
View File

@ -0,0 +1,77 @@
#include <config.h>
#include <testutils.h>
#include "ch/ch_conf.h"
struct testInfo {
const char *name;
virCHDriver *driver;
testCompareDomXML2XMLResult expectResult;
};
typedef enum {
FLAG_IS_DIFFERENT = 1 << 0,
FLAG_EXPECT_FAILURE = 1 << 1,
} virBhyveXMLToXMLTestFlags;
static int
testCompareXMLToXMLHelper(const void *data)
{
const struct testInfo *info = data;
g_autofree char *xml_in = NULL;
g_autofree char *xml_out = NULL;
xml_in = g_strdup_printf("%s/chxml2xmlin/%s.xml",
abs_srcdir, info->name);
xml_out = g_strdup_printf("%s/chxml2xmlout/%s.xml",
abs_srcdir, info->name);
return testCompareDomXML2XMLFiles(NULL, info->driver->xmlopt,
xml_in, xml_out, false, 0,
info->expectResult);
}
static int
mymain(void)
{
int ret = 0;
virCHDriver *driver = NULL;
driver = g_new0(virCHDriver, 1);
if (!(driver->caps = virCHDriverCapsInit())) {
fprintf(stderr, "unable to initialize driver capabilities\n");
goto cleanup;
}
if (!(driver->xmlopt = chDomainXMLConfInit(driver))) {
fprintf(stderr, "unable to initialize driver XMLOPT\n");
goto cleanup;
}
#define DO_TEST_FULL(name, expectResult) \
do { \
const struct testInfo info = {name, driver, expectResult}; \
if (virTestRun("CH XML-2-XML " name, \
testCompareXMLToXMLHelper, &info) < 0) \
ret = -1; \
} while (0)
#define DO_TEST(name) \
DO_TEST_FULL(name, TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS)
#define DO_TEST_FAIL_PARSE(name) \
DO_TEST_FULL(name, TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE)
DO_TEST("basic");
cleanup:
virObjectUnref(driver->xmlopt);
virObjectUnref(driver->caps);
g_free(driver);
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}
VIR_TEST_MAIN(mymain)

View File

@ -347,6 +347,12 @@ if conf.has('WITH_BHYVE')
]
endif
if conf.has('WITH_CH')
tests += [
{ 'name': 'chxml2xmltest', 'link_with': [ ch_driver_impl ] },
]
endif
if conf.has('WITH_ESX')
tests += [
{ 'name': 'esxutilstest', 'deps': [ esx_dep ] },