testutils.c 38.5 KB
Newer Older
K
Karel Zak 已提交
1
/*
2
 * testutils.c: basic test utils
K
Karel Zak 已提交
3
 *
4
 * Copyright (C) 2005-2015 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
#include <config.h>
22

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

45 46 47 48 49 50 51
#ifdef TEST_OOM
# ifdef TEST_OOM_TRACE
#  include <dlfcn.h>
#  include <execinfo.h>
# endif
#endif

52 53
#define VIR_FROM_THIS VIR_FROM_NONE

54 55
VIR_LOG_INIT("tests.testutils");

56
#include "virbitmap.h"
E
Eric Blake 已提交
57
#include "virfile.h"
58

59
static unsigned int testDebug = -1;
60
static unsigned int testVerbose = -1;
61
static unsigned int testExpensive = -1;
62
static unsigned int testRegenerate = -1;
63

64
#ifdef TEST_OOM
65
static unsigned int testOOM;
66 67
static unsigned int testOOMStart = -1;
static unsigned int testOOMEnd = -1;
68
static unsigned int testOOMTrace;
69 70 71 72 73
# ifdef TEST_OOM_TRACE
void *testAllocStack[30];
int ntestAllocStack;
# endif
#endif
74
static bool testOOMActive;
75

76
static size_t testCounter;
77
static virBitmapPtr testBitmap;
78

E
Eric Blake 已提交
79
char *progname;
J
Ján Tomko 已提交
80
static char *perl;
E
Eric Blake 已提交
81

82
bool virTestOOMActive(void)
83 84 85 86
{
    return testOOMActive;
}

87
static int virTestUseTerminalColors(void)
88
{
89
    return isatty(STDOUT_FILENO);
90 91
}

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
static unsigned int
virTestGetFlag(const char *name)
{
    char *flagStr;
    unsigned int flag;

    if ((flagStr = getenv(name)) == NULL)
        return 0;

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

    return flag;
}

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
#ifdef TEST_OOM_TRACE
static void virTestAllocHook(int nalloc ATTRIBUTE_UNUSED,
                             void *opaque ATTRIBUTE_UNUSED)
{
    ntestAllocStack = backtrace(testAllocStack, ARRAY_CARDINALITY(testAllocStack));
}
#endif

#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

144
/*
145
 * Runs test
146 147
 *
 * returns: -1 = error, 0 = success
K
Karel Zak 已提交
148 149
 */
int
150 151
virTestRun(const char *title,
           int (*body)(const void *data), const void *data)
