qemuxmlnstest.c 8.4 KB
Newer Older
P
Philipp Hahn 已提交
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"

P
Philipp Hahn 已提交
13 14 15 16 17 18 19 20 21
#ifdef WITH_QEMU

# include "internal.h"
# include "qemu/qemu_capabilities.h"
# include "qemu/qemu_command.h"
# include "qemu/qemu_domain.h"
# include "datatypes.h"
# include "cpu/cpu_map.h"
# include "testutilsqemu.h"
22
# include "virstring.h"
P
Philipp Hahn 已提交
23

24 25
# define VIR_FROM_THIS VIR_FROM_QEMU

P
Philipp Hahn 已提交
26
static const char *abs_top_srcdir;
27
static virQEMUDriver driver;
P
Philipp Hahn 已提交
28 29 30

static int testCompareXMLToArgvFiles(const char *xml,
                                     const char *cmdline,
31
                                     virQEMUCapsPtr extraFlags,
P
Philipp Hahn 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
                                     const char *migrateFrom,
                                     int migrateFd,
                                     bool json,
                                     bool expectError)
{
    char *expectargv = NULL;
    int len;
    char *actualargv = NULL;
    int ret = -1;
    virDomainDefPtr vmdef = NULL;
    virDomainChrSourceDef monitor_chr;
    virConnectPtr conn;
    char *log = NULL;
    char *emulator = NULL;
    virCommandPtr cmd = NULL;

    if (!(conn = virGetConnect()))
        goto fail;

    len = virtTestLoadFile(cmdline, &expectargv);
    if (len < 0)
        goto fail;
    if (len && expectargv[len - 1] == '\n')
        expectargv[len - 1] = '\0';

57
    if (!(vmdef = virDomainDefParseFile(xml, driver.caps, driver.xmlopt,
P
Philipp Hahn 已提交
58 59 60 61
                                        QEMU_EXPECTED_VIRT_TYPES,
                                        VIR_DOMAIN_XML_INACTIVE)))
        goto fail;

62 63 64 65 66
    if (!virDomainDefCheckABIStability(vmdef, vmdef)) {
        fprintf(stderr, "ABI stability check failed on %s", xml);
        goto fail;
    }

P
Philipp Hahn 已提交
67 68 69 70 71 72 73 74 75 76 77
    /*
     * For test purposes, we may want to fake emulator's output by providing
     * our own script instead of a real emulator. For this to work we need to
     * specify a relative path in <emulator/> element, which, however, is not
     * allowed by RelaxNG schema for domain XML. To work around it we add an
     * extra '/' at the beginning of relative emulator path so that it looks
     * like, e.g., "/./qemu.sh" or "/../emulator/qemu.sh" instead of
     * "./qemu.sh" or "../emulator/qemu.sh" respectively. The following code
     * detects such paths, strips the extra '/' and makes the path absolute.
     */
    if (vmdef->emulator && STRPREFIX(vmdef->emulator, "/.")) {
78
        if (VIR_STRDUP(emulator, vmdef->emulator + 1) < 0)
P
Philipp Hahn 已提交
79
            goto fail;
80
        VIR_FREE(vmdef->emulator);
P
Philipp Hahn 已提交
81 82 83 84 85 86
        vmdef->emulator = NULL;
        if (virAsprintf(&vmdef->emulator, "%s/qemuxml2argvdata/%s",
                        abs_srcdir, emulator) < 0)
            goto fail;
    }

87
    if (virQEMUCapsGet(extraFlags, QEMU_CAPS_DOMID))
P
Philipp Hahn 已提交
88 89 90 91 92 93 94 95 96
        vmdef->id = 6;
    else
        vmdef->id = -1;

    memset(&monitor_chr, 0, sizeof(monitor_chr));
    monitor_chr.type = VIR_DOMAIN_CHR_TYPE_UNIX;
    monitor_chr.data.nix.path = (char *)"/tmp/test-monitor";
    monitor_chr.data.nix.listen = true;

97 98 99 100 101
    virQEMUCapsSetList(extraFlags,
                       QEMU_CAPS_VNC_COLON,
                       QEMU_CAPS_NO_REBOOT,
                       QEMU_CAPS_NO_ACPI,
                       QEMU_CAPS_LAST);
P
Philipp Hahn 已提交
102

103
    if (virQEMUCapsGet(extraFlags, QEMU_CAPS_DEVICE))
104
        qemuDomainAssignAddresses(vmdef, extraFlags, NULL);
P
Philipp Hahn 已提交
105

106 107
    log = virtTestLogContentAndReset();
    VIR_FREE(log);
P
Philipp Hahn 已提交
108 109
    virResetLastError();

110 111
    if (vmdef->os.arch == VIR_ARCH_X86_64 ||
        vmdef->os.arch == VIR_ARCH_I686) {
112
        virQEMUCapsSet(extraFlags, QEMU_CAPS_PCI_MULTIBUS);
P
Philipp Hahn 已提交
113 114
    }

115 116 117
    if (qemuAssignDeviceAliases(vmdef, extraFlags) < 0)
        goto fail;

P
Philipp Hahn 已提交
118 119 120
    if (!(cmd = qemuBuildCommandLine(conn, &driver,
                                     vmdef, &monitor_chr, json, extraFlags,
                                     migrateFrom, migrateFd, NULL,
121
                                     VIR_NETDEV_VPORT_PROFILE_OP_NO_OP,
122
                                     &testCallbacks, false, false)))
P
Philipp Hahn 已提交
123 124
        goto fail;

125 126 127 128 129 130
    if (!virtTestOOMActive()) {
        if (!!virGetLastError() != expectError) {
            if (virTestGetDebug() && (log = virtTestLogContentAndReset()))
                fprintf(stderr, "\n%s", log);
            goto fail;
        }
P
Philipp Hahn 已提交
131

132 133 134 135
        if (expectError) {
            /* need to suppress the errors */
            virResetLastError();
        }
P
Philipp Hahn 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
    }

    if (!(actualargv = virCommandToString(cmd)))
        goto fail;

    if (emulator) {
        /* Skip the abs_srcdir portion of replacement emulator.  */
        char *start_skip = strstr(actualargv, abs_srcdir);
        char *end_skip = strstr(actualargv, emulator);
        if (!start_skip || !end_skip)
            goto fail;
        memmove(start_skip, end_skip, strlen(end_skip) + 1);
    }

    if (STRNEQ(expectargv, actualargv)) {
        virtTestDifference(stderr, expectargv, actualargv);
        goto fail;
    }

    ret = 0;

 fail:
158 159 160 161
    VIR_FREE(log);
    VIR_FREE(emulator);
    VIR_FREE(expectargv);
    VIR_FREE(actualargv);
P
Philipp Hahn 已提交
162 163
    virCommandFree(cmd);
    virDomainDefFree(vmdef);
164
    virObjectUnref(conn);
P
Philipp Hahn 已提交
165 166 167 168 169 170
    return ret;
}


