qemuxml2xmltest.c 7.6 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
#ifdef WITH_QEMU

13 14 15
# include "internal.h"
# include "testutils.h"
# include "qemu/qemu_conf.h"
M
Matthias Bolte 已提交
16
# include "qemu/qemu_domain.h"
17
# include "testutilsqemu.h"
18

19
static virQEMUDriver driver;
20

21
static int
E
Eric Blake 已提交
22
testCompareXMLToXMLFiles(const char *inxml, const char *outxml, bool live)
23 24 25
{
    char *inXmlData = NULL;
    char *outXmlData = NULL;
26 27
    char *actual = NULL;
    int ret = -1;
28
    virDomainDefPtr def = NULL;
29

30
    if (virtTestLoadFile(inxml, &inXmlData) < 0)
31
        goto fail;
32
    if (virtTestLoadFile(outxml, &outXmlData) < 0)
33 34
        goto fail;

35
    if (!(def = virDomainDefParseString(driver.caps, driver.xmlconf, inXmlData,
M
Matthias Bolte 已提交
36
                                        QEMU_EXPECTED_VIRT_TYPES,
E
Eric Blake 已提交
37
                                        live ? 0 : VIR_DOMAIN_XML_INACTIVE)))
38 39
        goto fail;

40
    if (!(actual = virDomainDefFormat(def, VIR_DOMAIN_XML_SECURE)))
41 42
        goto fail;

43 44
    if (STRNEQ(outXmlData, actual)) {
        virtTestDifference(stderr, outXmlData, actual);
45 46 47 48 49
        goto fail;
    }

    ret = 0;
 fail:
50 51 52
    VIR_FREE(inXmlData);
    VIR_FREE(outXmlData);
    VIR_FREE(actual);
53
    virDomainDefFree(def);
54 55 56
    return ret;
}

57 58 59 60 61 62
enum {
    WHEN_INACTIVE = 1,
    WHEN_ACTIVE = 2,
    WHEN_EITHER = 3,
};

63 64
struct testInfo {
    const char *name;
65 66
    bool different;
    int when;
67 68
};

69 70 71
static int
testCompareXMLToXMLHelper(const void *data)
{
72
    const struct testInfo *info = data;
73 74 75
    char *xml_in = NULL;
    char *xml_out = NULL;
    int ret = -1;
76

77 78 79 80 81
    if (virAsprintf(&xml_in, "%s/qemuxml2argvdata/qemuxml2argv-%s.xml",
                    abs_srcdir, info->name) < 0 ||
        virAsprintf(&xml_out, "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
                    abs_srcdir, info->name) < 0)
        goto cleanup;
82

83 84 85 86
    if (info->when & WHEN_INACTIVE) {
        ret = testCompareXMLToXMLFiles(xml_in,
                                       info->different ? xml_out : xml_in,
                                       false);
E
Eric Blake 已提交
87
    }
88 89 90 91
    if (info->when & WHEN_ACTIVE) {
        ret = testCompareXMLToXMLFiles(xml_in,
                                       info->different ? xml_out : xml_in,
                                       true);
92 93
    }

94
cleanup:
95 96
    VIR_FREE(xml_in);
    VIR_FREE(xml_out);
97
    return ret;
98 99 100
}


