qemuxml2xmltest.c 10.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
    unsigned int flags = live ? 0 : VIR_DOMAIN_XML_INACTIVE;
34

35
    if (virtTestLoadFile(inxml, &inXmlData) < 0)
36
        goto fail;
37
    if (virtTestLoadFile(outxml, &outXmlData) < 0)
38 39
        goto fail;

40
    if (!(def = virDomainDefParseString(inXmlData, driver.caps, driver.xmlopt,
41
                                        QEMU_EXPECTED_VIRT_TYPES, flags)))
42 43
        goto fail;

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

49
    if (!(actual = virDomainDefFormat(def, VIR_DOMAIN_XML_SECURE | flags)))
50 51
        goto fail;

52 53
    if (STRNEQ(outXmlData, actual)) {
        virtTestDifference(stderr, outXmlData, actual);
54 55 56 57 58
        goto fail;
    }

    ret = 0;
 fail:
59 60 61
    VIR_FREE(inXmlData);
    VIR_FREE(outXmlData);
    VIR_FREE(actual);
62
    virDomainDefFree(def);
63 64 65
    return ret;
}

66 67 68 69 70 71
enum {
    WHEN_INACTIVE = 1,
    WHEN_ACTIVE = 2,
    WHEN_EITHER = 3,
};

72 73
struct testInfo {
    const char *name;
74 75
    bool different;
    int when;
76 77
};

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

88 89 90
    if (virAsprintf(&xml_in, "%s/qemuxml2argvdata/qemuxml2argv-%s.xml",
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&xml_out, "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
91 92 93 94 95 96
                    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",
97 98
                    abs_srcdir, info->name) < 0)
        goto cleanup;
99

100 101 102 103 104 105 106 107 108 109 110 111
    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;
    }
112

113 114 115 116 117 118 119 120 121 122 123 124
    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;
    }
125 126

    ret = 0;
127

128
 cleanup:
129 130
    VIR_FREE(xml_in);
    VIR_FREE(xml_out);
131 132
    VIR_FREE(xml_out_active);
    VIR_FREE(xml_out_inactive);
133
    return ret;
134 135 136
}


