lxcxml2xmltest.c 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#include <config.h>

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#include <sys/types.h>
#include <fcntl.h>

11 12
#include "testutils.h"

13 14 15 16 17
#ifdef WITH_LXC

# include "internal.h"
# include "lxc/lxc_conf.h"
# include "testutilslxc.h"
18
# include "virstring.h"
19

20 21
# define VIR_FROM_THIS VIR_FROM_NONE

22
static virCapsPtr caps;
23
static virDomainXMLOptionPtr xmlopt;
24 25 26 27 28

struct testInfo {
    const char *name;
    int different;
    bool inactive_only;
29
    unsigned int parse_flags;
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
};

static int
testCompareXMLToXMLHelper(const void *data)
{
    const struct testInfo *info = data;
    char *xml_in = NULL;
    char *xml_out = NULL;
    int ret = -1;

    if (virAsprintf(&xml_in, "%s/lxcxml2xmldata/lxc-%s.xml",
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&xml_out, "%s/lxcxml2xmloutdata/lxc-%s.xml",
                    abs_srcdir, info->name) < 0)
        goto cleanup;

46 47
    ret = testCompareDomXML2XMLFiles(caps, xmlopt, xml_in,
                                     info->different ? xml_out : xml_in,
48
                                     !info->inactive_only,
49 50
                                     NULL, NULL, info->parse_flags,
                                     TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS);
51
 cleanup:
52 53 54 55 56 57 58 59 60 61 62 63
    VIR_FREE(xml_in);
    VIR_FREE(xml_out);
    return ret;
}


static int
mymain(void)
{
    int ret = 0;

    if ((caps = testLXCCapsInit()) == NULL)
64
        return EXIT_FAILURE;
65

66
    if (!(xmlopt = lxcDomainXMLConfInit()))
67 68
        return EXIT_FAILURE;

69
# define DO_TEST_FULL(name, is_different, inactive, parse_flags)        \
70
    do {                                                                \
71 72
        const struct testInfo info = {name, is_different, inactive,     \
                                      parse_flags};                     \
73 74
        if (virTestRun("LXC XML-2-XML " name,                           \
                       testCompareXMLToXMLHelper, &info) < 0)           \
75 76 77 78
            ret = -1;                                                   \
    } while (0)

# define DO_TEST(name) \
79
    DO_TEST_FULL(name, 0, false, 0)
80 81

# define DO_TEST_DIFFERENT(name) \
82
    DO_TEST_FULL(name, 1, false, 0)
83 84 85 86 87 88 89

    /* Unset or set all envvars here that are copied in lxcdBuildCommandLine
     * using ADD_ENV_COPY, otherwise these tests may fail due to unexpected
     * values for these envvars */
    setenv("PATH", "/bin", 1);

    DO_TEST("systemd");
90
    DO_TEST("hostdev");
91
    DO_TEST("disk-formats");
92
    DO_TEST_DIFFERENT("filesystem-ram");
93
    DO_TEST("filesystem-root");
E
Eric Blake 已提交
94
    DO_TEST("idmap");
95
    DO_TEST("capabilities");
I
ik.nitk 已提交
96
    DO_TEST("sharenet");
97
    DO_TEST("ethernet");
98
    DO_TEST("ethernet-hostip");
99 100
    DO_TEST_FULL("filesystem-root", 0, false,
                 VIR_DOMAIN_DEF_PARSE_SKIP_OSTYPE_CHECKS);
101

102
    virObjectUnref(caps);
103
    virObjectUnref(xmlopt);
104

105
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
106 107 108 109 110 111 112 113 114 115 116 117 118
}

VIRT_TEST_MAIN(mymain)

#else

int
main(void)
{
    return EXIT_AM_SKIP;
}

#endif /* WITH_LXC */