qemuxml2xmltest.c 12.3 KB
Newer Older
1
#include <config.h>
2

3
#include <stdio.h>
4 5
#include <stdlib.h>
#include <unistd.h>
6 7 8 9 10
#include <string.h>

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

11 12
#include "testutils.h"

13 14
#ifdef WITH_QEMU

15 16
# include "internal.h"
# include "qemu/qemu_conf.h"
M
Matthias Bolte 已提交
17
# include "qemu/qemu_domain.h"
18
# include "testutilsqemu.h"
19
# include "virstring.h"
20

21 22
# define VIR_FROM_THIS VIR_FROM_NONE

23
static virQEMUDriver driver;
24

25
static int
E
Eric Blake 已提交
26
testCompareXMLToXMLFiles(const char *inxml, const char *outxml, bool live)
27 28 29
{
    char *inXmlData = NULL;
    char *outXmlData = NULL;
30 31
    char *actual = NULL;
    int ret = -1;
32
    virDomainDefPtr def = NULL;
33 34 35 36
    unsigned int parse_flags = live ? 0 : VIR_DOMAIN_DEF_PARSE_INACTIVE;
    unsigned int format_flags = VIR_DOMAIN_DEF_FORMAT_SECURE;
    if (!live)
        format_flags |= VIR_DOMAIN_DEF_FORMAT_INACTIVE;
37

38
    if (virtTestLoadFile(inxml, &inXmlData) < 0)
39
        goto fail;
40
    if (virtTestLoadFile(outxml, &outXmlData) < 0)
41 42
        goto fail;

43
    if (!(def = virDomainDefParseString(inXmlData, driver.caps, driver.xmlopt,
44
                                        QEMU_EXPECTED_VIRT_TYPES, parse_flags)))
45 46
        goto fail;

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

52
    if (!(actual = virDomainDefFormat(def, format_flags)))
53 54
        goto fail;

55
    if (STRNEQ(outXmlData, actual)) {
56
        virtTestDifferenceFull(stderr, outXmlData, outxml, actual, inxml);
57 58 59 60 61
        goto fail;
    }

    ret = 0;
 fail:
62 63 64
    VIR_FREE(inXmlData);
    VIR_FREE(outXmlData);
    VIR_FREE(actual);
65
    virDomainDefFree(def);
66 67 68
    return ret;
}

69 70 71 72 73 74
enum {
    WHEN_INACTIVE = 1,
    WHEN_ACTIVE = 2,
    WHEN_EITHER = 3,
};

75 76
struct testInfo {
    const char *name;
77 78
    bool different;
    int when;
79 80
};

81 82 83
static int
testCompareXMLToXMLHelper(const void *data)
{
84
    const struct testInfo *info = data;
85 86
    char *xml_in = NULL;
    char *xml_out = NULL;
87 88
    char *xml_out_active = NULL;
    char *xml_out_inactive = NULL;
89
    int ret = -1;
90

91 92 93
    if (virAsprintf(&xml_in, "%s/qemuxml2argvdata/qemuxml2argv-%s.xml",
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&xml_out, "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
94 95 96 97 98 99
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&xml_out_active,
                    "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s-active.xml",
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&xml_out_inactive,
                    "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s-inactive.xml",
100 101
                    abs_srcdir, info->name) < 0)
        goto cleanup;
102

103 104 105 106 107 108 109 110 111 112 113 114
    if ((info->when & WHEN_INACTIVE)) {
        char *out;
        if (!info->different)
            out = xml_in;
        else if (virFileExists(xml_out_inactive))
            out = xml_out_inactive;
        else
            out = xml_out;

        if (testCompareXMLToXMLFiles(xml_in, out, false) < 0)
            goto cleanup;
    }
115

116 117 118 119 120 121 122 123 124 125 126 127
    if ((info->when & WHEN_ACTIVE)) {
        char *out;
        if (!info->different)
            out = xml_in;
        else if (virFileExists(xml_out_active))
            out = xml_out_active;
        else
            out = xml_out;

        if (testCompareXMLToXMLFiles(xml_in, out, true) < 0)
            goto cleanup;
    }
128 129

    ret = 0;
130

131
 cleanup:
132 133
    VIR_FREE(xml_in);
    VIR_FREE(xml_out);
134 135
    VIR_FREE(xml_out_active);
    VIR_FREE(xml_out_inactive);
136
    return ret;
137 138 139
}


