qemuxml2xmltest.c 6.4 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 struct qemud_driver 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, 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
struct testInfo {
    const char *name;
    int different;
E
Eric Blake 已提交
60
    bool inactive_only;
61 62
};

63 64 65
static int
testCompareXMLToXMLHelper(const void *data)
{
66
    const struct testInfo *info = data;
67 68 69
    char *xml_in = NULL;
    char *xml_out = NULL;
    int ret = -1;
70

71 72 73 74 75
    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;
76 77

    if (info->different) {
E
Eric Blake 已提交
78
        ret = testCompareXMLToXMLFiles(xml_in, xml_out, false);
79
    } else {
E
Eric Blake 已提交
80 81 82 83 84 85 86 87
        ret = testCompareXMLToXMLFiles(xml_in, xml_in, false);
    }
    if (!info->inactive_only) {
        if (info->different) {
            ret = testCompareXMLToXMLFiles(xml_in, xml_out, true);
        } else {
            ret = testCompareXMLToXMLFiles(xml_in, xml_in, true);
        }
88 89
    }

90
cleanup:
91 92
    VIR_FREE(xml_in);
    VIR_FREE(xml_out);
93
    return ret;
94 95 96
}


97
static int
E
Eric Blake 已提交
98
mymain(void)
99 100
{
    int ret = 0;
101

102 103
    if ((driver.caps = testQemuCapsInit()) == NULL)
        return (EXIT_FAILURE);
104

E
Eric Blake 已提交
105
# define DO_TEST_FULL(name, is_different, inactive)                     \
106
    do {                                                                \
E
Eric Blake 已提交
107
        const struct testInfo info = {name, is_different, inactive};    \
108 109 110 111 112
        if (virtTestRun("QEMU XML-2-XML " name,                         \
                        1, testCompareXMLToXMLHelper, &info) < 0)       \
            ret = -1;                                                   \
    } while (0)

113
# define DO_TEST(name) \
E
Eric Blake 已提交
114
    DO_TEST_FULL(name, 0, false)
115 116

# define DO_TEST_DIFFERENT(name) \
E
Eric Blake 已提交
117
    DO_TEST_FULL(name, 1, false)
118 119 120 121 122

    /* 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);
123 124 125 126 127

    DO_TEST("minimal");
    DO_TEST("boot-cdrom");
    DO_TEST("boot-network");
    DO_TEST("boot-floppy");
128 129
    DO_TEST("boot-multi");
    DO_TEST("boot-menu-disable");
130
    DO_TEST("boot-order");
D
Daniel P. Berrange 已提交
131
    DO_TEST("bootloader");
132 133
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
134 135 136
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
    DO_TEST("kvmclock");
137
    DO_TEST("hugepages");
E
Eric Blake 已提交
138
    DO_TEST("disk-aio");
139 140 141
    DO_TEST("disk-cdrom");
    DO_TEST("disk-floppy");
    DO_TEST("disk-many");
142
    DO_TEST("disk-xenvbd");
143
    DO_TEST("disk-usb");
144
    DO_TEST("disk-virtio");
145 146
    DO_TEST("floppy-drive-fat");
    DO_TEST("disk-drive-fat");
147
    DO_TEST("disk-drive-fmt-qcow");
148 149 150
    DO_TEST("disk-drive-cache-v1-wt");
    DO_TEST("disk-drive-cache-v1-wb");
    DO_TEST("disk-drive-cache-v1-none");
151
    DO_TEST("disk-scsi-device");
152 153
    DO_TEST("disk-scsi-vscsi");
    DO_TEST("disk-scsi-virtio-scsi");
154
    DO_TEST("graphics-listen-network");
155
    DO_TEST("graphics-vnc");
156 157
    DO_TEST("graphics-vnc-sasl");
    DO_TEST("graphics-vnc-tls");
158
    DO_TEST("graphics-sdl");
159
    DO_TEST("graphics-sdl-fullscreen");
160
    DO_TEST("graphics-spice");
161
    DO_TEST("graphics-spice-compression");
162
    DO_TEST("graphics-spice-qxl-vga");
163 164
    DO_TEST("input-usbmouse");
    DO_TEST("input-usbtablet");
165
    DO_TEST("input-xen");
166 167 168
    DO_TEST("misc-acpi");
    DO_TEST("misc-no-reboot");
    DO_TEST("net-user");
169
    DO_TEST("net-virtio");
170
    DO_TEST("net-virtio-device");
171 172
    DO_TEST("net-eth");
    DO_TEST("net-eth-ifname");
173
    DO_TEST("net-virtio-network-portgroup");
174
    DO_TEST("net-hostdev");
175
    DO_TEST("sound");
176
    DO_TEST("net-bandwidth");
177 178 179 180 181 182 183 184 185 186 187 188

    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");
189
    DO_TEST("console-virtio-many");
190
    DO_TEST("channel-guestfwd");
191
    DO_TEST("channel-virtio");
192

193
    DO_TEST("hostdev-usb-address");
194
    DO_TEST("hostdev-pci-address");
195
    DO_TEST("pci-rom");
196

197
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
198
    DO_TEST_DIFFERENT("memtune");
199
    DO_TEST("blkiotune");
200
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
201
    DO_TEST("cputune");
202

203
    DO_TEST("smp");
204
    DO_TEST("lease");
205
    DO_TEST("event_idx");
206
    DO_TEST("virtio-lun");
207

208
    DO_TEST("usb-redir");
L
Lei Li 已提交
209
    DO_TEST("blkdeviotune");
210

E
Eric Blake 已提交
211 212
    DO_TEST_FULL("seclabel-dynamic-baselabel", false, true);
    DO_TEST_FULL("seclabel-dynamic-override", false, true);
213
    DO_TEST("seclabel-static");
E
Eric Blake 已提交
214
    DO_TEST("seclabel-none");
215

216 217 218 219 220
    /* 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 已提交
221
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
222
    DO_TEST_DIFFERENT("serial-target-port-auto");
223
    DO_TEST_DIFFERENT("graphics-listen-network2");
224
    DO_TEST_DIFFERENT("graphics-spice-timeout");
225

226 227
    DO_TEST_DIFFERENT("metadata");

228
    virCapabilitiesFree(driver.caps);
229

230
    return (ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
231 232
}

233 234
VIRT_TEST_MAIN(mymain)

235
#else
E
Eric Blake 已提交
236
# include "testutils.h"
237

238 239 240 241 242
int
main(void)
{
    return EXIT_AM_SKIP;
}
243 244

#endif /* WITH_QEMU */