vircaps2xmltest.c 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Copyright (C) Red Hat, Inc. 2014
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Michal Privoznik <mprivozn@redhat.com>
 */

#include <config.h>
#include <stdlib.h>

#include "testutils.h"
#include "capabilities.h"
#include "virbitmap.h"
28
#include "virsysfspriv.h"
29 30 31 32


#define VIR_FROM_THIS VIR_FROM_NONE

33
#ifdef __linux__
34

35
struct virCapabilitiesData {
36
    const char *filename;
37 38 39
    virArch arch;
    bool offlineMigrate;
    bool liveMigrate;
40 41 42
};

static int
43
test_virCapabilities(const void *opaque)
44
{
45 46
    struct virCapabilitiesData *data = (struct virCapabilitiesData *) opaque;
    const char *archStr = virArchToString(data->arch);
47 48 49
    virCapsPtr caps = NULL;
    char *capsXML = NULL;
    char *path = NULL;
50
    char *dir = NULL;
51 52
    int ret = -1;

53 54 55 56 57 58 59 60 61 62 63
    if (virAsprintf(&dir, "%s/vircaps2xmldata/linux-%s",
                    abs_srcdir, data->filename) < 0)
        goto cleanup;

    virSysfsSetSystemPath(dir);
    caps = virCapabilitiesNew(data->arch, data->offlineMigrate, data->liveMigrate);

    if (!caps)
        goto cleanup;

    if (virCapabilitiesInitNUMA(caps) < 0)
64 65
        goto cleanup;

66 67
    virSysfsSetSystemPath(NULL);

68
    if (!(capsXML = virCapabilitiesFormatXML(caps)))
69 70
        goto cleanup;

71 72
    if (virAsprintf(&path, "%s/vircaps2xmldata/vircaps-%s-%s.xml",
                    abs_srcdir, archStr, data->filename) < 0)
73 74
        goto cleanup;

75
    if (virTestCompareToFile(capsXML, path) < 0)
76 77 78 79 80
        goto cleanup;

    ret = 0;

 cleanup:
81
    VIR_FREE(dir);
82 83 84 85 86 87 88 89 90 91 92
    VIR_FREE(path);
    VIR_FREE(capsXML);
    virObjectUnref(caps);
    return ret;
}

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

93 94 95 96 97 98 99
# define DO_TEST_FULL(filename, arch, offlineMigrate, liveMigrate)       \
    do {                                                                \
        struct virCapabilitiesData data = {filename, arch,              \
                                           offlineMigrate,              \
                                           liveMigrate};                \
        if (virTestRun(filename, test_virCapabilities, &data) < 0)      \
            ret = -1;                                                   \
100 101
    } while (0)

102 103 104 105 106 107
# define DO_TEST(filename, arch) DO_TEST_FULL(filename, arch, true, true)

    DO_TEST_FULL("basic", VIR_ARCH_X86_64, false, false);
    DO_TEST_FULL("basic", VIR_ARCH_AARCH64, true, false);

    DO_TEST("caches", VIR_ARCH_X86_64);
108 109 110 111

    return ret;
}

112 113 114 115 116 117 118 119 120 121 122
VIRT_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/virnumamock.so")

#else /* !__linux__ */

int
main(void)
{
    return EXIT_AM_SKIP;
}

#endif /* !__linux__ */