testutils.c 17.0 KB
Newer Older
K
Karel Zak 已提交
1
/*
2
 * testutils.c: basic test utils
K
Karel Zak 已提交
3
 *
4
 * Copyright (C) 2005-2013 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
#ifdef HAVE_PATHS_H
51
# include <paths.h>
52 53
#endif

54 55
#define VIR_FROM_THIS VIR_FROM_NONE

K
Karel Zak 已提交
56
#define GETTIMEOFDAY(T) gettimeofday(T, NULL)
57
#define DIFF_MSEC(T, U)                                 \
58
    ((((int) ((T)->tv_sec - (U)->tv_sec)) * 1000000.0 + \
59
      ((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0)
K
Karel Zak 已提交
60

E
Eric Blake 已提交
61
#include "virfile.h"
62

63
static unsigned int testDebug = -1;
64
static unsigned int testVerbose = -1;
65
static unsigned int testExpensive = -1;
66

67 68 69
static size_t testCounter = 0;
static size_t testStart = 0;
static size_t testEnd = 0;
70

E
Eric Blake 已提交
71 72
char *progname;

73 74 75 76 77
void virtTestResult(const char *name, int ret, const char *msg, ...)
{
    va_list vargs;
    va_start(vargs, msg);

78 79 80
    if (testCounter == 0 && !virTestGetVerbose())
        fprintf(stderr, "      ");

81 82
    testCounter++;
    if (virTestGetVerbose()) {
83
        fprintf(stderr, "%3zu) %-60s ", testCounter, name);
84 85 86 87 88
        if (ret == 0)
            fprintf(stderr, "OK\n");
        else {
            fprintf(stderr, "FAILED\n");
            if (msg) {
89
                char *str;
90
                if (virVasprintfQuiet(&str, msg, vargs) == 0) {
91 92 93
                    fprintf(stderr, "%s", str);
                    VIR_FREE(str);
                }
94 95 96 97 98
            }
        }
    } else {
        if (testCounter != 1 &&
            !((testCounter-1) % 40)) {
99
            fprintf(stderr, " %-3zu\n", (testCounter-1));
100 101 102 103 104 105 106 107 108 109 110
            fprintf(stderr, "      ");
        }
        if (ret == 0)
            fprintf(stderr, ".");
        else
            fprintf(stderr, "!");
    }

    va_end(vargs);
}

111
/*
112
 * Runs test
113 114
 *
 * returns: -1 = error, 0 = success
K
Karel Zak 已提交
115 116
 */
int
117 118
virtTestRun(const char *title,
            int (*body)(const void *data), const void *data)
K
Karel Zak 已提交
119
{
120
    int ret = 0;
121

122 123 124
    if (testCounter == 0 && !virTestGetVerbose())
        fprintf(stderr, "      ");

125
    testCounter++;
126

127 128 129 130 131 132 133

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

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

137 138 139 140 141 142
    virResetLastError();
    ret = body(data);
    virErrorPtr err = virGetLastError();
    if (err) {
        if (virTestGetVerbose() || virTestGetDebug())
            virDispatchError(NULL);
143
    }
144

D
Daniel P. Berrange 已提交
145
    if (virTestGetVerbose()) {
146
        if (ret == 0)
D
Daniel P. Berrange 已提交
147 148 149 150 151 152 153 154 155 156
            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, "      ");
157
            }
D
Daniel P. Berrange 已提交
158
        if (ret == 0)
159
                fprintf(stderr, ".");
D
Daniel P. Berrange 已提交
160 161 162 163
        else if (ret == EXIT_AM_SKIP)
            fprintf(stderr, "_");
        else
            fprintf(stderr, "!");
164
    }
165 166

    return ret;
K
Karel Zak 已提交
167
}
168

