testutils.c 24.0 KB
Newer Older
K
Karel Zak 已提交
1
/*
2
 * testutils.c: basic test utils
K
Karel Zak 已提交
3
 *
4
 * Copyright (C) 2005-2014 Red Hat, Inc.
K
Karel Zak 已提交
5
 *
O
Osier Yang 已提交
6 7 8 9 10 11 12 13 14 15 16
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
K
Karel Zak 已提交
19 20 21 22
 *
 * Karel Zak <kzak@redhat.com>
 */

23
#include <config.h>
24

K
Karel Zak 已提交
25 26 27
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
28 29
#include <sys/types.h>
#include <sys/stat.h>
30 31
#include <sys/wait.h>
#include <regex.h>
32
#include <unistd.h>
33
#include <string.h>
34 35
#include <fcntl.h>
#include <limits.h>
K
Karel Zak 已提交
36
#include "testutils.h"
37
#include "internal.h"
38
#include "viralloc.h"
39
#include "virutil.h"
40
#include "virthread.h"
41
#include "virerror.h"
42
#include "virbuffer.h"
43
#include "virlog.h"
44
#include "vircommand.h"
45
#include "virrandom.h"
E
Eric Blake 已提交
46
#include "dirname.h"
47
#include "virprocess.h"
48
#include "virstring.h"
49

50 51 52 53 54 55 56
#ifdef TEST_OOM
# ifdef TEST_OOM_TRACE
#  include <dlfcn.h>
#  include <execinfo.h>
# endif
#endif

57
#ifdef HAVE_PATHS_H
58
# include <paths.h>
59 60
#endif

61 62
#define VIR_FROM_THIS VIR_FROM_NONE

63 64
VIR_LOG_INIT("tests.testutils");

