You need to sign in or sign up before continuing.
xmconfigtest.c 9.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * xmconfigtest.c: Test backend for xm_internal config file handling
 *
 * Copyright (C) 2007 Red Hat
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 *
 */

#include <stdio.h>
#include <string.h>

27
#ifdef WITH_XEN
28
#include "xen_unified.h"
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#include "xm_internal.h"
#include "testutils.h"
#include "internal.h"
#include "conf.h"

static char *progname;

#define MAX_FILE 4096

static int testCompareParseXML(const char *xmcfg, const char *xml, int xendConfigVersion) {
    char xmlData[MAX_FILE];
    char xmcfgData[MAX_FILE];
    char gotxmcfgData[MAX_FILE];
    char *xmlPtr = &(xmlData[0]);
    char *xmcfgPtr = &(xmcfgData[0]);
    char *gotxmcfgPtr = &(gotxmcfgData[0]);
    virConfPtr conf = NULL;
    int ret = -1;
    virConnectPtr conn;
    int wrote = MAX_FILE;
49 50
    void *old_priv;
    struct _xenUnifiedPrivate priv;
51

52
    conn = virConnectOpenReadOnly("test:///default");
53 54
    if (!conn) goto fail;
    old_priv = conn->privateData;
55 56 57 58 59 60 61

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

    if (virtTestLoadFile(xmcfg, &xmcfgPtr, MAX_FILE) < 0)
        goto fail;

62 63 64
    /* Many puppies died to bring you this code. */
    priv.xendConfigVersion = xendConfigVersion;
    conn->privateData = &priv;
65 66 67 68 69 70 71 72

    if (!(conf = xenXMParseXMLToConfig(conn, xmlPtr)))
        goto fail;

    if (virConfWriteMem(gotxmcfgPtr, &wrote, conf) < 0)
        goto fail;
    gotxmcfgPtr[wrote] = '\0';

73 74 75 76 77
    if (strcmp(xmcfgData, gotxmcfgData)) {
        if (getenv("DEBUG_TESTS")) {
            printf("Expect %d '%s'\n", (int)strlen(xmcfgData), xmcfgData);
            printf("Actual %d '%s'\n", (int)strlen(gotxmcfgData), gotxmcfgData);
        }
78
        goto fail;
79
    }
80 81 82 83 84 85 86

    ret = 0;

 fail:
    if (conf)
        virConfFree(conf);

87 88 89 90 91
    if (conn) {
        conn->privateData = old_priv;
        virConnectClose(conn);
    }

92 93 94 95 96 97 98 99 100 101 102 103
    return ret;
}

static int testCompareFormatXML(const char *xmcfg, const char *xml, int xendConfigVersion) {
    char xmlData[MAX_FILE];
    char xmcfgData[MAX_FILE];
    char *xmlPtr = &(xmlData[0]);
    char *xmcfgPtr = &(xmcfgData[0]);
    char *gotxml = NULL;
    virConfPtr conf = NULL;
    int ret = -1;
    virConnectPtr conn;
104 105
    void *old_priv;
    struct _xenUnifiedPrivate priv;
106

107
    conn = virConnectOpenReadOnly("test:///default");
108 109
    if (!conn) goto fail;
    old_priv = conn->privateData;
110 111 112 113 114 115 116

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

    if (virtTestLoadFile(xmcfg, &xmcfgPtr, MAX_FILE) < 0)
        goto fail;

117 118 119
    /* Many puppies died to bring you this code. */
    priv.xendConfigVersion = xendConfigVersion;
    conn->privateData = &priv;
120 121 122 123 124 125 126

    if (!(conf = virConfReadMem(xmcfgPtr, strlen(xmcfgPtr))))
        goto fail;

    if (!(gotxml = xenXMDomainFormatXML(conn, conf)))
        goto fail;

127 128 129 130 131
    if (strcmp(xmlData, gotxml)) {
        if (getenv("DEBUG_TESTS")) {
            printf("Expect %d '%s'\n", (int)strlen(xmlData), xmlData);
            printf("Actual %d '%s'\n", (int)strlen(gotxml), gotxml);
        }
132
        goto fail;
133
    }
134 135 136 137 138 139 140 141 142

    ret = 0;

 fail:
    if (conf)
        virConfFree(conf);
    if (gotxml)
        free(gotxml);

143 144 145 146 147
    if (conn) {
        conn->privateData = old_priv;
        virConnectClose(conn);
    }

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
    return ret;
}

static int testCompareParavirtOldPVFBFormat(void *data ATTRIBUTE_UNUSED) {
    return testCompareFormatXML("xmconfigdata/test-paravirt-old-pvfb.cfg",
                                "xmconfigdata/test-paravirt-old-pvfb.xml",
                                2);
}
static int testCompareParavirtOldPVFBParse(void *data ATTRIBUTE_UNUSED) {
    return testCompareParseXML("xmconfigdata/test-paravirt-old-pvfb.cfg",
                               "xmconfigdata/test-paravirt-old-pvfb.xml",
                               2);
}