169 170 171 172 173 174
/* 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)
{
175
    FILE *fp = fopen(file, "r");
176
    struct stat st;
177 178
    char *tmp;
    int len, tmplen, buflen;
179

180
    if (!fp) {
181
        fprintf(stderr, "%s: failed to open: %s\n", file, strerror(errno));
182
        return -1;
183
    }
184 185

    if (fstat(fileno(fp), &st) < 0) {
186
        fprintf(stderr, "%s: failed to fstat: %s\n", file, strerror(errno));
187
        VIR_FORCE_FCLOSE(fp);
188 189 190
        return -1;
    }

191 192 193
    tmplen = buflen = st.st_size + 1;

    if (VIR_ALLOC_N(*buf, buflen) < 0) {
194
        fprintf(stderr, "%s: larger than available memory (> %d)\n", file, buflen);
195
        VIR_FORCE_FCLOSE(fp);
196 197 198
        return -1;
    }

199
    tmp = *buf;
200
    (*buf)[0] = '\0';
201
    if (st.st_size) {
202 203 204
        /* read the file line by line */
        while (fgets(tmp, tmplen, fp) != NULL) {
            len = strlen(tmp);
205 206 207
            /* stop on an empty line */
            if (len == 0)
                break;
208 209 210 211 212 213 214 215 216 217
            /* 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)) {
218
            fprintf(stderr, "%s: read failed: %s\n", file, strerror(errno));
219
            VIR_FORCE_FCLOSE(fp);
220
            VIR_FREE(*buf);
221 222
            return -1;
        }
223 224
    }

225
    VIR_FORCE_FCLOSE(fp);
226
    return strlen(*buf);
227 228
}

A
Atsushi SAKAI 已提交
229
#ifndef WIN32
230 231
static
void virtTestCaptureProgramExecChild(const char *const argv[],
232
                                     int pipefd) {
233
    size_t i;
234 235 236 237
    int open_max;
    int stdinfd = -1;
    const char *const env[] = {
        "LANG=C",
238
# if WITH_DRIVER_MODULES
239
        "LIBVIRT_DRIVER_DIR=" TEST_DRIVER_DIR,
240
# endif
241 242 243
        NULL
    };

244
    if ((stdinfd = open("/dev/null", O_RDONLY)) < 0)
245 246
        goto cleanup;

247
    open_max = sysconf(_SC_OPEN_MAX);
J
John Ferlan 已提交
248 249 250
    if (open_max < 0)
        goto cleanup;

251 252
    for (i = 0; i < open_max; i++) {
        if (i != stdinfd &&
253
            i != pipefd) {
254 255
            int tmpfd;
            tmpfd = i;
256 257
            VIR_FORCE_CLOSE(tmpfd);
        }
258 259 260 261 262 263
    }

    if (dup2(stdinfd, STDIN_FILENO) != STDIN_FILENO)
        goto cleanup;
    if (dup2(pipefd, STDOUT_FILENO) != STDOUT_FILENO)
        goto cleanup;
264
    if (dup2(pipefd, STDERR_FILENO) != STDERR_FILENO)
265 266 267 268
        goto cleanup;

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

 cleanup:
271
    VIR_FORCE_CLOSE(stdinfd);
272 273
}

274 275 276
int
virtTestCaptureProgramOutput(const char *const argv[], char **buf, int maxlen)
{
277
    int pipefd[2];
278
    int len;
279 280 281 282

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

283
    pid_t pid = fork();
284
    switch (pid) {
285
    case 0:
286
        VIR_FORCE_CLOSE(pipefd[0]);
287 288
        virtTestCaptureProgramExecChild(argv, pipefd[1]);

289
        VIR_FORCE_CLOSE(pipefd[1]);
290
        _exit(EXIT_FAILURE);
291

292 293
    case -1:
        return -1;
294

295
    default:
296 297 298
        VIR_FORCE_CLOSE(pipefd[1]);
        len = virFileReadLimFD(pipefd[0], maxlen, buf);
        VIR_FORCE_CLOSE(pipefd[0]);
299
        if (virProcessWait(pid, NULL) < 0)
E
Eric Blake 已提交
300
            return -1;
301

302
        return len;
303
    }
304
}
305
#else /* !WIN32 */
306 307 308 309 310
int
virtTestCaptureProgramOutput(const char *const argv[] ATTRIBUTE_UNUSED,
                             char **buf ATTRIBUTE_UNUSED,
                             int maxlen ATTRIBUTE_UNUSED)
{
311 312
    return -1;
}
A
Atsushi SAKAI 已提交
313
#endif /* !WIN32 */
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332


/**
 * @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);

333
    if (!virTestGetDebug())
334 335
        return 0;

336
    if (virTestGetDebug() < 2) {
337 338 339 340 341 342
        /* Skip to first character where they differ */
        while (*expectStart && *actualStart &&
               *actualStart == *expectStart) {
            actualStart++;
            expectStart++;
        }
343

344 345 346 347 348 349 350
        /* Work backwards to last character where they differ */
        while (actualEnd > actualStart &&
               expectEnd > expectStart &&
               *actualEnd == *expectEnd) {
            actualEnd--;
            expectEnd--;
        }
351 352 353
    }

    /* Show the trimmed differences */
E
Eric Blake 已提交
354
    fprintf(stream, "\nOffset %d\nExpect [", (int) (expectStart - expect));
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
    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;
}
370

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
/**
 * @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 */
392
        for (i = 0; i < length; i++) {
393 394 395 396 397 398 399
            if (expect[i] != actual[i]) {
                start = i;
                break;
            }
        }

        /* Work backwards to last character where they differ */
400
        for (i = (length -1); i >= 0; i--) {
401 402 403 404 405 406
            if (expect[i] != actual[i]) {
                end = i;
                break;
            }
        }
    }
E
Eric Blake 已提交
407
    /* Round to nearest boundary of 4, except that last word can be short */
408 409 410 411 412 413 414
    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);
415
    for (i = start; i < end; i++) {
416 417 418 419 420 421
        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);
422
    for (i = start; i < end; i++) {
423 424 425 426 427 428 429 430 431 432 433 434
        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;
}

435 436 437 438
static void
virtTestErrorFuncQuiet(void *data ATTRIBUTE_UNUSED,
                       virErrorPtr err ATTRIBUTE_UNUSED)
{ }
439 440 441 442 443 444 445 446 447


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