K
Karel Zak 已提交
152
{
153
    int ret = 0;
154

155 156 157 158 159
    /* Some test are fragile about environ settings.  If that's
     * the case, don't poison it. */
    if (getenv("VIR_TEST_MOCK_PROGNAME"))
        setenv("VIR_TEST_MOCK_TESTNAME", title, 1);

160 161 162
    if (testCounter == 0 && !virTestGetVerbose())
        fprintf(stderr, "      ");

163
    testCounter++;
164

165 166

    /* Skip tests if out of range */
167
    if (testBitmap && !virBitmapIsBitSet(testBitmap, testCounter))
168 169
        return 0;

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

173 174
    virResetLastError();
    ret = body(data);
175
    if (virGetLastErrorCode()) {
176 177
        if (virTestGetVerbose() || virTestGetDebug())
            virDispatchError(NULL);
178
    }
179

D
Daniel P. Berrange 已提交
180
    if (virTestGetVerbose()) {
181
        if (ret == 0)
182
            if (virTestUseTerminalColors())
183 184 185
                fprintf(stderr, "\e[32mOK\e[0m\n");  /* green */
            else
                fprintf(stderr, "OK\n");
D
Daniel P. Berrange 已提交
186
        else if (ret == EXIT_AM_SKIP)
187
            if (virTestUseTerminalColors())
188 189 190
                fprintf(stderr, "\e[34m\e[1mSKIP\e[0m\n");  /* bold blue */
            else
                fprintf(stderr, "SKIP\n");
D
Daniel P. Berrange 已提交
191
        else
192
            if (virTestUseTerminalColors())
193 194 195
                fprintf(stderr, "\e[31m\e[1mFAILED\e[0m\n");  /* bold red */
            else
                fprintf(stderr, "FAILED\n");
D
Daniel P. Berrange 已提交
196 197 198 199 200
    } else {
        if (testCounter != 1 &&
            !((testCounter-1) % 40)) {
            fprintf(stderr, " %-3zu\n", (testCounter-1));
            fprintf(stderr, "      ");
201
        }
D
Daniel P. Berrange 已提交
202
        if (ret == 0)
203
                fprintf(stderr, ".");
D
Daniel P. Berrange 已提交
204 205 206 207
        else if (ret == EXIT_AM_SKIP)
            fprintf(stderr, "_");
        else
            fprintf(stderr, "!");
208
    }
209

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
#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
236
            memset(testAllocStack, 0, sizeof(testAllocStack));
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
            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 {
254
                if (virGetLastErrorCode() == VIR_ERR_OK) {
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
# 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 */

280
    unsetenv("VIR_TEST_MOCK_TESTNAME");
281
    return ret;
K
Karel Zak 已提交
282
}
283

284 285 286 287 288 289 290 291 292 293 294

/**
 * virTestLoadFile:
 * @file: name of the file to load
 * @buf: buffer to load the file into
 *
 * Allocates @buf to the size of FILE. Reads FILE into buffer BUF.
 * Upon any failure, error is printed to stderr and -1 is returned. 'errno' is
 * not preserved. On success 0 is returned. Caller is responsible for freeing
 * @buf.
 */
295
int
296
virTestLoadFile(const char *file, char **buf)
297
{
298
    FILE *fp = fopen(file, "r");
299
    struct stat st;
300 301
    char *tmp;
    int len, tmplen, buflen;
302

303
    if (!fp) {
304
        fprintf(stderr, "%s: failed to open: %s\n", file, strerror(errno));
305
        return -1;
306
    }
307 308

    if (fstat(fileno(fp), &st) < 0) {
309
        fprintf(stderr, "%s: failed to fstat: %s\n", file, strerror(errno));
310
        VIR_FORCE_FCLOSE(fp);
311 312 313
        return -1;
    }

314 315 316
    tmplen = buflen = st.st_size + 1;

    if (VIR_ALLOC_N(*buf, buflen) < 0) {
317
        VIR_FORCE_FCLOSE(fp);
318 319 320
        return -1;
    }

321
    tmp = *buf;
322
    (*buf)[0] = '\0';
323
    if (st.st_size) {
324 325 326
        /* read the file line by line */
        while (fgets(tmp, tmplen, fp) != NULL) {
            len = strlen(tmp);
327 328 329
            /* stop on an empty line */
            if (len == 0)
                break;
330 331 332 333 334 335 336 337 338 339
            /* 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)) {
340
            fprintf(stderr, "%s: read failed: %s\n", file, strerror(errno));
341
            VIR_FORCE_FCLOSE(fp);
342
            VIR_FREE(*buf);
343 344
            return -1;
        }
345 346
    }

347
    VIR_FORCE_FCLOSE(fp);
348
    return 0;
349 350
}

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401

static char *
virTestLoadFileGetPath(const char *p,
                       va_list ap)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *path = NULL;

    virBufferAddLit(&buf, abs_srcdir "/");

    if (p) {
        virBufferAdd(&buf, p, -1);
        virBufferStrcatVArgs(&buf, ap);
    }

    if (!(path = virBufferContentAndReset(&buf)))
        VIR_TEST_VERBOSE("failed to format file path");

    return path;
}


/**
 * virTestLoadFilePath:
 * @...: file name components terminated with a NULL
 *
 * Constructs the test file path from variable arguments and loads the file.
 * 'abs_srcdir' is automatically prepended.
 */
char *
virTestLoadFilePath(const char *p, ...)
{
    char *path = NULL;
    char *ret = NULL;
    va_list ap;

    va_start(ap, p);

    if (!(path = virTestLoadFileGetPath(p, ap)))
        goto cleanup;

    ignore_value(virTestLoadFile(path, &ret));

 cleanup:
    va_end(ap);
    VIR_FREE(path);

    return ret;
}


402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
/**
 * virTestLoadFileJSON:
 * @...: name components terminated with a NULL
 *
 * Constructs the test file path from variable arguments and loads and parses
 * the JSON file. 'abs_srcdir' is automatically prepended to the path.
 */
virJSONValuePtr
virTestLoadFileJSON(const char *p, ...)
{
    virJSONValuePtr ret = NULL;
    char *jsonstr = NULL;
    char *path = NULL;
    va_list ap;

    va_start(ap, p);

    if (!(path = virTestLoadFileGetPath(p, ap)))
        goto cleanup;

    if (virTestLoadFile(path, &jsonstr) < 0)
        goto cleanup;

    if (!(ret = virJSONValueFromString(jsonstr)))
        VIR_TEST_VERBOSE("failed to parse json from file '%s'", path);

 cleanup:
    va_end(ap);
    VIR_FREE(jsonstr);
    VIR_FREE(path);
    return ret;
}


A
Atsushi SAKAI 已提交
436
#ifndef WIN32
437
static
438 439
void virTestCaptureProgramExecChild(const char *const argv[],
                                    int pipefd)
440
{
441
    size_t i;
442 443 444 445
    int open_max;
    int stdinfd = -1;
    const char *const env[] = {
        "LANG=C",
446
        "LIBVIRT_DRIVER_DIR=" TEST_DRIVER_DIR,
447 448 449
        NULL
    };

450
    if ((stdinfd = open("/dev/null", O_RDONLY)) < 0)
451 452
        goto cleanup;

453
    open_max = sysconf(_SC_OPEN_MAX);
J
John Ferlan 已提交
454 455 456
    if (open_max < 0)
        goto cleanup;

457 458
    for (i = 0; i < open_max; i++) {
        if (i != stdinfd &&
459
            i != pipefd) {
460 461
            int tmpfd;
            tmpfd = i;
462 463
            VIR_FORCE_CLOSE(tmpfd);
        }
464 465 466 467 468 469
    }

    if (dup2(stdinfd, STDIN_FILENO) != STDIN_FILENO)
        goto cleanup;
    if (dup2(pipefd, STDOUT_FILENO) != STDOUT_FILENO)
        goto cleanup;
470
    if (dup2(pipefd, STDERR_FILENO) != STDERR_FILENO)
471 472 473 474
        goto cleanup;

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

 cleanup:
477
    VIR_FORCE_CLOSE(stdinfd);
478 479
}

480
int
481
virTestCaptureProgramOutput(const char *const argv[], char **buf, int maxlen)
482
{
483
    int pipefd[2];
484
    int len;
485 486 487 488

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

489
    pid_t pid = fork();
490
    switch (pid) {
491
    case 0:
492
        VIR_FORCE_CLOSE(pipefd[0]);
493
        virTestCaptureProgramExecChild(argv, pipefd[1]);
494

495
        VIR_FORCE_CLOSE(pipefd[1]);
496
        _exit(EXIT_FAILURE);
497

498 499
    case -1:
        return -1;
500

501
    default:
502 503 504
        VIR_FORCE_CLOSE(pipefd[1]);
        len = virFileReadLimFD(pipefd[0], maxlen, buf);
        VIR_FORCE_CLOSE(pipefd[0]);
505
        if (virProcessWait(pid, NULL, false) < 0)
E
Eric Blake 已提交
506
            return -1;
507

508
        return len;
509
    }
510
}
511
#else /* !WIN32 */
512
int
513 514 515
virTestCaptureProgramOutput(const char *const argv[] ATTRIBUTE_UNUSED,
                            char **buf ATTRIBUTE_UNUSED,
                            int maxlen ATTRIBUTE_UNUSED)
516
{
517 518
    return -1;
}
A
Atsushi SAKAI 已提交
519
#endif /* !WIN32 */
520

521 522 523 524 525 526 527
static int
virTestRewrapFile(const char *filename)
{
    int ret = -1;
    char *script = NULL;
    virCommandPtr cmd = NULL;

J
Ján Tomko 已提交
528 529 530 531
    if (!(virFileHasSuffix(filename, ".args") ||
          virFileHasSuffix(filename, ".ldargs")))
        return 0;

J
Ján Tomko 已提交
532 533 534 535 536
    if (!perl) {
        fprintf(stderr, "cannot rewrap %s: unable to find perl in path", filename);
        return -1;
    }

537 538 539
    if (virAsprintf(&script, "%s/test-wrap-argv.pl", abs_srcdir) < 0)
        goto cleanup;

J
Ján Tomko 已提交
540
    cmd = virCommandNewArgList(perl, script, "--in-place", filename, NULL);
541 542 543 544 545 546 547 548 549
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;

    ret = 0;
 cleanup:
    VIR_FREE(script);
    virCommandFree(cmd);
    return ret;
}
550 551

/**
552
 * @param stream: output stream to write differences to
553
 * @param expect: expected output text
554
 * @param expectName: name designator of the expected text
555
 * @param actual: actual output text
556
 * @param actualName: name designator of the actual text
557
 * @param regenerate: enable or disable regenerate functionality
558
 *
559 560 561
 * Display expected and actual output text, trimmed to first and last
 * characters at which differences occur. Displays names of the text strings if
 * non-NULL.
562
 */
563
static int
564 565 566 567 568 569
virTestDifferenceFullInternal(FILE *stream,
                              const char *expect,
                              const char *expectName,
                              const char *actual,
                              const char *actualName,
                              bool regenerate)
570
{
571 572 573 574 575 576 577 578 579 580 581 582 583 584
    const char *expectStart;
    const char *expectEnd;
    const char *actualStart;
    const char *actualEnd;

    if (!expect)
        expect = "";
    if (!actual)
        actual = "";

    expectStart = expect;
    expectEnd = expect + (strlen(expect)-1);
    actualStart = actual;
    actualEnd = actual + (strlen(actual)-1);
585

586
    if (expectName && regenerate && (virTestGetRegenerate() > 0)) {
587 588
        if (virFileWriteStr(expectName, actual, 0666) < 0) {
            virDispatchError(NULL);
589
            return -1;
590
        }
591

592 593
        if (virTestRewrapFile(expectName) < 0) {
            virDispatchError(NULL);
594
            return -1;
595
        }
596 597
    }

598
    if (!virTestGetDebug())
599 600
        return 0;

601
    if (virTestGetDebug() < 2) {
602 603 604 605 606 607
        /* Skip to first character where they differ */
        while (*expectStart && *actualStart &&
               *actualStart == *expectStart) {
            actualStart++;
            expectStart++;
        }
608

609 610 611 612 613 614 615
        /* Work backwards to last character where they differ */
        while (actualEnd > actualStart &&
               expectEnd > expectStart &&
               *actualEnd == *expectEnd) {
            actualEnd--;
            expectEnd--;
        }
616 617 618
    }

    /* Show the trimmed differences */
619 620
    if (expectName)
        fprintf(stream, "\nIn '%s':", expectName);
E
Eric Blake 已提交
621
    fprintf(stream, "\nOffset %d\nExpect [", (int) (expectStart - expect));
622 623 624 625
    if ((expectEnd - expectStart + 1) &&
        fwrite(expectStart, (expectEnd-expectStart+1), 1, stream) != 1)
        return -1;
    fprintf(stream, "]\n");
626 627
    if (actualName)
        fprintf(stream, "In '%s':\n", actualName);
628 629 630 631 632 633 634 635 636 637 638
    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;
}
639

640 641 642 643 644 645 646 647 648 649 650 651 652
/**
 * @param stream: output stream to write differences to
 * @param expect: expected output text
 * @param expectName: name designator of the expected text
 * @param actual: actual output text
 * @param actualName: name designator of the actual text
 *
 * Display expected and actual output text, trimmed to first and last
 * characters at which differences occur. Displays names of the text strings if
 * non-NULL. If VIR_TEST_REGENERATE_OUTPUT is used, this function will
 * regenerate the expected file.
 */
int
653 654 655 656 657
virTestDifferenceFull(FILE *stream,
                      const char *expect,
                      const char *expectName,
                      const char *actual,
                      const char *actualName)
658
{
659 660
    return virTestDifferenceFullInternal(stream, expect, expectName,
                                         actual, actualName, true);
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
}

/**
 * @param stream: output stream to write differences to
 * @param expect: expected output text
 * @param expectName: name designator of the expected text
 * @param actual: actual output text
 * @param actualName: name designator of the actual text
 *
 * Display expected and actual output text, trimmed to first and last
 * characters at which differences occur. Displays names of the text strings if
 * non-NULL. If VIR_TEST_REGENERATE_OUTPUT is used, this function will not
 * regenerate the expected file.
 */
int
676 677 678 679 680
virTestDifferenceFullNoRegenerate(FILE *stream,
                                  const char *expect,
                                  const char *expectName,
                                  const char *actual,
                                  const char *actualName)
681
{
682 683
    return virTestDifferenceFullInternal(stream, expect, expectName,
                                         actual, actualName, false);
684 685
}

686
/**
687
 * @param stream: output stream to write differences to
688 689 690 691 692 693
 * @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
 */
694
int
695 696 697
virTestDifference(FILE *stream,
                  const char *expect,
                  const char *actual)
698
{
699 700 701
    return virTestDifferenceFullNoRegenerate(stream,
                                             expect, NULL,
                                             actual, NULL);
702 703 704
}


705
/**
706
 * @param stream: output stream to write differences to
707 708 709 710 711 712
 * @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
 */
713 714 715 716
int virTestDifferenceBin(FILE *stream,
                         const char *expect,
                         const char *actual,
                         size_t length)
717 718 719 720 721 722 723 724 725
{
    size_t start = 0, end = length;
    ssize_t i;

    if (!virTestGetDebug())
        return 0;

    if (virTestGetDebug() < 2) {
        /* Skip to first character where they differ */
726
        for (i = 0; i < length; i++) {
727 728 729 730 731 732 733
            if (expect[i] != actual[i]) {
                start = i;
                break;
            }
        }

        /* Work backwards to last character where they differ */
734
        for (i = (length -1); i >= 0; i--) {
735 736 737 738 739 740
            if (expect[i] != actual[i]) {
                end = i;
                break;
            }
        }
    }
E
Eric Blake 已提交
741
    /* Round to nearest boundary of 4, except that last word can be short */
742 743 744 745 746 747 748
    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);
749
    for (i = start; i < end; i++) {
750 751 752 753 754 755
        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);
756
    for (i = start; i < end; i++) {
757 758 759 760 761 762 763 764 765 766 767 768
        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;
}

C
Cole Robinson 已提交
769 770 771
/*
 * @param strcontent: String input content
 * @param filename: File to compare strcontent against
772 773
 *
 * If @strcontent is NULL, it's treated as an empty string.
C
Cole Robinson 已提交
774 775
 */
int
776 777
virTestCompareToFile(const char *strcontent,
                     const char *filename)
C
Cole Robinson 已提交
778 779 780 781
{
    int ret = -1;
    char *filecontent = NULL;
    char *fixedcontent = NULL;
782
    const char *cmpcontent = strcontent;
C
Cole Robinson 已提交
783

784 785 786
    if (!cmpcontent)
        cmpcontent = "";

787
    if (virTestLoadFile(filename, &filecontent) < 0 && !virTestGetRegenerate())
C
Cole Robinson 已提交
788 789
        goto failure;

790 791
    if (filecontent) {
        size_t filecontentLen = strlen(filecontent);
792
        size_t cmpcontentLen = strlen(cmpcontent);
793 794 795

        if (filecontentLen > 0 &&
            filecontent[filecontentLen - 1] == '\n' &&
796
            (cmpcontentLen == 0 || cmpcontent[cmpcontentLen - 1] != '\n')) {
797
            if (virAsprintf(&fixedcontent, "%s\n", cmpcontent) < 0)
798 799 800
                goto failure;
            cmpcontent = fixedcontent;
        }
C
Cole Robinson 已提交
801 802
    }

803
    if (STRNEQ_NULLABLE(cmpcontent, filecontent)) {
804 805
        virTestDifferenceFull(stderr,
                              filecontent, filename,
806
                              cmpcontent, NULL);
C
Cole Robinson 已提交
807 808 809 810 811 812 813 814 815 816
        goto failure;
    }

    ret = 0;
 failure:
    VIR_FREE(fixedcontent);
    VIR_FREE(filecontent);
    return ret;
}

817 818 819 820 821 822 823 824
/*
 * @param content: Input content
 * @param src: Source to compare @content against
 */
int
virTestCompareToULL(unsigned long long content,
                    unsigned long long src)
{
825 826
    VIR_AUTOFREE(char *) strcontent = NULL;
    VIR_AUTOFREE(char *) strsrc = NULL;
827 828

    if (virAsprintf(&strcontent, "%llu", content) < 0)
829
        return -1;
830 831

    if (virAsprintf(&strsrc, "%llu", src) < 0)
832
        return -1;
833

834
    return virTestCompareToString(strcontent, strsrc);
835 836
}

J
Jim Fehlig 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
/*
 * @param strcontent: String input content
 * @param strsrc: String source to compare strcontent against
 */
int
virTestCompareToString(const char *strcontent,
                       const char *strsrc)
{
    if (STRNEQ_NULLABLE(strcontent, strsrc)) {
        virTestDifference(stderr, strcontent, strsrc);
        return -1;
    }

    return 0;
}

853
static void
854 855
virTestErrorFuncQuiet(void *data ATTRIBUTE_UNUSED,
                      virErrorPtr err ATTRIBUTE_UNUSED)
856
{ }
857 858 859 860


/* register an error handler in tests when using connections */
void
861
virTestQuiesceLibvirtErrors(bool always)
862 863
{
    if (always || !virTestGetVerbose())
864
        virSetErrorFunc(NULL, virTestErrorFuncQuiet);
865
}
866

867 868 869 870 871 872
struct virtTestLogData {
    virBuffer buf;
};

static struct virtTestLogData testLog = { VIR_BUFFER_INITIALIZER };

873
static void
874
virtTestLogOutput(virLogSourcePtr source ATTRIBUTE_UNUSED,
875
                  virLogPriority priority ATTRIBUTE_UNUSED,
876 877
                  const char *filename ATTRIBUTE_UNUSED,
                  int lineno ATTRIBUTE_UNUSED,
878
                  const char *funcname ATTRIBUTE_UNUSED,
879
                  const char *timestamp,
M
Miloslav Trmač 已提交
880
                  virLogMetadataPtr metadata ATTRIBUTE_UNUSED,
881
                  unsigned int flags,
882
                  const char *rawstr ATTRIBUTE_UNUSED,
883 884
                  const char *str,
                  void *data)
885 886
{
    struct virtTestLogData *log = data;
887
    virCheckFlags(VIR_LOG_STACK_TRACE,);
888 889
    if (!testOOMActive)
        virBufferAsprintf(&log->buf, "%s: %s", timestamp, str);
890 891 892 893 894 895 896 897 898 899 900 901 902
}

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 *
903
virTestLogContentAndReset(void)
904 905 906 907 908 909
{
    char *ret;

    if (virBufferError(&testLog.buf))
        return NULL;
    ret = virBufferContentAndReset(&testLog.buf);
910 911 912
    if (!ret)
        ignore_value(VIR_STRDUP(ret, ""));
    return ret;
913 914
}

915

916
unsigned int
917 918
virTestGetDebug(void)
{
919 920
    if (testDebug == -1)
        testDebug = virTestGetFlag("VIR_TEST_DEBUG");
921 922
    return testDebug;
}
923

924
unsigned int
925 926
virTestGetVerbose(void)
{
927 928 929 930 931
    if (testVerbose == -1)
        testVerbose = virTestGetFlag("VIR_TEST_VERBOSE");
    return testVerbose || virTestGetDebug();
}

932
unsigned int
933 934
virTestGetExpensive(void)
{
935 936 937 938 939
    if (testExpensive == -1)
        testExpensive = virTestGetFlag("VIR_TEST_EXPENSIVE");
    return testExpensive;
}

940 941 942 943 944 945 946 947
unsigned int
virTestGetRegenerate(void)
{
    if (testRegenerate == -1)
        testRegenerate = virTestGetFlag("VIR_TEST_REGENERATE_OUTPUT");
    return testRegenerate;
}

M
Michal Privoznik 已提交
948 949 950 951 952 953 954
static int
virTestSetEnvPath(void)
{
    int ret = -1;
    const char *path = getenv("PATH");
    char *new_path = NULL;

955 956 957 958 959 960 961 962 963
    if (path) {
        if (strstr(path, abs_builddir) != path &&
            virAsprintf(&new_path, "%s:%s", abs_builddir, path) < 0)
            goto cleanup;
    } else {
        if (VIR_STRDUP(new_path, abs_builddir) < 0)
            goto cleanup;
    }

964 965
    if (new_path &&
        setenv("PATH", new_path, 1) < 0)
M
Michal Privoznik 已提交
966 967 968 969 970 971 972 973
        goto cleanup;

    ret = 0;
 cleanup:
    VIR_FREE(new_path);
    return ret;
}

974 975
#define TEST_MOCK (abs_builddir "/.libs/virtestmock.so")

976 977 978 979
int virTestMain(int argc,
                char **argv,
                int (*func)(void),
                ...)
980
{
981 982
    const char *lib;
    va_list ap;
983
    int ret;
984
    char *testRange = NULL;
985 986 987
#ifdef TEST_OOM
    char *oomstr;
#endif
988 989 990
    size_t noutputs = 0;
    virLogOutputPtr output = NULL;
    virLogOutputPtr *outputs = NULL;
991

992
    if (getenv("VIR_TEST_FILE_ACCESS"))
993
        VIR_TEST_PRELOAD(TEST_MOCK);
994

995 996
    va_start(ap, func);
    while ((lib = va_arg(ap, const char *)))
997
        VIR_TEST_PRELOAD(lib);
998
    va_end(ap);
999 1000 1001 1002 1003 1004 1005

    progname = last_component(argv[0]);
    if (STRPREFIX(progname, "lt-"))
        progname += 3;

    setenv("VIR_TEST_MOCK_PROGNAME", progname, 1);

1006 1007
    virFileActivateDirOverride(argv[0]);

M
Michal Privoznik 已提交
1008 1009 1010
    if (virTestSetEnvPath() < 0)
        return EXIT_AM_HARDFAIL;

1011
    if (!virFileExists(abs_srcdir))
1012
        return EXIT_AM_HARDFAIL;
E
Eric Blake 已提交
1013 1014 1015

    if (argc > 1) {
        fprintf(stderr, "Usage: %s\n", argv[0]);
1016 1017 1018 1019
        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 已提交
1020 1021 1022
        return EXIT_FAILURE;
    }
    fprintf(stderr, "TEST: %s\n", progname);
1023

1024
    if (virThreadInitialize() < 0 ||
1025
        virErrorInitialize() < 0)
1026
        return EXIT_FAILURE;
1027

1028
    virLogSetFromEnv();
1029
    if (!getenv("LIBVIRT_DEBUG") && !virLogGetNbOutputs()) {
1030 1031 1032 1033 1034 1035 1036
        if (!(output = virLogOutputNew(virtTestLogOutput, virtTestLogClose,
                                       &testLog, VIR_LOG_DEBUG,
                                       VIR_LOG_TO_STDERR, NULL)) ||
            VIR_APPEND_ELEMENT(outputs, noutputs, output) < 0 ||
            virLogDefineOutputs(outputs, noutputs) < 0) {
            virLogOutputFree(output);
            virLogOutputListFree(outputs, noutputs);
1037
            return EXIT_FAILURE;
1038
        }
1039
    }
1040

1041
    if ((testRange = getenv("VIR_TEST_RANGE")) != NULL) {
1042
        if (!(testBitmap = virBitmapParseUnlimited(testRange))) {
1043 1044 1045 1046 1047
            fprintf(stderr, "Cannot parse range %s\n", testRange);
            return EXIT_FAILURE;
        }
    }

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
#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 */

J
Ján Tomko 已提交
1102 1103 1104
    /* Find perl early because some tests override PATH */
    perl = virFindFileInPath("perl");

E
Eric Blake 已提交
1105
    ret = (func)();
1106 1107

    virResetLastError();
1108
    if (!virTestGetVerbose() && ret != EXIT_AM_SKIP) {
E
Eric Blake 已提交
1109
        if (testCounter == 0 || testCounter % 40)
1110 1111
            fprintf(stderr, "%*s", 40 - (int)(testCounter % 40), "");
        fprintf(stderr, " %-3zu %s\n", testCounter, ret == 0 ? "OK" : "FAIL");
1112
    }
1113
    virLogReset();
J
Ján Tomko 已提交
1114
    VIR_FREE(perl);
1115
    return ret;
1116
}
1117 1118


1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
/*
 * @cmdset contains a list of command line args, eg
 *
 * "/usr/sbin/iptables --table filter --insert INPUT --in-interface virbr0 --protocol tcp --destination-port 53 --jump ACCEPT
 *  /usr/sbin/iptables --table filter --insert INPUT --in-interface virbr0 --protocol udp --destination-port 53 --jump ACCEPT
 *  /usr/sbin/iptables --table filter --insert FORWARD --in-interface virbr0 --jump REJECT
 *  /usr/sbin/iptables --table filter --insert FORWARD --out-interface virbr0 --jump REJECT
 *  /usr/sbin/iptables --table filter --insert FORWARD --in-interface virbr0 --out-interface virbr0 --jump ACCEPT"
 *
 * And we're munging it in-place to strip the path component
 * of the command line, to produce
 *
 * "iptables --table filter --insert INPUT --in-interface virbr0 --protocol tcp --destination-port 53 --jump ACCEPT
 *  iptables --table filter --insert INPUT --in-interface virbr0 --protocol udp --destination-port 53 --jump ACCEPT
 *  iptables --table filter --insert FORWARD --in-interface virbr0 --jump REJECT
 *  iptables --table filter --insert FORWARD --out-interface virbr0 --jump REJECT
 *  iptables --table filter --insert FORWARD --in-interface virbr0 --out-interface virbr0 --jump ACCEPT"
 */
1137
void virTestClearCommandPath(char *cmdset)
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
{
    size_t offset = 0;
    char *lineStart = cmdset;
    char *lineEnd = strchr(lineStart, '\n');

    while (lineStart) {
        char *dirsep;
        char *movestart;
        size_t movelen;
        dirsep = strchr(lineStart, ' ');
        if (dirsep) {
            while (dirsep > lineStart && *dirsep != '/')
                dirsep--;
            if (*dirsep == '/')
                dirsep++;
            movestart = dirsep;
        } else {
            movestart = lineStart;
        }
        movelen = lineEnd ? lineEnd - movestart : strlen(movestart);

        if (movelen) {
            memmove(cmdset + offset, movestart, movelen + 1);
            offset += movelen + 1;
        }
        lineStart = lineEnd ? lineEnd + 1 : NULL;
        lineEnd = lineStart ? strchr(lineStart, '\n') : NULL;
    }
    cmdset[offset] = '\0';
}


1170 1171 1172 1173 1174 1175
virCapsPtr virTestGenericCapsInit(void)
{
    virCapsPtr caps;
    virCapsGuestPtr guest;

    if ((caps = virCapabilitiesNew(VIR_ARCH_X86_64,
1176
                                   false, false)) == NULL)
1177 1178
        return NULL;

1179
    if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM, VIR_ARCH_I686,
1180 1181 1182 1183
                                         "/usr/bin/acme-virt", NULL,
                                         0, NULL)) == NULL)
        goto error;

1184
    if (!virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_TEST, NULL, NULL, 0, NULL))
1185
        goto error;
1186 1187 1188 1189 1190 1191
    if (!virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_QEMU,
                                       NULL, NULL, 0, NULL))
        goto error;
    if (!virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_KVM,
                                       NULL, NULL, 0, NULL))
        goto error;
