vmx2xmltest.c 7.9 KB
Newer Older
1 2
#include <config.h>

3
#ifdef WITH_VMX
4

5 6 7
# include <stdio.h>
# include <string.h>
# include <unistd.h>
8

9 10 11
# include "internal.h"
# include "memory.h"
# include "testutils.h"
12
# include "vmx/vmx.h"
13

14
static virCapsPtr caps;
15
static virVMXContext ctx;
16

17 18 19 20 21
static int testDefaultConsoleType(const char *ostype ATTRIBUTE_UNUSED)
{
    return VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL;
}

22 23 24 25 26 27 28 29 30 31 32
static void
testCapsInit(void)
{
    virCapsGuestPtr guest = NULL;

    caps = virCapabilitiesNew("i686", 1, 1);

    if (caps == NULL) {
        return;
    }

33 34
    caps->defaultConsoleTargetType = testDefaultConsoleType;

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
    virCapabilitiesSetMacPrefix(caps, (unsigned char[]){ 0x00, 0x0c, 0x29 });
    virCapabilitiesAddHostMigrateTransport(caps, "esx");

    caps->hasWideScsiBus = true;

    /* i686 guest */
    guest =
      virCapabilitiesAddGuest(caps, "hvm", "i686", 32, NULL, NULL, 0, NULL);

    if (guest == NULL) {
        goto failure;
    }

    if (virCapabilitiesAddGuestDomain(guest, "vmware", NULL, NULL, 0,
                                      NULL) == NULL) {
        goto failure;
    }

    /* x86_64 guest */
    guest =
      virCapabilitiesAddGuest(caps, "hvm", "x86_64", 64, NULL, NULL, 0, NULL);

    if (guest == NULL) {
        goto failure;
    }

    if (virCapabilitiesAddGuestDomain(guest, "vmware", NULL, NULL, 0,
                                      NULL) == NULL) {
        goto failure;
    }

    return;

  failure:
    virCapabilitiesFree(caps);
    caps = NULL;
}

73
static int
74
testCompareFiles(const char *vmx, const char *xml)
75 76
{
    int result = -1;
77 78
    char *vmxData = NULL;
    char *xmlData = NULL;
79 80
    char *formatted = NULL;
    virDomainDefPtr def = NULL;
81
    virErrorPtr err = NULL;
82

83
    if (virtTestLoadFile(vmx, &vmxData) < 0) {
84 85 86
        goto failure;
    }

87
    if (virtTestLoadFile(xml, &xmlData) < 0) {
88 89 90
        goto failure;
    }

91
    def = virVMXParseConfig(&ctx, caps, vmxData);
92 93

    if (def == NULL) {
94 95
        err = virGetLastError();
        fprintf(stderr, "ERROR: %s\n", err != NULL ? err->message : "<unknown>");
96 97 98
        goto failure;
    }

99
    formatted = virDomainDefFormat(def, VIR_DOMAIN_XML_SECURE);
100 101

    if (formatted == NULL) {
102 103
        err = virGetLastError();
        fprintf(stderr, "ERROR: %s\n", err != NULL ? err->message : "<unknown>");
104 105 106 107 108 109 110 111 112 113 114
        goto failure;
    }

    if (STRNEQ(xmlData, formatted)) {
        virtTestDifference(stderr, xmlData, formatted);
        goto failure;
    }

    result = 0;

  failure:
115 116
    VIR_FREE(vmxData);
    VIR_FREE(xmlData);
117 118 119 120 121 122 123 124 125 126 127 128 129 130
    VIR_FREE(formatted);
    virDomainDefFree(def);

    return result;
}

struct testInfo {
    const char *input;
    const char *output;
};

static int
testCompareHelper(const void *data)
{
131
    int result = -1;
132
    const struct testInfo *info = data;
133 134 135 136 137 138 139 140 141
    char *vmx = NULL;
    char *xml = NULL;

    if (virAsprintf(&vmx, "%s/vmx2xmldata/vmx2xml-%s.vmx", abs_srcdir,
                    info->input) < 0 ||
        virAsprintf(&xml, "%s/vmx2xmldata/vmx2xml-%s.xml", abs_srcdir,
                    info->output) < 0) {
        goto cleanup;
    }
142

143
    result = testCompareFiles(vmx, xml);
144

145 146 147 148 149
  cleanup:
    VIR_FREE(vmx);
    VIR_FREE(xml);

    return result;
150 151
}

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
static char *
testParseVMXFileName(const char *fileName, void *opaque ATTRIBUTE_UNUSED)
{
    char *copyOfFileName = NULL;
    char *tmp = NULL;
    char *saveptr = NULL;
    char *datastoreName = NULL;
    char *directoryAndFileName = NULL;
    char *src = NULL;

    if (STRPREFIX(fileName, "/vmfs/volumes/")) {
        /* Found absolute path referencing a file inside a datastore */
        copyOfFileName = strdup(fileName);

        if (copyOfFileName == NULL) {
            goto cleanup;
        }

        /* Expected format: '/vmfs/volumes/<datastore>/<path>' */
        if ((tmp = STRSKIP(copyOfFileName, "/vmfs/volumes/")) == NULL ||
            (datastoreName = strtok_r(tmp, "/", &saveptr)) == NULL ||
            (directoryAndFileName = strtok_r(NULL, "", &saveptr)) == NULL) {
            goto cleanup;
        }

        virAsprintf(&src, "[%s] %s", datastoreName, directoryAndFileName);
    } else if (STRPREFIX(fileName, "/")) {
        /* Found absolute path referencing a file outside a datastore */
        src = strdup(fileName);
    } else if (strchr(fileName, '/') != NULL) {
        /* Found relative path, this is not supported */
        src = NULL;
    } else {
        /* Found single file name referencing a file inside a datastore */
        virAsprintf(&src, "[datastore] directory/%s", fileName);
    }

  cleanup:
    VIR_FREE(copyOfFileName);

    return src;
}

