qemuxml2xmltest.c 4.3 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
#include "internal.h"
14 15 16 17
#include "testutils.h"
#include "qemu_conf.h"

static char *progname;
18
static char *abs_top_srcdir;
19
static struct qemud_driver driver;
20 21 22 23 24 25 26 27 28

#define MAX_FILE 4096


static int testCompareXMLToXMLFiles(const char *xml) {
    char xmlData[MAX_FILE];
    char *xmlPtr = &(xmlData[0]);
    char *actual = NULL;
    int ret = -1;
D
Daniel P. Berrange 已提交
29
    struct qemud_vm_def *vmdef = NULL;
30 31 32 33 34 35 36 37 38 39 40
    struct qemud_vm vm;

    if (virtTestLoadFile(xml, &xmlPtr, MAX_FILE) < 0)
        goto fail;

    if (!(vmdef = qemudParseVMDef(NULL, &driver, xmlData, "test")))
        goto fail;

    vm.def = vmdef;
    vm.pid = -1;
    vm.id = -1;
41 42 43 44
    vm.qemuVersion = 0 * 1000 * 100 + (8 * 1000) + 1;
    vm.qemuCmdFlags = QEMUD_CMD_FLAG_VNC_COLON |
        QEMUD_CMD_FLAG_NO_REBOOT;

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    vmdef->vncActivePort = vmdef->vncPort;

    if (!(actual = qemudGenerateXML(NULL, &driver, &vm, vmdef, 0)))
        goto fail;

    if (strcmp(xmlData, actual)) {
        if (getenv("DEBUG_TESTS")) {
            printf("Expect %4d '%s'\n", (int)strlen(xmlData), xmlData);
            printf("Actual %4d '%s'\n", (int)strlen(actual), actual);
        }
        goto fail;
    }

    ret = 0;

 fail:
    free(actual);
62 63
    if (vmdef)
        qemudFreeVMDef(vmdef);
64 65 66 67 68
    return ret;
}

static int testCompareXMLToXMLHelper(const void *data) {
    char xml[PATH_MAX];
69 70
    snprintf(xml, PATH_MAX, "%s/tests/qemuxml2argvdata/qemuxml2argv-%s.xml",
             abs_top_srcdir, (const char*)data);
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    return testCompareXMLToXMLFiles(xml);
}


int
main(int argc, char **argv)
{
    int ret = 0;

    progname = argv[0];

    if (argc > 1) {
        fprintf(stderr, "Usage: %s\n", progname);
        exit(EXIT_FAILURE);
    }

87 88 89 90
    abs_top_srcdir = getenv("abs_top_srcdir");
    if (!abs_top_srcdir)
      return 1;

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    if (virtTestRun("QEMU XML-2-ARGV minimal",
                    1, testCompareXMLToXMLHelper, "minimal") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Boot CDROM",
                    1, testCompareXMLToXMLHelper, "boot-cdrom") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Boot Network",
                    1, testCompareXMLToXMLHelper, "boot-network") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Boot Floppy",
                    1, testCompareXMLToXMLHelper, "boot-floppy") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Clock UTC",
                    1, testCompareXMLToXMLHelper, "clock-utc") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Clock Localtime",
                    1, testCompareXMLToXMLHelper, "clock-localtime") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Disk CDROM",
                    1, testCompareXMLToXMLHelper, "disk-cdrom") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Disk Floppy",
                    1, testCompareXMLToXMLHelper, "disk-floppy") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Disk Many",
                    1, testCompareXMLToXMLHelper, "disk-many") < 0)
        ret = -1;

127
    if (virtTestRun("QEMU XML-2-ARGV Graphics VNC",
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
                    1, testCompareXMLToXMLHelper, "graphics-vnc") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Graphics SDL",
                    1, testCompareXMLToXMLHelper, "graphics-sdl") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Input USB Mouse",
                    1, testCompareXMLToXMLHelper, "input-usbmouse") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Input USB Tablet",
                    1, testCompareXMLToXMLHelper, "input-usbtablet") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Misc ACPI",
                    1, testCompareXMLToXMLHelper, "misc-acpi") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Misc No Reboot",
                    1, testCompareXMLToXMLHelper, "misc-no-reboot") < 0)
        ret = -1;

    if (virtTestRun("QEMU XML-2-ARGV Net User",
                    1, testCompareXMLToXMLHelper, "net-user") < 0)
        ret = -1;


    exit(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
}

159 160 161 162 163 164
#else

int main (void) { exit (77); /* means 'test skipped' to automake */ }

#endif /* WITH_QEMU */

165 166 167 168 169 170 171 172
/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */