2009-10-09 08:47:43 -04:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
#include "testutils.h"
|
|
|
|
|
#include "network_conf.h"
|
|
|
|
|
#include "testutilsqemu.h"
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
static int
|
2011-12-14 10:50:40 +00:00
|
|
|
testCompareXMLToXMLFiles(const char *inxml, const char *outxml,
|
|
|
|
|
unsigned int flags)
|
2011-04-25 00:25:10 +02:00
|
|
|
{
|
|
|
|
|
char *inXmlData = NULL;
|
|
|
|
|
char *outXmlData = NULL;
|
2009-10-09 08:47:43 -04:00
|
|
|
char *actual = NULL;
|
|
|
|
|
int ret = -1;
|
|
|
|
|
virNetworkDefPtr dev = NULL;
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
if (virtTestLoadFile(inxml, &inXmlData) < 0)
|
2009-10-09 08:47:43 -04:00
|
|
|
goto fail;
|
2011-04-25 00:25:10 +02:00
|
|
|
if (virtTestLoadFile(outxml, &outXmlData) < 0)
|
2009-10-09 08:47:43 -04:00
|
|
|
goto fail;
|
|
|
|
|
|
2010-02-10 10:22:52 +00:00
|
|
|
if (!(dev = virNetworkDefParseString(inXmlData)))
|
2009-10-09 08:47:43 -04:00
|
|
|
goto fail;
|
|
|
|
|
|
2011-12-14 10:50:40 +00:00
|
|
|
if (!(actual = virNetworkDefFormat(dev, flags)))
|
2009-10-09 08:47:43 -04:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if (STRNEQ(outXmlData, actual)) {
|
|
|
|
|
virtTestDifference(stderr, outXmlData, actual);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
fail:
|
2012-02-02 16:16:43 -07:00
|
|
|
VIR_FREE(inXmlData);
|
|
|
|
|
VIR_FREE(outXmlData);
|
|
|
|
|
VIR_FREE(actual);
|
2009-10-09 08:47:43 -04:00
|
|
|
virNetworkDefFree(dev);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-14 10:50:40 +00:00
|
|
|
struct testInfo {
|
|
|
|
|
const char *name;
|
|
|
|
|
unsigned int flags;
|
|
|
|
|
};
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
static int
|
|
|
|
|
testCompareXMLToXMLHelper(const void *data)
|
|
|
|
|
{
|
2011-12-14 10:50:40 +00:00
|
|
|
const struct testInfo *info = data;
|
2011-04-25 00:25:10 +02:00
|
|
|
int result = -1;
|
|
|
|
|
char *inxml = NULL;
|
|
|
|
|
char *outxml = NULL;
|
|
|
|
|
|
|
|
|
|
if (virAsprintf(&inxml, "%s/networkxml2xmlin/%s.xml",
|
2011-12-14 10:50:40 +00:00
|
|
|
abs_srcdir, info->name) < 0 ||
|
2011-04-25 00:25:10 +02:00
|
|
|
virAsprintf(&outxml, "%s/networkxml2xmlout/%s.xml",
|
2011-12-14 10:50:40 +00:00
|
|
|
abs_srcdir, info->name) < 0) {
|
2011-04-25 00:25:10 +02:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-14 10:50:40 +00:00
|
|
|
result = testCompareXMLToXMLFiles(inxml, outxml, info->flags);
|
2009-10-09 08:47:43 -04:00
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
cleanup:
|
2012-02-02 16:16:43 -07:00
|
|
|
VIR_FREE(inxml);
|
|
|
|
|
VIR_FREE(outxml);
|
2011-04-25 00:25:10 +02:00
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2009-10-09 08:47:43 -04:00
|
|
|
|
|
|
|
|
static int
|
2011-04-29 10:21:20 -06:00
|
|
|
mymain(void)
|
2009-10-09 08:47:43 -04:00
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2011-12-14 10:50:40 +00:00
|
|
|
#define DO_TEST_FULL(name, flags) \
|
|
|
|
|
do { \
|
|
|
|
|
const struct testInfo info = {name, flags}; \
|
|
|
|
|
if (virtTestRun("Network XML-2-XML " name, \
|
|
|
|
|
1, testCompareXMLToXMLHelper, &info) < 0) \
|
|
|
|
|
ret = -1; \
|
|
|
|
|
} while (0)
|
|
|
|
|
#define DO_TEST(name) DO_TEST_FULL(name, 0)
|
2009-10-09 08:47:43 -04:00
|
|
|
|
|
|
|
|
DO_TEST("isolated-network");
|
|
|
|
|
DO_TEST("routed-network");
|
|
|
|
|
DO_TEST("nat-network");
|
|
|
|
|
DO_TEST("netboot-network");
|
2009-10-28 15:57:49 +01:00
|
|
|
DO_TEST("netboot-proxy-network");
|
2011-06-24 12:04:36 +02:00
|
|
|
DO_TEST("nat-network-dns-txt-record");
|
2011-06-24 12:04:40 +02:00
|
|
|
DO_TEST("nat-network-dns-hosts");
|
2011-07-19 23:01:09 -04:00
|
|
|
DO_TEST("8021Qbh-net");
|
|
|
|
|
DO_TEST("direct-net");
|
|
|
|
|
DO_TEST("host-bridge-net");
|
|
|
|
|
DO_TEST("vepa-net");
|
2011-07-22 16:07:28 +02:00
|
|
|
DO_TEST("bandwidth-network");
|
2011-12-14 10:50:40 +00:00
|
|
|
DO_TEST_FULL("passthrough-pf", VIR_NETWORK_XML_INACTIVE);
|
2009-10-09 08:47:43 -04:00
|
|
|
|
2012-03-22 12:33:35 +01:00
|
|
|
return ret==0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2009-10-09 08:47:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VIRT_TEST_MAIN(mymain)
|