2006-05-09 15:35:46 +00:00
|
|
|
/*
|
2014-03-07 13:38:51 +00:00
|
|
|
* testutils.h: test utils
|
2006-05-09 15:35:46 +00:00
|
|
|
*
|
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
|
|
|
*/
|
|
|
|
|
2019-06-18 16:13:14 +00:00
|
|
|
#pragma once
|
2006-05-09 15:35:46 +00:00
|
|
|
|
2019-06-18 16:13:14 +00:00
|
|
|
#include "viralloc.h"
|
|
|
|
#include "virfile.h"
|
|
|
|
#include "virstring.h"
|
|
|
|
#include "virjson.h"
|
|
|
|
#include "capabilities.h"
|
|
|
|
#include "domain_conf.h"
|
2009-05-12 16:45:14 +00:00
|
|
|
|
2019-06-18 16:13:14 +00:00
|
|
|
#define EXIT_AM_SKIP 77 /* tell Automake we're skipping a test */
|
|
|
|
#define EXIT_AM_HARDFAIL 99 /* tell Automake that the framework is broken */
|
2011-04-29 16:21:20 +00:00
|
|
|
|
2021-04-13 07:28:31 +00:00
|
|
|
/* Meson provides these two definitions */
|
2019-06-18 16:13:14 +00:00
|
|
|
#if !defined(abs_srcdir) || !defined(abs_builddir)
|
2021-04-13 07:28:31 +00:00
|
|
|
# error Fix build system
|
2019-06-18 16:13:14 +00:00
|
|
|
#endif
|
2009-12-15 08:43:29 +00:00
|
|
|
|
2022-05-05 13:27:14 +00:00
|
|
|
void virTestSetHostArch(virArch arch);
|
2019-11-26 17:51:22 +00:00
|
|
|
|
2016-05-26 15:01:50 +00:00
|
|
|
int virTestRun(const char *title,
|
|
|
|
int (*body)(const void *data),
|
|
|
|
const void *data);
|
2021-08-20 14:29:45 +00:00
|
|
|
void virTestRunLog(int *ret,
|
|
|
|
const char *title,
|
|
|
|
int (*body)(const void *data),
|
|
|
|
const void *data);
|
2016-05-26 15:01:52 +00:00
|
|
|
int virTestLoadFile(const char *file, char **buf);
|
2017-07-25 13:11:31 +00:00
|
|
|
char *virTestLoadFilePath(const char *p, ...)
|
2019-10-14 12:13:31 +00:00
|
|
|
G_GNUC_NULL_TERMINATED;
|
2021-03-11 07:16:13 +00:00
|
|
|
virJSONValue *virTestLoadFileJSON(const char *p, ...)
|
2019-10-14 12:13:31 +00:00
|
|
|
G_GNUC_NULL_TERMINATED;
|
2017-07-25 16:40:50 +00:00
|
|
|
|
2016-05-26 15:01:51 +00:00
|
|
|
int virTestDifference(FILE *stream,
|
|
|
|
const char *expect,
|
|
|
|
const char *actual);
|
2016-05-26 15:01:54 +00:00
|
|
|
int virTestDifferenceFull(FILE *stream,
|
|
|
|
const char *expect,
|
|
|
|
const char *expectName,
|
|
|
|
const char *actual,
|
|
|
|
const char *actualName);
|
2016-05-26 15:02:01 +00:00
|
|
|
int virTestDifferenceFullNoRegenerate(FILE *stream,
|
|
|
|
const char *expect,
|
|
|
|
const char *expectName,
|
|
|
|
const char *actual,
|
|
|
|
const char *actualName);
|
2016-05-26 15:02:04 +00:00
|
|
|
int virTestDifferenceBin(FILE *stream,
|
|
|
|
const char *expect,
|
|
|
|
const char *actual,
|
|
|
|
size_t length);
|
2021-03-31 07:18:57 +00:00
|
|
|
int virTestCompareToFileFull(const char *actual,
|
|
|
|
const char *filename,
|
|
|
|
bool unwrap);
|
2019-02-19 17:15:23 +00:00
|
|
|
int virTestCompareToFile(const char *actual,
|
2016-05-26 15:01:53 +00:00
|
|
|
const char *filename);
|
2019-02-19 17:15:23 +00:00
|
|
|
int virTestCompareToString(const char *expect,
|
|
|
|
const char *actual);
|
|
|
|
int virTestCompareToULL(unsigned long long expect,
|
|
|
|
unsigned long long actual);
|
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);
|
2015-12-10 12:30:37 +00:00
|
|
|
unsigned int virTestGetRegenerate(void);
|
2019-11-19 10:52:40 +00:00
|
|
|
void virTestPropagateLibvirtError(void);
|
2009-10-16 15:37:36 +00:00
|
|
|
|
2019-05-03 08:31:02 +00:00
|
|
|
#define VIR_TEST_DEBUG(fmt, ...) \
|
2017-11-03 12:09:47 +00:00
|
|
|
do { \
|
|
|
|
if (virTestGetDebug()) \
|
2019-05-03 08:31:02 +00:00
|
|
|
fprintf(stderr, fmt "\n", ## __VA_ARGS__); \
|
2015-04-23 17:38:00 +00:00
|
|
|
} while (0)
|
|
|
|
|
2019-05-03 08:45:58 +00:00
|
|
|
#define VIR_TEST_VERBOSE(fmt, ...) \
|
2017-11-03 12:09:47 +00:00
|
|
|
do { \
|
|
|
|
if (virTestGetVerbose()) \
|
2019-05-03 08:45:58 +00:00
|
|
|
fprintf(stderr, fmt "\n", ## __VA_ARGS__); \
|
2015-04-23 17:38:00 +00:00
|
|
|
} while (0)
|
|
|
|
|
2016-05-26 15:01:58 +00:00
|
|
|
char *virTestLogContentAndReset(void);
|
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
|
|
|
|
2016-05-26 15:02:00 +00:00
|
|
|
void virTestQuiesceLibvirtErrors(bool always);
|
2013-09-17 13:20:24 +00:00
|
|
|
|
2016-05-26 15:01:57 +00:00
|
|
|
void virTestCounterReset(const char *prefix);
|
2016-05-26 15:02:06 +00:00
|
|
|
const char *virTestCounterNext(void);
|
2015-01-15 10:44:58 +00:00
|
|
|
|
2021-05-16 16:20:56 +00:00
|
|
|
/**
|
|
|
|
* The @func shall return EXIT_FAILURE or EXIT_SUCCESS or
|
|
|
|
* EXIT_AM_SKIP or EXIT_AM_HARDFAIL.
|
|
|
|
*/
|
2016-05-26 15:02:08 +00:00
|
|
|
int virTestMain(int argc,
|
|
|
|
char **argv,
|
|
|
|
int (*func)(void),
|
|
|
|
...);
|
2008-05-29 15:21:45 +00:00
|
|
|
|
2011-04-29 16:21:20 +00:00
|
|
|
/* Setup, then call func() */
|
2019-06-18 16:13:14 +00:00
|
|
|
#define VIR_TEST_MAIN(func) \
|
2017-11-03 12:09:47 +00:00
|
|
|
int main(int argc, char **argv) { \
|
|
|
|
return virTestMain(argc, argv, func, NULL); \
|
2008-05-29 15:21:45 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 16:13:15 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
# define PRELOAD_VAR "DYLD_INSERT_LIBRARIES"
|
2019-08-21 16:13:21 +00:00
|
|
|
# define FORCE_FLAT_NAMESPACE \
|
2019-12-18 17:16:19 +00:00
|
|
|
g_setenv("DYLD_FORCE_FLAT_NAMESPACE", "1", TRUE);
|
2019-08-21 16:13:17 +00:00
|
|
|
# define MOCK_EXT ".dylib"
|
2019-08-21 16:13:15 +00:00
|
|
|
#else
|
|
|
|
# define PRELOAD_VAR "LD_PRELOAD"
|
2019-08-21 16:13:21 +00:00
|
|
|
# define FORCE_FLAT_NAMESPACE
|
2019-08-21 16:13:17 +00:00
|
|
|
# define MOCK_EXT ".so"
|
2019-08-21 16:13:15 +00:00
|
|
|
#endif
|
|
|
|
|
2020-01-09 18:01:44 +00:00
|
|
|
#define VIR_TEST_PRELOAD(libs) \
|
2017-11-03 12:09:47 +00:00
|
|
|
do { \
|
2019-08-21 16:13:15 +00:00
|
|
|
const char *preload = getenv(PRELOAD_VAR); \
|
2020-01-09 18:01:44 +00:00
|
|
|
if (preload == NULL || strstr(preload, libs) == NULL) { \
|
2017-11-03 12:09:47 +00:00
|
|
|
char *newenv; \
|
|
|
|
if (!preload) { \
|
2020-01-09 18:01:44 +00:00
|
|
|
newenv = (char *) libs; \
|
2019-10-22 13:26:14 +00:00
|
|
|
} else { \
|
2020-01-09 18:01:44 +00:00
|
|
|
newenv = g_strdup_printf("%s:%s", libs, preload); \
|
2017-11-03 12:09:47 +00:00
|
|
|
} \
|
2019-12-18 17:16:19 +00:00
|
|
|
g_setenv(PRELOAD_VAR, newenv, TRUE); \
|
2019-08-21 16:13:21 +00:00
|
|
|
FORCE_FLAT_NAMESPACE \
|
2017-11-03 12:09:47 +00:00
|
|
|
execv(argv[0], argv); \
|
|
|
|
} \
|
2016-04-26 13:00:24 +00:00
|
|
|
} while (0)
|
|
|
|
|
2019-06-18 16:13:14 +00:00
|
|
|
#define VIR_TEST_MAIN_PRELOAD(func, ...) \
|
2017-11-03 12:09:47 +00:00
|
|
|
int main(int argc, char **argv) { \
|
|
|
|
return virTestMain(argc, argv, func, __VA_ARGS__, NULL); \
|
2012-08-10 13:31:14 +00:00
|
|
|
}
|
|
|
|
|
2020-05-28 00:40:50 +00:00
|
|
|
#define VIR_TEST_MOCK(mock) (abs_builddir "/lib" mock "mock" MOCK_EXT)
|
2019-08-21 16:13:16 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virCaps *virTestGenericCapsInit(void);
|
|
|
|
virCapsHostNUMA *virTestCapsBuildNUMATopology(int seq);
|
|
|
|
virDomainXMLOption *virTestGenericDomainXMLConfInit(void);
|
2013-11-12 11:57:56 +00:00
|
|
|
|
2016-04-08 16:04:10 +00:00
|
|
|
typedef enum {
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_STABILITY,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_FORMAT,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_COMPARE,
|
|
|
|
} testCompareDomXML2XMLResult;
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int testCompareDomXML2XMLFiles(virCaps *caps,
|
|
|
|
virDomainXMLOption *xmlopt,
|
2016-01-08 20:55:44 +00:00
|
|
|
const char *inxml,
|
|
|
|
const char *outfile,
|
2016-01-27 20:55:01 +00:00
|
|
|
bool live,
|
2016-04-08 16:04:10 +00:00
|
|
|
unsigned int parseFlags,
|
|
|
|
testCompareDomXML2XMLResult expectResult);
|
2021-09-07 13:31:42 +00:00
|
|
|
|
|
|
|
char *
|
|
|
|
virTestStablePath(const char *path);
|
2021-10-20 08:30:31 +00:00
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
int virCreateAnonymousFile(const uint8_t *data, size_t len);
|
|
|
|
#endif
|