1192

1193
    if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM, VIR_ARCH_X86_64,
1194 1195 1196 1197
                                         "/usr/bin/acme-virt", NULL,
                                         0, NULL)) == NULL)
        goto error;

1198
    if (!virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_TEST, NULL, NULL, 0, NULL))
1199
        goto error;
1200 1201 1202 1203 1204 1205
    if (!virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_QEMU,
                                       NULL, NULL, 0, NULL))
        goto error;
    if (!virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_KVM,
                                       NULL, NULL, 0, NULL))
        goto error;
1206 1207


1208
    if (virTestGetDebug() > 1) {
1209 1210 1211 1212 1213 1214
        char *caps_str;

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

1215
        VIR_TEST_DEBUG("Generic driver capabilities:\n%s", caps_str);
1216 1217 1218 1219 1220 1221

        VIR_FREE(caps_str);
    }

    return caps;

1222
 error:
1223 1224 1225 1226
    virObjectUnref(caps);
    return NULL;
}

1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277

#define MAX_CELLS 4
#define MAX_CPUS_IN_CELL 2
#define MAX_MEM_IN_CELL 2097152

/*
 * Build NUMA topology with cell id starting from (0 + seq)
 * for testing
 */
int
virTestCapsBuildNUMATopology(virCapsPtr caps,
                             int seq)
{
    virCapsHostNUMACellCPUPtr cell_cpus = NULL;
    int core_id, cell_id;
    int id;

    id = 0;
    for (cell_id = 0; cell_id < MAX_CELLS; cell_id++) {
        if (VIR_ALLOC_N(cell_cpus, MAX_CPUS_IN_CELL) < 0)
            goto error;

        for (core_id = 0; core_id < MAX_CPUS_IN_CELL; core_id++) {
            cell_cpus[core_id].id = id + core_id;
            cell_cpus[core_id].socket_id = cell_id + seq;
            cell_cpus[core_id].core_id = id + core_id;
            if (!(cell_cpus[core_id].siblings =
                  virBitmapNew(MAX_CPUS_IN_CELL)))
                goto error;
            ignore_value(virBitmapSetBit(cell_cpus[core_id].siblings, id));
        }
        id++;

        if (virCapabilitiesAddHostNUMACell(caps, cell_id + seq,
                                           MAX_MEM_IN_CELL,
                                           MAX_CPUS_IN_CELL, cell_cpus,
                                           VIR_ARCH_NONE, NULL,
                                           VIR_ARCH_NONE, NULL) < 0)
           goto error;

        cell_cpus = NULL;
    }

    return 0;

 error:
    virCapabilitiesClearHostNUMACellCPUTopology(cell_cpus, MAX_CPUS_IN_CELL);
    VIR_FREE(cell_cpus);
    return -1;
}