K
Karel Zak 已提交
65
#define GETTIMEOFDAY(T) gettimeofday(T, NULL)
66
#define DIFF_MSEC(T, U)                                 \
67
    ((((int) ((T)->tv_sec - (U)->tv_sec)) * 1000000.0 + \
68
      ((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0)
K
Karel Zak 已提交
69

E
Eric Blake 已提交
70
#include "virfile.h"
71

72
static unsigned int testDebug = -1;
73
static unsigned int testVerbose = -1;
74
static unsigned int testExpensive = -1;
75

76 77 78 79 80 81 82 83 84 85 86 87
#ifdef TEST_OOM
static unsigned int testOOM = 0;
static unsigned int testOOMStart = -1;
static unsigned int testOOMEnd = -1;
static unsigned int testOOMTrace = 0;
# ifdef TEST_OOM_TRACE
void *testAllocStack[30];
int ntestAllocStack;
# endif
#endif
static bool testOOMActive = false;

88 89 90
static size_t testCounter = 0;
static size_t testStart = 0;
static size_t testEnd = 0;
91

E
Eric Blake 已提交
92 93
char *progname;

94 95 96 97 98 99 100 101 102 103 104 105 106
bool virtTestOOMActive(void)
{
    return testOOMActive;
}

#ifdef TEST_OOM_TRACE
static void virTestAllocHook(int nalloc ATTRIBUTE_UNUSED,
                             void *opaque ATTRIBUTE_UNUSED)
{
    ntestAllocStack = backtrace(testAllocStack, ARRAY_CARDINALITY(testAllocStack));
}
#endif

107 108 109 110 111
void virtTestResult(const char *name, int ret, const char *msg, ...)
{
    va_list vargs;
    va_start(vargs, msg);

112 113 114
    if (testCounter == 0 && !virTestGetVerbose())
        fprintf(stderr, "      ");

115 116
    testCounter++;
    if (virTestGetVerbose()) {
117
        fprintf(stderr, "%3zu) %-60s ", testCounter, name);
118 119 120 121 122
        if (ret == 0)
            fprintf(stderr, "OK\n");
        else {
            fprintf(stderr, "FAILED\n");
            if (msg) {
123
                char *str;
124
                if (virVasprintfQuiet(&str, msg, vargs) == 0) {
125 126 127
                    fprintf(stderr, "%s", str);
                    VIR_FREE(str);
                }
128 129 130 131 132
            }
        }
    } else {
        if (testCounter != 1 &&
            !((testCounter-1) % 40)) {
133
            fprintf(stderr, " %-3zu\n", (testCounter-1));
134 135 136 137 138 139 140 141 142 143 144
            fprintf(stderr, "      ");
        }
        if (ret == 0)
            fprintf(stderr, ".");
        else
            fprintf(stderr, "!");
    }

    va_end(vargs);
}

145 146 147 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
#ifdef TEST_OOM_TRACE
static void
virTestShowTrace(void)
{
    size_t j;
    for (j = 2; j < ntestAllocStack; j++) {
        Dl_info info;
        char *cmd;

        dladdr(testAllocStack[j], &info);
        if (info.dli_fname &&
            strstr(info.dli_fname, ".so")) {
            if (virAsprintf(&cmd, ADDR2LINE " -f -e %s %p",
                            info.dli_fname,
                            ((void*)((unsigned long long)testAllocStack[j]
                                     - (unsigned long long)info.dli_fbase))) < 0)
                continue;
        } else {
            if (virAsprintf(&cmd, ADDR2LINE " -f -e %s %p",
                            (char*)(info.dli_fname ? info.dli_fname : "<unknown>"),
                            testAllocStack[j]) < 0)
                continue;
        }
        ignore_value(system(cmd));
        VIR_FREE(cmd);
    }
}
#endif

174
/*
175
 * Runs test
176 177
 *
 * returns: -1 = error, 0 = success
K
Karel Zak 已提交
178 179
 */
int
180 181
virtTestRun(const char *title,
            int (*body)(const void *data), const void *data)
K
Karel Zak 已提交
182
{
183
    int ret = 0;
184

185 186 187
    if (testCounter == 0 && !virTestGetVerbose())
        fprintf(stderr, "      ");

188
    testCounter++;
189

190 191 192 193 194 195 196

    /* Skip tests if out of range */
    if ((testStart != 0) &&
        (testCounter < testStart ||
         testCounter > testEnd))
        return 0;

D
Daniel P. Berrange 已提交
197 198
    if (virTestGetVerbose())
        fprintf(stderr, "%2zu) %-65s ... ", testCounter, title);
199

200 201 202 203 204 205
    virResetLastError();
    ret = body(data);
    virErrorPtr err = virGetLastError();
    if (err) {
        if (virTestGetVerbose() || virTestGetDebug())
            virDispatchError(NULL);
206
    }
207

D
Daniel P. Berrange 已提交
208
    if (virTestGetVerbose()) {
209
        if (ret == 0)
D
Daniel P. Berrange 已提交
210 211 212 213 214 215 216 217 218 219
            fprintf(stderr, "OK\n");
        else if (ret == EXIT_AM_SKIP)
            fprintf(stderr, "SKIP\n");
        else
            fprintf(stderr, "FAILED\n");
    } else {
        if (testCounter != 1 &&
            !((testCounter-1) % 40)) {
            fprintf(stderr, " %-3zu\n", (testCounter-1));
            fprintf(stderr, "      ");
220
        }
D
Daniel P. Berrange 已提交
221
        if (ret == 0)
222
                fprintf(stderr, ".");
D
Daniel P. Berrange 已提交
223 224 225 226
        else if (ret == EXIT_AM_SKIP)
            fprintf(stderr, "_");
        else
            fprintf(stderr, "!");
227
    }
228

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
#ifdef TEST_OOM
    if (testOOM && ret != EXIT_AM_SKIP) {
        int nalloc;
        int oomret;
        int start, end;
        size_t i;
        virResetLastError();
        virAllocTestInit();
# ifdef TEST_OOM_TRACE
        virAllocTestHook(virTestAllocHook, NULL);
# endif
        oomret = body(data);
        nalloc = virAllocTestCount();
        fprintf(stderr, "    Test OOM for nalloc=%d ", nalloc);
        if (testOOMStart == -1 ||
            testOOMEnd == -1) {
            start = 0;
            end = nalloc;
        } else {
            start = testOOMStart;
            end = testOOMEnd + 1;
        }
        testOOMActive = true;
        for (i = start; i < end; i++) {
            bool missingFail = false;
# ifdef TEST_OOM_TRACE
            memset(testAllocStack, 0, ARRAY_CARDINALITY(testAllocStack));
            ntestAllocStack = 0;
# endif
            virAllocTestOOM(i + 1, 1);
            oomret = body(data);

            /* fprintf() disabled because XML parsing APIs don't allow
             * distinguish between element / attribute not present
             * in the XML (which is non-fatal), vs OOM / malformed
             * which should be fatal. Thus error reporting for
             * optionally present XML is mostly broken.
             */
            if (oomret == 0) {
                missingFail = true;
# if 0
                fprintf(stderr, " alloc %zu failed but no err status\n", i + 1);
# endif
            } else {
                virErrorPtr lerr = virGetLastError();
                if (!lerr) {
# if 0
                    fprintf(stderr, " alloc %zu failed but no error report\n", i + 1);
# endif
                    missingFail = true;
                }
            }
            if ((missingFail && testOOMTrace) || (testOOMTrace > 1)) {
                fprintf(stderr, "%s", "!");
# ifdef TEST_OOM_TRACE
                virTestShowTrace();
# endif
                ret = -1;
            } else {
                fprintf(stderr, "%s", ".");
            }
        }
        testOOMActive = false;
        if (ret == 0)
            fprintf(stderr, " OK\n");
        else
            fprintf(stderr, " FAILED\n");
        virAllocTestInit();
    }
#endif /* TEST_OOM */

300
    return ret;
K
Karel Zak 已提交
301
}
302

303 304 305 306 307 308
/* Allocate BUF to the size of FILE. Read FILE into buffer BUF.
   Upon any failure, diagnose it and return -1, but don't bother trying
   to preserve errno. Otherwise, return the number of bytes copied into BUF. */
int
virtTestLoadFile(const char *file, char **buf)
{
309
    FILE *fp = fopen(file, "r");
310
    struct stat st;
311 312
    char *tmp;
    int len, tmplen, buflen;
313

314
    if (!fp) {
315
        fprintf(stderr, "%s: failed to open: %s\n", file, strerror(errno));
316
        return -1;
317
    }
318 319

    if (fstat(fileno(fp), &st) < 0) {
320
        fprintf(stderr, "%s: failed to fstat: %s\n", file, strerror(errno));
321
        VIR_FORCE_FCLOSE(fp);
322 323 324
        return -1;
    }

325 326 327
    tmplen = buflen = st.st_size + 1;

    if (VIR_ALLOC_N(*buf, buflen) < 0) {
328
        VIR_FORCE_FCLOSE(fp);
329 330 331
        return -1;
    }

332
    tmp = *buf;
333
    (*buf)[0] = '\0';
334
    if (st.st_size) {
335 336 337
        /* read the file line by line */
        while (fgets(tmp, tmplen, fp) != NULL) {
            len = strlen(tmp);
338 339 340
            /* stop on an empty line */
            if (len == 0)
                break;
341 342 343 344 345 346 347 348 349 350
            /* remove trailing backslash-newline pair */
            if (len >= 2 && tmp[len-2] == '\\' && tmp[len-1] == '\n') {
                len -= 2;
                tmp[len] = '\0';
            }
            /* advance the temporary buffer pointer */
            tmp += len;
            tmplen -= len;
        }
        if (ferror(fp)) {
351
            fprintf(stderr, "%s: read failed: %s\n", file, strerror(errno));
352
            VIR_FORCE_FCLOSE(fp);
353
            VIR_FREE(*buf);
354 355
            return -1;
        }
356 357
    }

358
    VIR_FORCE_FCLOSE(fp);
359
    return strlen(*buf);
360 361
}

A
Atsushi SAKAI 已提交
362
#ifndef WIN32
363 364
static
void virtTestCaptureProgramExecChild(const char *const argv[],
365
                                     int pipefd) {
366
    size_t i;
367 368 369 370
    int open_max;
    int stdinfd = -1;
    const char *const env[] = {
        "LANG=C",
371
# if WITH_DRIVER_MODULES
372
        "LIBVIRT_DRIVER_DIR=" TEST_DRIVER_DIR,
373
# endif
374 375 376
        NULL
    };

377
    if ((stdinfd = open("/dev/null", O_RDONLY)) < 0)
378 379
        goto cleanup;

380
    open_max = sysconf(_SC_OPEN_MAX);
J
John Ferlan 已提交
381 382 383
    if (open_max < 0)
        goto cleanup;

384 385
    for (i = 0; i < open_max; i++) {
        if (i != stdinfd &&
386
            i != pipefd) {
387 388
            int tmpfd;
            tmpfd = i;
389 390
            VIR_FORCE_CLOSE(tmpfd);
        }
391 392 393 394 395 396
    }

    if (dup2(stdinfd, STDIN_FILENO) != STDIN_FILENO)
        goto cleanup;
    if (dup2(pipefd, STDOUT_FILENO) != STDOUT_FILENO)
        goto cleanup;
397
    if (dup2(pipefd, STDERR_FILENO) != STDERR_FILENO)
398 399 400 401
        goto cleanup;

    /* SUS is crazy here, hence the cast */
    execve(argv[0], (char *const*)argv, (char *const*)env);
402 403

 cleanup:
404
    VIR_FORCE_CLOSE(stdinfd);
405 406
}

407 408 409
int
virtTestCaptureProgramOutput(const char *const argv[], char **buf, int maxlen)
{
410
    int pipefd[2];
411
    int len;
412 413 414 415

    if (pipe(pipefd) < 0)
        return -1;

416
    pid_t pid = fork();
417
    switch (pid) {
418
    case 0:
419
        VIR_FORCE_CLOSE(pipefd[0]);
420 421
        virtTestCaptureProgramExecChild(argv, pipefd[1]);

422
        VIR_FORCE_CLOSE(pipefd[1]);
423
        _exit(EXIT_FAILURE);
424

425 426
    case -1:
        return -1;
427

428
    default:
429 430 431
        VIR_FORCE_CLOSE(pipefd[1]);
        len = virFileReadLimFD(pipefd[0], maxlen, buf);
        VIR_FORCE_CLOSE(pipefd[0]);
432
        if (virProcessWait(pid, NULL, false) < 0)
E
Eric Blake 已提交
433
            return -1;
434

435
        return len;
436
    }
437
}
438
#else /* !WIN32 */
439 440 441 442 443
int
virtTestCaptureProgramOutput(const char *const argv[] ATTRIBUTE_UNUSED,
                             char **buf ATTRIBUTE_UNUSED,
                             int maxlen ATTRIBUTE_UNUSED)
{
444 445
    return -1;
}
A
Atsushi SAKAI 已提交
446
#endif /* !WIN32 */
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465


/**
 * @param stream: output stream write to differences to
 * @param expect: expected output text
 * @param actual: actual output text
 *
 * Display expected and actual output text, trimmed to
 * first and last characters at which differences occur
 */
int virtTestDifference(FILE *stream,
                       const char *expect,
                       const char *actual)
{
    const char *expectStart = expect;
    const char *expectEnd = expect + (strlen(expect)-1);
    const char *actualStart = actual;
    const char *actualEnd = actual + (strlen(actual)-1);

466
    if (!virTestGetDebug())
467 468
        return 0;

469
    if (virTestGetDebug() < 2) {
470 471 472 473 474 475
        /* Skip to first character where they differ */
        while (*expectStart && *actualStart &&
               *actualStart == *expectStart) {
            actualStart++;
            expectStart++;
        }
476

477 478 479 480 481 482 483
        /* Work backwards to last character where they differ */
        while (actualEnd > actualStart &&
               expectEnd > expectStart &&
               *actualEnd == *expectEnd) {
            actualEnd--;
            expectEnd--;
        }
484 485 486
    }

    /* Show the trimmed differences */
E
Eric Blake 已提交
487
    fprintf(stream, "\nOffset %d\nExpect [", (int) (expectStart - expect));
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
    if ((expectEnd - expectStart + 1) &&
        fwrite(expectStart, (expectEnd-expectStart+1), 1, stream) != 1)
        return -1;
    fprintf(stream, "]\n");
    fprintf(stream, "Actual [");
    if ((actualEnd - actualStart + 1) &&
        fwrite(actualStart, (actualEnd-actualStart+1), 1, stream) != 1)
        return -1;
    fprintf(stream, "]\n");

    /* Pad to line up with test name ... in virTestRun */
    fprintf(stream, "                                                                      ... ");

    return 0;
}
503

504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
/**
 * @param stream: output stream write to differences to
 * @param expect: expected output text
 * @param actual: actual output text
 *
 * Display expected and actual output text, trimmed to
 * first and last characters at which differences occur
 */
int virtTestDifferenceBin(FILE *stream,
                          const char *expect,
                          const char *actual,
                          size_t length)
{
    size_t start = 0, end = length;
    ssize_t i;

    if (!virTestGetDebug())
        return 0;

    if (virTestGetDebug() < 2) {
        /* Skip to first character where they differ */
525
        for (i = 0; i < length; i++) {
526 527 528 529 530 531 532
            if (expect[i] != actual[i]) {
                start = i;
                break;
            }
        }

        /* Work backwards to last character where they differ */
533
        for (i = (length -1); i >= 0; i--) {
534 535 536 537 538 539
            if (expect[i] != actual[i]) {
                end = i;
                break;
            }
        }
    }
E
Eric Blake 已提交
540
    /* Round to nearest boundary of 4, except that last word can be short */
541 542 543 544 545 546 547
    start -= (start % 4);
    end += 4 - (end % 4);
    if (end >= length)
        end = length - 1;

    /* Show the trimmed differences */
    fprintf(stream, "\nExpect [ Region %d-%d", (int)start, (int)end);
548
    for (i = start; i < end; i++) {
549 550 551 552 553 554
        if ((i % 4) == 0)
            fprintf(stream, "\n    ");
        fprintf(stream, "0x%02x, ", ((int)expect[i])&0xff);
    }
    fprintf(stream, "]\n");
    fprintf(stream, "Actual [ Region %d-%d", (int)start, (int)end);
555
    for (i = start; i < end; i++) {
556 557 558 559 560 561 562 563 564 565 566 567
        if ((i % 4) == 0)
            fprintf(stream, "\n    ");
        fprintf(stream, "0x%02x, ", ((int)actual[i])&0xff);
    }
    fprintf(stream, "]\n");

    /* Pad to line up with test name ... in virTestRun */
    fprintf(stream, "                                                                      ... ");

    return 0;
}

568 569 570 571
static void
virtTestErrorFuncQuiet(void *data ATTRIBUTE_UNUSED,
                       virErrorPtr err ATTRIBUTE_UNUSED)
{ }
572 573 574 575 576 577 578 579 580


/* register an error handler in tests when using connections */
void
virtTestQuiesceLibvirtErrors(bool always)
{
    if (always || !virTestGetVerbose())
        virSetErrorFunc(NULL, virtTestErrorFuncQuiet);
}
581

582 583 584 585 586 587
struct virtTestLogData {
    virBuffer buf;
};

static struct virtTestLogData testLog = { VIR_BUFFER_INITIALIZER };

588
static void
589
virtTestLogOutput(virLogSourcePtr source ATTRIBUTE_UNUSED,
590
                  virLogPriority priority ATTRIBUTE_UNUSED,
591 592
                  const char *filename ATTRIBUTE_UNUSED,
                  int lineno ATTRIBUTE_UNUSED,
593
                  const char *funcname ATTRIBUTE_UNUSED,
594
                  const char *timestamp,
M
Miloslav Trmač 已提交
595
                  virLogMetadataPtr metadata ATTRIBUTE_UNUSED,
596
                  unsigned int flags,
597
                  const char *rawstr ATTRIBUTE_UNUSED,
598 599
                  const char *str,
                  void *data)
600 601
{
    struct virtTestLogData *log = data;
602
    virCheckFlags(VIR_LOG_STACK_TRACE,);
603 604
    if (!testOOMActive)
        virBufferAsprintf(&log->buf, "%s: %s", timestamp, str);
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
}

static void
virtTestLogClose(void *data)
{
    struct virtTestLogData *log = data;

    virBufferFreeAndReset(&log->buf);
}

/* Return a malloc'd string (possibly with strlen of 0) of all data
 * logged since the last call to this function, or NULL on failure.  */
char *
virtTestLogContentAndReset(void)
{
    char *ret;

    if (virBufferError(&testLog.buf))
        return NULL;
    ret = virBufferContentAndReset(&testLog.buf);
625 626 627
    if (!ret)
        ignore_value(VIR_STRDUP(ret, ""));
    return ret;
628 629
}

630

631 632 633 634
static unsigned int
virTestGetFlag(const char *name) {
    char *flagStr;
    unsigned int flag;
635

636
    if ((flagStr = getenv(name)) == NULL)
637 638
        return 0;

639
    if (virStrToLong_ui(flagStr, NULL, 10, &flag) < 0)
640 641
        return 0;

642 643 644 645
    return flag;
}

unsigned int
646
virTestGetDebug(void) {
647 648
    if (testDebug == -1)
        testDebug = virTestGetFlag("VIR_TEST_DEBUG");
649 650
    return testDebug;
}
651

652
unsigned int
653
virTestGetVerbose(void) {
654 655 656 657 658
    if (testVerbose == -1)
        testVerbose = virTestGetFlag("VIR_TEST_VERBOSE");
    return testVerbose || virTestGetDebug();
}

659 660 661 662 663 664 665
unsigned int
virTestGetExpensive(void) {
    if (testExpensive == -1)
        testExpensive = virTestGetFlag("VIR_TEST_EXPENSIVE");
    return testExpensive;
}

666 667
int virtTestMain(int argc,
                 char **argv,
E
Eric Blake 已提交
668
                 int (*func)(void))
669 670
{
    int ret;
671
    char *testRange = NULL;
672 673 674
#ifdef TEST_OOM
    char *oomstr;
#endif
675

676
    if (!virFileExists(abs_srcdir))
677
        return EXIT_AM_HARDFAIL;
E
Eric Blake 已提交
678

E
Eric Blake 已提交
679 680 681
    progname = last_component(argv[0]);
    if (STRPREFIX(progname, "lt-"))
        progname += 3;
E
Eric Blake 已提交
682 683
    if (argc > 1) {
        fprintf(stderr, "Usage: %s\n", argv[0]);
684 685 686 687
        fputs("effective environment variables:\n"
              "VIR_TEST_VERBOSE set to show names of individual tests\n"
              "VIR_TEST_DEBUG set to show information for debugging failures\n",
              stderr);
E
Eric Blake 已提交
688 689 690
        return EXIT_FAILURE;
    }
    fprintf(stderr, "TEST: %s\n", progname);
691

692
    if (virThreadInitialize() < 0 ||
693
        virErrorInitialize() < 0)
694
        return EXIT_FAILURE;
695

696
    virLogSetFromEnv();
697 698
    if (!getenv("LIBVIRT_DEBUG") && !virLogGetNbOutputs()) {
        if (virLogDefineOutput(virtTestLogOutput, virtTestLogClose, &testLog,
699
                               VIR_LOG_DEBUG, VIR_LOG_TO_STDERR, NULL, 0) < 0)
700
            return EXIT_FAILURE;
701
    }
702

703 704
    if ((testRange = getenv("VIR_TEST_RANGE")) != NULL) {
        char *end = NULL;
705 706
        unsigned int iv;
        if (virStrToLong_ui(testRange, &end, 10, &iv) < 0) {
707 708 709
            fprintf(stderr, "Cannot parse range %s\n", testRange);
            return EXIT_FAILURE;
        }
710
        testStart = testEnd = iv;
711 712 713 714 715 716
        if (end && *end) {
            if (*end != '-') {
                fprintf(stderr, "Cannot parse range %s\n", testRange);
                return EXIT_FAILURE;
            }
            end++;
717
            if (virStrToLong_ui(end, NULL, 10, &iv) < 0) {
718 719 720
                fprintf(stderr, "Cannot parse range %s\n", testRange);
                return EXIT_FAILURE;
            }
721
            testEnd = iv;
722 723 724 725 726 727 728 729

            if (testEnd < testStart) {
                fprintf(stderr, "Test range end %zu must be >= %zu\n", testEnd, testStart);
                return EXIT_FAILURE;
            }
        }
    }

730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
#ifdef TEST_OOM
    if ((oomstr = getenv("VIR_TEST_OOM")) != NULL) {
        char *next;
        if (testDebug == -1)
            testDebug = 1;
        testOOM = 1;
        if (oomstr[0] != '\0' &&
            oomstr[1] == ':') {
            if (virStrToLong_ui(oomstr + 2, &next, 10, &testOOMStart) < 0) {
                fprintf(stderr, "Cannot parse range %s\n", oomstr);
                return EXIT_FAILURE;
            }
            if (*next == '\0') {
                testOOMEnd = testOOMStart;
            } else {
                if (*next != '-') {
                    fprintf(stderr, "Cannot parse range %s\n", oomstr);
                    return EXIT_FAILURE;
                }
                if (virStrToLong_ui(next+1, NULL, 10, &testOOMEnd) < 0) {
                    fprintf(stderr, "Cannot parse range %s\n", oomstr);
                    return EXIT_FAILURE;
                }
            }
        } else {
            testOOMStart = -1;
            testOOMEnd = -1;
        }
    }

# ifdef TEST_OOM_TRACE
    if ((oomstr = getenv("VIR_TEST_OOM_TRACE")) != NULL) {
        if (virStrToLong_ui(oomstr, NULL, 10, &testOOMTrace) < 0) {
            fprintf(stderr, "Cannot parse oom trace %s\n", oomstr);
            return EXIT_FAILURE;
        }
    }
# else
    if (getenv("VIR_TEST_OOM_TRACE")) {
        fprintf(stderr, "%s", "OOM test tracing not enabled in this build\n");
        return EXIT_FAILURE;
    }
# endif
#else /* TEST_OOM */
    if (getenv("VIR_TEST_OOM")) {
        fprintf(stderr, "%s", "OOM testing not enabled in this build\n");
        return EXIT_FAILURE;
    }
    if (getenv("VIR_TEST_OOM_TRACE")) {
        fprintf(stderr, "%s", "OOM test tracing not enabled in this build\n");
        return EXIT_FAILURE;
    }
#endif /* TEST_OOM */

E
Eric Blake 已提交
784
    ret = (func)();
785 786

    virResetLastError();
787
    if (!virTestGetVerbose() && ret != EXIT_AM_SKIP) {
E
Eric Blake 已提交
788
        if (testCounter == 0 || testCounter % 40)
789 790
            fprintf(stderr, "%*s", 40 - (int)(testCounter % 40), "");
        fprintf(stderr, " %-3zu %s\n", testCounter, ret == 0 ? "OK" : "FAIL");
791
    }
792
    return ret;
793
}
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838


int virtTestClearLineRegex(const char *pattern,
                           char *str)
{
    regex_t reg;
    char *lineStart = str;
    char *lineEnd = strchr(str, '\n');

    if (regcomp(&reg, pattern, REG_EXTENDED | REG_NOSUB) != 0)
        return -1;

    while (lineStart) {
        int ret;
        if (lineEnd)
            *lineEnd = '\0';


        ret = regexec(&reg, lineStart, 0, NULL, 0);
        //fprintf(stderr, "Match %d '%s' '%s'\n", ret, lineStart, pattern);
        if (ret == 0) {
            if (lineEnd) {
                memmove(lineStart, lineEnd + 1, strlen(lineEnd+1) + 1);
                /* Don't update lineStart - just iterate again on this
                   location */
                lineEnd = strchr(lineStart, '\n');
            } else {
                *lineStart = '\0';
                lineStart = NULL;
            }
        } else {
            if (lineEnd) {
                *lineEnd = '\n';
                lineStart = lineEnd + 1;
                lineEnd = strchr(lineStart, '\n');
            } else {
                lineStart = NULL;
            }
        }
    }

    regfree(&reg);

    return 0;
}
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895


virCapsPtr virTestGenericCapsInit(void)
{
    virCapsPtr caps;
    virCapsGuestPtr guest;

    if ((caps = virCapabilitiesNew(VIR_ARCH_X86_64,
                                   0, 0)) == NULL)
        return NULL;

    if ((guest = virCapabilitiesAddGuest(caps, "hvm", VIR_ARCH_I686,
                                         "/usr/bin/acme-virt", NULL,
                                         0, NULL)) == NULL)
        goto error;

    if (!virCapabilitiesAddGuestDomain(guest, "test", NULL, NULL, 0, NULL))
        goto error;


    if ((guest = virCapabilitiesAddGuest(caps, "hvm", VIR_ARCH_X86_64,
                                         "/usr/bin/acme-virt", NULL,
                                         0, NULL)) == NULL)
        goto error;

    if (!virCapabilitiesAddGuestDomain(guest, "test", NULL, NULL, 0, NULL))
        goto error;


    if (virTestGetDebug()) {
        char *caps_str;

        caps_str = virCapabilitiesFormatXML(caps);
        if (!caps_str)
            goto error;

        fprintf(stderr, "Generic driver capabilities:\n%s", caps_str);

        VIR_FREE(caps_str);
    }

    return caps;

error:
    virObjectUnref(caps);
    return NULL;
}

static virDomainDefParserConfig virTestGenericDomainDefParserConfig;
static virDomainXMLPrivateDataCallbacks virTestGenericPrivateDataCallbacks;

virDomainXMLOptionPtr virTestGenericDomainXMLConfInit(void)
{
    return virDomainXMLOptionNew(&virTestGenericDomainDefParserConfig,
                                 &virTestGenericPrivateDataCallbacks,
                                 NULL);
}