networkxml2xmltest.c 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#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"

16
static int
17 18
testCompareXMLToXMLFiles(const char *inxml, const char *outxml,
                         unsigned int flags)
19 20 21
{
    char *inXmlData = NULL;
    char *outXmlData = NULL;
22 23 24 25
    char *actual = NULL;
    int ret = -1;
    virNetworkDefPtr dev = NULL;

26
    if (virtTestLoadFile(inxml, &inXmlData) < 0)
27
        goto fail;
28
    if (virtTestLoadFile(outxml, &outXmlData) < 0)
29 30
        goto fail;

31
    if (!(dev = virNetworkDefParseString(inXmlData)))
32 33
        goto fail;

34
    if (!(actual = virNetworkDefFormat(dev, flags)))
35 36 37 38 39 40 41 42 43 44
        goto fail;

    if (STRNEQ(outXmlData, actual)) {
        virtTestDifference(stderr, outXmlData, actual);
        goto fail;
    }

    ret = 0;

 fail:
45 46 47
    VIR_FREE(inXmlData);
    VIR_FREE(outXmlData);
    VIR_FREE(actual);
48 49 50 51
    virNetworkDefFree(dev);
    return ret;
}

52 53 54 55 56
struct testInfo {
    const char *name;
    unsigned int flags;
};

57 58 59
static int
testCompareXMLToXMLHelper(const void *data)
{
60
    const struct testInfo *info = data;
61 62 63 64 65
    int result = -1;
    char *inxml = NULL;
    char *outxml = NULL;

    if (virAsprintf(&inxml, "%s/networkxml2xmlin/%s.xml",
66
                    abs_srcdir, info->name) < 0 ||
67
        virAsprintf(&outxml, "%s/networkxml2xmlout/%s.xml",
68
                    abs_srcdir, info->name) < 0) {
69 70 71
        goto cleanup;
    }

72
    result = testCompareXMLToXMLFiles(inxml, outxml, info->flags);
73

74
cleanup:
75 76
    VIR_FREE(inxml);
    VIR_FREE(outxml);
77 78 79

    return result;
}
80 81

static int
E
Eric Blake 已提交
82
mymain(void)
83 84 85
{
    int ret = 0;

86 87 88 89 90 91 92 93
#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)
94 95 96 97 98

    DO_TEST("isolated-network");
    DO_TEST("routed-network");
    DO_TEST("nat-network");
    DO_TEST("netboot-network");
99
    DO_TEST("netboot-proxy-network");
100
    DO_TEST("nat-network-dns-txt-record");
101
    DO_TEST("nat-network-dns-hosts");
102 103 104 105
    DO_TEST("8021Qbh-net");
    DO_TEST("direct-net");
    DO_TEST("host-bridge-net");
    DO_TEST("vepa-net");
106
    DO_TEST("bandwidth-network");
107
    DO_TEST("openvswitch-net");
108
    DO_TEST_FULL("passthrough-pf", VIR_NETWORK_XML_INACTIVE);
109 110
    DO_TEST("hostdev");
    DO_TEST_FULL("hostdev-pf", VIR_NETWORK_XML_INACTIVE);
111

112
    return ret==0 ? EXIT_SUCCESS : EXIT_FAILURE;
113 114 115
}

VIRT_TEST_MAIN(mymain)