libvirt/tests/storagepoolcapstest.c
John Ferlan 73426c55b7 tests: Introduce storage pool capabilites test
Add a new test for the storage pool capabilities. There will be
one test mocked with every backend available (full) and one where
only the file system pool is available.

Signed-off-by: John Ferlan <jferlan@redhat.com>
ACKed-by: Michal Privoznik <mprivozn@redhat.com>
2019-03-06 11:12:48 -05:00

125 lines
3.1 KiB
C

/*
* Copyright (C) Red Hat, Inc. 2019
*
* 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 "storage_conf.h"
#include "storage_capabilities.h"
#define VIR_FROM_THIS VIR_FROM_NONE
struct test_virStoragePoolCapsFormatData {
const char *filename;
virCapsPtr driverCaps;
};
static void
test_virCapabilitiesAddFullStoragePool(virCapsPtr caps)
{
size_t i;
for (i = 0; i < VIR_STORAGE_POOL_LAST; i++)
virCapabilitiesAddStoragePool(caps, i);
}
static void
test_virCapabilitiesAddFSStoragePool(virCapsPtr caps)
{
virCapabilitiesAddStoragePool(caps, VIR_STORAGE_POOL_FS);
}
static int
test_virStoragePoolCapsFormat(const void *opaque)
{
struct test_virStoragePoolCapsFormatData *data =
(struct test_virStoragePoolCapsFormatData *) opaque;
virCapsPtr driverCaps = data->driverCaps;
virStoragePoolCapsPtr poolCaps = NULL;
int ret = -1;
VIR_AUTOFREE(char *) path = NULL;
VIR_AUTOFREE(char *) poolCapsFromFile = NULL;
VIR_AUTOFREE(char *) poolCapsXML = NULL;
if (!(poolCaps = virStoragePoolCapsNew(driverCaps)))
goto cleanup;
if (virAsprintf(&path, "%s/storagepoolcapsschemadata/poolcaps-%s.xml",
abs_srcdir, data->filename) < 0)
goto cleanup;
if (virFileReadAll(path, 8192, &poolCapsFromFile) < 0)
goto cleanup;
if (!(poolCapsXML = virStoragePoolCapsFormat(poolCaps)))
goto cleanup;
if (STRNEQ(poolCapsFromFile, poolCapsXML)) {
virTestDifference(stderr, poolCapsFromFile, poolCapsXML);
goto cleanup;
}
ret = 0;
cleanup:
virObjectUnref(poolCaps);
return ret;
}
static int
mymain(void)
{
int ret = -1;
virCapsPtr fullCaps = NULL;
virCapsPtr fsCaps = NULL;
#define DO_TEST(Filename, DriverCaps) \
do { \
struct test_virStoragePoolCapsFormatData data = \
{.filename = Filename, .driverCaps = DriverCaps }; \
if (virTestRun(Filename, test_virStoragePoolCapsFormat, &data) < 0) \
goto cleanup; \
} while (0)
if (!(fullCaps = virCapabilitiesNew(VIR_ARCH_NONE, false, false)) ||
!(fsCaps = virCapabilitiesNew(VIR_ARCH_NONE, false, false)))
goto cleanup;
test_virCapabilitiesAddFullStoragePool(fullCaps);
test_virCapabilitiesAddFSStoragePool(fsCaps);
DO_TEST("full", fullCaps);
DO_TEST("fs", fsCaps);
ret = 0;
cleanup:
virObjectUnref(fullCaps);
virObjectUnref(fsCaps);
return ret;
}
VIR_TEST_MAIN(mymain)