networkxml2xmltest.c 2.1 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 17 18 19 20
static int
testCompareXMLToXMLFiles(const char *inxml, const char *outxml)
{
    char *inXmlData = NULL;
    char *outXmlData = NULL;
21 22 23 24
    char *actual = NULL;
    int ret = -1;
    virNetworkDefPtr dev = NULL;

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

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

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

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

    ret = 0;

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

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
static int
testCompareXMLToXMLHelper(const void *data)
{
    int result = -1;
    char *inxml = NULL;
    char *outxml = NULL;

    if (virAsprintf(&inxml, "%s/networkxml2xmlin/%s.xml",
                    abs_srcdir, (const char*)data) < 0 ||
        virAsprintf(&outxml, "%s/networkxml2xmlout/%s.xml",
                    abs_srcdir, (const char*)data) < 0) {
        goto cleanup;
    }

    result = testCompareXMLToXMLFiles(inxml, outxml);
66

67 68 69 70 71 72
cleanup:
    free(inxml);
    free(outxml);

    return result;
}
73 74

static int
E
Eric Blake 已提交
75
mymain(void)
76 77 78 79 80 81 82 83 84 85 86 87
{
    int ret = 0;

#define DO_TEST(name) \
    if (virtTestRun("Network XML-2-XML " name, \
                    1, testCompareXMLToXMLHelper, (name)) < 0) \
        ret = -1

    DO_TEST("isolated-network");
    DO_TEST("routed-network");
    DO_TEST("nat-network");
    DO_TEST("netboot-network");
88
    DO_TEST("netboot-proxy-network");
89
    DO_TEST("nat-network-dns-txt-record");
90
    DO_TEST("nat-network-dns-hosts");
91 92 93 94
    DO_TEST("8021Qbh-net");
    DO_TEST("direct-net");
    DO_TEST("host-bridge-net");
    DO_TEST("vepa-net");
95
    DO_TEST("bandwidth-network");
96 97 98 99 100

    return (ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
}

VIRT_TEST_MAIN(mymain)