qemuxml2xmltest.c 12.8 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");
181 182 183 184

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

185 186
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
187 188
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
189
    DO_TEST("cpu-host-passthrough-features");
190
    DO_TEST("cpu-host-model-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 209 210
    DO_TEST_DIFFERENT("pmu-feature");
    DO_TEST("pmu-feature-off");

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

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

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

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

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

328
    DO_TEST("usb-redir");
L
Lei Li 已提交
329
    DO_TEST("blkdeviotune");
330

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

345
    DO_TEST("disk-scsi-disk-vpd");
346
    DO_TEST_DIFFERENT("disk-source-pool");
347
    DO_TEST("disk-source-pool-mode");
348

349
    DO_TEST_DIFFERENT("disk-drive-discard");
O
Osier Yang 已提交
350

351 352 353
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

354 355
    DO_TEST("pseries-nvram");

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

371
    DO_TEST_DIFFERENT("metadata");
372
    DO_TEST_DIFFERENT("metadata-duplicate");
373

374
    DO_TEST("tpm-passthrough");
375
    DO_TEST("pci-bridge");
376
    DO_TEST_DIFFERENT("pci-bridge-many-disks");
377 378
    DO_TEST_DIFFERENT("pci-autoadd-addr");
    DO_TEST_DIFFERENT("pci-autoadd-idx");
379
    DO_TEST_DIFFERENT("pcie-root");
380
    DO_TEST_DIFFERENT("q35");
381

382 383
    DO_TEST("hostdev-scsi-lsi");
    DO_TEST("hostdev-scsi-virtio-scsi");
O
Osier Yang 已提交
384
    DO_TEST("hostdev-scsi-readonly");
H
Han Cheng 已提交
385

386
    DO_TEST("disk-copy_on_read");
387
    DO_TEST("hostdev-scsi-shareable");
O
Osier Yang 已提交
388
    DO_TEST("hostdev-scsi-sgio");
389
    DO_TEST("hostdev-scsi-rawio");
390

391 392
    DO_TEST_DIFFERENT("hostdev-scsi-autogen-address");

J
John Ferlan 已提交
393 394 395 396 397
    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");

398 399
    DO_TEST_DIFFERENT("s390-defaultconsole");

400 401 402 403 404
    DO_TEST("pcihole64");
    DO_TEST_DIFFERENT("pcihole64-gib");
    DO_TEST("pcihole64-none");
    DO_TEST("pcihole64-q35");

H
Hu Tao 已提交
405
    DO_TEST("panic");
406
    DO_TEST("panic-no-address");
H
Hu Tao 已提交
407

408 409
    DO_TEST_DIFFERENT("disk-backing-chains");

J
Ján Tomko 已提交
410 411
    DO_TEST("chardev-label");

412 413
    DO_TEST_DIFFERENT("cpu-numa1");
    DO_TEST_DIFFERENT("cpu-numa2");
414
    DO_TEST_DIFFERENT("cpu-numa-no-memory-element");
415
    DO_TEST("cpu-numa-disjoint");
416
    DO_TEST("cpu-numa-memshared");
417

418
    DO_TEST_DIFFERENT("numatune-auto-prefer");
419 420
    DO_TEST_DIFFERENT("numatune-memnode");
    DO_TEST("numatune-memnode-no-memory");
421

422
    DO_TEST("bios-nvram");
423
    DO_TEST_DIFFERENT("bios-nvram-os-interleave");
424

425
    DO_TEST("tap-vhost");
426
    DO_TEST_DIFFERENT("tap-vhost-incorrect");
427
    DO_TEST("shmem");
428
    DO_TEST("smbios");
429
    DO_TEST("aarch64-aavmf-virtio-mmio");
430

431
    virObjectUnref(driver.caps);
432
    virObjectUnref(driver.xmlopt);
433

434
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
435 436
}

437 438
VIRT_TEST_MAIN(mymain)

439 440
#else

441 442 443 444 445
int
main(void)
{
    return EXIT_AM_SKIP;
}
446 447

#endif /* WITH_QEMU */