qemuxml2xmltest.c 12.2 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("clock-catchup");
192
    DO_TEST("kvmclock");
193
    DO_TEST("clock-timer-hyperv-rtc");
194 195 196 197 198

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

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

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

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

    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");
288 289
    DO_TEST("serial-spiceport");
    DO_TEST("serial-spiceport-nospice");
290 291
    DO_TEST("parallel-tcp");
    DO_TEST("console-compat");
292
    DO_TEST("console-virtio-many");
293
    DO_TEST("channel-guestfwd");
294
    DO_TEST("channel-virtio");
295
    DO_TEST_DIFFERENT("channel-virtio-state");
296

297
    DO_TEST("hostdev-usb-address");
298
    DO_TEST("hostdev-pci-address");
299
    DO_TEST("hostdev-vfio");
300
    DO_TEST("pci-rom");
301

302
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
303
    DO_TEST_DIFFERENT("memtune");
304
    DO_TEST_DIFFERENT("memtune-unlimited");
305
    DO_TEST("blkiotune");
306
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
307
    DO_TEST("cputune");
308
    DO_TEST("cputune-zero-shares");
309

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

321
    DO_TEST("usb-redir");
L
Lei Li 已提交
322
    DO_TEST("blkdeviotune");
323

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

337
    DO_TEST("disk-scsi-disk-vpd");
338
    DO_TEST_DIFFERENT("disk-source-pool");
339
    DO_TEST("disk-source-pool-mode");
340

341
    DO_TEST_DIFFERENT("disk-drive-discard");
O
Osier Yang 已提交
342

343 344 345
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

346 347
    DO_TEST("pseries-nvram");

348 349 350 351 352
    /* 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 已提交
353
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
354
    DO_TEST_DIFFERENT("serial-target-port-auto");
355
    DO_TEST_DIFFERENT("graphics-listen-network2");
356
    DO_TEST_DIFFERENT("graphics-spice-timeout");
357
    DO_TEST_DIFFERENT("numad-auto-vcpu-no-numatune");
358 359
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-no-cpuset-and-placement");
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-cpuset");
360
    DO_TEST_DIFFERENT("usb-ich9-ehci-addr");
361

362 363
    DO_TEST_DIFFERENT("metadata");

364
    DO_TEST("tpm-passthrough");
365
    DO_TEST("pci-bridge");
366
    DO_TEST_DIFFERENT("pci-bridge-many-disks");
367 368
    DO_TEST_DIFFERENT("pci-autoadd-addr");
    DO_TEST_DIFFERENT("pci-autoadd-idx");
369
    DO_TEST_DIFFERENT("pcie-root");
370
    DO_TEST_DIFFERENT("q35");
371

372 373
    DO_TEST("hostdev-scsi-lsi");
    DO_TEST("hostdev-scsi-virtio-scsi");
O
Osier Yang 已提交
374
    DO_TEST("hostdev-scsi-readonly");
H
Han Cheng 已提交
375

376
    DO_TEST("disk-copy_on_read");
377
    DO_TEST("hostdev-scsi-shareable");
O
Osier Yang 已提交
378
    DO_TEST("hostdev-scsi-sgio");
379
    DO_TEST("hostdev-scsi-rawio");
380

381 382
    DO_TEST_DIFFERENT("hostdev-scsi-autogen-address");

J
John Ferlan 已提交
383 384 385 386 387
    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");

388 389
    DO_TEST_DIFFERENT("s390-defaultconsole");

390 391 392 393 394
    DO_TEST("pcihole64");
    DO_TEST_DIFFERENT("pcihole64-gib");
    DO_TEST("pcihole64-none");
    DO_TEST("pcihole64-q35");

H
Hu Tao 已提交
395 396
    DO_TEST("panic");

397 398
    DO_TEST_DIFFERENT("disk-backing-chains");

J
Ján Tomko 已提交
399 400
    DO_TEST("chardev-label");

401 402
    DO_TEST_DIFFERENT("cpu-numa1");
    DO_TEST_DIFFERENT("cpu-numa2");
403
    DO_TEST("cpu-numa-disjoint");
404
    DO_TEST("cpu-numa-memshared");
405

406
    DO_TEST_DIFFERENT("numatune-auto-prefer");
407 408
    DO_TEST_DIFFERENT("numatune-memnode");
    DO_TEST("numatune-memnode-no-memory");
409

410 411
    DO_TEST("bios-nvram");

412
    DO_TEST("tap-vhost");
413
    DO_TEST("shmem");
414
    DO_TEST("smbios");
415

416
    virObjectUnref(driver.caps);
417
    virObjectUnref(driver.xmlopt);
418

419
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
420 421
}

422 423
VIRT_TEST_MAIN(mymain)

424 425
#else

426 427 428 429 430
int
main(void)
{
    return EXIT_AM_SKIP;
}
431 432

#endif /* WITH_QEMU */