195
static int
E
Eric Blake 已提交
196
mymain(void)
197 198 199
{
    int result = 0;

200
# define DO_TEST(_in, _out)                                                   \
201
        do {                                                                  \
202
            struct testInfo info = { _in, _out };                             \
203 204 205 206 207 208 209
            virResetLastError();                                              \
            if (virtTestRun("VMware VMX-2-XML "_in" -> "_out, 1,              \
                            testCompareHelper, &info) < 0) {                  \
                result = -1;                                                  \
            }                                                                 \
        } while (0)

210 211 212 213 214 215
    testCapsInit();

    if (caps == NULL) {
        return EXIT_FAILURE;
    }

216 217 218 219 220
    ctx.opaque = NULL;
    ctx.parseFileName = testParseVMXFileName;
    ctx.formatFileName = NULL;
    ctx.autodetectSCSIControllerModel = NULL;

221 222
    DO_TEST("case-insensitive-1", "case-insensitive-1");
    DO_TEST("case-insensitive-2", "case-insensitive-2");
223

224 225
    DO_TEST("minimal", "minimal");
    DO_TEST("minimal-64bit", "minimal-64bit");
226

227
    DO_TEST("graphics-vnc", "graphics-vnc");
M
Matthias Bolte 已提交
228

229 230
    DO_TEST("scsi-driver", "scsi-driver");
    DO_TEST("scsi-writethrough", "scsi-writethrough");
231

232 233
    DO_TEST("harddisk-scsi-file", "harddisk-scsi-file");
    DO_TEST("harddisk-ide-file", "harddisk-ide-file");
234

235 236 237 238
    DO_TEST("cdrom-scsi-file", "cdrom-scsi-file");
    DO_TEST("cdrom-scsi-device", "cdrom-scsi-device");
    DO_TEST("cdrom-ide-file", "cdrom-ide-file");
    DO_TEST("cdrom-ide-device", "cdrom-ide-device");
239

240 241
    DO_TEST("floppy-file", "floppy-file");
    DO_TEST("floppy-device", "floppy-device");
242

243 244
    DO_TEST("ethernet-e1000", "ethernet-e1000");
    DO_TEST("ethernet-vmxnet2", "ethernet-vmxnet2");
245

246 247
    DO_TEST("ethernet-custom", "ethernet-custom");
    DO_TEST("ethernet-bridged", "ethernet-bridged");
248

249 250 251 252
    DO_TEST("ethernet-generated", "ethernet-generated");
    DO_TEST("ethernet-static", "ethernet-static");
    DO_TEST("ethernet-vpx", "ethernet-vpx");
    DO_TEST("ethernet-other", "ethernet-other");
253

254 255 256 257 258 259 260 261
    DO_TEST("serial-file", "serial-file");
    DO_TEST("serial-device", "serial-device");
    DO_TEST("serial-pipe-client-app", "serial-pipe");
    DO_TEST("serial-pipe-server-vm", "serial-pipe");
    DO_TEST("serial-pipe-client-app", "serial-pipe");
    DO_TEST("serial-pipe-server-vm", "serial-pipe");
    DO_TEST("serial-network-server", "serial-network-server");
    DO_TEST("serial-network-client", "serial-network-client");
262

263 264
    DO_TEST("parallel-file", "parallel-file");
    DO_TEST("parallel-device", "parallel-device");
265

266 267 268 269 270
    DO_TEST("esx-in-the-wild-1", "esx-in-the-wild-1");
    DO_TEST("esx-in-the-wild-2", "esx-in-the-wild-2");
    DO_TEST("esx-in-the-wild-3", "esx-in-the-wild-3");
    DO_TEST("esx-in-the-wild-4", "esx-in-the-wild-4");
    DO_TEST("esx-in-the-wild-5", "esx-in-the-wild-5");
271
    DO_TEST("esx-in-the-wild-6", "esx-in-the-wild-6");
272

273 274 275 276
    DO_TEST("gsx-in-the-wild-1", "gsx-in-the-wild-1");
    DO_TEST("gsx-in-the-wild-2", "gsx-in-the-wild-2");
    DO_TEST("gsx-in-the-wild-3", "gsx-in-the-wild-3");
    DO_TEST("gsx-in-the-wild-4", "gsx-in-the-wild-4");
277

278
    DO_TEST("annotation", "annotation");
279

280
    DO_TEST("smbios", "smbios");
M
Matthias Bolte 已提交
281

282 283
    DO_TEST("svga", "svga");

284 285
    virCapabilitiesFree(caps);

286 287 288 289 290 291 292
    return result == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}

VIRT_TEST_MAIN(mymain)

#else

293
int main(void)
294
{
295
    return EXIT_AM_SKIP;
296 297
}

298
#endif /* WITH_VMX */