mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 22:55:23 +00:00
c8238579fb
Historically, we declared pointer type to our types: typedef struct _virXXX virXXX; typedef virXXX *virXXXPtr; But usefulness of such declaration is questionable, at best. Unfortunately, we can't drop every such declaration - we have to carry some over, because they are part of public API (e.g. virDomainPtr). But for internal types - we can do drop them and use what every other C project uses 'virXXX *'. This change was generated by a very ugly shell script that generated sed script which was then called over each file in the repository. For the shell script refer to the cover letter: https://listman.redhat.com/archives/libvir-list/2021-March/msg00537.html Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
158 lines
4.6 KiB
C
158 lines
4.6 KiB
C
/*
|
|
* Copyright (C) 2013 Red Hat, Inc.
|
|
*
|
|
* 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
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "testutils.h"
|
|
|
|
#include "virlog.h"
|
|
|
|
struct testLogData {
|
|
const char *str;
|
|
int count;
|
|
bool pass;
|
|
};
|
|
|
|
static int
|
|
testLogMatch(const void *opaque)
|
|
{
|
|
const struct testLogData *data = opaque;
|
|
|
|
bool got = virLogProbablyLogMessage(data->str);
|
|
if (got != data->pass) {
|
|
VIR_TEST_DEBUG("Expected '%d' but got '%d' for '%s'",
|
|
data->pass, got, data->str);
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
testLogParseOutputs(const void *opaque)
|
|
{
|
|
int ret = -1;
|
|
int noutputs;
|
|
virLogOutput **outputs = NULL;
|
|
const struct testLogData *data = opaque;
|
|
|
|
noutputs = virLogParseOutputs(data->str, &outputs);
|
|
if (noutputs < 0) {
|
|
if (!data->pass) {
|
|
VIR_TEST_DEBUG("Got expected error: %s",
|
|
virGetLastErrorMessage());
|
|
virResetLastError();
|
|
ret = 0;
|
|
goto cleanup;
|
|
}
|
|
} else if (noutputs != data->count) {
|
|
VIR_TEST_DEBUG("Expected number of parsed outputs is %d, "
|
|
"but got %d", data->count, noutputs);
|
|
goto cleanup;
|
|
} else if (!data->pass) {
|
|
VIR_TEST_DEBUG("Test should have failed");
|
|
goto cleanup;
|
|
}
|
|
|
|
ret = 0;
|
|
cleanup:
|
|
virLogOutputListFree(outputs, noutputs);
|
|
return ret;
|
|
}
|
|
|
|
static int
|
|
testLogParseFilters(const void *opaque)
|
|
{
|
|
int ret = -1;
|
|
int nfilters;
|
|
virLogFilter **filters = NULL;
|
|
const struct testLogData *data = opaque;
|
|
|
|
nfilters = virLogParseFilters(data->str, &filters);
|
|
if (nfilters < 0) {
|
|
if (!data->pass) {
|
|
VIR_TEST_DEBUG("Got expected error: %s",
|
|
virGetLastErrorMessage());
|
|
virResetLastError();
|
|
ret = 0;
|
|
goto cleanup;
|
|
}
|
|
} else if (nfilters != data->count) {
|
|
VIR_TEST_DEBUG("Expected number of parsed outputs is %d, "
|
|
"but got %d", data->count, nfilters);
|
|
goto cleanup;
|
|
} else if (!data->pass) {
|
|
VIR_TEST_DEBUG("Test should have failed");
|
|
goto cleanup;
|
|
}
|
|
|
|
ret = 0;
|
|
cleanup:
|
|
virLogFilterListFree(filters, nfilters);
|
|
return ret;
|
|
}
|
|
|
|
static int
|
|
mymain(void)
|
|
{
|
|
int ret = 0;
|
|
|
|
#define DO_TEST_FULL(name, test, str, count, pass) \
|
|
do { \
|
|
struct testLogData data = { \
|
|
str, count, pass \
|
|
}; \
|
|
if (virTestRun(name, test, &data) < 0) \
|
|
ret = -1; \
|
|
} while (0)
|
|
|
|
#define TEST_LOG_MATCH_FAIL(str) \
|
|
DO_TEST_FULL("testLogMatch " # str, testLogMatch, str, 0, false)
|
|
#define TEST_LOG_MATCH(str) \
|
|
DO_TEST_FULL("testLogMatch " # str, testLogMatch, str, 0, true)
|
|
|
|
#define TEST_PARSE_OUTPUTS_FAIL(str, count) \
|
|
DO_TEST_FULL("testLogParseOutputs " # str, testLogParseOutputs, str, count, false)
|
|
#define TEST_PARSE_OUTPUTS(str, count) \
|
|
DO_TEST_FULL("testLogParseOutputs " # str, testLogParseOutputs, str, count, true)
|
|
#define TEST_PARSE_FILTERS_FAIL(str, count) \
|
|
DO_TEST_FULL("testLogParseFilters " # str, testLogParseFilters, str, count, false)
|
|
#define TEST_PARSE_FILTERS(str, count) \
|
|
DO_TEST_FULL("testLogParseFilters " # str, testLogParseFilters, str, count, true)
|
|
|
|
|
|
TEST_LOG_MATCH("2013-10-11 15:43:43.866+0000: 28302: info : libvirt version: 1.1.3");
|
|
|
|
TEST_LOG_MATCH_FAIL("libvirt: error : cannot execute binary /usr/libexec/libvirt_lxc: No such file or directory");
|
|
TEST_PARSE_OUTPUTS("1:file:/dev/null", 1);
|
|
TEST_PARSE_OUTPUTS("1:file:/dev/null 2:stderr", 2);
|
|
TEST_PARSE_OUTPUTS_FAIL("foo:stderr", 1);
|
|
TEST_PARSE_OUTPUTS_FAIL("1:bar", 1);
|
|
TEST_PARSE_OUTPUTS_FAIL("1:stderr:foobar", 1);
|
|
TEST_PARSE_FILTERS("1:foo", 1);
|
|
TEST_PARSE_FILTERS("1:foo 2:bar 3:foobar", 3);
|
|
TEST_PARSE_FILTERS_FAIL("5:foo", 1);
|
|
TEST_PARSE_FILTERS_FAIL("1:", 1);
|
|
TEST_PARSE_FILTERS_FAIL(":foo", 1);
|
|
TEST_PARSE_FILTERS_FAIL("1:+", 1);
|
|
|
|
return ret;
|
|
}
|
|
|
|
VIR_TEST_MAIN(mymain)
|