1278 1279 1280
static virDomainDefParserConfig virTestGenericDomainDefParserConfig = {
    .features = VIR_DOMAIN_DEF_FEATURE_INDIVIDUAL_VCPUS,
};
1281 1282 1283 1284

virDomainXMLOptionPtr virTestGenericDomainXMLConfInit(void)
{
    return virDomainXMLOptionNew(&virTestGenericDomainDefParserConfig,
1285
                                 NULL, NULL, NULL, NULL);
1286
}
1287 1288


1289 1290
int
testCompareDomXML2XMLFiles(virCapsPtr caps, virDomainXMLOptionPtr xmlopt,
1291
                           const char *infile, const char *outfile, bool live,
1292
                           unsigned int parseFlags,
1293
                           testCompareDomXML2XMLResult expectResult)
1294 1295 1296
{
    char *actual = NULL;
    int ret = -1;
1297
    testCompareDomXML2XMLResult result;
1298 1299 1300
    virDomainDefPtr def = NULL;
    unsigned int parse_flags = live ? 0 : VIR_DOMAIN_DEF_PARSE_INACTIVE;
    unsigned int format_flags = VIR_DOMAIN_DEF_FORMAT_SECURE;
1301 1302 1303

    parse_flags |= parseFlags;

1304 1305 1306 1307 1308
    if (!virFileExists(infile)) {
        VIR_TEST_DEBUG("Test input file '%s' is missing", infile);
        return -1;
    }

1309 1310 1311
    if (!live)
        format_flags |= VIR_DOMAIN_DEF_FORMAT_INACTIVE;

1312
    if (!(def = virDomainDefParseFile(infile, caps, xmlopt, NULL, parse_flags))) {
1313 1314 1315
        result = TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE;
        goto out;
    }
1316

1317
    if (!virDomainDefCheckABIStability(def, def, xmlopt)) {
1318
        VIR_TEST_DEBUG("ABI stability check failed on %s", infile);
1319 1320
        result = TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_STABILITY;
        goto out;
1321 1322
    }

1323 1324 1325 1326
    if (!(actual = virDomainDefFormat(def, caps, format_flags))) {
        result = TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_FORMAT;
        goto out;
    }
1327

1328
    if (virTestCompareToFile(actual, outfile) < 0) {
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
        result = TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_COMPARE;
        goto out;
    }

    result = TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS;

 out:
    if (result == expectResult) {
        ret = 0;
        if (expectResult != TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS) {
            VIR_TEST_DEBUG("Got expected failure code=%d msg=%s",
                           result, virGetLastErrorMessage());
        }
    } else {
        ret = -1;
        VIR_TEST_DEBUG("Expected result code=%d but received code=%d",
                       expectResult, result);
    }
1347 1348 1349 1350 1351 1352 1353

    VIR_FREE(actual);
    virDomainDefFree(def);
    return ret;
}


