mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 05:11:14 +00:00
a80faa4bf0
for arguments to bootloader, patch from Hugh Brock * tests/sexpr2xmltest.c tests/xml2sexprtest.c tests/sexpr2xmldata/sexpr2xml-pv-bootloader.sexpr tests/sexpr2xmldata/sexpr2xml-pv-bootloader.xml tests/xml2sexprdata/xml2sexpr-pv-bootloader.sexpr tests/xml2sexprdata/xml2sexpr-pv-bootloader.xml: add specific regression tests Daniel
230 lines
6.0 KiB
C
230 lines
6.0 KiB
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#ifdef WITH_XEN
|
|
#include "xml.h"
|
|
#include "xend_internal.h"
|
|
#include "testutils.h"
|
|
#include "internal.h"
|
|
|
|
static char *progname;
|
|
|
|
#define MAX_FILE 4096
|
|
|
|
static int testCompareFiles(const char *xml, const char *sexpr, int xendConfigVersion) {
|
|
char xmlData[MAX_FILE];
|
|
char sexprData[MAX_FILE];
|
|
char *gotxml = NULL;
|
|
char *xmlPtr = &(xmlData[0]);
|
|
char *sexprPtr = &(sexprData[0]);
|
|
int ret = -1;
|
|
|
|
if (virtTestLoadFile(xml, &xmlPtr, MAX_FILE) < 0)
|
|
goto fail;
|
|
|
|
if (virtTestLoadFile(sexpr, &sexprPtr, MAX_FILE) < 0)
|
|
goto fail;
|
|
|
|
if (!(gotxml = xend_parse_domain_sexp(NULL, sexprData, xendConfigVersion)))
|
|
goto fail;
|
|
|
|
if (getenv("DEBUG_TESTS")) {
|
|
printf("Expect %d '%s'\n", (int)strlen(xmlData), xmlData);
|
|
printf("Actual %d '%s'\n", (int)strlen(gotxml), gotxml);
|
|
}
|
|
if (strcmp(xmlData, gotxml))
|
|
goto fail;
|
|
|
|
ret = 0;
|
|
|
|
fail:
|
|
free(gotxml);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int testComparePVversion1(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-pv.xml",
|
|
"sexpr2xmldata/sexpr2xml-pv.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareFVversion1(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-fv.xml",
|
|
"sexpr2xmldata/sexpr2xml-fv.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testComparePVversion2(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-pv.xml",
|
|
"sexpr2xmldata/sexpr2xml-pv.sexpr",
|
|
2);
|
|
}
|
|
|
|
static int testComparePVOrigVFB(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-pv-vfb-orig.xml",
|
|
"sexpr2xmldata/sexpr2xml-pv-vfb-orig.sexpr",
|
|
2);
|
|
}
|
|
|
|
|
|
static int testComparePVNewVFB(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-pv-vfb-new.xml",
|
|
"sexpr2xmldata/sexpr2xml-pv-vfb-new.sexpr",
|
|
3);
|
|
}
|
|
|
|
|
|
static int testCompareFVversion2(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-fv-v2.xml",
|
|
"sexpr2xmldata/sexpr2xml-fv-v2.sexpr",
|
|
2);
|
|
}
|
|
|
|
static int testComparePVBootloader(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-pv-bootloader.xml",
|
|
"sexpr2xmldata/sexpr2xml-pv-bootloader.sexpr",
|
|
2);
|
|
}
|
|
|
|
static int testCompareDiskFile(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-disk-file.xml",
|
|
"sexpr2xmldata/sexpr2xml-disk-file.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareDiskBlock(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-disk-block.xml",
|
|
"sexpr2xmldata/sexpr2xml-disk-block.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareDiskDrvBlktapQcow(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-disk-drv-blktap-qcow.xml",
|
|
"sexpr2xmldata/sexpr2xml-disk-drv-blktap-qcow.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareDiskDrvBlktapRaw(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-disk-drv-blktap-raw.xml",
|
|
"sexpr2xmldata/sexpr2xml-disk-drv-blktap-raw.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareResizedMemory(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-curmem.xml",
|
|
"sexpr2xmldata/sexpr2xml-curmem.sexpr",
|
|
1);
|
|
}
|
|
|
|
|
|
static int testCompareNetRouted(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-net-routed.xml",
|
|
"sexpr2xmldata/sexpr2xml-net-routed.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareNetBridged(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-net-bridged.xml",
|
|
"sexpr2xmldata/sexpr2xml-net-bridged.sexpr",
|
|
1);
|
|
}
|
|
|
|
static int testCompareNoSourceCDRom(void *data ATTRIBUTE_UNUSED) {
|
|
return testCompareFiles("sexpr2xmldata/sexpr2xml-no-source-cdrom.xml",
|
|
"sexpr2xmldata/sexpr2xml-no-source-cdrom.sexpr",
|
|
1);
|
|
}
|
|
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int ret = 0;
|
|
|
|
progname = argv[0];
|
|
|
|
if (argc > 1) {
|
|
fprintf(stderr, "Usage: %s\n", progname);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
if (virtTestRun("SEXPR-2-XML PV config (version 1)",
|
|
1, testComparePVversion1, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML FV config (version 1)",
|
|
1, testCompareFVversion1, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML PV config (version 2)",
|
|
1, testComparePVversion2, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML PV config (Orig VFB)",
|
|
1, testComparePVOrigVFB, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML PV config (New VFB)",
|
|
1, testComparePVNewVFB, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML FV config (version 2)",
|
|
1, testCompareFVversion2, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML PV config bootloader",
|
|
1, testComparePVBootloader, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML Disk File config",
|
|
1, testCompareDiskFile, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML Disk Block config",
|
|
1, testCompareDiskBlock, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML Disk Driver blktap qcow config",
|
|
1, testCompareDiskDrvBlktapQcow, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML Disk Driver blktap raw config",
|
|
1, testCompareDiskDrvBlktapRaw, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML Resized memory config",
|
|
1, testCompareResizedMemory, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML net routed",
|
|
1, testCompareNetRouted, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML net bridged",
|
|
1, testCompareNetBridged, NULL) != 0)
|
|
ret = -1;
|
|
|
|
if (virtTestRun("SEXPR-2-XML no source CDRom",
|
|
1, testCompareNoSourceCDRom, NULL) != 0)
|
|
ret = -1;
|
|
|
|
exit(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
|
|
}
|
|
#else /* WITHOUT_XEN */
|
|
int
|
|
main(void)
|
|
{
|
|
fprintf(stderr, "libvirt compiled without Xen support\n");
|
|
return(0);
|
|
}
|
|
#endif /* WITH_XEN */
|
|
/*
|
|
* Local variables:
|
|
* indent-tabs-mode: nil
|
|
* c-indent-level: 4
|
|
* c-basic-offset: 4
|
|
* tab-width: 4
|
|
* End:
|
|
*/
|