Files
libvirt/tests/virkmodtest.c
T

118 lines
2.7 KiB
C
Raw Normal View History

2014-01-29 18:33:42 -05:00
/*
* Copyright (C) 2014 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"
#ifdef __linux__
# define LIBVIRT_VIRCOMMANDPRIV_H_ALLOW
# include "vircommandpriv.h"
2014-01-29 18:33:42 -05:00
# include "virkmod.h"
2020-06-16 12:07:30 +01:00
# define MODNAME "vfio-pci"
2014-01-29 18:33:42 -05:00
# define VIR_FROM_THIS VIR_FROM_NONE
static int
2021-03-11 08:16:13 +01:00
checkOutput(virBuffer *buf, const char *exp_cmd)
2014-01-29 18:33:42 -05:00
{
2021-09-04 22:37:31 +02:00
g_autofree char *actual_cmd = NULL;
2014-01-29 18:33:42 -05:00
if (!(actual_cmd = virBufferContentAndReset(buf))) {
2019-10-24 14:25:59 +02:00
fprintf(stderr, "cannot compare buffer to exp: %s", exp_cmd);
2021-09-04 22:41:36 +02:00
return -1;
2014-01-29 18:33:42 -05:00
}
if (STRNEQ(exp_cmd, actual_cmd)) {
virTestDifference(stderr, exp_cmd, actual_cmd);
2021-09-04 22:41:36 +02:00
return -1;
2014-01-29 18:33:42 -05:00
}
2021-09-04 22:41:36 +02:00
return 0;
2014-01-29 18:33:42 -05:00
}
static int
2020-06-16 12:07:30 +01:00
testKModLoad(const void *args G_GNUC_UNUSED)
2014-01-29 18:33:42 -05:00
{
2021-09-04 22:37:31 +02:00
g_autofree char *errbuf = NULL;
2020-07-02 19:35:41 -04:00
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
g_autoptr(virCommandDryRunToken) dryRunToken = virCommandDryRunTokenNew();
2014-01-29 18:33:42 -05:00
virCommandSetDryRun(dryRunToken, &buf, false, false, NULL, NULL);
2014-01-29 18:33:42 -05:00
2020-06-16 12:07:30 +01:00
errbuf = virKModLoad(MODNAME);
2014-01-29 18:33:42 -05:00
if (errbuf) {
fprintf(stderr, "Failed to load, error: %s\n", errbuf);
2021-09-04 22:41:36 +02:00
return -1;
2014-01-29 18:33:42 -05:00
}
2020-06-16 12:07:30 +01:00
if (checkOutput(&buf, MODPROBE " -b " MODNAME "\n") < 0)
2021-09-04 22:41:36 +02:00
return -1;
2014-01-29 18:33:42 -05:00
2021-09-04 22:41:36 +02:00
return 0;
2014-01-29 18:33:42 -05:00
}
static int
2020-06-16 12:07:30 +01:00
testKModUnload(const void *args G_GNUC_UNUSED)
2014-01-29 18:33:42 -05:00
{
2021-09-04 22:37:31 +02:00
g_autofree char *errbuf = NULL;
2020-07-02 19:35:41 -04:00
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
g_autoptr(virCommandDryRunToken) dryRunToken = virCommandDryRunTokenNew();
2014-01-29 18:33:42 -05:00
virCommandSetDryRun(dryRunToken, &buf, false, false, NULL, NULL);
2014-01-29 18:33:42 -05:00
2020-06-16 12:07:30 +01:00
errbuf = virKModUnload(MODNAME);
2014-01-29 18:33:42 -05:00
if (errbuf) {
fprintf(stderr, "Failed to unload, error: %s\n", errbuf);
2021-09-04 22:41:36 +02:00
return -1;
2014-01-29 18:33:42 -05:00
}
2020-06-16 12:07:30 +01:00
if (checkOutput(&buf, RMMOD " " MODNAME "\n") < 0)
2021-09-04 22:41:36 +02:00
return -1;
2014-01-29 18:33:42 -05:00
2021-09-04 22:41:36 +02:00
return 0;
2014-01-29 18:33:42 -05:00
}
static int
mymain(void)
{
int ret = 0;
2020-06-16 12:07:30 +01:00
if (virTestRun("load", testKModLoad, NULL) < 0)
ret = -1;
if (virTestRun("unload", testKModUnload, NULL) < 0)
ret = -1;
2014-01-29 18:33:42 -05:00
2014-03-17 10:38:38 +01:00
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
2014-01-29 18:33:42 -05:00
}
VIR_TEST_MAIN(mymain);
2014-01-29 18:33:42 -05:00
#else
int
main(void)
{
return EXIT_AM_SKIP;
}
#endif