137
static int
E
Eric Blake 已提交
138
mymain(void)
139 140
{
    int ret = 0;
141

142
    if ((driver.caps = testQemuCapsInit()) == NULL)
143
        return EXIT_FAILURE;
144

145
    if (!(driver.xmlopt = virQEMUDriverCreateXMLConf(&driver)))
146 147
        return EXIT_FAILURE;

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

156
# define DO_TEST(name) \
157
    DO_TEST_FULL(name, false, WHEN_EITHER)
158 159

# define DO_TEST_DIFFERENT(name) \
160
    DO_TEST_FULL(name, true, WHEN_EITHER)
161 162 163 164 165

    /* 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);
166 167

    DO_TEST("minimal");
168 169
    DO_TEST("machine-core-on");
    DO_TEST("machine-core-off");
170 171 172
    DO_TEST("boot-cdrom");
    DO_TEST("boot-network");
    DO_TEST("boot-floppy");
173 174
    DO_TEST("boot-multi");
    DO_TEST("boot-menu-disable");
175
    DO_TEST("boot-order");
D
Daniel P. Berrange 已提交
176
    DO_TEST("bootloader");
177 178 179 180

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

181 182
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
183 184
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
185
    DO_TEST("clock-catchup");
186
    DO_TEST("kvmclock");
187
    DO_TEST("clock-timer-hyperv-rtc");
188 189 190 191 192

    DO_TEST("cpu-eoi-disabled");
    DO_TEST("cpu-eoi-enabled");
    DO_TEST("eoi-disabled");
    DO_TEST("eoi-enabled");
193 194
    DO_TEST("pv-spinlock-disabled");
    DO_TEST("pv-spinlock-enabled");
195

196
    DO_TEST("hyperv");
197
    DO_TEST("hyperv-off");
198

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

    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");
273 274
    DO_TEST("serial-spiceport");
    DO_TEST("serial-spiceport-nospice");
275 276
    DO_TEST("parallel-tcp");
    DO_TEST("console-compat");
277
    DO_TEST("console-virtio-many");
278
    DO_TEST("channel-guestfwd");
279
    DO_TEST("channel-virtio");
280

281
    DO_TEST("hostdev-usb-address");
282
    DO_TEST("hostdev-pci-address");
283
    DO_TEST("hostdev-vfio");
284
    DO_TEST("pci-rom");
285

286
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
287
    DO_TEST_DIFFERENT("memtune");
288
    DO_TEST_DIFFERENT("memtune-unlimited");
289
    DO_TEST("blkiotune");
290
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
291
    DO_TEST("cputune");
292
    DO_TEST("cputune-zero-shares");
293

294
    DO_TEST("smp");
295
    DO_TEST("lease");
296
    DO_TEST("event_idx");
297
    DO_TEST("vhost_queues");
298
    DO_TEST("virtio-lun");
299

300
    DO_TEST("usb-redir");
L
Lei Li 已提交
301
    DO_TEST("blkdeviotune");
302

303 304
    DO_TEST_FULL("seclabel-dynamic-baselabel", false, WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-override", false, WHEN_INACTIVE);
305
    DO_TEST_FULL("seclabel-dynamic-labelskip", true, WHEN_INACTIVE);
306
    DO_TEST_FULL("seclabel-dynamic-relabel", false, WHEN_INACTIVE);
307
    DO_TEST("seclabel-static");
308
    DO_TEST_FULL("seclabel-static-labelskip", false, WHEN_ACTIVE);
E
Eric Blake 已提交
309
    DO_TEST("seclabel-none");
310
    DO_TEST("seclabel-dac-none");
311
    DO_TEST("seclabel-dynamic-none");
312
    DO_TEST("numad-static-vcpu-no-numatune");
O
Osier Yang 已提交
313
    DO_TEST("disk-scsi-lun-passthrough-sgio");
314

315
    DO_TEST("disk-scsi-disk-vpd");
316
    DO_TEST_DIFFERENT("disk-source-pool");
317
    DO_TEST("disk-source-pool-mode");
318

319
    DO_TEST_DIFFERENT("disk-drive-discard");
O
Osier Yang 已提交
320

321 322 323
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

324 325
    DO_TEST("pseries-nvram");

326 327 328 329 330
    /* 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 已提交
331
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
332
    DO_TEST_DIFFERENT("serial-target-port-auto");
333
    DO_TEST_DIFFERENT("graphics-listen-network2");
334
    DO_TEST_DIFFERENT("graphics-spice-timeout");
335
    DO_TEST_DIFFERENT("numad-auto-vcpu-no-numatune");
336 337
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-no-cpuset-and-placement");
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-cpuset");
338
    DO_TEST_DIFFERENT("usb-ich9-ehci-addr");
339

340 341
    DO_TEST_DIFFERENT("metadata");

342
    DO_TEST("tpm-passthrough");
343
    DO_TEST("pci-bridge");
344
    DO_TEST_DIFFERENT("pci-bridge-many-disks");
345 346
    DO_TEST_DIFFERENT("pci-autoadd-addr");
    DO_TEST_DIFFERENT("pci-autoadd-idx");
347
    DO_TEST_DIFFERENT("pcie-root");
348
    DO_TEST_DIFFERENT("q35");
349

350 351
    DO_TEST("hostdev-scsi-lsi");
    DO_TEST("hostdev-scsi-virtio-scsi");
O
Osier Yang 已提交
352
    DO_TEST("hostdev-scsi-readonly");
H
Han Cheng 已提交
353

354
    DO_TEST("disk-copy_on_read");
355
    DO_TEST("hostdev-scsi-shareable");
O
Osier Yang 已提交
356
    DO_TEST("hostdev-scsi-sgio");
357

358 359
    DO_TEST_DIFFERENT("hostdev-scsi-autogen-address");

360 361
    DO_TEST_DIFFERENT("s390-defaultconsole");

362 363 364 365 366
    DO_TEST("pcihole64");
    DO_TEST_DIFFERENT("pcihole64-gib");
    DO_TEST("pcihole64-none");
    DO_TEST("pcihole64-q35");

H
Hu Tao 已提交
367 368
    DO_TEST("panic");

369 370
    DO_TEST_DIFFERENT("disk-backing-chains");

J
Ján Tomko 已提交
371 372
    DO_TEST("chardev-label");

373 374 375
    DO_TEST_DIFFERENT("cpu-numa1");
    DO_TEST_DIFFERENT("cpu-numa2");

376
    virObjectUnref(driver.caps);
377
    virObjectUnref(driver.xmlopt);
378

379
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
380 381
}

382 383
VIRT_TEST_MAIN(mymain)

384 385
#else

386 387 388 389 390
int
main(void)
{
    return EXIT_AM_SKIP;
}
391 392

#endif /* WITH_QEMU */