struct testInfo {
    const char *name;
171
    virQEMUCapsPtr extraFlags;
P
Philipp Hahn 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
    const char *migrateFrom;
    int migrateFd;
    bool json;
    bool expectError;
};

static int
testCompareXMLToArgvHelper(const void *data)
{
    int result = -1;
    const struct testInfo *info = data;
    char *xml = NULL;
    char *args = NULL;

    if (virAsprintf(&xml, "%s/qemuxmlnsdata/qemuxmlns-%s.xml",
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&args, "%s/qemuxmlnsdata/qemuxmlns-%s.args",
                    abs_srcdir, info->name) < 0)
        goto cleanup;

    result = testCompareXMLToArgvFiles(xml, args, info->extraFlags,
                                       info->migrateFrom, info->migrateFd,
                                       info->json, info->expectError);

196
 cleanup:
197 198
    VIR_FREE(xml);
    VIR_FREE(args);
P
Philipp Hahn 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211
    return result;
}



static int
mymain(void)
{
    int ret = 0;
    bool json = false;

    abs_top_srcdir = getenv("abs_top_srcdir");
    if (!abs_top_srcdir)
212
        abs_top_srcdir = abs_srcdir "/..";
P
Philipp Hahn 已提交
213

214
    driver.config = virQEMUDriverConfigNew(false);
P
Philipp Hahn 已提交
215 216
    if ((driver.caps = testQemuCapsInit()) == NULL)
        return EXIT_FAILURE;
217
    if (!(driver.xmlopt = virQEMUDriverCreateXMLConf(&driver)))
218
        return EXIT_FAILURE;
P
Philipp Hahn 已提交
219 220 221 222 223 224

# define DO_TEST_FULL(name, migrateFrom, migrateFd, expectError, ...)   \
    do {                                                                \
        struct testInfo info = {                                        \
            name, NULL, migrateFrom, migrateFd, json, expectError       \
        };                                                              \
225
        if (!(info.extraFlags = virQEMUCapsNew()))                      \
P
Philipp Hahn 已提交
226
            return EXIT_FAILURE;                                        \
227
        virQEMUCapsSetList(info.extraFlags, __VA_ARGS__, QEMU_CAPS_LAST);\
P
Philipp Hahn 已提交
228
        if (virtTestRun("QEMU XML-2-ARGV " name,                        \
229
                        testCompareXMLToArgvHelper, &info) < 0)         \
P
Philipp Hahn 已提交
230
            ret = -1;                                                   \
231
        virObjectUnref(info.extraFlags);                                \
P
Philipp Hahn 已提交
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
    } while (0)

# define DO_TEST(name, expectError, ...)                                \
    DO_TEST_FULL(name, NULL, -1, expectError, __VA_ARGS__)

# define NONE QEMU_CAPS_LAST

    /* Unset or set all envvars here that are copied in qemudBuildCommandLine
     * using ADD_ENV_COPY, otherwise these tests may fail due to unexpected
     * values for these envvars */
    setenv("PATH", "/bin", 1);
    setenv("USER", "test", 1);
    setenv("LOGNAME", "test", 1);
    setenv("HOME", "/home/test", 1);
    unsetenv("TMPDIR");
    unsetenv("LD_PRELOAD");
    unsetenv("LD_LIBRARY_PATH");
    unsetenv("QEMU_AUDIO_DRV");
    unsetenv("SDL_AUDIODRIVER");

    DO_TEST("qemu-ns-domain", false, NONE);
    DO_TEST("qemu-ns-domain-ns0", false, NONE);
    DO_TEST("qemu-ns-domain-commandline", false, NONE);
    DO_TEST("qemu-ns-domain-commandline-ns0", false, NONE);
    DO_TEST("qemu-ns-commandline", false, NONE);
    DO_TEST("qemu-ns-commandline-ns0", false, NONE);
    DO_TEST("qemu-ns-commandline-ns1", false, NONE);

260
    virObjectUnref(driver.config);
261
    virObjectUnref(driver.caps);
262
    virObjectUnref(driver.xmlopt);
P
Philipp Hahn 已提交
263

264
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
P
Philipp Hahn 已提交
265 266 267 268 269 270 271 272 273 274 275 276
}

VIRT_TEST_MAIN(mymain)

#else

int main(void)
{
    return EXIT_AM_SKIP;
}

#endif /* WITH_QEMU */