1354 1355 1356 1357 1358 1359
static int virtTestCounter;
static char virtTestCounterStr[128];
static char *virtTestCounterPrefixEndOffset;


/**
1360
 * virTestCounterReset:
1361 1362 1363
 * @prefix: name of the test group
 *
 * Resets the counter and sets up the test group name to use with
1364
 * virTestCounterNext(). This function is not thread safe.
1365 1366 1367 1368 1369
 *
 * Note: The buffer for the assembled message is 128 bytes long. Longer test
 * case names (including the number index) will be silently truncated.
 */
void
1370
virTestCounterReset(const char *prefix)
1371 1372 1373 1374 1375 1376 1377 1378 1379
{
    virtTestCounter = 0;

    ignore_value(virStrcpyStatic(virtTestCounterStr, prefix));
    virtTestCounterPrefixEndOffset = strchrnul(virtTestCounterStr, '\0');
}


/**
1380
 * virTestCounterNext:
1381 1382 1383 1384 1385
 *
 * This function is designed to ease test creation and reordering by adding
 * a way to do automagic test case numbering.
 *
 * Returns string consisting of test name prefix configured via
1386
 * virTestCounterReset() and a number that increments in every call of this
1387 1388 1389 1390 1391 1392
 * function. This function is not thread safe.
 *
 * Note: The buffer for the assembled message is 128 bytes long. Longer test
 * case names (including the number index) will be silently truncated.
 */
const char
1393
*virTestCounterNext(void)
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
{
    size_t len = ARRAY_CARDINALITY(virtTestCounterStr);

    /* calculate length of the rest of the string */
    len -= (virtTestCounterPrefixEndOffset - virtTestCounterStr);

    snprintf(virtTestCounterPrefixEndOffset, len, "%d", ++virtTestCounter);

    return virtTestCounterStr;
}