2009-10-08 17:26:30 -04:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
#include "testutils.h"
|
|
|
|
|
#include "storage_conf.h"
|
|
|
|
|
#include "testutilsqemu.h"
|
2013-04-03 12:36:23 +02:00
|
|
|
#include "virstring.h"
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2019-01-07 17:14:57 -05:00
|
|
|
#include "storage/storage_util.h"
|
|
|
|
|
|
2013-06-07 17:10:28 +02:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
static int
|
|
|
|
|
testCompareXMLToXMLFiles(const char *inxml, const char *outxml)
|
|
|
|
|
{
|
2019-10-15 15:16:31 +02:00
|
|
|
g_autofree char *actual = NULL;
|
2019-10-15 14:47:50 +02:00
|
|
|
g_autoptr(virStoragePoolDef) dev = NULL;
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2015-04-23 11:10:15 -04:00
|
|
|
if (!(dev = virStoragePoolDefParseFile(inxml)))
|
2019-02-01 12:03:16 -05:00
|
|
|
return -1;
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2010-02-10 11:42:56 +00:00
|
|
|
if (!(actual = virStoragePoolDefFormat(dev)))
|
2019-02-01 12:03:16 -05:00
|
|
|
return -1;
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2016-05-26 17:01:53 +02:00
|
|
|
if (virTestCompareToFile(actual, outxml) < 0)
|
2019-02-01 12:03:16 -05:00
|
|
|
return -1;
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2019-02-01 12:03:16 -05:00
|
|
|
return 0;
|
2009-10-08 17:26:30 -04:00
|
|
|
}
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
static int
|
|
|
|
|
testCompareXMLToXMLHelper(const void *data)
|
|
|
|
|
{
|
2019-10-15 15:16:31 +02:00
|
|
|
g_autofree char *inxml = NULL;
|
|
|
|
|
g_autofree char *outxml = NULL;
|
2011-04-25 00:25:10 +02:00
|
|
|
|
2019-10-22 15:26:14 +02:00
|
|
|
inxml = g_strdup_printf("%s/storagepoolxml2xmlin/%s.xml",
|
|
|
|
|
abs_srcdir, (const char*)data);
|
|
|
|
|
outxml = g_strdup_printf("%s/storagepoolxml2xmlout/%s.xml",
|
|
|
|
|
abs_srcdir, (const char*)data);
|
2011-04-25 00:25:10 +02:00
|
|
|
|
2019-02-01 12:03:16 -05:00
|
|
|
return testCompareXMLToXMLFiles(inxml, outxml);
|
2011-04-25 00:25:10 +02:00
|
|
|
}
|
2009-10-08 17:26:30 -04:00
|
|
|
|
|
|
|
|
static int
|
2011-04-29 10:21:20 -06:00
|
|
|
mymain(void)
|
2009-10-08 17:26:30 -04:00
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2017-11-03 13:09:47 +01:00
|
|
|
#define DO_TEST(name) \
|
|
|
|
|
if (virTestRun("Storage Pool XML-2-XML " name, \
|
|
|
|
|
testCompareXMLToXMLHelper, (name)) < 0) \
|
2009-10-08 17:26:30 -04:00
|
|
|
ret = -1
|
|
|
|
|
|
2019-01-07 17:14:57 -05:00
|
|
|
if (storageRegisterAll() < 0)
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-dir");
|
2013-11-20 17:04:05 -07:00
|
|
|
DO_TEST("pool-dir-naming");
|
2020-07-17 19:32:18 +01:00
|
|
|
DO_TEST("pool-dir-cow");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-fs");
|
|
|
|
|
DO_TEST("pool-logical");
|
2013-04-30 13:48:46 +02:00
|
|
|
DO_TEST("pool-logical-nopath");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-logical-create");
|
2017-03-28 15:11:52 +02:00
|
|
|
DO_TEST("pool-logical-noname");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-disk");
|
2016-01-07 06:57:28 -05:00
|
|
|
DO_TEST("pool-disk-device-nopartsep");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-iscsi");
|
|
|
|
|
DO_TEST("pool-iscsi-auth");
|
|
|
|
|
DO_TEST("pool-netfs");
|
2019-06-25 13:37:16 +02:00
|
|
|
DO_TEST("pool-netfs-slash");
|
2018-12-04 10:20:59 -05:00
|
|
|
DO_TEST("pool-netfs-auto");
|
2019-01-10 19:23:27 -05:00
|
|
|
DO_TEST("pool-netfs-protocol-ver");
|
2013-11-12 16:35:36 -07:00
|
|
|
DO_TEST("pool-netfs-gluster");
|
2015-06-03 11:43:00 -04:00
|
|
|
DO_TEST("pool-netfs-cifs");
|
2019-01-30 10:26:48 -05:00
|
|
|
#ifdef WITH_STORAGE_FS
|
2019-01-07 17:14:57 -05:00
|
|
|
DO_TEST("pool-netfs-ns-mountopts");
|
2019-01-30 10:26:48 -05:00
|
|
|
#endif
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-scsi");
|
2013-03-26 00:43:36 +08:00
|
|
|
DO_TEST("pool-scsi-type-scsi-host");
|
|
|
|
|
DO_TEST("pool-scsi-type-fc-host");
|
2014-11-10 11:19:51 -05:00
|
|
|
DO_TEST("pool-scsi-type-fc-host-managed");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-mpath");
|
2010-06-07 16:47:37 -04:00
|
|
|
DO_TEST("pool-iscsi-multiiqn");
|
2010-08-17 12:44:27 -05:00
|
|
|
DO_TEST("pool-iscsi-vendor-product");
|
2012-07-18 20:06:58 +01:00
|
|
|
DO_TEST("pool-sheepdog");
|
2013-10-15 17:06:18 -06:00
|
|
|
DO_TEST("pool-gluster");
|
|
|
|
|
DO_TEST("pool-gluster-sub");
|
2014-03-03 22:15:13 -05:00
|
|
|
DO_TEST("pool-scsi-type-scsi-host-stable");
|
2014-09-07 18:01:34 +04:00
|
|
|
DO_TEST("pool-zfs");
|
|
|
|
|
DO_TEST("pool-zfs-sourcedev");
|
2016-03-11 17:50:54 +01:00
|
|
|
DO_TEST("pool-rbd");
|
2019-01-30 10:26:48 -05:00
|
|
|
#ifdef WITH_STORAGE_RBD
|
2019-04-28 10:29:53 +08:00
|
|
|
DO_TEST("pool-rbd-ipv6");
|
2019-03-19 09:42:17 -04:00
|
|
|
DO_TEST("pool-rbd-refresh-volume-allocation");
|
2019-01-08 09:28:03 -05:00
|
|
|
DO_TEST("pool-rbd-ns-configopts");
|
2019-01-30 10:26:48 -05:00
|
|
|
#endif
|
2017-01-17 17:10:59 +03:00
|
|
|
DO_TEST("pool-vstorage");
|
2018-07-31 10:44:21 +02:00
|
|
|
DO_TEST("pool-iscsi-direct-auth");
|
|
|
|
|
DO_TEST("pool-iscsi-direct");
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2014-03-17 10:38:38 +01:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2009-10-08 17:26:30 -04:00
|
|
|
}
|
|
|
|
|
|
2017-03-29 16:45:42 +02:00
|
|
|
VIR_TEST_MAIN(mymain)
|