449 450 451 452 453 454
struct virtTestLogData {
    virBuffer buf;
};

static struct virtTestLogData testLog = { VIR_BUFFER_INITIALIZER };

455
static void
456
virtTestLogOutput(virLogSource source ATTRIBUTE_UNUSED,
457
                  virLogPriority priority ATTRIBUTE_UNUSED,
458 459
                  const char *filename ATTRIBUTE_UNUSED,
                  int lineno ATTRIBUTE_UNUSED,
460
                  const char *funcname ATTRIBUTE_UNUSED,
461
                  const char *timestamp,
M
Miloslav Trmač 已提交
462
                  virLogMetadataPtr metadata ATTRIBUTE_UNUSED,
463
                  unsigned int flags,
464
                  const char *rawstr ATTRIBUTE_UNUSED,
465 466
                  const char *str,
                  void *data)
467 468
{
    struct virtTestLogData *log = data;
469
    virCheckFlags(VIR_LOG_STACK_TRACE,);
470
    virBufferAsprintf(&log->buf, "%s: %s", timestamp, str);
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
}

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);
491 492 493
    if (!ret)
        ignore_value(VIR_STRDUP(ret, ""));
    return ret;
494 495
}

496

497 498 499 500
static unsigned int
virTestGetFlag(const char *name) {
    char *flagStr;
    unsigned int flag;
501

502
    if ((flagStr = getenv(name)) == NULL)
503 504
        return 0;

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

508 509 510 511
    return flag;
}

unsigned int
512
virTestGetDebug(void) {
513 514
    if (testDebug == -1)
        testDebug = virTestGetFlag("VIR_TEST_DEBUG");
515 516
    return testDebug;
}
517

518
unsigned int
519
virTestGetVerbose(void) {
520 521 522 523 524
    if (testVerbose == -1)
        testVerbose = virTestGetFlag("VIR_TEST_VERBOSE");
    return testVerbose || virTestGetDebug();
}

525 526 527 528 529 530 531
unsigned int
virTestGetExpensive(void) {
    if (testExpensive == -1)
        testExpensive = virTestGetFlag("VIR_TEST_EXPENSIVE");
    return testExpensive;
}

532 533
int virtTestMain(int argc,
                 char **argv,
E
Eric Blake 已提交
534
                 int (*func)(void))
535 536
{
    int ret;
537
    char *testRange = NULL;
538

539
    if (!virFileExists(abs_srcdir))
540
        return EXIT_AM_HARDFAIL;
E
Eric Blake 已提交
541

E
Eric Blake 已提交
542 543 544
    progname = last_component(argv[0]);
    if (STRPREFIX(progname, "lt-"))
        progname += 3;
E
Eric Blake 已提交
545 546
    if (argc > 1) {
        fprintf(stderr, "Usage: %s\n", argv[0]);
547 548 549 550
        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 已提交
551 552 553
        return EXIT_FAILURE;
    }
    fprintf(stderr, "TEST: %s\n", progname);
554

555
    if (virThreadInitialize() < 0 ||
556
        virErrorInitialize() < 0)
557
        return EXIT_FAILURE;
558

559
    virLogSetFromEnv();
560 561
    if (!getenv("LIBVIRT_DEBUG") && !virLogGetNbOutputs()) {
        if (virLogDefineOutput(virtTestLogOutput, virtTestLogClose, &testLog,
562
                               VIR_LOG_DEBUG, VIR_LOG_TO_STDERR, NULL, 0) < 0)
563
            return EXIT_FAILURE;
564
    }
565

566 567
    if ((testRange = getenv("VIR_TEST_RANGE")) != NULL) {
        char *end = NULL;
568 569
        unsigned int iv;
        if (virStrToLong_ui(testRange, &end, 10, &iv) < 0) {
570 571 572
            fprintf(stderr, "Cannot parse range %s\n", testRange);
            return EXIT_FAILURE;
        }
573
        testStart = testEnd = iv;
574 575 576 577 578 579
        if (end && *end) {
            if (*end != '-') {
                fprintf(stderr, "Cannot parse range %s\n", testRange);
                return EXIT_FAILURE;
            }
            end++;
580
            if (virStrToLong_ui(end, NULL, 10, &iv) < 0) {
581 582 583
                fprintf(stderr, "Cannot parse range %s\n", testRange);
                return EXIT_FAILURE;
            }
584
            testEnd = iv;
585 586 587 588 589 590 591 592

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

E
Eric Blake 已提交
593
    ret = (func)();
594 595

    virResetLastError();
596
    if (!virTestGetVerbose() && ret != EXIT_AM_SKIP) {
E
Eric Blake 已提交
597
        if (testCounter == 0 || testCounter % 40)
598 599
            fprintf(stderr, "%*s", 40 - (int)(testCounter % 40), "");
        fprintf(stderr, " %-3zu %s\n", testCounter, ret == 0 ? "OK" : "FAIL");
600
    }
601
    return ret;
602
}
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647


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;
}