2006-05-09 15:35:46 +00:00
|
|
|
/*
|
|
|
|
* utils.c: test utils
|
|
|
|
*
|
2013-02-22 22:42:39 +00:00
|
|
|
* Copyright (C) 2005, 2008-2013 Red Hat, Inc.
|
2006-05-09 15:35:46 +00:00
|
|
|
*
|
2012-07-27 09:39:53 +00:00
|
|
|
* 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-27 09:39:53 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2006-05-09 15:35:46 +00:00
|
|
|
*
|
|
|
|
* Karel Zak <kzak@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIT_TEST_UTILS_H__
|
2010-03-09 18:22:22 +00:00
|
|
|
# define __VIT_TEST_UTILS_H__
|
2006-05-09 15:35:46 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include <stdio.h>
|
2012-12-12 18:06:53 +00:00
|
|
|
# include "viralloc.h"
|
2013-07-18 09:54:21 +00:00
|
|
|
# include "virfile.h"
|
|
|
|
# include "virstring.h"
|
2009-05-12 16:45:14 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define EXIT_AM_SKIP 77 /* tell Automake we're skipping a test */
|
2011-04-29 16:21:20 +00:00
|
|
|
# define EXIT_AM_HARDFAIL 99 /* tell Automake that the framework is broken */
|
|
|
|
|
2013-07-29 18:01:19 +00:00
|
|
|
/* Work around lack of gnulib support for fprintf %z */
|
2013-07-29 19:06:27 +00:00
|
|
|
# ifndef NO_LIBVIRT
|
|
|
|
# undef fprintf
|
|
|
|
# define fprintf virFilePrintf
|
|
|
|
# endif
|
2013-07-29 18:01:19 +00:00
|
|
|
|
2011-04-29 16:21:20 +00:00
|
|
|
extern char *progname;
|
|
|
|
extern char *abs_srcdir;
|
2009-12-15 08:43:29 +00:00
|
|
|
|
2012-03-29 09:41:37 +00:00
|
|
|
void virtTestResult(const char *name, int ret, const char *msg, ...)
|
|
|
|
ATTRIBUTE_FMT_PRINTF(3,4);
|
2008-08-20 20:48:35 +00:00
|
|
|
int virtTestRun(const char *title,
|
|
|
|
int (*body)(const void *data),
|
|
|
|
const void *data);
|
2011-04-24 22:25:10 +00:00
|
|
|
int virtTestLoadFile(const char *file, char **buf);
|
|
|
|
int virtTestCaptureProgramOutput(const char *const argv[], char **buf, int maxlen);
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2009-05-21 14:22:51 +00:00
|
|
|
int virtTestClearLineRegex(const char *pattern,
|
|
|
|
char *string);
|
2006-05-09 15:35:46 +00:00
|
|
|
|
2008-08-20 20:48:35 +00:00
|
|
|
int virtTestDifference(FILE *stream,
|
|
|
|
const char *expect,
|
|
|
|
const char *actual);
|
2010-12-06 17:03:22 +00:00
|
|
|
int virtTestDifferenceBin(FILE *stream,
|
|
|
|
const char *expect,
|
|
|
|
const char *actual,
|
|
|
|
size_t length);
|
2006-05-09 15:35:46 +00:00
|
|
|
|
2009-11-30 19:01:31 +00:00
|
|
|
unsigned int virTestGetDebug(void);
|
|
|
|
unsigned int virTestGetVerbose(void);
|
2013-08-02 21:43:07 +00:00
|
|
|
unsigned int virTestGetExpensive(void);
|
2009-10-16 15:37:36 +00:00
|
|
|
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
char *virtTestLogContentAndReset(void);
|
|
|
|
|
2013-09-17 13:20:24 +00:00
|
|
|
void virtTestQuiesceLibvirtErrors(bool always);
|
|
|
|
|
2008-08-20 20:48:35 +00:00
|
|
|
int virtTestMain(int argc,
|
|
|
|
char **argv,
|
2011-04-29 16:21:20 +00:00
|
|
|
int (*func)(void));
|
2008-05-29 15:21:45 +00:00
|
|
|
|
2011-04-29 16:21:20 +00:00
|
|
|
/* Setup, then call func() */
|
|
|
|
# define VIRT_TEST_MAIN(func) \
|
|
|
|
int main(int argc, char **argv) { \
|
|
|
|
return virtTestMain(argc, argv, func); \
|
2008-05-29 15:21:45 +00:00
|
|
|
}
|
|
|
|
|
2012-08-10 13:31:14 +00:00
|
|
|
# define VIRT_TEST_MAIN_PRELOAD(func, lib) \
|
|
|
|
int main(int argc, char **argv) { \
|
|
|
|
const char *preload = getenv("LD_PRELOAD"); \
|
|
|
|
if (preload == NULL || strstr(preload, lib) == NULL) { \
|
|
|
|
char *newenv; \
|
2013-03-28 18:01:21 +00:00
|
|
|
if (!virFileIsExecutable(lib)) { \
|
|
|
|
perror(lib); \
|
|
|
|
return EXIT_FAILURE; \
|
|
|
|
} \
|
2013-07-30 08:41:50 +00:00
|
|
|
if (!preload) { \
|
|
|
|
newenv = (char *) lib; \
|
|
|
|
} else if (virAsprintf(&newenv, "%s:%s", lib, preload) < 0) { \
|
2012-08-10 13:31:14 +00:00
|
|
|
perror("virAsprintf"); \
|
2013-02-22 22:42:39 +00:00
|
|
|
return EXIT_FAILURE; \
|
2012-08-10 13:31:14 +00:00
|
|
|
} \
|
|
|
|
setenv("LD_PRELOAD", newenv, 1); \
|
|
|
|
execv(argv[0], argv); \
|
|
|
|
} \
|
|
|
|
return virtTestMain(argc, argv, func); \
|
|
|
|
}
|
|
|
|
|
2006-05-09 15:35:46 +00:00
|
|
|
#endif /* __VIT_TEST_UTILS_H__ */
|