lxcxml2xmltest.c 3.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 29 30 31 32 33 34 35 36 37 38

static int
testCompareXMLToXMLFiles(const char *inxml, const char *outxml, bool live)
{
    char *inXmlData = NULL;
    char *outXmlData = NULL;
    char *actual = NULL;
    int ret = -1;
    virDomainDefPtr def = NULL;

    if (virtTestLoadFile(inxml, &inXmlData) < 0)
        goto fail;
    if (virtTestLoadFile(outxml, &outXmlData) < 0)
        goto fail;

39
    if (!(def = virDomainDefParseString(inXmlData, caps, xmlopt,
40
                                        1 << VIR_DOMAIN_VIRT_LXC,
41
                                        live ? 0 : VIR_DOMAIN_DEF_PARSE_INACTIVE)))
42 43
        goto fail;

44 45 46 47 48
    if (!virDomainDefCheckABIStability(def, def)) {
        fprintf(stderr, "ABI stability check failed on %s", inxml);
        goto fail;
    }

49
    if (!(actual = virDomainDefFormat(def, VIR_DOMAIN_DEF_FORMAT_SECURE)))
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
        goto fail;

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

    ret = 0;
 fail:
    VIR_FREE(inXmlData);
    VIR_FREE(outXmlData);
    VIR_FREE(actual);
    virDomainDefFree(def);
    return ret;
}

struct testInfo {
    const char *name;
    int different;
    bool inactive_only;
};

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;

    if (info->different) {
87 88
        if (testCompareXMLToXMLFiles(xml_in, xml_out, false) < 0)
            goto cleanup;
89
    } else {
90 91
        if (testCompareXMLToXMLFiles(xml_in, xml_in, false) < 0)
            goto cleanup;
92 93 94
    }
    if (!info->inactive_only) {
        if (info->different) {
95 96
            if (testCompareXMLToXMLFiles(xml_in, xml_out, true) < 0)
                goto cleanup;
97
        } else {
98 99
            if (testCompareXMLToXMLFiles(xml_in, xml_in, true) < 0)
                goto cleanup;
100 101 102
        }
    }

103
    ret = 0;
104
 cleanup:
105 106 107 108 109 110 111 112 113 114 115 116
    VIR_FREE(xml_in);
    VIR_FREE(xml_out);
    return ret;
}


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

    if ((caps = testLXCCapsInit()) == NULL)
117
        return EXIT_FAILURE;
118

119
    if (!(xmlopt = lxcDomainXMLConfInit()))
120 121
        return EXIT_FAILURE;

122 123 124
# define DO_TEST_FULL(name, is_different, inactive)                     \
    do {                                                                \
        const struct testInfo info = {name, is_different, inactive};    \
125 126
        if (virtTestRun("LXC XML-2-XML " name,                          \
                        testCompareXMLToXMLHelper, &info) < 0)          \
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
            ret = -1;                                                   \
    } while (0)

# define DO_TEST(name) \
    DO_TEST_FULL(name, 0, false)

# define DO_TEST_DIFFERENT(name) \
    DO_TEST_FULL(name, 1, false)

    /* 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");
142
    DO_TEST("hostdev");
143
    DO_TEST("disk-formats");
144
    DO_TEST_DIFFERENT("filesystem-ram");
145
    DO_TEST("filesystem-root");
E
Eric Blake 已提交
146
    DO_TEST("idmap");
147
    DO_TEST("capabilities");
148

149
    virObjectUnref(caps);
150
    virObjectUnref(xmlopt);
151

152
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
153 154 155 156 157 158 159 160 161 162 163 164 165
}

VIRT_TEST_MAIN(mymain)

#else

int
main(void)
{
    return EXIT_AM_SKIP;
}

#endif /* WITH_LXC */