mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
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:
parent
c433c2434c
commit
b61c66d1de
30
tests/chxml2xmlin/basic.xml
Normal file
30
tests/chxml2xmlin/basic.xml
Normal 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>
|
1
tests/chxml2xmlout/basic.xml
Symbolic link
1
tests/chxml2xmlout/basic.xml
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../chxml2xmlin/basic.xml
|
77
tests/chxml2xmltest.c
Normal file
77
tests/chxml2xmltest.c
Normal 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)
|
@ -347,6 +347,12 @@ if conf.has('WITH_BHYVE')
|
|||||||
]
|
]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if conf.has('WITH_CH')
|
||||||
|
tests += [
|
||||||
|
{ 'name': 'chxml2xmltest', 'link_with': [ ch_driver_impl ] },
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
if conf.has('WITH_ESX')
|
if conf.has('WITH_ESX')
|
||||||
tests += [
|
tests += [
|
||||||
{ 'name': 'esxutilstest', 'deps': [ esx_dep ] },
|
{ 'name': 'esxutilstest', 'deps': [ esx_dep ] },
|
||||||
|
Loading…
Reference in New Issue
Block a user