140
static int
E
Eric Blake 已提交
141
mymain(void)
142 143
{
    int ret = 0;
144

145
    if ((driver.caps = testQemuCapsInit()) == NULL)
146
        return EXIT_FAILURE;
147

148
    if (!(driver.xmlopt = virQEMUDriverCreateXMLConf(&driver)))
149 150
        return EXIT_FAILURE;

151
# define DO_TEST_FULL(name, is_different, when)                         \
152
    do {                                                                \
153
        const struct testInfo info = {name, is_different, when};        \
154
        if (virtTestRun("QEMU XML-2-XML " name,                         \
155
                        testCompareXMLToXMLHelper, &info) < 0)          \
156 157 158
            ret = -1;                                                   \
    } while (0)

159
# define DO_TEST(name) \
160
    DO_TEST_FULL(name, false, WHEN_EITHER)
161 162

# define DO_TEST_DIFFERENT(name) \
163
    DO_TEST_FULL(name, true, WHEN_EITHER)
164 165 166 167 168

    /* 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);
169 170

    DO_TEST("minimal");
171 172
    DO_TEST("machine-core-on");
    DO_TEST("machine-core-off");
173 174 175
    DO_TEST("boot-cdrom");
    DO_TEST("boot-network");
    DO_TEST("boot-floppy");
176
    DO_TEST("boot-multi");
177
    DO_TEST("boot-menu-enable-with-timeout");
178
    DO_TEST("boot-menu-disable");
179
    DO_TEST_DIFFERENT("boot-menu-disable-with-timeout");
180
    DO_TEST("boot-order");
D
Daniel P. Berrange 已提交
181
    DO_TEST("bootloader");
182 183 184 185

    DO_TEST("reboot-timeout-enabled");
    DO_TEST("reboot-timeout-disabled");

186 187
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
188 189
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
190
    DO_TEST("cpu-host-passthrough-features");
191
    DO_TEST("cpu-host-model-features");
192
    DO_TEST("clock-catchup");
193
    DO_TEST("kvmclock");
194
    DO_TEST("clock-timer-hyperv-rtc");
195 196 197 198 199

    DO_TEST("cpu-eoi-disabled");
    DO_TEST("cpu-eoi-enabled");
    DO_TEST("eoi-disabled");
    DO_TEST("eoi-enabled");
200 201
    DO_TEST("pv-spinlock-disabled");
    DO_TEST("pv-spinlock-enabled");
202

203
    DO_TEST("hyperv");
204
    DO_TEST("hyperv-off");
205

206 207 208
    DO_TEST("kvm-features");
    DO_TEST("kvm-features-off");

209 210 211
    DO_TEST_DIFFERENT("pmu-feature");
    DO_TEST("pmu-feature-off");

212
    DO_TEST("hugepages");
213
    DO_TEST("hugepages-pages");
214 215
    DO_TEST("hugepages-pages2");
    DO_TEST("hugepages-pages3");
216
    DO_TEST("hugepages-shared");
217
    DO_TEST("nosharepages");
E
Eric Blake 已提交
218
    DO_TEST("disk-aio");
219 220 221
    DO_TEST("disk-cdrom");
    DO_TEST("disk-floppy");
    DO_TEST("disk-many");
222
    DO_TEST("disk-xenvbd");
223
    DO_TEST("disk-usb");
224
    DO_TEST("disk-virtio");
225 226
    DO_TEST("floppy-drive-fat");
    DO_TEST("disk-drive-fat");
227
    DO_TEST("disk-drive-fmt-qcow");
228 229 230
    DO_TEST("disk-drive-cache-v1-wt");
    DO_TEST("disk-drive-cache-v1-wb");
    DO_TEST("disk-drive-cache-v1-none");
231
    DO_TEST("disk-drive-copy-on-read");
232
    DO_TEST("disk-drive-network-nbd");
P
Paolo Bonzini 已提交
233
    DO_TEST("disk-drive-network-nbd-export");
P
Paolo Bonzini 已提交
234 235
    DO_TEST("disk-drive-network-nbd-ipv6");
    DO_TEST("disk-drive-network-nbd-ipv6-export");
236
    DO_TEST("disk-drive-network-nbd-unix");
237
    DO_TEST("disk-drive-network-iscsi");
238
    DO_TEST("disk-drive-network-iscsi-auth");
239
    DO_TEST("disk-scsi-device");
240 241
    DO_TEST("disk-scsi-vscsi");
    DO_TEST("disk-scsi-virtio-scsi");
242
    DO_TEST("disk-virtio-scsi-num_queues");
243 244
    DO_TEST("disk-virtio-scsi-cmd_per_lun");
    DO_TEST("disk-virtio-scsi-max_sectors");
245
    DO_TEST("disk-scsi-megasas");
E
Eric Blake 已提交
246
    DO_TEST_DIFFERENT("disk-mirror-old");
247 248
    DO_TEST_FULL("disk-mirror", false, WHEN_ACTIVE);
    DO_TEST_FULL("disk-mirror", true, WHEN_INACTIVE);
E
Eric Blake 已提交
249
    DO_TEST_FULL("disk-active-commit", false, WHEN_ACTIVE);
250
    DO_TEST("graphics-listen-network");
251
    DO_TEST("graphics-vnc");
252
    DO_TEST("graphics-vnc-websocket");
253 254
    DO_TEST("graphics-vnc-sasl");
    DO_TEST("graphics-vnc-tls");
255
    DO_TEST("graphics-sdl");
256
    DO_TEST("graphics-sdl-fullscreen");
257
    DO_TEST("graphics-spice");
258
    DO_TEST("graphics-spice-compression");
259
    DO_TEST("graphics-spice-qxl-vga");
260 261
    DO_TEST("input-usbmouse");
    DO_TEST("input-usbtablet");
262
    DO_TEST("input-xen");
263
    DO_TEST("misc-acpi");
264 265 266
    DO_TEST("misc-disable-s3");
    DO_TEST("misc-disable-suspends");
    DO_TEST("misc-enable-s4");
267
    DO_TEST("misc-no-reboot");
M
Michele Paolino 已提交
268
    DO_TEST("net-vhostuser");
269
    DO_TEST("net-user");
270
    DO_TEST("net-virtio");
271
    DO_TEST("net-virtio-device");
272
    DO_TEST("net-virtio-disable-offloads");
273 274
    DO_TEST("net-eth");
    DO_TEST("net-eth-ifname");
275
    DO_TEST("net-virtio-network-portgroup");
276
    DO_TEST("net-hostdev");
277
    DO_TEST("net-hostdev-vfio");
278
    DO_TEST("net-openvswitch");
279
    DO_TEST("sound");
280
    DO_TEST("sound-device");
281
    DO_TEST("net-bandwidth");
282 283 284 285 286 287 288 289 290 291

    DO_TEST("serial-vc");
    DO_TEST("serial-pty");
    DO_TEST("serial-dev");
    DO_TEST("serial-file");
    DO_TEST("serial-unix");
    DO_TEST("serial-tcp");
    DO_TEST("serial-udp");
    DO_TEST("serial-tcp-telnet");
    DO_TEST("serial-many");
292 293
    DO_TEST("serial-spiceport");
    DO_TEST("serial-spiceport-nospice");
294 295
    DO_TEST("parallel-tcp");
    DO_TEST("console-compat");
296
    DO_TEST("console-virtio-many");
297
    DO_TEST("channel-guestfwd");
298
    DO_TEST("channel-virtio");
299
    DO_TEST_DIFFERENT("channel-virtio-state");
300

301
    DO_TEST("hostdev-usb-address");
302
    DO_TEST("hostdev-pci-address");
303
    DO_TEST("hostdev-vfio");
304
    DO_TEST("pci-rom");
305

306
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
307
    DO_TEST_DIFFERENT("memtune");
308
    DO_TEST_DIFFERENT("memtune-unlimited");
309
    DO_TEST("blkiotune");
310
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
311
    DO_TEST("cputune");
312
    DO_TEST("cputune-zero-shares");
313

314
    DO_TEST("smp");
J
John Ferlan 已提交
315
    DO_TEST("iothreads");
E
Eric Blake 已提交
316
    DO_TEST_DIFFERENT("cputune-iothreads");
317
    DO_TEST("iothreads-disk");
318
    DO_TEST("iothreads-disk-virtio-ccw");
319
    DO_TEST("lease");
320
    DO_TEST("event_idx");
321
    DO_TEST("vhost_queues");
322
    DO_TEST("interface-driver");
323
    DO_TEST("virtio-lun");
324

325
    DO_TEST("usb-redir");
L
Lei Li 已提交
326
    DO_TEST("blkdeviotune");
327

328 329
    DO_TEST_FULL("seclabel-dynamic-baselabel", false, WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-override", false, WHEN_INACTIVE);
330
    DO_TEST_FULL("seclabel-dynamic-labelskip", true, WHEN_INACTIVE);
331
    DO_TEST_FULL("seclabel-dynamic-relabel", true, WHEN_INACTIVE);
332
    DO_TEST("seclabel-static");
333
    DO_TEST_FULL("seclabel-static-labelskip", false, WHEN_ACTIVE);
334
    DO_TEST_DIFFERENT("seclabel-none");
335
    DO_TEST("seclabel-dac-none");
336
    DO_TEST("seclabel-dynamic-none");
337
    DO_TEST_FULL("seclabel-dynamic-none-relabel", true, WHEN_INACTIVE);
338
    DO_TEST("numad-static-vcpu-no-numatune");
O
Osier Yang 已提交
339
    DO_TEST("disk-scsi-lun-passthrough-sgio");
340

341
    DO_TEST("disk-scsi-disk-vpd");
342
    DO_TEST_DIFFERENT("disk-source-pool");
343
    DO_TEST("disk-source-pool-mode");
344

345
    DO_TEST_DIFFERENT("disk-drive-discard");
O
Osier Yang 已提交
346

347 348 349
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

350 351
    DO_TEST("pseries-nvram");

352 353 354 355 356
    /* These tests generate different XML */
    DO_TEST_DIFFERENT("balloon-device-auto");
    DO_TEST_DIFFERENT("channel-virtio-auto");
    DO_TEST_DIFFERENT("console-compat-auto");
    DO_TEST_DIFFERENT("disk-scsi-device-auto");
C
Cole Robinson 已提交
357
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
358
    DO_TEST_DIFFERENT("serial-target-port-auto");
359
    DO_TEST_DIFFERENT("graphics-listen-network2");
360
    DO_TEST_DIFFERENT("graphics-spice-timeout");
361
    DO_TEST_DIFFERENT("numad-auto-vcpu-no-numatune");
362 363
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-no-cpuset-and-placement");
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-cpuset");
364
    DO_TEST_DIFFERENT("usb-ich9-ehci-addr");
365

366 367
    DO_TEST_DIFFERENT("metadata");

368
    DO_TEST("tpm-passthrough");
369
    DO_TEST("pci-bridge");
370
    DO_TEST_DIFFERENT("pci-bridge-many-disks");
371 372
    DO_TEST_DIFFERENT("pci-autoadd-addr");
    DO_TEST_DIFFERENT("pci-autoadd-idx");
373
    DO_TEST_DIFFERENT("pcie-root");
374
    DO_TEST_DIFFERENT("q35");
375

376 377
    DO_TEST("hostdev-scsi-lsi");
    DO_TEST("hostdev-scsi-virtio-scsi");
O
Osier Yang 已提交
378
    DO_TEST("hostdev-scsi-readonly");
H
Han Cheng 已提交
379

380
    DO_TEST("disk-copy_on_read");
381
    DO_TEST("hostdev-scsi-shareable");
O
Osier Yang 已提交
382
    DO_TEST("hostdev-scsi-sgio");
383
    DO_TEST("hostdev-scsi-rawio");
384

385 386
    DO_TEST_DIFFERENT("hostdev-scsi-autogen-address");

J
John Ferlan 已提交
387 388 389 390 391
    DO_TEST("hostdev-scsi-lsi-iscsi");
    DO_TEST("hostdev-scsi-lsi-iscsi-auth");
    DO_TEST("hostdev-scsi-virtio-iscsi");
    DO_TEST("hostdev-scsi-virtio-iscsi-auth");

392 393
    DO_TEST_DIFFERENT("s390-defaultconsole");

394 395 396 397 398
    DO_TEST("pcihole64");
    DO_TEST_DIFFERENT("pcihole64-gib");
    DO_TEST("pcihole64-none");
    DO_TEST("pcihole64-q35");

H
Hu Tao 已提交
399 400
    DO_TEST("panic");

401 402
    DO_TEST_DIFFERENT("disk-backing-chains");

J
Ján Tomko 已提交
403 404
    DO_TEST("chardev-label");

405 406
    DO_TEST_DIFFERENT("cpu-numa1");
    DO_TEST_DIFFERENT("cpu-numa2");
407
    DO_TEST("cpu-numa-disjoint");
408
    DO_TEST("cpu-numa-memshared");
409

410
    DO_TEST_DIFFERENT("numatune-auto-prefer");
411 412
    DO_TEST_DIFFERENT("numatune-memnode");
    DO_TEST("numatune-memnode-no-memory");
413

414 415
    DO_TEST("bios-nvram");

416
    DO_TEST("tap-vhost");
417
    DO_TEST("shmem");
418
    DO_TEST("smbios");
419

420
    virObjectUnref(driver.caps);
421
    virObjectUnref(driver.xmlopt);
422

423
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
424 425
}

426 427
VIRT_TEST_MAIN(mymain)

428 429
#else

430 431 432 433 434
int
main(void)
{
    return EXIT_AM_SKIP;
}
435 436

#endif /* WITH_QEMU */