qemuxml2xmltest.c 6.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 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 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
# define DO_TEST_FULL(name, is_different, when)                         \
110
    do {                                                                \
111
        const struct testInfo info = {name, is_different, when};        \
112 113 114 115 116
        if (virtTestRun("QEMU XML-2-XML " name,                         \
                        1, testCompareXMLToXMLHelper, &info) < 0)       \
            ret = -1;                                                   \
    } while (0)

117
# define DO_TEST(name) \
118
    DO_TEST_FULL(name, false, WHEN_EITHER)
119 120

# define DO_TEST_DIFFERENT(name) \
121
    DO_TEST_FULL(name, true, WHEN_EITHER)
122 123 124 125 126

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

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

    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");
195
    DO_TEST("console-virtio-many");
196
    DO_TEST("channel-guestfwd");
197
    DO_TEST("channel-virtio");
198

199
    DO_TEST("hostdev-usb-address");
200
    DO_TEST("hostdev-pci-address");
201
    DO_TEST("pci-rom");
202

203
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
204
    DO_TEST_DIFFERENT("memtune");
205
    DO_TEST("blkiotune");
206
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
207
    DO_TEST("cputune");
208

209
    DO_TEST("smp");
210
    DO_TEST("lease");
211
    DO_TEST("event_idx");
212
    DO_TEST("virtio-lun");
213

214
    DO_TEST("usb-redir");
L
Lei Li 已提交
215
    DO_TEST("blkdeviotune");
216

217 218
    DO_TEST_FULL("seclabel-dynamic-baselabel", false, WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-override", false, WHEN_INACTIVE);
219
    DO_TEST("seclabel-static");
E
Eric Blake 已提交
220
    DO_TEST("seclabel-none");
221

222 223 224 225 226
    /* 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 已提交
227
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
228
    DO_TEST_DIFFERENT("serial-target-port-auto");
229
    DO_TEST_DIFFERENT("graphics-listen-network2");
230
    DO_TEST_DIFFERENT("graphics-spice-timeout");
231

232 233
    DO_TEST_DIFFERENT("metadata");

234
    virCapabilitiesFree(driver.caps);
235

236
    return ret==0 ? EXIT_SUCCESS : EXIT_FAILURE;
237 238
}

239 240
VIRT_TEST_MAIN(mymain)

241
#else
E
Eric Blake 已提交
242
# include "testutils.h"
243

244 245 246 247 248
int
main(void)
{
    return EXIT_AM_SKIP;
}
249 250

#endif /* WITH_QEMU */