101
static int
E
Eric Blake 已提交
102
mymain(void)
103 104
{
    int ret = 0;
105

106
    if ((driver.caps = testQemuCapsInit()) == NULL)
107
        return EXIT_FAILURE;
108

109 110 111
    if (!(driver.xmlconf = virQEMUDriverCreateXMLConf()))
        return EXIT_FAILURE;

112
# define DO_TEST_FULL(name, is_different, when)                         \
113
    do {                                                                \
114
        const struct testInfo info = {name, is_different, when};        \
115 116 117 118 119
        if (virtTestRun("QEMU XML-2-XML " name,                         \
                        1, testCompareXMLToXMLHelper, &info) < 0)       \
            ret = -1;                                                   \
    } while (0)

120
# define DO_TEST(name) \
121
    DO_TEST_FULL(name, false, WHEN_EITHER)
122 123

# define DO_TEST_DIFFERENT(name) \
124
    DO_TEST_FULL(name, true, WHEN_EITHER)
125 126 127 128 129

    /* 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);
130 131

    DO_TEST("minimal");
132 133
    DO_TEST("machine-core-on");
    DO_TEST("machine-core-off");
134 135 136
    DO_TEST("boot-cdrom");
    DO_TEST("boot-network");
    DO_TEST("boot-floppy");
137 138
    DO_TEST("boot-multi");
    DO_TEST("boot-menu-disable");
139
    DO_TEST("boot-order");
D
Daniel P. Berrange 已提交
140
    DO_TEST("bootloader");
141 142 143 144

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

145 146
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
147 148 149
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
    DO_TEST("kvmclock");
150 151 152 153 154 155

    DO_TEST("cpu-eoi-disabled");
    DO_TEST("cpu-eoi-enabled");
    DO_TEST("eoi-disabled");
    DO_TEST("eoi-enabled");

156 157
    DO_TEST("hyperv");

158
    DO_TEST("hugepages");
E
Eric Blake 已提交
159
    DO_TEST("disk-aio");
160 161 162
    DO_TEST("disk-cdrom");
    DO_TEST("disk-floppy");
    DO_TEST("disk-many");
163
    DO_TEST("disk-xenvbd");
164
    DO_TEST("disk-usb");
165
    DO_TEST("disk-virtio");
166 167
    DO_TEST("floppy-drive-fat");
    DO_TEST("disk-drive-fat");
168
    DO_TEST("disk-drive-fmt-qcow");
169 170 171
    DO_TEST("disk-drive-cache-v1-wt");
    DO_TEST("disk-drive-cache-v1-wb");
    DO_TEST("disk-drive-cache-v1-none");
172
    DO_TEST("disk-drive-network-nbd");
173
    DO_TEST("disk-scsi-device");
174 175
    DO_TEST("disk-scsi-vscsi");
    DO_TEST("disk-scsi-virtio-scsi");
176 177
    DO_TEST_FULL("disk-mirror", false, WHEN_ACTIVE);
    DO_TEST_FULL("disk-mirror", true, WHEN_INACTIVE);
178
    DO_TEST("graphics-listen-network");
179
    DO_TEST("graphics-vnc");
180 181
    DO_TEST("graphics-vnc-sasl");
    DO_TEST("graphics-vnc-tls");
182
    DO_TEST("graphics-sdl");
183
    DO_TEST("graphics-sdl-fullscreen");
184
    DO_TEST("graphics-spice");
185
    DO_TEST("graphics-spice-compression");
186
    DO_TEST("graphics-spice-qxl-vga");
187 188
    DO_TEST("input-usbmouse");
    DO_TEST("input-usbtablet");
189
    DO_TEST("input-xen");
190
    DO_TEST("misc-acpi");
191 192 193
    DO_TEST("misc-disable-s3");
    DO_TEST("misc-disable-suspends");
    DO_TEST("misc-enable-s4");
194 195
    DO_TEST("misc-no-reboot");
    DO_TEST("net-user");
196
    DO_TEST("net-virtio");
197
    DO_TEST("net-virtio-device");
198 199
    DO_TEST("net-eth");
    DO_TEST("net-eth-ifname");
200
    DO_TEST("net-virtio-network-portgroup");
201
    DO_TEST("net-hostdev");
202
    DO_TEST("net-openvswitch");
203
    DO_TEST("sound");
204
    DO_TEST("sound-device");
205
    DO_TEST("net-bandwidth");
206 207 208 209 210 211 212 213 214 215 216 217

    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");
    DO_TEST("parallel-tcp");
    DO_TEST("console-compat");
218
    DO_TEST("console-virtio-many");
219
    DO_TEST("channel-guestfwd");
220
    DO_TEST("channel-virtio");
221

222
    DO_TEST("hostdev-usb-address");
223
    DO_TEST("hostdev-pci-address");
224
    DO_TEST("pci-rom");
225

226
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
227
    DO_TEST_DIFFERENT("memtune");
228
    DO_TEST("blkiotune");
229
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
230
    DO_TEST("cputune");
231

232
    DO_TEST("smp");
233
    DO_TEST("lease");
234
    DO_TEST("event_idx");
235
    DO_TEST("virtio-lun");
236

237
    DO_TEST("usb-redir");
L
Lei Li 已提交
238
    DO_TEST("blkdeviotune");
239

240 241
    DO_TEST_FULL("seclabel-dynamic-baselabel", false, WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-override", false, WHEN_INACTIVE);
242
    DO_TEST("seclabel-static");
E
Eric Blake 已提交
243
    DO_TEST("seclabel-none");
244
    DO_TEST("numad-static-vcpu-no-numatune");
O
Osier Yang 已提交
245
    DO_TEST("disk-scsi-lun-passthrough-sgio");
246

247 248
    DO_TEST("disk-scsi-disk-vpd");

249 250 251
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

252 253 254 255 256
    /* 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 已提交
257
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
258
    DO_TEST_DIFFERENT("serial-target-port-auto");
259
    DO_TEST_DIFFERENT("graphics-listen-network2");
260
    DO_TEST_DIFFERENT("graphics-spice-timeout");
261
    DO_TEST_DIFFERENT("numad-auto-vcpu-no-numatune");
262 263
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-no-cpuset-and-placement");
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-cpuset");
264
    DO_TEST_DIFFERENT("usb-ich9-ehci-addr");
265

266 267
    DO_TEST_DIFFERENT("metadata");

268
    virObjectUnref(driver.caps);
269
    virObjectUnref(driver.xmlconf);
270

271
    return ret==0 ? EXIT_SUCCESS : EXIT_FAILURE;
272 273
}

274 275
VIRT_TEST_MAIN(mymain)

276
#else
E
Eric Blake 已提交
277
# include "testutils.h"
278

279 280 281 282 283
int
main(void)
{
    return EXIT_AM_SKIP;
}
284 285

#endif /* WITH_QEMU */