static int testCompareParavirtNewPVFBFormat(void *data ATTRIBUTE_UNUSED) {
    return testCompareFormatXML("xmconfigdata/test-paravirt-new-pvfb.cfg",
                                "xmconfigdata/test-paravirt-new-pvfb.xml",
                                3);
}
static int testCompareParavirtNewPVFBParse(void *data ATTRIBUTE_UNUSED) {
    return testCompareParseXML("xmconfigdata/test-paravirt-new-pvfb.cfg",
                               "xmconfigdata/test-paravirt-new-pvfb.xml",
                               3);
}

static int testCompareFullvirtOldCDROMFormat(void *data ATTRIBUTE_UNUSED) {
    return testCompareFormatXML("xmconfigdata/test-fullvirt-old-cdrom.cfg",
                                "xmconfigdata/test-fullvirt-old-cdrom.xml",
                                1);
}
static int testCompareFullvirtOldCDROMParse(void *data ATTRIBUTE_UNUSED) {
    return testCompareParseXML("xmconfigdata/test-fullvirt-old-cdrom.cfg",
                               "xmconfigdata/test-fullvirt-old-cdrom.xml",
                               1);
}

static int testCompareFullvirtNewCDROMFormat(void *data ATTRIBUTE_UNUSED) {
    return testCompareFormatXML("xmconfigdata/test-fullvirt-new-cdrom.cfg",
                                "xmconfigdata/test-fullvirt-new-cdrom.xml",
                                2);
}
static int testCompareFullvirtNewCDROMParse(void *data ATTRIBUTE_UNUSED) {
    return testCompareParseXML("xmconfigdata/test-fullvirt-new-cdrom.cfg",
                               "xmconfigdata/test-fullvirt-new-cdrom.xml",
                               2);
}

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
static int testCompareFullvirtClockUTCFormat(void *data ATTRIBUTE_UNUSED) {
    return testCompareFormatXML("xmconfigdata/test-fullvirt-utc.cfg",
                                "xmconfigdata/test-fullvirt-utc.xml",
                                2);
}

static int testCompareFullvirtClockUTCParse(void *data ATTRIBUTE_UNUSED) {
    return testCompareParseXML("xmconfigdata/test-fullvirt-utc.cfg",
                               "xmconfigdata/test-fullvirt-utc.xml",
                               2);
}

static int testCompareFullvirtClockLocaltimeFormat(void *data ATTRIBUTE_UNUSED) {
    return testCompareFormatXML("xmconfigdata/test-fullvirt-localtime.cfg",
                                "xmconfigdata/test-fullvirt-localtime.xml",
                                2);
}
static int testCompareFullvirtClockLocaltimeParse(void *data ATTRIBUTE_UNUSED) {
    return testCompareParseXML("xmconfigdata/test-fullvirt-localtime.cfg",
                               "xmconfigdata/test-fullvirt-localtime.xml",
                               2);
}

218 219 220 221 222 223 224 225 226 227 228 229 230

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

    progname = argv[0];

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

231
    /* Config -> XML */
232 233 234 235 236 237 238 239 240 241 242 243
    if (virtTestRun("Paravirt old PVFB (Format)",
                    1, testCompareParavirtOldPVFBFormat, NULL) != 0)
        ret = -1;
    if (virtTestRun("Paravirt new PVFB (Format)",
                    1, testCompareParavirtNewPVFBFormat, NULL) != 0)
        ret = -1;
    if (virtTestRun("Fullvirt old PVFB (Format)",
                    1, testCompareFullvirtOldCDROMFormat, NULL) != 0)
        ret = -1;
    if (virtTestRun("Fullvirt new PVFB (Format)",
                    1, testCompareFullvirtNewCDROMFormat, NULL) != 0)
        ret = -1;
244 245 246 247 248 249
    if (virtTestRun("Fullvirt clock Localtime (Format)",
                    1, testCompareFullvirtClockLocaltimeFormat, NULL) != 0)
        ret = -1;
    if (virtTestRun("Fullvirt clock UTC (Format)",
                    1, testCompareFullvirtClockUTCFormat, NULL) != 0)
        ret = -1;
250

251
    /* XML -> Config */
252 253 254 255 256 257 258 259 260 261 262 263
    if (virtTestRun("Paravirt old PVFB (Parse)",
                    1, testCompareParavirtOldPVFBParse, NULL) != 0)
        ret = -1;
    if (virtTestRun("Paravirt new PVFB (Parse)",
                    1, testCompareParavirtNewPVFBParse, NULL) != 0)
        ret = -1;
    if (virtTestRun("Fullvirt old PVFB (Parse)",
                    1, testCompareFullvirtOldCDROMParse, NULL) != 0)
        ret = -1;
    if (virtTestRun("Fullvirt new PVFB (Parse)",
                    1, testCompareFullvirtNewCDROMParse, NULL) != 0)
        ret = -1;
264 265 266 267 268 269
    if (virtTestRun("Fullvirt clock Localtime (Parse)",
                    1, testCompareFullvirtClockLocaltimeParse, NULL) != 0)
        ret = -1;
    if (virtTestRun("Fullvirt clock UTC (Parse)",
                    1, testCompareFullvirtClockUTCParse, NULL) != 0)
        ret = -1;
270 271 272

    exit(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
}
273 274 275 276 277
#else /* WITHOUT_XEN */
int
main(void)
{
    fprintf(stderr, "libvirt compiled without Xen support\n");
278
    return(0);
279 280
}
#endif /* WITH_XEN */
281 282 283 284 285 286 287 288 289

/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */